/* StarBooking Sales Page — static HTML, no build step */
/* Skip link (a11y + SEO crawl hint) */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; left: 1rem; top: 1rem; z-index: 9999; width: auto; height: auto;
  padding: .75rem 1rem; background: var(--navy); color: #fff; border-radius: 8px;
  font-size: .875rem; font-weight: 600; text-decoration: none;
}

:root {
  --navy: #003580;
  --blue: #0071c2;
  --blue-light: #006ce4;
  --orange: #ff5a1f;
  --orange-light: #ff7a45;
  --green: #008009;
  --gold: #ffb800;
  --surface: #f8fafc;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,53,128,.06);
  --shadow-lg: 0 20px 60px rgba(0,53,128,.15), 0 4px 16px rgba(0,0,0,.08);
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.font-display { font-family: var(--font-display); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: 12px; font-weight: 700; font-size: .9375rem;
  border: none; cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; box-shadow: 0 4px 14px rgba(255,90,31,.35);
}
.btn-outline {
  background: transparent; color: var(--blue); border: 2px solid var(--blue);
}
.btn-white { background: #fff; color: var(--navy); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,.85);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .85rem; border-radius: 999px; font-size: .75rem; font-weight: 700;
}
.badge-orange { background: #fff7ed; color: var(--orange); border: 1px solid #fed7aa; }

.check-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--green); }
.check-icon--orange { color: var(--orange); }
.check-icon--muted { color: #cbd5e1; }

.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(0,26,64,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 1rem;
}
.nav__brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.125rem; }
.nav__logo {
  width: 36px; height: 36px; border-radius: 12px; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.nav__logo svg { width: 20px; height: 20px; color: var(--navy); }
.nav__gold { color: var(--gold); }
.nav__links { display: none; gap: .25rem; }
.nav__links a {
  padding: .5rem 1rem; border-radius: 12px; font-size: .875rem;
  color: rgba(255,255,255,.75); transition: background .2s, color .2s;
}
.nav__links a:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav__actions { display: flex; align-items: center; gap: .5rem; }
.nav__demo { display: none; font-size: .875rem; color: rgba(255,255,255,.55); }
.nav__demo:hover { color: #fff; }
.nav__burger { display: flex; padding: .5rem; color: #fff; cursor: pointer; background: none; border: none; }
.nav__burger svg { width: 24px; height: 24px; }
#nav-toggle { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.mobile-nav {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .75rem 1.25rem 1rem;
}
.mobile-nav a {
  display: block; padding: .75rem 1rem; color: rgba(255,255,255,.9);
  border-radius: 12px; font-size: .9375rem;
}
.mobile-nav a:hover { background: rgba(255,255,255,.1); }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__demo { display: inline-flex; }
  .nav__burger { display: none; }
  .mobile-nav { display: none !important; }
}

.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 5rem 0 3rem; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,113,194,.25), transparent),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(255,90,31,.12), transparent),
    linear-gradient(180deg, #001a40 0%, var(--navy) 40%, #004a99 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; opacity: .4;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero__pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 999px; font-size: .875rem; color: #fff;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); margin-bottom: 1.5rem;
}
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800; color: #fff; line-height: 1.08; letter-spacing: -.02em; margin: 0;
}
.hero__gold { display: block; color: var(--gold); margin-top: .25rem; }
.hero__desc { color: rgba(255,255,255,.7); font-size: 1.125rem; max-width: 32rem; margin: 1.5rem 0 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0; }
.hero__stat-lbl { font-size: .875rem; color: rgba(255,255,255,.5); margin: 0; }
.hero__visual { position: relative; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero__glow {
  position: absolute; inset: -16px; border-radius: 24px; opacity: .5;
  box-shadow: 0 0 80px rgba(0,113,194,.35), 0 0 40px rgba(255,90,31,.15);
}
.hero__float-card {
  position: absolute; bottom: -24px; left: -16px; width: 200px;
  background: #fff; border-radius: var(--radius); padding: .75rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  animation: float 6s ease-in-out 2s infinite; display: none;
}
@media (min-width: 640px) { .hero__float-card { display: block; } }

.browser {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(226,232,240,.8);
}
.browser--dark .browser__body { background: #020617; }
.browser__bar {
  display: flex; align-items: center; gap: .5rem; padding: .75rem 1rem;
  background: #f1f5f9; border-bottom: 1px solid var(--border);
}
.browser--dark .browser__bar { background: #0f172a; border-color: #1e293b; }
.browser__dots { display: flex; gap: 6px; }
.browser__dots span { width: 12px; height: 12px; border-radius: 50%; }
.browser__dots span:nth-child(1){background:#f87171}
.browser__dots span:nth-child(2){background:#fbbf24}
.browser__dots span:nth-child(3){background:#34d399}
.browser__url {
  flex: 1; max-width: 280px; margin: 0 auto; padding: .35rem .75rem;
  border-radius: 8px; font-size: .6875rem; text-align: center;
  background: #fff; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.browser--dark .browser__url { background: #1e293b; color: #94a3b8; }

.trust { background: #fff; border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.trust__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem;
  font-size: .875rem; color: var(--muted);
}
.trust__list li { display: flex; align-items: center; gap: .5rem; }
.trust__list svg { width: 16px; height: 16px; color: var(--green); }

.section { padding: 5rem 0; }
.section--white { background: #fff; }
.section--dots {
  background-color: var(--surface);
  background-image: radial-gradient(circle, rgba(0,113,194,.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.section__head { text-align: center; max-width: 40rem; margin: 0 auto 3.5rem; }
.section__title {
  font-family: var(--font-display); font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin: .75rem 0 0;
}
.section__desc { color: var(--muted); font-size: 1.125rem; margin: 1rem 0 0; }

.modules { display: flex; flex-direction: column; gap: .75rem; }
.module {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .2s;
}
.module.is-open { box-shadow: var(--shadow-lg); }
.module__head {
  width: 100%; display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left;
}
.module__head:hover { background: #f8fafc; }
.module__icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.module__icon svg { width: 24px; height: 24px; }
.module__icon--blue { background: rgba(0,113,194,.1); color: var(--blue); }
.module__icon--navy { background: rgba(0,53,128,.1); color: var(--navy); }
.module__icon--green { background: #d1fae5; color: #059669; }
.module__icon--amber { background: #fef3c7; color: #d97706; }
.module__icon--orange { background: #ffedd5; color: var(--orange); }
.module__icon--emerald { background: #d1fae5; color: #047857; }
.module__icon--purple { background: #ede9fe; color: #7c3aed; }
.module__meta { flex: 1; min-width: 0; }
.module__tag {
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--blue); margin: 0 0 .25rem;
}
.module__title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--navy); margin: 0; }
.module__summary { font-size: .875rem; color: var(--muted); margin: .35rem 0 0; }
.module__chevron {
  width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: .25rem;
  transition: transform .25s;
}
.module.is-open .module__chevron { transform: rotate(180deg); }
.module__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.module.is-open .module__body { grid-template-rows: 1fr; }
.module__body-inner { overflow: hidden; }
.module__content {
  padding: 1.25rem 1.5rem 1.5rem 5.5rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 640px) { .module__content { padding-left: 1.5rem; } }
.feature-grid {
  display: grid; gap: .75rem 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.feature-grid li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .875rem; color: #475569; line-height: 1.5;
}
.feature-grid li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

.reports-box {
  margin-top: 1.25rem; padding: 1.25rem; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,53,128,.04), rgba(0,113,194,.08));
  border: 1px solid rgba(0,113,194,.15);
}
.reports-box__title {
  font-family: var(--font-display); font-size: .875rem; font-weight: 700;
  color: var(--navy); margin: 0 0 .75rem;
}
.reports-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .5rem;
}
.reports-grid span {
  font-size: .8125rem; color: #475569; padding: .4rem .65rem;
  background: #fff; border-radius: 8px; border: 1px solid var(--border);
}
.reports-export { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.reports-export span {
  font-size: .75rem; font-weight: 600; padding: .25rem .65rem; border-radius: 6px;
  background: var(--navy); color: #fff;
}

.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2rem; }
.tabs__btn {
  padding: .65rem 1.25rem; border-radius: 12px; font-size: .875rem; font-weight: 600;
  border: none; cursor: pointer; background: #f1f5f9; color: var(--muted); transition: all .2s;
}
.tabs__btn.is-active { background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.preview-panel { max-width: 960px; margin: 0 auto; }
.preview-panel[hidden] { display: none; }

.mock-nav { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: .75rem 1rem; display: flex; align-items: center; justify-content: space-between; }
.mock-nav span { color: #fff; font-size: .75rem; font-weight: 700; }
.mock-hero-img { height: 140px; background: linear-gradient(135deg, var(--navy), var(--blue)); position: relative; }
.mock-search { display: flex; gap: .5rem; padding: .75rem; background: #f8fafc; border-radius: 12px; border: 1px solid var(--border); margin: .75rem; }
.mock-search div { flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: .4rem .6rem; }
.mock-search strong { display: block; color: var(--text); font-size: .6875rem; }
.mock-search small { color: var(--muted); font-size: .5625rem; }
.mock-btn-sm { background: var(--orange); color: #fff; padding: .4rem .75rem; border-radius: 8px; font-size: .6875rem; font-weight: 700; align-self: center; white-space: nowrap; }
.mock-rooms { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: 0 .75rem .75rem; }
.mock-room { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.mock-room__img { height: 56px; background: linear-gradient(135deg, #cbd5e1, #94a3b8); }
.mock-room__info { padding: .5rem; font-size: .625rem; }
.mock-room__info strong { display: block; color: var(--navy); }
.mock-room__info em { font-style: normal; color: var(--blue); font-weight: 700; }

.mock-admin { display: flex; min-height: 340px; }
.mock-sidebar { width: 160px; background: #0f172a; border-right: 1px solid #1e293b; padding: .75rem; display: none; }
@media (min-width: 640px) { .mock-sidebar { display: block; } }
.mock-sidebar div { padding: .5rem; border-radius: 8px; font-size: .75rem; color: #64748b; margin-bottom: .25rem; }
.mock-sidebar div.active { background: rgba(0,113,194,.2); color: var(--blue); }
.mock-main { flex: 1; background: #020617; padding: 1rem; }
.mock-banner { background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 12px; padding: 1rem; margin-bottom: .75rem; }
.mock-banner small { color: rgba(255,255,255,.6); font-size: .625rem; }
.mock-banner strong { display: block; color: #fff; font-size: .875rem; margin-top: .25rem; }
.mock-kpi { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; margin-bottom: .75rem; }
@media (min-width: 640px) { .mock-kpi { grid-template-columns: repeat(4, 1fr); } }
.mock-kpi div { background: #0f172a; border: 1px solid #1e293b; border-radius: 12px; padding: .75rem; }
.mock-kpi small { font-size: .5625rem; color: #64748b; text-transform: uppercase; }
.mock-kpi strong { display: block; font-size: 1.125rem; color: #fff; margin-top: .25rem; }
.mock-chart-wrap { background: #0f172a; border: 1px solid #1e293b; border-radius: 12px; padding: 1rem; }
.mock-chart-wrap small { font-size: .75rem; color: #94a3b8; }
.mock-chart { display: flex; align-items: flex-end; gap: 3px; height: 80px; margin-top: .5rem; }
.mock-chart span { flex: 1; background: rgba(0,113,194,.4); border-radius: 4px 4px 0 0; }

.mock-checkout { padding: 1rem; background: #f8fafc; }
.mock-steps { display: flex; justify-content: center; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.mock-step { display: flex; align-items: center; gap: .35rem; font-size: .625rem; color: var(--muted); }
.mock-step-num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .625rem; font-weight: 700; background: #e2e8f0; color: var(--muted); }
.mock-step-num.active { background: var(--blue); color: #fff; }
.mock-checkout-grid { display: grid; gap: .75rem; }
@media (min-width: 640px) { .mock-checkout-grid { grid-template-columns: 3fr 2fr; } }
.mock-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1rem; }
.mock-pay-opt { display: flex; align-items: center; gap: .5rem; padding: .65rem; border: 1px solid var(--border); border-radius: 10px; margin-bottom: .5rem; font-size: .75rem; }
.mock-pay-opt.active { border-color: var(--blue); background: rgba(0,113,194,.05); }
.mock-summary row { display: flex; justify-content: space-between; font-size: .75rem; color: var(--muted); margin-bottom: .35rem; }
.mock-summary-total { display: flex; justify-content: space-between; font-weight: 800; color: var(--navy); border-top: 1px solid var(--border); padding-top: .5rem; margin-top: .5rem; font-size: .8125rem; }

.mock-calendar { padding: 1rem; background: #020617; }
.mock-cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.mock-cal-head strong { color: #fff; font-size: .875rem; }
.mock-legend { display: flex; gap: .35rem; }
.mock-legend span { font-size: .5625rem; padding: .2rem .4rem; border-radius: 4px; }
.mock-cal-table { width: 100%; border-collapse: collapse; font-size: .625rem; }
.mock-cal-table th { color: #64748b; padding: .35rem; text-align: center; }
.mock-cal-table td { padding: 2px; }
.mock-cal-cell { height: 24px; border-radius: 4px; }
.mock-cal-cell.avail { background: rgba(16,185,129,.25); }
.mock-cal-cell.booked { background: rgba(0,113,194,.4); }
.mock-cal-cell.blocked { background: rgba(239,68,68,.3); }

.mock-reports { padding: 1rem; background: #f8fafc; }
.mock-reports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
@media (min-width: 640px) { .mock-reports-grid { grid-template-columns: repeat(5, 1fr); } }
.mock-report-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: .65rem; font-size: .625rem; }
.mock-report-card strong { display: block; color: var(--navy); font-size: .6875rem; margin-bottom: .15rem; }
.mock-report-card span { color: var(--muted); }

.pricing-grid { display: grid; gap: 1.5rem; max-width: 880px; margin: 0 auto; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.price-card--featured {
  border: 2px solid var(--orange); box-shadow: var(--shadow-lg); position: relative;
}
@media (min-width: 768px) { .price-card--featured { transform: translateY(-8px); } }
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: .75rem; font-weight: 700;
  padding: .35rem 1rem; border-radius: 999px; white-space: nowrap;
}
.price-card__header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.price-card__icon { width: 48px; height: 48px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.price-card__icon svg { width: 24px; height: 24px; }
.price-card__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 0; }
.price-card__sub { font-size: .875rem; color: var(--muted); margin: 0; }
.price-card__label { font-size: .875rem; color: var(--muted); }
.price-card__price { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 3rem); font-weight: 800; color: var(--navy); line-height: 1; }
.price-card__note { font-size: .875rem; color: var(--muted); margin: .25rem 0 0; }
.price-card__list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .75rem; }
.price-card__list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: #475569; }
.price-card__list li.muted { color: #94a3b8; }
.price-card .btn { position: relative; z-index: 2; }

.testimonials { background: var(--navy); color: #fff; }
.testimonial-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.5rem;
}
.testimonial__stars { color: var(--gold); margin-bottom: 1rem; display: flex; gap: 2px; }
.testimonial__stars svg { width: 16px; height: 16px; }
.testimonial__text { font-size: .875rem; color: rgba(255,255,255,.8); line-height: 1.65; margin: 0; }
.testimonial__author { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); }
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem;
}
.testimonial__name { font-size: .875rem; font-weight: 600; margin: 0; }
.testimonial__role { font-size: .75rem; color: rgba(255,255,255,.5); margin: 0; }

.faq { display: flex; flex-direction: column; gap: .75rem; max-width: 720px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1rem;
}
.faq-item__btn:hover { background: #f8fafc; }
.faq-item__chevron { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; transition: transform .25s; }
.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }
.faq-item.is-open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__inner { overflow: hidden; }
.faq-item__answer { padding: 0 1.25rem 1.25rem; font-size: .875rem; color: var(--muted); line-height: 1.65; margin: 0; }

.cta {
  background: linear-gradient(135deg, var(--navy), var(--blue) 60%, var(--blue-light));
  padding: 5rem 0; position: relative; overflow: hidden; text-align: center;
}
.cta::before {
  content: ''; position: absolute; inset: 0; opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta__inner { position: relative; }
.cta__title { font-family: var(--font-display); font-size: clamp(1.875rem, 4vw, 2.5rem); font-weight: 800; color: #fff; margin: 0; }
.cta__desc { color: rgba(255,255,255,.7); font-size: 1.125rem; max-width: 36rem; margin: 1rem auto 0; }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }

.footer { background: #0f172a; color: rgba(255,255,255,.6); padding: 2.5rem 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
@media (min-width: 768px) {
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__brand { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 700; color: #fff; }
.footer__links { display: flex; gap: 1.5rem; font-size: .875rem; }
.footer__links a:hover { color: #fff; }

.grad-brand { background: linear-gradient(135deg, var(--navy), var(--blue) 60%, var(--blue-light)); }
.grad-orange { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }

/* Extended sections */
.stats-banner {
  background: var(--navy); color: #fff; padding: 3rem 0;
}
.stats-banner__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center;
}
@media (min-width: 768px) { .stats-banner__grid { grid-template-columns: repeat(4, 1fr); } }
.stats-banner__val {
  font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--gold); margin: 0;
}
.stats-banner__lbl { font-size: .875rem; color: rgba(255,255,255,.65); margin: .35rem 0 0; }

.problem-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.problem-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.problem-card__icon {
  width: 44px; height: 44px; border-radius: 12px; background: #fef2f2;
  color: #dc2626; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.problem-card__icon svg { width: 22px; height: 22px; }
.problem-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 .5rem; }
.problem-card p { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.6; }

.solution-box {
  background: linear-gradient(135deg, var(--navy), #004a99);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem; color: #fff; margin-top: 3rem;
  position: relative; overflow: hidden;
}
.solution-box::before {
  content: ''; position: absolute; inset: 0; opacity: .15;
  background-image: radial-gradient(circle, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 24px 24px;
}
.solution-box__inner { position: relative; display: grid; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .solution-box__inner { grid-template-columns: 1fr 1fr; } }
.solution-box h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin: 0 0 1rem; }
.solution-box p { color: rgba(255,255,255,.75); font-size: .9375rem; line-height: 1.7; margin: 0 0 .75rem; }
.solution-list { display: flex; flex-direction: column; gap: .65rem; }
.solution-list li {
  display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: rgba(255,255,255,.9);
}
.solution-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.audience-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.audience-card {
  text-align: center; padding: 1.75rem 1.25rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.audience-card__emoji { font-size: 2rem; margin-bottom: .75rem; }
.audience-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 .35rem; }
.audience-card p { font-size: .8125rem; color: var(--muted); margin: 0; line-height: 1.5; }

.steps-row {
  display: grid; gap: 1.5rem; counter-reset: step;
}
@media (min-width: 768px) { .steps-row { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 1.25rem; box-shadow: var(--shadow);
}
.step-card::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -14px; left: 1.25rem;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 800; font-size: .8125rem;
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 { font-family: var(--font-display); font-size: .9375rem; font-weight: 700; color: var(--navy); margin: .5rem 0 .5rem; }
.step-card p { font-size: .8125rem; color: var(--muted); margin: 0; line-height: 1.55; }

.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.compare-table { width: 100%; min-width: 560px; border-collapse: collapse; background: #fff; font-size: .875rem; }
.compare-table thead { background: var(--navy); color: #fff; }
.compare-table th { padding: 1rem 1.25rem; text-align: left; font-weight: 700; }
.compare-table th:last-child { background: rgba(0,113,194,.5); }
.compare-table td { padding: .875rem 1.25rem; border-bottom: 1px solid var(--border); color: #475569; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--navy); }
.compare-table .yes { color: var(--green); font-weight: 700; }
.compare-table .no { color: #94a3b8; }

.benefits-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.benefit-card {
  display: flex; gap: 1rem; padding: 1.5rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
}
.benefit-card__icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(0,113,194,.1); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.benefit-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 .35rem; }
.benefit-card p { font-size: .8125rem; color: var(--muted); margin: 0; line-height: 1.6; }

.process-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.process-item {
  display: flex; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border);
}
.process-item:last-child { border-bottom: none; }
.process-item__num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.process-item h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 .35rem; }
.process-item p { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.6; }

.guarantee-box {
  margin-top: 3rem; padding: 2rem; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ecfdf5, #d1fae5); border: 1px solid #a7f3d0;
  text-align: center; max-width: 720px; margin-left: auto; margin-right: auto;
}
.guarantee-box h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: #065f46; margin: 0 0 .5rem; }
.guarantee-box p { font-size: .9375rem; color: #047857; margin: 0; line-height: 1.65; }

.nav__brand-long { font-size: 1rem; line-height: 1.2; }
@media (min-width: 480px) { .nav__brand-long { font-size: 1.125rem; } }

.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float__label {
  position: absolute; right: calc(100% + 10px); white-space: nowrap;
  background: #fff; color: var(--navy); font-size: .8125rem; font-weight: 700;
  padding: .5rem .75rem; border-radius: 10px; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-float:hover .wa-float__label { opacity: 1; }

.footer__wa {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .875rem; color: #25d366; font-weight: 600;
}
.footer__wa:hover { color: #128c7e; }
