/* ═══════════════════════════════════════════════════════════════
   LANDING PAGE — Modern SaaS Light Design
   Palette:
     Page bg:         #FFFFFF
     Hero bg:         linear-gradient(170deg, #FFF8E7, #FFFFFF)
     Lavender tint:   #F0EEFF
     Text primary:    #0D0D1A
     Text secondary:  #52526A
     Text muted:      #9898B0
     Brand purple:    #7C3AED  (hover #6D28D9)
     Card shadow:     0 4px 24px rgba(0,0,0,0.06)
     Border:          #E8E8F0
═══════════════════════════════════════════════════════════════ */

/* ── Base ── */
#screen-home {
  display: none;
  background: #ffffff;
  color: #0D0D1A;
  overflow-x: clip;
}
#screen-home.active { display: block; }

/* Smooth scrolling for anchor links on landing page */
html:has(#screen-home.active) { scroll-behavior: smooth; }

/* Offset anchor jumps to clear sticky nav (64px height + 8px buffer) */
#beneficios,
#como-funciona,
#precos,
#faq { scroll-margin-top: 80px; }

/* ─────────────────────────────────────────────────────────────
   NAVBAR
   Fixed/sticky, white bg, hairline + shadow, logo left, 2 items right
───────────────────────────────────────────────────────────────*/
.land-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #F0F0F5;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

/* Dark-mode lockup inverted to show on white nav */
.land-logo {
  height: 34px;
  width: auto;
  max-width: min(260px, 48vw);
  display: block;
  object-fit: contain;
  object-position: left center;
  cursor: pointer;
  flex-shrink: 0;
  filter: brightness(0); /* white logo → black on light navbar */
}

.land-nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0;
}

/* ── Navbar anchor links ── */
.land-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto 0 32px;
}
.land-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #52526A;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.land-nav-link:hover {
  color: #7C3AED;
  background: rgba(124,58,237,.07);
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS — base
───────────────────────────────────────────────────────────────*/
.btn-land-primary {
  background: #7C3AED;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 2px 10px rgba(124,58,237,.28);
  white-space: nowrap;
}
.btn-land-primary:hover {
  background: #6D28D9;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(124,58,237,.40);
}

.btn-land-ghost {
  background: transparent;
  color: #52526A;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50px;
  transition: color .18s;
}
.btn-land-ghost:hover { color: #0D0D1A; }

/* Nav-scoped overrides — keep both buttons slim */
.land-nav .btn-land-primary {
  padding: 9px 18px;
  font-size: 13.5px;
}
.land-nav .btn-land-ghost {
  color: #52526A;
  padding: 9px 14px;
  font-size: 13.5px;
}
.land-nav .btn-land-ghost:hover { color: #0D0D1A; }

/* ─────────────────────────────────────────────────────────────
   HERO — centered single column
   Layout: badge → h1 → p → CTA row → proof → mockup
───────────────────────────────────────────────────────────────*/
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 48px 72px;
  background: linear-gradient(170deg, #FFF8E7 0%, #ffffff 55%);
  max-width: 100%;
}

.hero-left {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.hero-right {
  width: 100%;
  max-width: 840px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  position: relative;
}

/* Badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1.5px solid #E5DCFF;
  font-size: 12px;
  font-weight: 600;
  color: #6D28D9;
  letter-spacing: .3px;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124,58,237,.2);
  animation: ldpulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes ldpulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.55; transform:scale(.8); }
}

/* Title — 900 weight, huge, tight tracking */
.hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.0;
  margin-bottom: 22px;
  color: #0D0D1A;
}
.hero h1 .grad {
  color: #7C3AED;
  -webkit-text-fill-color: #7C3AED;
  background: none;
}

/* Lead paragraph */
.hero p {
  font-size: 17px;
  color: #52526A;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA row */
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
  align-items: center;
}

/* Primary hero CTA — large, pill, dark */
.hero-cta .btn-land-primary {
  padding: 15px 34px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  background: #1A1A2E;
  box-shadow: 0 4px 24px rgba(0,0,0,.20);
}
.hero-cta .btn-land-primary:hover {
  background: #2D1F6E;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

/* Secondary — styled as a text link so primary CTA is dominant */
.hero-cta .btn-land-ghost {
  font-size: 14px;
  color: #71717A;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #C0C0D0;
  padding: 10px 16px;
  border-radius: 50px;
}
.hero-cta .btn-land-ghost:hover {
  color: #0D0D1A;
  text-decoration-color: #0D0D1A;
}

/* Proof row */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #71717A;
  font-weight: 500;
}
.hero-proof-item span {
  color: #22c55e;
  font-weight: 700;
  font-size: 15px;
}

/* "Ver planos ↓" subtle link below hero CTA */
.hero-plans-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  color: #9898B0;
  text-decoration: none;
  transition: color .15s;
}
.hero-plans-link:hover { color: #7C3AED; }

/* ─────────────────────────────────────────────────────────────
   HERO MOCKUP — browser + phone frames
   Dark frames on light bg = product screenshot contrast (modern SaaS look)
───────────────────────────────────────────────────────────────*/
.hero-duo {
  position: relative;
  width: 100%;
  max-width: 780px;
  padding-bottom: 48px;
  padding-right: 52px;
  overflow: visible;
}
.hero-duo::before { display: none; }
.hd-glow          { display: none; }

/* Browser frame — flat (no 3D perspective on light theme) */
.hd-browser {
  position: relative;
  z-index: 1;
  background: #0f0f16;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.16), 0 6px 20px rgba(0,0,0,.08);
  transform: none;
  transition: transform .4s, box-shadow .4s;
}
.hero-duo:hover .hd-browser {
  transform: translateY(-4px);
  box-shadow: 0 32px 96px rgba(0,0,0,.20), 0 8px 24px rgba(0,0,0,.10);
}

/* Browser chrome */
.hd-tb          { display:flex;align-items:center;gap:8px;padding:10px 14px;background:#111116;border-bottom:1px solid rgba(255,255,255,.06);flex-shrink:0 }
.hd-dots        { display:flex;gap:6px;flex-shrink:0 }
.hd-dot         { width:10px;height:10px;border-radius:50%;display:block }
.hd-dot-r       { background:#F4877D }
.hd-dot-y       { background:#F5C151 }
.hd-dot-g       { background:#62C462 }
.hd-url         { flex:1;margin:0 10px;height:22px;border-radius:5px;background:#09090B;border:1px solid rgba(255,255,255,.08);display:flex;align-items:center;padding:0 9px;font-size:10px;color:#71717A;letter-spacing:.2px }

/* Dashboard inside browser */
.hd-dash        { display:flex;height:260px }
.hd-dash-sb     { width:42px;background:#090e1c;border-right:1px solid rgba(255,255,255,.05);display:flex;flex-direction:column;align-items:center;padding:12px 0;gap:10px;flex-shrink:0 }
.hd-sb-logo     { width:24px;height:24px;border-radius:6px;background:linear-gradient(135deg,#7C3AED,#A78BFA);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:900;color:#fff;margin-bottom:8px }
.hd-sb-item     { width:28px;height:28px;border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:12px;color:#334155 }
.hd-sb-item.act { background:rgba(124,58,237,.2);color:#A78BFA }
.hd-dash-main   { flex:1;padding:14px 16px;overflow:hidden;display:flex;flex-direction:column;gap:10px;background:#0a0e1a }
.hd-greet       { font-size:11px;font-weight:700;color:#e2e8f0;letter-spacing:-.1px }
.hd-stats       { display:flex;gap:7px }
.hd-stat        { flex:1;background:#0f1a30;border:1px solid rgba(255,255,255,.07);border-radius:7px;padding:8px 9px }
.hd-stat.hl     { border-color:rgba(124,58,237,.3);background:rgba(124,58,237,.08) }
.hd-stat-n      { font-size:15px;font-weight:700;color:#f1f5f9;letter-spacing:-.5px }
.hd-stat.hl .hd-stat-n { color:#A78BFA }
.hd-stat-l      { font-size:8.5px;color:#475569;margin-top:1px;font-weight:500;text-transform:uppercase;letter-spacing:.4px }
.hd-sec-title   { font-size:9px;font-weight:600;color:#334155;text-transform:uppercase;letter-spacing:.6px }
.hd-appts       { display:flex;flex-direction:column;gap:5px }
.hd-appt        { display:flex;align-items:center;gap:7px;background:#0f1a30;border:1px solid rgba(255,255,255,.05);border-radius:6px;padding:6px 8px }
.hd-dot-s       { width:6px;height:6px;border-radius:50%;flex-shrink:0;display:inline-block }
.hd-dot-s.g     { background:#22c55e;box-shadow:0 0 4px rgba(34,197,94,.5) }
.hd-dot-s.a     { background:#f59e0b;box-shadow:0 0 4px rgba(245,158,11,.5) }
.hd-appt-name   { font-size:9.5px;color:#cbd5e1;font-weight:500;flex:1 }
.hd-appt-t      { font-size:9px;color:#475569;flex-shrink:0 }
.hd-badge       { font-size:8px;font-weight:600;padding:2px 5px;border-radius:4px;flex-shrink:0;display:inline-block }
.hd-badge.c     { background:rgba(34,197,94,.1);color:#22c55e;border:1px solid rgba(34,197,94,.15) }
.hd-badge.p     { background:rgba(245,158,11,.1);color:#f59e0b;border:1px solid rgba(245,158,11,.15) }

/* Phone frame — overlaps browser, bottom-right */
.hd-phone {
  position: absolute;
  right: -44px;
  bottom: -28px;
  z-index: 3;
  width: 182px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px 8px 22px;
  box-shadow: 0 20px 64px rgba(0,0,0,.20), 0 4px 16px rgba(0,0,0,.12), 0 0 0 1px rgba(255,255,255,.07);
}
.hd-phone-notch   { width:52px;height:6px;background:#0d0d1a;border-radius:0 0 6px 6px;margin:0 auto 9px }
.hd-phone-content { background:#ffffff;border-radius:24px;overflow:hidden;padding:14px 12px 16px;display:flex;flex-direction:column;gap:10px }
.hd-ph-biz        { display:flex;align-items:center;gap:9px }
.hd-ph-avatar     { width:34px;height:34px;border-radius:10px;background:linear-gradient(135deg,#7C3AED,#A78BFA);display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:800;color:#fff;flex-shrink:0 }
.hd-ph-biz-name   { font-size:12px;font-weight:700;color:#0f1020;line-height:1.2 }
.hd-ph-biz-sub    { font-size:9.5px;color:#888;margin-top:1px }
.hd-ph-svc        { font-size:10px;font-weight:600;color:#7C3AED;background:rgba(124,58,237,.08);border:.5px solid rgba(124,58,237,.2);border-radius:7px;padding:6px 9px }
.hd-ph-slots-label{ font-size:9px;font-weight:600;color:#888;text-transform:uppercase;letter-spacing:.5px }
.hd-ph-slots      { display:grid;grid-template-columns:1fr 1fr;gap:5px }
.hd-ph-slot       { font-size:11px;font-weight:500;text-align:center;padding:7px 4px;border-radius:7px;background:#f4f4f8;border:.5px solid #e0e0e8;color:#374151 }
.hd-ph-slot-sel   { background:#7C3AED!important;border-color:#7C3AED!important;color:#fff!important;font-weight:700!important }
.hd-ph-slot-dis   { opacity:.35;text-decoration:line-through;color:#aaa!important }
.hd-ph-btn        { background:#7C3AED;color:#fff;font-size:11px;font-weight:700;text-align:center;border-radius:9px;padding:9px 5px;margin-top:2px }

/* ─────────────────────────────────────────────────────────────
   PROOF STRIP — feature bar below hero
───────────────────────────────────────────────────────────────*/
.land-strip {
  background: #ffffff;
  border-top: 1px solid #F0F0F5;
  border-bottom: 1px solid #F0F0F5;
  padding: 20px 48px;
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.land-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #52526A;
  font-weight: 500;
  white-space: nowrap;
}
.land-strip-item b { color: #0D0D1A; font-weight: 700; }

/* ─────────────────────────────────────────────────────────────
   SECTION GLOBALS
───────────────────────────────────────────────────────────────*/
.land-sec {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 48px;
}
.land-sec-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #7C3AED;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}
.land-sec-title {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #0D0D1A;
  margin-bottom: 14px;
  line-height: 1.08;
}
.land-sec-sub {
  font-size: 16px;
  color: #52526A;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ─────────────────────────────────────────────────────────────
   BENEFIT CARDS — 2-column grid, shadow cards
───────────────────────────────────────────────────────────────*/
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  border: none;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 44px rgba(0,0,0,.10);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #F0EEFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0D0D1A;
  margin-bottom: 9px;
  letter-spacing: -.2px;
}
.benefit-card p {
  font-size: 14px;
  color: #71717A;
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS — full-width lavender section
   CSS child-selector trick: section is full-width, children centered
───────────────────────────────────────────────────────────────*/
.how-sec {
  max-width: none;
  margin: 0;
  padding: 96px 0;
  background: #F0EEFF;
}
/* Center each direct child to 1100px */
.how-sec > div {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.how-sec .land-sec-label { color: #6D28D9; }
.how-sec .land-sec-title { color: #0D0D1A; }
.how-sec .land-sec-sub   { color: #52526A; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.how-step {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 44px rgba(0,0,0,.10);
}
.how-step-num {
  font-size: 52px;
  font-weight: 900;
  color: #7C3AED;
  line-height: 1;
  padding: 0;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  display: block;
  margin: 0;
  box-shadow: none;
}
.how-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0D0D1A;
  margin: 0;
  letter-spacing: -.2px;
}
.how-step p {
  font-size: 14px;
  color: #71717A;
  line-height: 1.65;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   PRICING — light cards, strong price hierarchy
───────────────────────────────────────────────────────────────*/
.pricing-sec {
  max-width: none;
  margin: 0;
  padding: 0 0 96px; /* horizontal padding comes from parent land-sec */
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: #ffffff;
  border: 1.5px solid #E8E8F0;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  transition: border-color .2s, transform .22s, box-shadow .22s;
}
.pricing-card:hover {
  border-color: #C4B5FD;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124,58,237,.10);
}

/* Highlighted "Recomendado" card */
.pricing-card-pro {
  border-color: #7C3AED;
  box-shadow: 0 4px 32px rgba(124,58,237,.14);
}
.pricing-card-pro:hover {
  border-color: #6D28D9;
  box-shadow: 0 16px 64px rgba(124,58,237,.22);
  transform: translateY(-4px);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #7C3AED;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(124,58,237,.32);
}

.pricing-plan {
  font-size: 12px;
  font-weight: 700;
  color: #9898B0;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 12px;
}
.pricing-card-pro .pricing-plan { color: #7C3AED; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-currency {
  font-size: 22px;
  font-weight: 700;
  color: #0D0D1A;
  align-self: flex-start;
  margin-top: 10px;
}
.pricing-amount {
  font-size: 60px;
  font-weight: 900;
  color: #0D0D1A;
  letter-spacing: -3px;
  line-height: 1;
}
.pricing-period {
  font-size: 13px;
  color: #9898B0;
  margin-bottom: 18px;
}
.pricing-desc {
  font-size: 14px;
  color: #71717A;
  line-height: 1.65;
  margin-bottom: 22px;
}
.pricing-divider {
  height: 1px;
  background: #F0F0F5;
  margin-bottom: 22px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #0D0D1A;
  line-height: 1.4;
  font-weight: 500;
}
.pricing-features li::before {
  content: '✓';
  color: #7C3AED;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-feat-off           { color: #C4C4D8 !important; }
.pricing-feat-off::before   { content: '–' !important; color: #C4C4D8 !important; }

.pricing-btn {
  width: 100%;
  justify-content: center !important;
  padding: 13px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
}
/* Primary in pricing */
.pricing-btn.btn-land-primary {
  background: #7C3AED;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(124,58,237,.28);
}
.pricing-btn.btn-land-primary:hover {
  background: #6D28D9;
  box-shadow: 0 6px 24px rgba(124,58,237,.38);
  transform: translateY(-1px);
}
/* Ghost in pricing */
.pricing-btn.btn-land-ghost {
  border: 1.5px solid #E8E8F0;
  color: #0D0D1A;
  border-radius: 14px;
  text-decoration: none;
}
.pricing-btn.btn-land-ghost:hover {
  border-color: #7C3AED;
  color: #7C3AED;
  background: rgba(124,58,237,.05);
}

/* ─────────────────────────────────────────────────────────────
   CTA FINAL — full-width lavender gradient + floating card
───────────────────────────────────────────────────────────────*/
.land-cta-wrap {
  max-width: none;
  margin: 0;
  background: linear-gradient(170deg, #F0EEFF 0%, #ffffff 100%);
  padding: 96px 48px;
}
.land-cta {
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #E8E8F0;
  border-radius: 28px;
  padding: 64px 52px;
  text-align: center;
  box-shadow: 0 8px 48px rgba(0,0,0,.09);
  position: relative;
  overflow: hidden;
}
.land-cta::before { display: none; }
.land-cta h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #0D0D1A;
  margin-bottom: 14px;
  line-height: 1.1;
}
.land-cta p {
  font-size: 16px;
  color: #71717A;
  margin-bottom: 36px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}
.land-cta .btn-land-primary {
  background: #7C3AED;
  border-radius: 50px;
  padding: 15px 36px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(124,58,237,.35);
  position: relative;
}
.land-cta .btn-land-primary:hover {
  background: #6D28D9;
  box-shadow: 0 8px 40px rgba(124,58,237,.45);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER — minimal, horizontal, clean
───────────────────────────────────────────────────────────────*/
.land-footer {
  border-top: 1px solid #F0F0F5;
  background: #ffffff;
  padding: 0;
}

.land-footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding: 56px 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.land-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.land-footer-logo {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0);
  opacity: .7;
}

.land-footer-tagline {
  font-size: 13px;
  color: #9898B0;
  line-height: 1.6;
  max-width: 260px;
  margin: 0;
}

.land-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.land-footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #52526A;
  margin: 0 0 4px;
}

.land-footer-link {
  font-size: 13.5px;
  color: #9898B0;
  text-decoration: none;
  transition: color .15s;
  width: fit-content;
}
.land-footer-link:hover { color: #7C3AED; }

.land-footer-bottom {
  border-top: 1px solid #F0F0F5;
  padding: 18px 48px;
  text-align: center;
}

.land-footer-copy { font-size: 13px; color: #9898B0; margin: 0; }

.land-social { display: flex; gap: 10px; margin-top: 4px; }
.land-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #9898B0;
  background: transparent;
  border: 1.5px solid #E8E8F0;
  transition: color .15s, background .15s, border-color .15s;
  text-decoration: none;
}
.land-social-link:hover {
  color: #7C3AED;
  background: rgba(124,58,237,.06);
  border-color: rgba(124,58,237,.3);
}

/* ─────────────────────────────────────────────────────────────
   SOCIAL PROOF — business categories + stats strip
───────────────────────────────────────────────────────────────*/
.social-proof-sec {
  background: #F8F7FF;
  border-top: 1px solid #ECEAFF;
  border-bottom: 1px solid #ECEAFF;
  padding: 52px 48px;
}
.social-proof-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.social-proof-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #9898B0;
  margin-bottom: 20px;
}
.social-proof-biz {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.spb-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: #52526A;
  background: #ffffff;
  border: 1.5px solid #E8E8F0;
  border-radius: 50px;
  padding: 7px 16px;
}
.social-proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sps-item {
  padding: 0 36px;
  text-align: center;
}
.sps-divider {
  width: 1px;
  height: 40px;
  background: #E8E8F0;
  flex-shrink: 0;
}
.sps-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.8px;
  color: #7C3AED;
  line-height: 1;
  margin-bottom: 4px;
}
.sps-label {
  font-size: 12.5px;
  color: #9898B0;
  max-width: 120px;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────
   FAQ — accordion with <details>/<summary>
───────────────────────────────────────────────────────────────*/
.faq-sec {
  background: #ffffff;
}
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #ffffff;
  border: 1.5px solid #E8E8F0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] {
  border-color: rgba(124,58,237,.3);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #0D0D1A;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: #7C3AED; }
.faq-chevron {
  font-size: 22px;
  color: #9898B0;
  transition: transform .2s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-chevron {
  transform: rotate(90deg);
}
.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: #52526A;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid #F0F0F5;
  padding-top: 14px;
}

/* Generic hover card (legacy class) */
.feat { transition: transform .25s, box-shadow .25s; }
.feat:hover { transform: translateY(-4px); box-shadow: 0 10px 44px rgba(124,58,237,.10); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* ── Tablet / large mobile ≤ 920px ── */
@media (max-width: 920px) {
  .hero            { padding: 72px 32px 60px; }
  .hero h1         { font-size: 46px; }
  .hero p          { font-size: 16px; }
  .hero-right      { margin-top: 48px; }

  .land-nav        { padding: 0 32px; }
  .land-strip      { gap: 28px; padding: 18px 32px; }
  .land-sec        { padding: 72px 32px; }

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

  .how-sec         { padding: 72px 0; }
  .how-sec > div   { padding: 0 32px; }
  .how-steps       { grid-template-columns: 1fr; gap: 14px; }

  .land-cta-wrap   { padding: 72px 32px; }
  .land-cta        { padding: 52px 40px; }

  .pricing-grid    { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-sec     { padding-bottom: 72px; }

  .land-footer-inner { padding: 48px 32px 36px; gap: 32px; }
  .land-footer-bottom { padding: 16px 32px; }
  .land-nav-links  { display: none; }
  .social-proof-sec { padding: 44px 32px; }
  .sps-item        { padding: 0 24px; }
}

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {
  .land-nav        { padding: 0 24px; height: 56px; }
  .land-logo       { height: 28px; }

  .hero            { padding: 60px 24px 52px; }
  .hero h1         { font-size: 38px; letter-spacing: -1.5px; }
  .hero p          { font-size: 15px; }
  .hero-right      { margin-top: 44px; }

  .land-strip      { gap: 20px; padding: 16px 24px; }
  .land-sec        { padding: 64px 24px; }

  .how-sec         { padding: 64px 0; }
  .how-sec > div   { padding: 0 24px; }

  .benefit-card    { padding: 26px 22px; }
  .how-step        { padding: 26px 22px; }

  .land-cta-wrap   { padding: 64px 24px; }
  .land-cta        { padding: 48px 32px; border-radius: 20px; }

  .pricing-grid    { max-width: 100%; }
  .pricing-sec     { padding-bottom: 64px; }

  .land-footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 40px 24px 28px; }
  .land-footer-bottom { padding: 14px 24px; }
  .land-footer-tagline { max-width: 100%; }
  .social-proof-sec { padding: 40px 24px; }
  .social-proof-stats { gap: 0; }
  .sps-item        { padding: 0 16px; }
  .sps-num         { font-size: 26px; }
  .sps-divider     { height: 32px; }

  /* Tap target guarantees */
  .hero-cta .btn-land-primary,
  .land-cta .btn-land-primary { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ── Mobile ≤ 600px ── */
@media (max-width: 600px) {
  .hero            { padding: 44px 20px 44px; }
  .hero h1         { font-size: 34px; letter-spacing: -1px; }
  .hero p          { font-size: 14.5px; }
  .hero-right      { margin-top: 36px; }

  /* Stack CTA buttons full-width */
  .hero-cta        { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn-land-primary { width: 100%; justify-content: center; min-height: 48px; display: flex; }
  .hero-cta .btn-land-ghost   { width: 100%; text-align: center; min-height: 44px; display: flex; align-items: center; justify-content: center; }

  /* Hide browser on small mobile — center phone only */
  .hd-browser      { display: none; }
  .hero-duo        { padding-bottom: 0; padding-right: 0; display: flex; justify-content: center; max-width: 100%; }
  .hd-phone        { position: static; width: 192px; margin: 0 auto; border-radius: 38px; padding: 12px 8px 20px; }
  .hd-phone-notch  { width: 52px; }
  .hd-phone-content{ border-radius: 26px; padding: 13px 11px 15px; }
  .hd-ph-biz-name  { font-size: 12px; }

  /* Benefits: single column */
  .benefits-grid   { grid-template-columns: 1fr; gap: 14px; }
  .benefit-card    { padding: 24px 20px; border-radius: 16px; }
  .benefit-icon    { width: 44px; height: 44px; font-size: 20px; margin-bottom: 14px; }

  .land-strip      { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 20px; }
  .land-strip-item { white-space: normal; }

  .how-sec         { padding: 56px 0; }
  .how-sec > div   { padding: 0 20px; }
  .how-steps       { gap: 12px; }
  .how-step        { padding: 24px 20px; border-radius: 16px; }
  .how-step-num    { font-size: 40px; }
  .how-step h3     { font-size: 16px; }

  .land-sec        { padding: 56px 20px; }
  .land-sec-title  { letter-spacing: -1px; }
  .land-sec-sub    { font-size: 14.5px; margin-bottom: 28px; }

  .land-cta-wrap   { padding: 56px 20px; }
  .land-cta        { padding: 40px 24px; border-radius: 18px; }
  .land-cta h2     { letter-spacing: -1px; font-size: 28px; }
  .land-cta p      { font-size: 14.5px; }
  .land-cta .btn-land-primary { width: 100%; min-height: 48px; display: flex; justify-content: center; align-items: center; }

  .pricing-sec     { padding-bottom: 56px; }
  .pricing-card    { padding: 26px 22px; border-radius: 20px; }
  .pricing-amount  { font-size: 52px; }

  .land-footer-inner { padding: 36px 20px 24px; }
  .land-footer-bottom { padding: 14px 20px; }
  .social-proof-sec { padding: 36px 20px; }
  .social-proof-stats { flex-wrap: wrap; gap: 16px; }
  .sps-divider     { display: none; }
  .sps-item        { padding: 0 8px; flex: 1 1 40%; }
}

/* ── Very small ≤ 390px ── */
@media (max-width: 390px) {
  .land-nav        { padding: 0 16px; }
  .hero            { padding: 36px 16px 40px; }
  .hero h1         { font-size: 30px; }
  .land-sec        { padding: 48px 16px; }
  .how-sec         { padding: 48px 0; }
  .how-sec > div   { padding: 0 16px; }
  .land-cta-wrap   { padding: 48px 16px; }
  .land-cta        { padding: 36px 20px; }
  .pricing-sec     { padding-bottom: 48px; }
  .land-strip      { padding: 14px 16px; }
  .benefit-card    { padding: 20px 16px; }
  .how-step        { padding: 20px 16px; }
  .land-footer-inner { padding: 32px 16px 20px; }
  .land-footer-bottom { padding: 12px 16px; }
  .social-proof-sec { padding: 32px 16px; }
}
