:root {
  --bg-primary: #080808;
  --bg-secondary: #0D0D0D;
  --bg-card: #111111;
  --accent: #00C896;
  --accent-dim: #00C89620;
  --accent-glow: #00C89633;
  --text-primary: #F5F5F5;
  --text-secondary: #A0A0A0;
  --text-muted: #555555;
  --border: #1E1E1E;
  --border-accent: #00C89640;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font-family: inherit; color: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Cursor glow ===== */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.08) 0%, rgba(0, 200, 150, 0) 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s ease;
  will-change: transform;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.stagger-child:nth-child(1) { transition-delay: 0ms; }
.stagger-child:nth-child(2) { transition-delay: 100ms; }
.stagger-child:nth-child(3) { transition-delay: 200ms; }
.stagger-child:nth-child(4) { transition-delay: 300ms; }
.stagger-child:nth-child(5) { transition-delay: 400ms; }

/* ===== Navbar ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.logo .ai { color: var(--accent); font-style: italic; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.wa-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 6px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  font-size: 12px;
  font-weight: 500;
  color: #25D366;
  letter-spacing: 0.01em;
  position: relative;
  top: 1px;
}
.wa-chip .wa-icon {
  width: 18px; height: 18px;
  display: block;
}
@media (max-width: 480px) {
  .wa-chip .wa-label { display: none; }
  .wa-chip { padding: 4px; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border-accent);
}
.badge .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: dot-blink 3s ease-in-out infinite;
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.06) 0%, rgba(0, 200, 150, 0) 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6.4vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.hero h1 .accent-italic {
  color: var(--accent);
  font-style: italic;
}
.hero .subhead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: #001A12;
  font-weight: 500;
  font-size: 16px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 200, 150, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 200, 150, 0.38);
}
.cta:active { transform: translateY(0); }
.cta .arrow { transition: transform 0.2s ease; display: inline-block; }
.cta:hover .arrow { transform: translateX(4px); }

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 14px;
}
.avatars {
  display: flex;
}
.avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
  background: linear-gradient(135deg, #1a3d33, #00C896);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #001A12;
}
.avatar:nth-child(1) { background: linear-gradient(135deg, #FF6B6B, #C0392B); margin-left: 0; }
.avatar:nth-child(2) { background: linear-gradient(135deg, #FFD93D, #F39C12); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #1a3d33, #00C896); }

/* ===== Hero order card ===== */
.order-card {
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  position: relative;
  max-width: 380px;
  margin-left: auto;
  transform: translateY(20px);
  opacity: 0;
  animation: card-in 0.9s ease-out 0.3s forwards;
}
@keyframes card-in {
  to { opacity: 1; transform: translateY(0); }
}
.order-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.3), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.order-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.order-head .bell { color: var(--accent); }
.order-customer {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.order-amount {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.order-lang {
  color: var(--accent);
  font-weight: 600;
}
.order-callmeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(0, 200, 150, 0.05);
  border: 1px solid var(--border-accent);
}
.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.call-icon {
  display: inline-block;
  animation: call-ring 2.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes call-ring {
  0%, 60%, 100% { transform: rotate(0deg); }
  5%, 15%, 25%  { transform: rotate(-12deg); }
  10%, 20%      { transform: rotate(12deg); }
}
.call-stock {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.order-items {
  list-style: none;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  padding: 16px 0;
  margin-bottom: 14px;
}
.order-items li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 5px 0;
}
.order-items li .qty {
  font-family: var(--font-mono);
  color: var(--text-muted);
  width: 36px;
}
.order-items li .name { flex: 1; color: var(--text-primary); }
.order-items li .price { font-family: var(--font-mono); color: var(--text-secondary); }
.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0 18px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.order-total .total-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-transform: none;
}
.order-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.paid-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: #001A12;
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: paid-pulse 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
}
.paid-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #001A12;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}
@keyframes paid-pulse {
  0%   { opacity: 0; transform: scale(0.7); box-shadow: 0 0 0 0 var(--accent); }
  60%  { opacity: 1; transform: scale(1.1); box-shadow: 0 0 0 10px var(--accent-glow); }
  100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 transparent; }
}
.order-eta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 12px;
  color: var(--text-secondary);
}
.order-eta strong { color: var(--text-primary); font-weight: 500; }
.eta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: eta-blink 1.8s ease-in-out infinite;
}
@keyframes eta-blink {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 0 0 var(--accent-glow); }
  50%      { opacity: 1; box-shadow: 0 0 0 4px transparent; }
}
.upi-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== Stats Bar ===== */
.stats {
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
}
.stat-num .unit { color: var(--accent); }
.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

/* ===== How it works ===== */
.how {
  padding: 140px 0;
  background: var(--bg-primary);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 56px);
  text-align: center;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 80px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  border-top: 1px dashed var(--border);
  z-index: 0;
}
.step { position: relative; z-index: 1; padding: 0 8px; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px var(--bg-primary);
}
.step h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===== Waitlist form ===== */
.waitlist {
  padding: 140px 0;
  background: var(--bg-secondary);
  position: relative;
}
.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 48px;
  position: relative;
  box-shadow: 0 0 0 1px var(--border-accent), 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 60px var(--accent-dim);
}
.form-card .section-title { font-size: clamp(32px, 3.6vw, 48px); margin-bottom: 12px; }
.form-card .section-sub { margin-bottom: 40px; font-size: 15px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.input,
.select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input:focus,
.select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.input::placeholder { color: var(--text-muted); }
.select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%2300C896' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.select option { background: var(--bg-primary); color: var(--text-primary); }
.phone-wrap { position: relative; }
.phone-prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 14px;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--border);
  padding-right: 12px;
}
.phone-wrap .input { padding-left: 84px; }
.flag {
  width: 20px; height: 14px;
  border-radius: 2px;
  background: linear-gradient(to bottom, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
  position: relative;
  overflow: hidden;
}
.flag::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #000080;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #001A12;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
  margin-top: 12px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 6px var(--accent-glow), 0 12px 32px rgba(0, 200, 150, 0.25);
}
.submit-btn .arrow { transition: transform 0.2s ease; }
.submit-btn:hover .arrow { transform: translateX(4px); }

.success-state {
  text-align: center;
  padding: 40px 0;
}
.success-state .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  border: 1px solid var(--border-accent);
}
.success-state h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.success-state p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ===== Quote ===== */
.quote-section {
  padding: 140px 0;
  background: var(--bg-primary);
}
.quote {
  max-width: 820px;
  margin: 0 auto;
  padding-left: 32px;
  border-left: 2px solid var(--accent);
}
.quote blockquote {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.45;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.quote blockquote::before {
  content: '“';
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4em;
  color: var(--accent);
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 4px;
}
.quote cite {
  font-style: normal;
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}
.quote cite strong { color: var(--text-primary); font-weight: 500; }

/* ===== FAQ ===== */
.faq {
  padding: 140px 0;
  background: var(--bg-secondary);
}
.faq .section-sub { margin-bottom: 56px; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  transition: border-color 0.2s ease;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease, border-color 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
  background: var(--accent-dim);
  border-color: var(--border-accent);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary:hover::after {
  border-color: var(--border-accent);
  background: var(--accent-dim);
}
.faq-item p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 92%;
}

@media (max-width: 900px) {
  .faq { padding: 90px 0; }
  .faq-item summary { font-size: 16px; gap: 16px; }
  .faq-item p { font-size: 14px; max-width: 100%; }
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}
.footer-brand .logo { font-size: 20px; margin-bottom: 6px; display: block; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-copy {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-icon:hover {
  color: var(--accent);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.social-icon svg { width: 16px; height: 16px; }

.footer-credit {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.footer-credit a {
  color: var(--text-muted);
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
}
.footer-credit a:hover { color: var(--accent); border-bottom-color: var(--border-accent); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .container { padding: 0 20px; }

  .nav { padding: 16px 0; }
  .badge { font-size: 11px; padding: 6px 12px; }

  .hero { padding: 130px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .order-card { margin: 0 auto; max-width: 100%; }

  .stats { padding: 48px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 32px; }

  .how, .waitlist, .quote-section { padding: 90px 0; }
  .section-sub { margin-bottom: 56px; }

  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .step { display: grid; grid-template-columns: 44px 1fr; column-gap: 20px; row-gap: 6px; align-items: start; padding: 0; }
  .step-num { margin-bottom: 0; box-shadow: none; grid-row: 1 / span 2; }
  .step h3 { grid-column: 2; align-self: center; }
  .step p { grid-column: 2; }

  .waitlist .container { padding: 0 16px; }
  .form-card {
    padding: 36px 22px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 16px;
  }
  .form-card .section-title { font-size: 30px; line-height: 1.15; }
  .form-card .section-sub { margin-bottom: 28px; }
  .field { margin-bottom: 16px; }
  .input, .select { padding: 13px 14px; font-size: 15px; }
  .phone-wrap .input { padding-left: 78px; }
  .phone-prefix { left: 14px; padding-right: 10px; font-size: 13px; }

  .quote { padding-left: 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand p, .footer-brand .logo { text-align: center; }
  .socials { justify-content: center; }

  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
