/* ── Reset & tokens ───────────────────────────────────────────── */
:root {
  --bg:       #080b18;
  --bg1:      #0d1025;
  --bg2:      #111528;
  --surface:  rgba(255,255,255,0.04);
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(99,102,241,0.32);
  --text:     #f0f2ff;
  --muted:    #8891b0;
  --indigo:   #6366f1;
  --violet:   #8b5cf6;
  --green:    #34d399;
  --shadow:   0 24px 64px rgba(0,0,0,0.4);
  --radius:   16px;
  --radius-lg:24px;
  --max:      1160px;
}

*,*::before,*::after { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:'Inter',system-ui,sans-serif;
  font-size:16px;
  line-height:1.6;
  color:var(--text);
  background: var(--bg);
  overflow-x:hidden;
}
a { color:inherit; text-decoration:none; }
ul { margin:0; padding:0; list-style:none; }
img { max-width:100%; }
button,input,select,textarea { font:inherit; }

/* ── Utilities ───────────────────────────────────────────────── */
.container {
  width: min(var(--max), 100% - 32px);
  margin-inline: auto;
}

.text-grad {
  background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 40%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(99,102,241,0.1);
  color: #a5b4fc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  box-shadow: 0 8px 24px rgba(99,102,241,0.35);
}
.btn--primary:hover {
  box-shadow: 0 12px 32px rgba(99,102,241,0.5);
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
}
.btn--whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}

.btn--outline {
  background: transparent;
  border-color: var(--border2);
  color: #a5b4fc;
}
.btn--outline:hover {
  background: rgba(99,102,241,0.1);
}

.btn--lg { padding: 16px 32px; font-size: 1rem; border-radius: 14px; }
.btn--full { width: 100%; }

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(8,11,24,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
  width: min(var(--max), 100% - 32px);
  margin-inline: auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}
.logo-mark svg { width: 36px; height: 36px; display: block; }
.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-link {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 16px;
  margin: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(13,16,37,0.98);
  backdrop-filter: blur(20px);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.nav__mobile a:hover { background: var(--surface); color: var(--text); }
.nav__mobile .btn--full { margin-top: 8px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero__glow--1 {
  top: -120px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: rgba(99,102,241,0.18);
}
.hero__glow--2 {
  top: 60px;
  right: -60px;
  width: 380px;
  height: 380px;
  background: rgba(139,92,246,0.12);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__body { max-width: 540px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,0.35);
  background: rgba(99,102,241,0.1);
  color: #a5b4fc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--indigo);
  box-shadow: 0 0 8px rgba(99,102,241,0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; }
  50% { opacity:0.5; }
}

.hero__h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero__sub {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.proof-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Hero card */
.hero__card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg1);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hcard__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.hcard__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.hcard__bar-title {
  margin-left: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}
.hcard__content { padding: 18px; display: grid; gap: 14px; }

.hcard__patient {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.hcard__avatar {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: rgba(99,102,241,0.2);
  display: grid; place-items: center;
  color: #a5b4fc;
  flex-shrink: 0;
}
.hcard__ai-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.hcard__ai-items { display: grid; gap: 8px; }
.hcard__ai-scroll {
  flex: 1;
  position: relative;
  top: -28px;
  left: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0;
  opacity: 0.95;
  animation: bounce-scroll 2s infinite ease-in-out;
}
@keyframes bounce-scroll {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.hcard__patient-name { font-size: 0.9rem; font-weight: 700; }
.hcard__patient-meta { font-size: 0.75rem; color: var(--muted); margin-top: 1px; }
.hcard__status {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.hcard__status--running {
  background: rgba(99,102,241,0.18);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,0.3);
}

.hcard__ai-box {
  padding: 14px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.hcard__ai-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}
.ai-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--indigo);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.hcard__ai-items { display: grid; gap: 8px; margin-bottom: 14px; }
.ai-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.ai-item--done { color: var(--green); }
.ai-item--done svg { color: var(--green); }
.ai-item--active { color: var(--text); font-weight: 600; }
.ai-item--pending { opacity: 0.4; }

.ai-spinner {
  width: 12px; height: 12px;
  border: 2px solid rgba(99,102,241,0.3);
  border-top-color: var(--indigo);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.ai-circle {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.hcard__progress {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hcard__progress-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.hcard__progress-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--indigo), var(--violet));
  border-radius: 999px;
  transition: width 0.6s ease;
}
.hcard__progress span { font-size: 0.8rem; font-weight: 700; color: #a5b4fc; }

.hcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.hcard__share {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.22);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 700;
}
.hcard__credits {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Steps ───────────────────────────────────────────────────── */
.steps-section { padding: 100px 0; }
.steps-section .section__h2 { text-align: center; }
.steps-section .section__label { display: block; text-align: center; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.step-card {
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.25s, background 0.25s;
}
.step-card:hover {
  border-color: var(--border2);
  background: rgba(99,102,241,0.06);
}
.step-num {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--indigo);
  margin-bottom: 16px;
}
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
}
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Benefits ────────────────────────────────────────────────── */
.benefits-section { padding: 100px 0; background: var(--bg1); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-sub {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.benefits-list {
  display: grid;
  gap: 20px;
  margin-bottom: 36px;
}
.benefits-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.bl-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.22);
  display: grid; place-items: center;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.benefits-list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.benefits-list span {
  font-size: 0.87rem;
  color: var(--muted);
}

/* Benefits visual */
.benefits-visual {
  position: relative;
  display: grid;
  gap: 12px;
}
.bv-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg2);
  padding: 20px;
}
.bv-card--main { }
.bv-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--indigo);
  margin-bottom: 16px;
}
.bv-smile-mock {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 14px;
}
.bv-before, .bv-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bv-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.bv-label--ai { color: var(--indigo); }
.bv-face {
  width: 130px;
  height: 130px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background-image: url('sonrie-sample.jpeg');
  background-size: 200% auto;
  background-repeat: no-repeat;
}
.bv-face--before {
  background-position: left 50%;
}
.bv-face--after {
  background-position: right 50%;
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 0 20px rgba(99,102,241,0.2);
}
.bv-arrow { color: var(--muted); }
.bv-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 6px;
}
.bv-time {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-weight: 600;
}

.bv-card--stat {
  text-align: center;
  padding: 18px 20px;
}
.bv-stat-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #a5b4fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bv-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

.bv-card--share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  color: #4ade80;
  font-weight: 700;
  font-size: 0.88rem;
  border-color: rgba(52,211,153,0.2);
  background: rgba(52,211,153,0.06);
}

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-section { padding: 100px 0; }
.pricing-section .section__label { display: block; text-align: center; }
.pricing-section .section__h2 { text-align: center; }
.pricing-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card--featured {
  border-color: var(--border2);
  background: rgba(99,102,241,0.07);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.2);
}
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}
.price-card__tier {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.price-card__amount {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.price-card__credits {
  font-size: 0.85rem;
  color: var(--indigo);
  font-weight: 700;
  margin-bottom: 8px;
}
.price-list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  flex: 1;
}
.price-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 16px;
  border-left: 2px solid rgba(99,102,241,0.25);
}
.price-card--featured .price-list li {
  border-left-color: rgba(99,102,241,0.5);
  color: var(--text);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { padding: 100px 0; background: var(--bg1); }
.faq-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.faq-left { position: sticky; top: 90px; }
.faq-left .section__h2 { margin-bottom: 12px; }
.faq-cta-text {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 24px 0 12px;
}

.faq-list { display: grid; gap: 10px; }
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}
.faq-item.open {
  border-color: var(--border2);
  background: rgba(99,102,241,0.06);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--indigo); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── CTA Final ───────────────────────────────────────────────── */
.cta-section { padding: 100px 0; }
.cta-box {
  text-align: center;
  padding: 64px 40px;
  border-radius: 28px;
  border: 1px solid var(--border2);
  background: radial-gradient(ellipse at center top, rgba(99,102,241,0.18), transparent 60%), var(--bg1);
}
.cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.cta-box p {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 1.05rem;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}
.footer-brand p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 320px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col h4 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}
.footer-col a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}

/* ── Animations (scroll) ──────────────────────────────────────── */
.step-card,
.price-card,
.faq-item,
.bv-card {
  will-change: transform, opacity;
}

/* ── Responsive ─────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__body { max-width: 100%; }
  .hero__card { max-width: 480px; }
  .hero__h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .benefits-visual { max-width: 480px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }

  .hero {
    padding: 100px 0 60px;
  }
  .hero__h1 { font-size: 2.2rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .faq-left { position: static; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }

  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__h1 { font-size: 1.9rem; }
  .hero__sub { font-size: 0.95rem; }
  .hero__proof { flex-direction: column; }
  .proof-pill { width: 100%; justify-content: center; }

  .steps-grid { grid-template-columns: 1fr; }

  .section__h2 { font-size: 1.8rem; }

  .cta-box { padding: 40px 20px; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; }

  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { text-align: center; }
}
