*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --yellow: #FFE135;
  --gray: #9E9E9E;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--yellow); }

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to   { opacity: 0; transform: translateX(-50%) translateY(-16px); }
}

/* ─── TOAST ──────────────────────────────────────── */
.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FF3B30;
  border: none;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
}
.toast.show {
  animation: toastIn 0.3s ease forwards;
  pointer-events: auto;
}
.toast.hide {
  animation: toastOut 0.3s ease forwards;
}
.toast-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.toast-text span {
  color: var(--white);
  font-weight: 700;
}
@keyframes bounceDot {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ─── HEADER ─────────────────────────────────────── */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px 20px;
  width: 100%;
  animation: fadeIn 0.6s ease both;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.1em;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--gray);
}

/* ─── HERO ───────────────────────────────────────── */
.hero-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 28px 40px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(255,225,53,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text { max-width: 560px; }

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-headline .accent { color: var(--yellow); }

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 440px;
  animation: fadeUp 0.8s 0.25s ease both;
}

/* ─── COUNTER ────────────────────────────────────── */
.counter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,225,53,0.08);
  border: 1px solid rgba(255,225,53,0.2);
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.05s ease both;
}
.counter-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3DED6A;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.counter-pill span {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}
.counter-pill strong {
  color: var(--white);
  font-weight: 700;
}

/* ─── SCROLL HINT ────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeIn 1s 1s ease both;
  cursor: default;
  z-index: 10;
}
.scroll-hint span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.scroll-hint svg {
  animation: bounceDot 1.6s ease-in-out infinite;
  opacity: 0.3;
}

/* ─── EMAIL FORM ─────────────────────────────────── */
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.email-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.35s ease both;
}

.email-input {
  flex: 1;
  min-width: 220px;
  height: 52px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--yellow);
  border-radius: 4px;
  outline: none;
  padding: 0 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
}
.email-input::placeholder { color: var(--gray); }
.email-input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,225,53,0.15); }

.email-btn {
  height: 52px;
  min-width: 200px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 4px;
  padding: 0 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
}
.email-btn:hover { background: #f0d200; }

.success-msg {
  display: none;
  margin-top: 16px;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 500;
}
.success-msg.visible { display: block; }

/* ─── PHONE MOCKUP ───────────────────────────────── */
.hero-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  animation: fadeUp 1s 0.4s ease both;
}

.phone-wrap {
  transform: scale(1.2);
  transform-origin: top center;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 104px;
  margin-top: -30px;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  border-top: 1px solid #1a1a1a;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.footer-links { display: flex; gap: 24px; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 767px) {
  header { padding: 12px 20px 16px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 32px 20px 48px;
    gap: 32px;
  }

  .hero-headline { font-size: clamp(64px, 18vw, 96px); }
  .hero-sub { font-size: 16px; }

  .hero-mockup { display: none; }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 32px 20px;
    margin-top: 24px;
  }
}

/* ─── FEATURES ───────────────────────────────────── */
#features-section {
  border-top: 1px solid #1A1A1A;
  background: #0D0D0D;
  padding: 80px 0 0;
}
#features {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}
.features-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.features-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.feature-item {
  border-top: 1px solid #1A1A1A;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
}
.feature-item:last-child {
  border-bottom: 1px solid #1A1A1A;
}
.feature-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 225, 53, 0.07);
  border: 1px solid rgba(255, 225, 53, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #9E9E9E;
  line-height: 1.7;
}

@media (max-width: 767px) {
  #features-section { padding: 48px 0 0; }
  #features { padding: 0 20px; }
  .features-headline { font-size: 40px; }
}

/* ─── FAQ ────────────────────────────────────────── */
#faq-section {
  background: #0D0D0D;
  padding: 80px 0;
}
#faq { max-width: 700px; margin: 0 auto; padding: 0 40px; }
#faq .faq-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
}
#faq h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: #FFFFFF; margin-bottom: 40px; letter-spacing: 2px; line-height: 1; }
.faq-item { border-top: 1px solid #1A1A1A; }
.faq-item:last-child { border-bottom: 1px solid #1A1A1A; }
.faq-item.open { border-left: 3px solid #FFE135; padding-left: 16px; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; padding: 20px 0; cursor: pointer; text-align: left; }
.faq-question span:first-child { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: #FFFFFF; }
.faq-icon { font-size: 22px; color: #FFE135; font-weight: 300; flex-shrink: 0; margin-left: 16px; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Smooth grid-based accordion */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer > div { overflow: hidden; }
.faq-answer p { font-family: 'DM Sans', sans-serif; font-size: 14px; color: #9E9E9E; line-height: 1.7; padding-bottom: 20px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

@media (max-width: 767px) {
  #faq-section { padding: 48px 0 40px; }
  #faq { padding: 0 20px; }
}
