:root{
  --navy:#223048;
  --teal:#3CB4A0;
  --blue:#2878A0;

  --bg:#F7FAFC;
  --card:#FFFFFF;
  --text:#0F172A;
  --muted:#64748B;
  --border:#E2E8F0;

  --shadow:0 18px 60px rgba(15,23,42,.10);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Plus Jakarta Sans","Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(1160px, calc(100% - 44px));
  margin:0 auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:14px;
  background:var(--navy);
  color:#fff;
  font-weight:800;
  border:1px solid transparent;
  box-shadow:0 12px 34px rgba(34,48,72,.18);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 40px rgba(34,48,72,.22);
}

.btn:active{
  transform:translateY(0);
}

.btn.full{width:100%}

.btn.ghost{
  background:rgba(255,255,255,.75);
  color:var(--navy);
  border:1px solid var(--border);
  box-shadow:none;
}

.topbar{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid var(--border);
  box-shadow:0 8px 18px rgba(15,23,42,.05);
  z-index:1000;
  margin-bottom:12px;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  flex-wrap:nowrap;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand-logo{
  display:block;
  width:auto;
  height:72px;
  max-width:none;
}

.nav{
  display:flex;
  gap:24px;
  align-items:center;
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}

.nav a{
  padding:8px 14px;
  border-radius:12px;
}

.nav a:hover{
  background:#fff;
  color:var(--text);
}

.topbar-cta{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

.topbar-cta .btn{
  white-space:nowrap;
  padding:12px 18px;
  border-radius:14px;
}

.hero{
  padding:64px 0 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(60,180,160,0.12), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(40,120,160,0.08), transparent 60%);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(360px,460px);
  gap:34px;
  align-items:start;
}

.hero-right{
  justify-self:end;
  width:min(100%, 460px);
  margin-left:0;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.6);
  border:1px solid rgba(60,180,160,.25);
  font-size:13px;
  font-weight:700;
  color:var(--navy);
  backdrop-filter:blur(6px);
  white-space:nowrap;
}

.pill-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#2ecc71;
  box-shadow:0 0 0 4px rgba(46,204,113,.15);
}

h1{
  margin:16px 0 12px;
  font-size:clamp(34px, 4.2vw, 56px);
  line-height:1.05;
  letter-spacing:-.02em;
  color:var(--navy);
}

.grad{
  background:linear-gradient(90deg, var(--blue), var(--teal));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{
  margin:0;
  color:var(--muted);
  font-size:17px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:22px;
}

.hero-feature-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  margin-bottom:12px;
  flex-wrap:nowrap;
}

.hero-feature-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:14px;
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(60,180,160,.18);
  box-shadow:0 10px 28px rgba(15,23,42,.05);
  backdrop-filter:blur(10px);
  white-space:nowrap;
}

.hero-feature-icon{
  width:28px;
  height:28px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(60,180,160,.16), rgba(43,108,176,.12));
  font-size:14px;
  flex:0 0 auto;
}

.hero-feature-text{
  font-size:14px;
  font-weight:750;
  color:var(--navy);
  line-height:1.2;
  white-space:nowrap;
}

@media (max-width:1200px){
  .hero-feature-row{
    flex-wrap:wrap;
  }
}

.hero-benefits-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:20px;
}

.hero-benefit-card{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px 16px 15px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(60,180,160,.22);
  border-radius:18px;
  box-shadow:0 10px 28px rgba(15,23,42,.05);
  backdrop-filter:blur(10px);
  transition:all .25s ease;
}

.hero-benefit-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(15,23,42,.08);
}

.hero-benefit-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  background:linear-gradient(135deg, rgba(60,180,160,.16), rgba(43,108,176,.12));
  flex:0 0 auto;
}

.hero-benefit-content{min-width:0}

.hero-benefit-title{
  color:var(--navy);
  font-size:16px;
  font-weight:900;
  line-height:1.2;
  margin-bottom:4px;
}

.hero-benefit-text{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  line-height:1.45;
}

.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:22px;
}

.hero-metric{
  background:rgba(255,255,255,0.88);
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px 18px 16px;
  box-shadow:0 12px 30px rgba(15,23,42,.06);
  backdrop-filter:blur(10px);
}

.hero-metric.featured{
  border-color:rgba(60,180,160,.28);
  box-shadow:0 18px 40px rgba(60,180,160,.10);
}

.hero-metric-label{
  font-size:13px;
  font-weight:800;
  color:var(--muted);
  margin-bottom:8px;
}

.hero-metric-value{
  font-size:22px;
  line-height:1.1;
  font-weight:900;
  color:var(--navy);
  letter-spacing:-.02em;
}

.hero-metric-sub{
  margin-top:8px;
  font-size:14px;
  line-height:1.4;
  font-weight:700;
  color:var(--muted);
}

.hero-steps{
  margin-top:18px;
  padding:16px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(60,180,160,.2);
  border-radius:20px;
  box-shadow:0 12px 28px rgba(15,23,42,.05);
  backdrop-filter:blur(8px);
}

.hero-steps-head{
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:rgba(34,48,72,.78);
  margin-bottom:12px;
}

.hero-steps-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}

.hero-step-card{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 10px 12px 12px;
  min-height:88px;
}

.hero-step-content{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-step-index{
  width:24px;
  height:24px;
  border-radius:999px;
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:900;
  color:var(--navy);
  background:linear-gradient(135deg, rgba(60,180,160,.2), rgba(43,108,176,.18));
}

.hero-step-card h3{
  margin:0;
  color:var(--navy);
  font-size:13px;
  line-height:1.15;
  white-space:nowrap;
}

.hero-step-card p{
  margin:5px 0 0;
  color:var(--muted);
  font-size:11px;
  line-height:1.35;
  font-weight:700;
}

.fineprint{
  margin-top:10px;
  color:#94A3B8;
  font-size:12px;
  font-weight:700;
}

.hero-card{
  background:#fff;
  border:1px solid rgba(226,232,240,.85);
  border-radius:24px;
  box-shadow:0 24px 70px rgba(15,23,42,.10);
  overflow:hidden;
}

.hero-card-head{
  padding:18px 20px 16px;
  border-bottom:1px solid rgba(226,232,240,.85);
  background:
    radial-gradient(circle at 12% 0%, rgba(60,180,160,.18), transparent 60%),
    radial-gradient(circle at 88% 0%, rgba(40,120,160,.14), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,1));
}

.hero-card-title{
  font-weight:950;
  font-size:20px;
  letter-spacing:-0.015em;
  color:var(--navy);
  margin:0;
}

.hero-card-sub{
  margin-top:5px;
  font-size:13px;
  font-weight:650;
  color:rgba(100,116,139,.95);
}

.form{
  padding:16px 18px 18px;
  display:grid;
  gap:10px;
}

.form label span{
  display:block;
  font-size:12px;
  font-weight:850;
  letter-spacing:.02em;
  color:rgba(34,48,72,.95);
  margin-bottom:5px;
}

input,textarea,select{
  width:100%;
  border:1px solid rgba(226,232,240,.95);
  border-radius:12px;
  padding:10px 12px;
  min-height:44px;
  font:inherit;
  font-size:15px;
  background:rgba(255,255,255,.96);
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease, transform .08s ease;
}

input::placeholder,
textarea::placeholder{
  color:rgba(100,116,139,.70);
  font-weight:650;
}

input:focus,
textarea:focus,
select:focus{
  border-color:rgba(60,180,160,.90);
  box-shadow:
    0 0 0 5px rgba(60,180,160,.14),
    0 14px 40px rgba(15,23,42,.10);
}

select{
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(34,48,72,.65) 50%),
    linear-gradient(135deg, rgba(34,48,72,.65) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
  padding-right:40px;
}

textarea{
  min-height:92px;
  resize:vertical;
}

.consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(100,116,139,.95);
  font-size:12.5px;
  line-height:1.35;
  padding-top:2px;
}

.consent input{
  width:16px;
  height:16px;
  min-height:auto;
  margin-top:2px;
  accent-color:var(--teal);
}

.consent a{
  color:var(--blue);
  font-weight:900;
}

.mini{
  text-align:center;
  color:rgba(100,116,139,.95);
  font-size:13px;
  font-weight:750;
  margin-top:-2px;
}

.mini a{
  color:var(--blue);
  font-weight:900;
  text-decoration:underline;
  text-underline-offset:3px;
}

.form .btn.full{
  min-height:46px;
  border-radius:12px;
  font-weight:950;
  letter-spacing:.01em;
  box-shadow:0 16px 48px rgba(34,48,72,.24);
}

.form .btn.full:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 60px rgba(34,48,72,.28);
  filter:brightness(1.02);
}

.form .btn.full:active{
  transform:translateY(0);
  box-shadow:0 12px 34px rgba(34,48,72,.20);
}

.form-msg{
  display:none;
  padding:10px 12px;
  border-radius:14px;
  font-weight:900;
  font-size:13px;
}

.form-msg.ok{
  display:block;
  background:rgba(22,163,74,.10);
  color:#166534;
  border:1px solid rgba(22,163,74,.25);
}

.form-msg.err{
  display:block;
  background:rgba(239,68,68,.10);
  color:#991B1B;
  border:1px solid rgba(239,68,68,.25);
}

.field-error{
  display:none;
  margin-top:6px;
  font-size:13px;
  font-weight:700;
  color:#d93025;
}

.field-error.show{display:block}

input.input-error,
select.input-error,
textarea.input-error{
  border-color:#d93025 !important;
  box-shadow:0 0 0 4px rgba(217,48,37,.10) !important;
}

.privacy-error{
  display:none;
  margin-top:8px;
  font-size:14px;
  font-weight:700;
  color:#d93025;
}

.privacy-error.show{display:block}

.consent.error{
  outline:2px solid #d93025;
  border-radius:8px;
  padding:6px;
}

.section{
  padding:56px 0;
}

.section.alt{
  background:#fff;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:18px;
}

.section-head h2{
  margin:0;
  max-width:420px;
  font-size:28px;
  letter-spacing:-.02em;
  line-height:1.05;
  color:var(--navy);
}

.section-head p{
  margin:0;
  max-width:620px;
  text-align:right;
  color:var(--muted);
  font-weight:700;
  line-height:1.55;
}

.cta-row{
  display:flex;
  gap:12px;
  margin-top:16px;
  flex-wrap:wrap;
}

.service-grid,
.why-grid,
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.service,
.why-card,
.testi{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.service-ico{font-size:24px}

.service h3,
.why-card h3{
  margin:8px 0 6px;
  color:var(--navy);
}

.service p,
.why-card p,
.testi p{
  margin:0;
  color:var(--muted);
  font-weight:700;
}

.why-section{background:#f7fafc}

.why-grid{
  gap:20px;
  margin-top:20px;
}

.why-card{
  padding:26px;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
  transition:all .25s ease;
}

.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.why-icon{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-size:18px;
  margin-bottom:12px;
  background:linear-gradient(135deg,#3cb4a0,#2b6cb0);
  color:#fff;
}

.why-card h3{
  margin:0 0 8px;
  font-size:20px;
}

.why-card p{
  line-height:1.6;
  font-weight:600;
}

.trust-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:6px 0 22px;
}

.trust-metric{
  background:linear-gradient(180deg, #ffffff, rgba(247,250,252,0.92));
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px 20px;
  text-align:center;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
  transition:all .25s ease;
}

.trust-metric:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.trust-metric-value{
  font-size:34px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.03em;
  color:var(--navy);
  margin-bottom:8px;
}

.trust-metric-label{
  font-size:15px;
  font-weight:700;
  color:var(--muted);
  line-height:1.4;
}

.journey{
  margin-top:16px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:14px;
}

.journey-left,
.journey-right{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.journey h3{
  margin:0 0 8px;
  color:var(--navy);
}

.journey-steps{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  font-weight:800;
}

.journey-block{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:20px;
  margin-top:26px;
}

.journey-card,
.journey-quote{
  background:#fff;
  border-radius:18px;
  border:1px solid var(--border);
  padding:26px;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.journey-card h3{margin-top:0}

.journey-steps{
  display:grid;
  gap:14px;
  margin-top:14px;
  padding-left:0;
}

.step{
  display:flex;
  align-items:center;
  gap:12px;
}

.step-number{
  width:32px;
  height:32px;
  border-radius:50%;
  background:linear-gradient(135deg,#3cb4a0,#2b6cb0);
  color:#fff;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
}

.step-text{
  font-weight:700;
  color:var(--navy);
}

.quote{
  font-size:18px;
  font-weight:800;
  color:var(--navy);
  margin:0;
}

.quote-sub,
.quote-author{
  margin-top:10px;
  font-size:14px;
  color:var(--muted);
  font-weight:700;
}

.guides-section{background:#f7fafc}

.guides-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:20px;
}

.guide-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
  transition:all .25s ease;
  position:relative;
  overflow:hidden;
}

.guide-card-link{
  display:block;
  height:100%;
  padding:22px 20px 20px;
  color:inherit;
  text-decoration:none;
}

.guide-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.guide-card.featured{
  border-color:rgba(60,180,160,.35);
  box-shadow:0 18px 45px rgba(60,180,160,.10);
}

.guide-card.featured::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--teal),var(--blue));
}

.guide-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(60,180,160,.10);
  border:1px solid rgba(60,180,160,.22);
  color:var(--navy);
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  margin-bottom:14px;
}

.guide-card h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.25;
  letter-spacing:-.02em;
}

.guide-card-link h3{
  color:var(--navy);
}

.guide-card-link:hover h3{
  text-decoration:underline;
}

.guide-card p{
  margin:0;
  color:var(--muted);
  font-weight:700;
  line-height:1.65;
}

.testimonials-section{background:#ffffff}

.testimonials-premium-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:20px;
}

.testimonial-premium-card{
  background:linear-gradient(180deg,#ffffff,rgba(247,250,252,0.92));
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px 22px;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
  transition:all .25s ease;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:260px;
}

.testimonial-premium-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.testimonial-premium-card.featured{
  border-color:rgba(60,180,160,.35);
  box-shadow:0 18px 45px rgba(60,180,160,.10);
  position:relative;
  overflow:hidden;
}

.testimonial-premium-card.featured::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--teal),var(--blue));
}

.testimonial-stars{
  color:#f5b301;
  letter-spacing:.14em;
  font-size:16px;
  font-weight:900;
  margin-bottom:14px;
}

.testimonial-text{
  margin:0;
  color:var(--navy);
  font-size:17px;
  line-height:1.75;
  font-weight:700;
  flex:1;
}

.testimonial-footer{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
}

.testimonial-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--teal),var(--blue));
  color:#fff;
  font-weight:900;
  font-size:16px;
  flex:0 0 auto;
}

.testimonial-name{
  color:var(--navy);
  font-weight:900;
  font-size:15px;
}

.testimonial-city{
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}

.testimonials-cta{
  justify-content:center;
  margin-top:24px;
}

.testi-grid .stars{
  color:#F59E0B;
  font-weight:1000;
  letter-spacing:.06em;
}

.who{
  color:var(--navy);
  font-weight:900;
}

.results-showcase{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:22px;
  margin-top:20px;
  align-items:stretch;
}

.result-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:22px;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  box-shadow:0 16px 40px rgba(15,23,42,.05);
}

.result-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

.result-head h3{
  margin:0;
  font-size:28px;
  line-height:1.1;
  color:var(--navy);
  letter-spacing:-.02em;
}

.result-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.result-meta span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(247,250,252,.9);
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

/* BEFORE / AFTER */
.ba{
  position:relative;
  width:100%;
  aspect-ratio:4 / 3;
  overflow:hidden;
  border-radius:22px;
  background:#eaf1f7;
  user-select:none;
  touch-action:none;
}

@media (max-width: 900px){
  .results-showcase{
    grid-template-columns:1fr;
  }
}

.ba-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ba-after-wrap{
  position:absolute;
  inset:0 auto 0 0;
  width:55%;
  height:100%;
  overflow:hidden;
  z-index:2;
}

.ba-after-wrap .ba-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.ba-divider{
  position:absolute;
  top:0;
  bottom:0;
  left:55%;
  width:3px;
  transform:translateX(-50%);
  background:rgba(36,49,83,.35);
  z-index:3;
}

.ba-handle{
  position:absolute;
  top:50%;
  left:55%;
  transform:translate(-50%, -50%);
  width:62px;
  height:62px;
  border-radius:50%;
  background:#fff;
  border:1px solid rgba(36,49,83,.08);
  box-shadow:0 12px 30px rgba(15,23,42,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:900;
  color:var(--navy);
  z-index:4;
  pointer-events:none;
}

.ba-range{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:ew-resize;
  z-index:5;
}

.price-compare-premium{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:10px;
}

.price-premium-card{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:0 20px 50px rgba(15,23,42,.08);
  padding:22px 20px 18px;
  display:flex;
  flex-direction:column;
  gap:16px;
  position:relative;
  overflow:hidden;
}

.price-premium-card.featured{
  border-color:rgba(60,180,160,.35);
  box-shadow:0 24px 60px rgba(60,180,160,.12);
}

.price-premium-card.featured::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, var(--teal), var(--blue));
}

.price-premium-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.price-premium-kicker{
  font-size:12px;
  font-weight:800;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:6px;
}

.price-premium-top h3{
  margin:0;
  font-size:24px;
  line-height:1.1;
  color:var(--navy);
  letter-spacing:-.02em;
}

.price-saving{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(60,180,160,.12);
  border:1px solid rgba(60,180,160,.25);
  color:var(--navy);
  font-size:12px;
  font-weight:900;
}

.price-premium-body{
  display:grid;
  gap:12px;
}

.price-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 14px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
}

.price-line.highlight{
  background:linear-gradient(180deg, rgba(60,180,160,.10), rgba(40,120,160,.05));
  border-color:rgba(60,180,160,.28);
}

.price-label{
  font-size:14px;
  font-weight:800;
  color:var(--muted);
}

.price-value{
  font-size:20px;
  font-weight:900;
  color:var(--navy);
  text-align:right;
  line-height:1.1;
}

.price-premium-footer{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  line-height:1.5;
}

.price-note{
  margin-top:16px;
  text-align:center;
  color:#7c8aa5;
  font-size:13px;
  font-weight:700;
}

.price-cta{
  justify-content:center;
  margin-top:20px;
}

.faq-section{background:#f7fafc}

.faq-premium{
  display:grid;
  gap:14px;
  margin-top:20px;
}

.faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
  overflow:hidden;
  transition:all .25s ease;
}

.faq-item:hover{
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.faq-item[open]{
  border-color:rgba(60,180,160,.30);
  box-shadow:0 18px 45px rgba(60,180,160,.10);
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px;
  font-size:18px;
  font-weight:800;
  color:var(--navy);
}

.faq-item summary::-webkit-details-marker{display:none}

.faq-icon{
  width:26px;
  height:26px;
  border-radius:50%;
  border:1px solid var(--border);
  position:relative;
  flex:0 0 auto;
  background:#fff;
}

.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:12px;
  height:2px;
  background:var(--navy);
  transform:translate(-50%, -50%);
  border-radius:2px;
}

.faq-icon::after{
  transform:translate(-50%, -50%) rotate(90deg);
  transition:opacity .2s ease;
}

.faq-item[open] .faq-icon::after{opacity:0}

.faq-answer{
  padding:0 22px 20px;
  color:var(--muted);
  font-weight:700;
  line-height:1.75;
  font-size:16px;
}

.faq-cta{
  justify-content:center;
  margin-top:24px;
}

.footer{
  padding:34px 0;
  background:var(--navy);
  color:rgba(255,255,255,.92);
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr auto 1.2fr;
  gap:18px;
  align-items:start;
}

.footer-brand{
  font-weight:1000;
  font-size:18px;
}

.footer-sub{opacity:.85}

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.footer-links a{opacity:.9}

.footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}

.footer-note{
  opacity:.85;
  font-size:12.5px;
  font-weight:700;
}

/* Popup */
.popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:1000;
}

.popup-content{
  background:white;
  padding:30px;
  max-width:400px;
  margin:15% auto;
  border-radius:10px;
  text-align:center;
  position:relative;
}

#closePopup{
  position:absolute;
  top:10px;
  right:15px;
  cursor:pointer;
  font-size:18px;
}

.popup-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  padding:14px 26px;
  background:var(--navy);
  color:#fff;
  font-weight:800;
  font-size:16px;
  border-radius:999px;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(15,23,42,.25);
  transition:all .2s ease;
}

.popup-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 35px rgba(15,23,42,.30);
}

/* WhatsApp */
.wa-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:999;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px 12px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,#25D366,#1ebea5);
  color:#ffffff;
  text-decoration:none;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.18),
    0 2px 8px rgba(37,211,102,0.20);
  transition:all .25s ease;
}

.wa-float:hover{
  transform:translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.22),
    0 4px 10px rgba(37,211,102,0.24);
}

.wa-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.16);
  font-size:18px;
  flex:0 0 auto;
}

.wa-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.wa-label{
  font-size:16px;
  font-weight:900;
  color:#fff;
}

.wa-sub{
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,0.9);
  margin-top:3px;
}

#form{scroll-margin-top:100px}

/* Responsive */
@media (min-width:1200px){
  .brand-logo{height:82px}
}

@media (max-width:1100px){
  .guides-grid,
  .testimonials-premium-grid,
  .price-compare-premium{
    grid-template-columns:repeat(2,1fr);
  }

  .price-premium-top h3{
    font-size:22px;
  }

  .price-value{
    font-size:18px;
  }
}

@media (max-width:980px){
  .nav{display:none}

  .section{
    padding-top:48px;
    padding-bottom:48px;
  }

  .container{
    width:min(1160px, calc(100% - 32px));
  }

  .topbar-inner{
    padding:10px 0;
    gap:10px;
  }

  .brand-logo{
    height:48px;
  }

  .topbar-cta .btn{
    padding:10px 14px;
    font-size:14px;
    border-radius:12px;
  }

  .hero{
    padding-top:28px;
    padding-bottom:32px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .hero-right{
    justify-self:stretch;
    width:100%;
  }

  .hero-left{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .hero h1{
    font-size:clamp(40px, 10vw, 56px);
    line-height:1.03;
    letter-spacing:-.04em;
    margin:0;
  }

  .pill{
    font-size:12px;
    padding:6px 10px;
    margin-bottom:2px;
    width:fit-content;
    max-width:100%;
  }

  .lead{
    font-size:17px;
    line-height:1.65;
    margin:0;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    margin-top:6px;
  }

  .hero-actions .btn{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .hero-feature-row{
    flex-wrap:wrap;
  }

  .hero-feature-pill{
    width:100%;
    padding:12px 14px;
    border-radius:16px;
  }

  .hero-feature-text{
    font-size:14px;
    white-space:normal;
  }

  .hero-benefits-cards,
  .hero-metrics,
  .hero-steps-grid,
  .service-grid,
  .why-grid,
  .guides-grid,
  .testimonials-premium-grid,
  .price-compare-premium,
  .trust-metrics,
  .journey-block,
  .testi-grid{
    grid-template-columns:1fr !important;
    gap:16px;
  }

  .hero-metric{
    border-radius:18px;
    padding:16px 16px 14px;
  }

  .hero-metric-value{
    font-size:20px;
  }

  .hero-metric-sub{
    font-size:13px;
  }

  .hero-card{
    border-radius:20px;
  }

  .hero-card-head{
    padding:16px 16px 14px;
  }

  .hero-card-title{
    font-size:24px;
    line-height:1.1;
  }

  .hero-card-sub{
    font-size:14px;
    line-height:1.45;
  }

  .form{
    padding:16px 16px 18px;
  }

  .form label span{
    font-size:14px;
  }

  .form input,
  .form select,
  .form textarea{
    font-size:16px;
  }

  .service,
  .why-card,
  .guide-card,
  .testimonial-premium-card,
  .price-premium-card,
  .trust-metric,
  .journey-card,
  .journey-quote{
    border-radius:20px;
    padding:20px 18px;
  }

  .service h3,
  .why-card h3,
  .guide-card h3{
    font-size:18px;
    line-height:1.25;
  }

  .service p,
  .why-card p,
  .guide-card p{
    font-size:15px;
    line-height:1.6;
  }

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

  .journey-steps{
    gap:12px;
  }

  .step-text{
    font-size:15px;
    line-height:1.45;
  }

  .quote{
    font-size:18px;
    line-height:1.5;
  }

  .guide-tag{
    font-size:12px;
    padding:6px 10px;
  }

  .testimonial-text{
    font-size:16px;
    line-height:1.7;
  }

  .testimonial-footer{
    margin-top:16px;
  }

  .result-card{
    padding:16px;
    border-radius:20px;
  }

  .result-head{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .result-head h3{
    font-size:22px;
  }

  .result-meta{
    justify-content:flex-start;
    gap:8px;
  }

  .result-meta span{
    font-size:12px;
    padding:7px 10px;
  }

  .ba{
    aspect-ratio:4 / 5;
    border-radius:18px;
  }

  .ba-handle{
    width:54px;
    height:54px;
    font-size:24px;
  }

  .price-premium-top{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .price-line{
    align-items:flex-start;
    flex-direction:column;
    gap:6px;
  }

  .price-value{
    text-align:left;
  }

  .price-note{
    text-align:left;
    font-size:13px;
    line-height:1.5;
  }

  .price-cta .btn{
    width:100%;
  }

  .faq-item summary{
    font-size:17px;
    line-height:1.35;
    padding:18px 18px;
  }

  .faq-answer{
    padding:0 18px 18px;
    font-size:15px;
    line-height:1.65;
  }

  .section-head{
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap:12px;
    margin-bottom:18px;
  }

  .section-head h2{
    width:100%;
    max-width:none;
    text-align:left;
    font-size:clamp(34px, 9vw, 54px);
    line-height:1.02;
    letter-spacing:-.03em;
  }

  .section-head p{
    width:100%;
    max-width:100%;
    text-align:left;
    font-size:16px;
    line-height:1.55;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:18px;
  }

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

  .wa-float{
    right:16px;
    bottom:16px;
    padding:10px 16px 10px 12px;
    gap:8px;
  }

  .wa-icon{
    width:30px;
    height:30px;
    font-size:16px;
  }

  .wa-label{
    font-size:15px;
  }

  .wa-sub{
    font-size:11px;
  }

  .popup-content{
    margin:28% 16px 0;
    max-width:none;
    padding:24px 20px;
  }
}

@media (max-width:640px){
  .brand-logo{
    height:42px;
  }
}

@media (max-width:760px){
  .guides-grid{
    grid-template-columns:1fr;
  }
}
/* ===== FINAL HEADER FIX ===== */

.topbar{
  margin-bottom: 8px;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:24px;
  padding:8px 0;
  flex-wrap:nowrap;
}

.brand{
  display:flex;
  align-items:center;
  flex:0 1 auto;
  min-width:0;
  padding-right:0;
}

.nav{
  flex:1 1 auto;
  justify-content:center;
}

.brand-logo{
  display:block;
  width:auto;
  height:112px;
  max-width:none;
  transform:scale(2);
  transform-origin:left center;
}

.topbar-cta{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}

.topbar-cta .btn{
  padding:10px 14px;
  font-size:14px;
  line-height:1;
  border-radius:12px;
  white-space:nowrap;
  box-shadow:0 8px 22px rgba(34,48,72,.14);
}

@media (max-width:980px){
  .topbar-inner{
    padding:6px 0;
    gap:10px;
  }

  .brand{
    padding-right:0;
  }

  .brand-logo{
    height:78px;
    transform:scale(2);
  }

  .topbar-cta .btn{
    padding:9px 12px;
    font-size:13px;
    border-radius:11px;
  }
}

@media (max-width:640px){
  .brand{
    padding-right:0;
  }

  .brand-logo{
    height:62px;
    transform:scale(2);
  }

  .topbar-cta .btn{
    padding:8px 11px;
    font-size:12px;
  }
}
