/* ============================================================
   Prakala Wealth — Landing Page
   ============================================================ */
:root{
  --green:#0B5E42;
  --green-dk:#094c36;
  --green-glow:rgba(11,94,66,.40);
  --navy:#0E2B3F;
  --navy-2:#13344a;
  --navy-line:#2E4758;
  --cream:#F3EFE8;
  --offwhite:#F4F5F0;
  --nav-bg:#FAF8F4;
  --mint:#D2EBE2;
  --ink:#0d0f0e;
  --gray:#8f8f8f;
  --gray-d:#6f6f6f;
  --line:#E7E7E7;
  --line-soft:#ECECEC;
  --faint:#CDCDCD;
  --gold-line:#EBDDC6;
  --wa:#25D366;

  --serif:"Span","Spectral",Georgia,"Times New Roman",serif;
  --sans:"Google Sans","Product Sans","Onest",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;

  --wrap:1196px;
  --pad:clamp(20px,5.5vw,80px);
  --r:16px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--offwhite);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}

.wrap{width:min(var(--wrap), 100% - calc(var(--pad)*2));margin-inline:auto}

/* ---------- typography helpers ---------- */
.eyebrow{
  font-size:13px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  color:var(--green);
}
.eyebrow.light{color:#fff}
h1,h2,h3{font-family:var(--serif);font-weight:700;line-height:1.04;letter-spacing:-.01em;color:var(--ink)}
.h-display{font-size:clamp(36px,4.6vw,56px);line-height:1.08}
.h-section{font-size:clamp(30px,3.6vw,42px)}
.lead{font-size:clamp(17px,1.4vw,20px);line-height:1.65;color:var(--gray-d)}
.muted{color:var(--gray)}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  height:52px;padding:0 28px;border-radius:1000px;border:0;cursor:pointer;
  font-family:var(--sans);font-size:15px;font-weight:600;line-height:1;
  transition:transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn svg{width:18px;height:18px}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 6px 22px var(--green-glow)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 30px var(--green-glow)}
.btn-ghost{background:transparent;color:var(--ink);box-shadow:inset 0 0 0 1px #c9c9c4}
.btn-ghost:hover{box-shadow:inset 0 0 0 1px var(--green);color:var(--green)}
.btn-white{background:#fff;color:var(--ink);box-shadow:0 6px 22px rgba(0,0,0,.18)}
.btn-white:hover{transform:translateY(-2px)}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{
  position:sticky;top:0;z-index:50;
  background:rgba(250,248,244,.86);
  backdrop-filter:saturate(160%) blur(12px);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:84px}
.nav-logo img{height:38px;width:auto}
.nav .btn{height:48px}
.mobile-cta{display:none}

/* ============================================================
   HERO
   ============================================================ */
.hero{background:var(--offwhite);padding:clamp(48px,7vw,84px) 0 clamp(60px,8vw,96px)}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(36px,5vw,72px);align-items:center}
.hero-copy .eyebrow{margin-bottom:22px}
.hero-copy h1{margin-bottom:26px}
.hero-copy .lead{max-width:46ch}
.hero-cta{display:flex;flex-wrap:wrap;gap:14px;margin-top:34px}

/* dashboard card */
.snapshot{
  background:linear-gradient(160deg,#10324a 0%, #0c2536 100%);
  border-radius:24px;padding:30px;color:#fff;
  box-shadow:0 30px 60px -28px rgba(14,43,63,.55), inset 0 0 0 1px rgba(255,255,255,.05);
  max-width:480px;margin-inline:auto;width:100%;
}
.snap-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:26px}
.snap-mono{font-family:var(--serif);font-size:19px;font-weight:700;letter-spacing:.01em;white-space:nowrap}
.snap-pill{font-size:11px;letter-spacing:.18em;font-weight:600;color:#cfe9df;
  border:1px solid rgba(255,255,255,.22);border-radius:1000px;padding:8px 16px}
.snap-chart{position:relative;height:150px;margin-bottom:24px}
.snap-chart svg{width:100%;height:100%;overflow:visible}
.snap-rows{display:flex;flex-direction:column;gap:2px;border-top:1px solid rgba(255,255,255,.10);padding-top:18px}
.snap-row{display:flex;align-items:center;gap:14px;padding:9px 0}
.snap-ic{width:34px;height:34px;border-radius:8px;flex:0 0 auto;display:grid;place-items:center;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10)}
.snap-ic svg{width:17px;height:17px;stroke:#bcd}
.snap-row .lbl{font-size:15px;font-weight:500}
.snap-row .val{margin-left:auto;font-size:14px;font-weight:700;color:#fff}
.snap-row .val.green{color:#3fd896}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section.block{padding:clamp(64px,8vw,104px) 0}
.bg-cream{background:var(--cream)}
.bg-off{background:var(--offwhite)}
.bg-navy{background:var(--navy);color:#fff}
.sec-head{max-width:620px}
.sec-head.center{margin-inline:auto;text-align:center}
.sec-head .eyebrow{margin-bottom:18px;display:block}
.sec-head h2{margin-bottom:16px}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.rev-head{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:24px;
  margin-bottom:clamp(32px,3.6vw,46px)}
.rev-head .eyebrow{display:block;margin:0 0 16px}
.rev-h{color:#fff;text-wrap:balance;max-width:20ch;margin:0}
.rev-actions{display:flex;align-items:center;gap:14px}
.rev-score{display:flex;align-items:center;gap:10px;text-decoration:none;color:#dbe4ea;font-size:15px;
  padding:12px 18px;border:1px solid var(--navy-line);border-radius:999px;flex:0 0 auto;
  transition:border-color .18s ease,background .18s ease}
.rev-score:hover{border-color:#3fd896;background:rgba(255,255,255,.06)}
.rev-score strong{color:#fff;font-weight:700}
.rev-nav{display:flex;gap:10px}
.rev-rail{display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;
  scroll-behavior:smooth;scrollbar-width:none;padding-bottom:4px}
.rev-rail::-webkit-scrollbar{display:none}
.rev-card{flex:0 0 clamp(280px,30vw,360px);scroll-snap-align:start;
  background:linear-gradient(150deg,#123a54 0%,#0e2c41 100%);border:1px solid var(--navy-line);
  border-radius:var(--r);padding:clamp(24px,2.4vw,30px);display:flex;flex-direction:column;gap:16px}
.rev-stars{color:#f5b400;font-size:16px;letter-spacing:2px}
.rev-card p{font-size:15.5px;line-height:1.65;color:#dbe4ea}
.rev-by{display:flex;align-items:center;gap:12px;margin-top:auto}
.rev-av{width:38px;height:38px;border-radius:50%;display:grid;place-items:center;flex:0 0 auto;
  background:rgba(63,216,150,.16);color:#3fd896;font-weight:700;font-size:15px}
.rev-by strong{display:block;font-size:14.5px;font-weight:600;color:#fff}
.rev-by span{display:block;font-size:12.5px;color:#93a4af}

/* ============================================================
   ABOUT
   ============================================================ */
.about2{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(40px,5.5vw,80px);align-items:center}
.about2-left .eyebrow{display:block;margin-bottom:18px}
.about2-left h2{margin-bottom:22px;text-wrap:balance;max-width:16ch}
.about2-lead{font-size:18px;line-height:1.7;color:var(--gray-d);margin-bottom:36px;max-width:54ch}
.trust2{border-top:1px solid var(--line);padding-top:30px}
.trust2-h{font-family:var(--serif);font-weight:700;font-size:20px;margin-bottom:18px}
.trust2-list{list-style:none;display:flex;flex-direction:column;gap:14px}
.trust2-list li{display:flex;gap:14px;align-items:flex-start;font-size:16.5px;line-height:1.45;color:var(--ink)}
.trust2-list li svg{width:22px;height:22px;flex:0 0 auto;margin-top:1px;padding:3px;border-radius:50%;
  background:var(--mint);stroke:var(--green);box-sizing:border-box}

.stat-panel{background:linear-gradient(165deg,#10324a 0%,#0c2536 100%);color:#fff;
  border-radius:22px;padding:clamp(34px,3.6vw,48px);
  box-shadow:0 34px 64px -34px rgba(14,43,63,.6),inset 0 0 0 1px rgba(255,255,255,.05)}
.stat-panel-eye{display:block;font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:#9fc7b8;margin-bottom:28px}
.stat-panel-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;
  background:rgba(255,255,255,.09);border-radius:14px;overflow:hidden}
.sp{background:linear-gradient(165deg,#123a54 0%,#0e2c41 100%);padding:26px 24px}
.sp-full{grid-column:1/-1}
.sp-n{display:block;font-family:var(--serif);font-weight:700;font-size:clamp(28px,2.7vw,34px);
  line-height:1;color:#fff;letter-spacing:-.01em;margin-bottom:10px}
.sp-n.sp-place{color:#3fd896}
.sp-u{font-size:.5em;vertical-align:super;margin-left:2px;color:#3fd896}
.sp-l{font-size:13px;line-height:1.4;color:#aebfc9;font-weight:500}

.feat-list{display:flex;flex-direction:column}
.feat{display:grid;grid-template-columns:auto 1fr;gap:26px;padding:24px 0;border-bottom:1px solid var(--line)}
.feat:last-child{border-bottom:0}
.feat .num{font-family:var(--serif);font-weight:700;font-size:20px;color:var(--green);padding-top:1px}
.feat h4{font-size:20px;font-weight:600;margin-bottom:8px;font-family:var(--sans)}
.feat p{color:var(--gray);font-size:16px;line-height:1.55}
.feat-navy .feat{border-color:var(--navy-line);padding:15px 0;gap:24px}
.feat-navy .feat h4{color:#fff;margin-bottom:5px}
.feat-navy .feat p{color:#c3ccd2;font-size:15.5px;line-height:1.5}
.feat-navy .feat .num{color:#fff}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:clamp(40px,5vw,64px)}
.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--r);
  padding:38px 34px;transition:transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:0 22px 44px -28px rgba(14,43,63,.35);border-color:#d7ecdf}
.card-ic{width:54px;height:54px;border-radius:12px;background:var(--mint);display:grid;place-items:center;margin-bottom:24px}
.card-ic img{width:30px;height:30px;object-fit:contain;display:block}
.card h4{font-size:20px;font-weight:600;font-family:var(--sans);margin-bottom:10px}
.card p{font-size:15.5px;line-height:1.6;color:var(--gray)}
.center-btn{display:flex;justify-content:center;margin-top:clamp(40px,5vw,56px)}

/* ============================================================
   UNDERSTANDING MUTUAL FUNDS  (split feature panel)
   ============================================================ */
.mf3{display:grid;grid-template-columns:.92fr 1.08fr;border-radius:24px;overflow:hidden;
  box-shadow:0 34px 70px -38px rgba(14,43,63,.5)}
.mf3-explain{background:linear-gradient(165deg,var(--green) 0%, var(--green-dk) 100%);color:#fff;
  padding:clamp(40px,4.4vw,60px);display:flex;flex-direction:column;justify-content:center}
.mf3-explain h2{font-family:var(--serif);color:#fff;font-size:clamp(26px,2.7vw,34px);line-height:1.12;
  margin:16px 0 20px;text-wrap:balance}
.mf3-explain p{font-size:16.5px;line-height:1.7;color:rgba(255,255,255,.86);margin-bottom:16px}
.mf3-explain .btn{margin-top:14px;align-self:flex-start}
.mf3-benefits{background:#fff;padding:clamp(34px,3.4vw,48px);
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(22px,2.4vw,32px) clamp(28px,3vw,44px);align-content:center}
.mf3-b{display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:start}
.mf3-b svg{width:22px;height:22px;flex:0 0 auto;margin-top:2px;padding:3px;border-radius:50%;
  background:var(--mint);stroke:var(--green);box-sizing:border-box}
.mf3-b h4{font-size:18px;font-weight:600;font-family:var(--sans);margin-bottom:5px}
.mf3-b p{font-size:14.5px;line-height:1.55;color:var(--gray)}

/* ============================================================
   FEATURED SOLUTIONS (tabs)
   ============================================================ */
.feat-grid{display:grid;grid-template-columns:.78fr 1.22fr;gap:clamp(36px,5vw,76px);margin-top:clamp(40px,5vw,60px);align-items:stretch}
.tabs{display:flex;flex-direction:column;justify-content:space-between;gap:16px}
.tab{
  display:flex;flex-direction:column;gap:12px;align-items:flex-start;text-align:left;cursor:pointer;
  flex:1 1 0;width:100%;border:0;background:transparent;border-left:3px solid transparent;
  border-radius:0 16px 16px 0;padding:22px 30px;font-family:var(--sans);
  transition:background .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tab .tlabel{display:flex;align-items:baseline;gap:14px}
.tab .tnum{font-family:var(--serif);font-weight:700;font-size:16px;color:var(--green)}
.tab .tk{font-family:var(--serif);font-weight:700;font-size:15px;letter-spacing:.06em;text-transform:uppercase;color:var(--green)}
.tab .tt{font-size:21px;font-weight:600;color:var(--ink);line-height:1.15}
.tab:hover{background:rgba(255,255,255,.55)}
.tab[aria-selected="true"]{
  background:#fff;border-left-color:var(--green);
  box-shadow:0 18px 40px -26px rgba(14,43,63,.45);
}

.feat-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--r);
  padding:clamp(40px,4.5vw,64px);display:flex;flex-direction:column;
}
.feat-card .fc-eye{display:flex;gap:12px;align-items:baseline;margin-bottom:26px;
  font-family:var(--serif);font-weight:700;font-size:16px;letter-spacing:.05em;color:var(--green)}
.feat-card .fc-eye span:first-child{font-size:16px}
.feat-card h3{font-family:var(--sans);font-weight:600;font-size:clamp(25px,2.5vw,30px);line-height:1.16;margin-bottom:18px;letter-spacing:-.01em;max-width:18ch}
.feat-card .fc-body{font-size:17px;line-height:1.72;color:var(--gray);margin-bottom:34px}
.fc-list{display:flex;flex-direction:column;gap:16px;margin-top:auto;list-style:none}
.fc-list li{display:flex;gap:14px;align-items:flex-start;font-size:15.5px;color:var(--gray);line-height:1.4}
.fc-list li::before{content:"";flex:0 0 auto;width:6px;height:6px;border-radius:50%;background:var(--green);margin-top:8px}
.fade-in{animation:fade .35s ease}
@keyframes fade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

/* ============================================================
   WHY CHOOSE (navy)
   ============================================================ */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(40px,6vw,90px);align-items:start}
.why-copy h2{color:#fff;margin-bottom:18px;max-width:13ch}
.why-copy .lead{color:#c3ccd2;margin-bottom:34px;max-width:42ch}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(28px,3.4vw,46px);margin-top:clamp(40px,5vw,58px)}
.rail{list-style:none;display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(24px,2.6vw,36px);margin-top:clamp(44px,5vw,62px)}
.rail-step{display:flex;flex-direction:column;gap:24px}
.rail-node{position:relative;height:44px;display:flex;align-items:center}
.rail-node::before{content:"";position:absolute;left:0;right:calc(-1 * clamp(24px,2.6vw,36px));top:50%;height:2px;
  background:linear-gradient(90deg,var(--green) 0%, rgba(11,94,66,.18) 100%);transform:translateY(-50%)}
.rail-step:last-child .rail-node::before{right:0;background:linear-gradient(90deg,var(--green) 0%, rgba(11,94,66,0) 100%)}
.rail-dot{position:relative;z-index:1;width:44px;height:44px;border-radius:50%;display:grid;place-items:center;
  background:var(--green);color:#fff;font-family:var(--serif);font-weight:700;font-size:19px;
  box-shadow:0 0 0 6px var(--offwhite),0 8px 20px -8px var(--green-glow)}
.rail-body h4{font-size:21px;font-weight:600;font-family:var(--sans);margin-bottom:10px}
.rail-body p{font-size:15.5px;line-height:1.6;color:var(--gray)}
.step .scircle{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;
  border:1px solid var(--green);color:var(--ink);font-weight:600;font-size:18px;margin-bottom:22px;background:var(--offwhite)}
.step h4{font-size:20px;font-weight:600;margin-bottom:10px;font-family:var(--sans)}
.step p{font-size:15.5px;line-height:1.6;color:var(--gray)}

/* ============================================================
   AUDIENCES
   ============================================================ */
.aud-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:clamp(40px,5vw,58px)}
.aud{
  background:#fff;border-radius:0 var(--r) var(--r) 0;border-left:3px solid var(--green);
  padding:28px 34px;transition:transform .2s ease,box-shadow .25s ease;
}
.aud:hover{transform:translateX(4px);box-shadow:0 18px 40px -28px rgba(14,43,63,.35)}
.aud:last-child{grid-column:1/-1}
.aud h4{font-size:20px;font-weight:600;margin-bottom:9px;font-family:var(--sans)}
.aud p{font-size:16px;line-height:1.6;color:var(--gray)}

/* ============================================================
   YOUTUBE COMMUNITY
   ============================================================ */
.ytc{display:grid;grid-template-columns:1fr 1fr;gap:clamp(36px,4.6vw,64px);align-items:center}
.ytc-copy .eyebrow{display:block;margin-bottom:18px}
.ytc-copy h2{margin-bottom:18px;text-wrap:balance;max-width:20ch}
.ytc-h{color:#fff}
.ytc-lead{font-size:17px;line-height:1.72;color:#c3ccd2;max-width:52ch;margin-bottom:32px}
.ytc-btn{gap:10px}
.ytc-btn svg{width:20px;height:20px}
.ytc-stats{display:flex;flex-direction:column;gap:14px}
.ytc-card{display:flex;align-items:center;gap:24px;border:1px solid var(--navy-line);
  background:linear-gradient(150deg,#123a54 0%,#0e2c41 100%);
  border-radius:var(--r);padding:26px clamp(24px,2.6vw,32px)}
.ytc-card strong{font-family:var(--serif);font-weight:700;font-size:clamp(34px,3.6vw,44px);line-height:1;
  letter-spacing:-.02em;color:#3fd896;flex:0 0 auto;min-width:5.2ch}
.ytc-card span{font-size:12.5px;font-weight:600;letter-spacing:.13em;text-transform:uppercase;
  line-height:1.5;color:#b7c4cd;border-left:1px solid var(--navy-line);padding-left:24px}

/* ============================================================
   YOUTUBE
   ============================================================ */
.yt-head{display:grid;grid-template-columns:1fr auto;gap:32px;align-items:end;margin-bottom:clamp(32px,3.6vw,46px)}
.yt-copy .eyebrow{display:block;margin-bottom:18px}
.yt-h{color:#fff;margin-bottom:18px;text-wrap:balance;max-width:24ch}
.yt-lead{font-size:17px;line-height:1.72;color:#c3ccd2;max-width:60ch}
.yt-nav{display:flex;gap:10px;flex:0 0 auto}
.yt-arrow{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;cursor:pointer;
  background:transparent;border:1px solid var(--navy-line);stroke:#dbe4ea;
  transition:background .18s ease,border-color .18s ease,opacity .18s ease}
.yt-arrow svg{width:20px;height:20px;fill:none}
.yt-arrow:hover{background:rgba(255,255,255,.08);border-color:#3fd896}
.yt-arrow:disabled{opacity:.32;cursor:default;background:transparent;border-color:var(--navy-line)}
.yt-rail{display:flex;gap:18px;overflow-x:auto;scroll-snap-type:x mandatory;
  scroll-behavior:smooth;scrollbar-width:none;padding-bottom:4px}
.yt-rail::-webkit-scrollbar{display:none}
.yt-vid{flex:0 0 clamp(260px,26vw,344px);scroll-snap-align:start;text-decoration:none;
  display:flex;flex-direction:column;gap:14px}
.yt-thumb{position:relative;display:grid;place-items:center;aspect-ratio:16/9;border-radius:14px;
  overflow:hidden;border:1px solid var(--navy-line);
  background:linear-gradient(155deg,#123a54 0%,#0b2233 100%);transition:transform .25s ease}
.yt-thumb::after{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(11,34,51,.1),rgba(11,34,51,.45))}
.yt-vid:hover .yt-thumb{transform:translateY(-4px)}
.yt-play{position:relative;z-index:2;width:58px;height:58px;border-radius:50%;display:grid;place-items:center;
  background:#fff;color:#c8352b;box-shadow:0 14px 28px -12px rgba(0,0,0,.6);transition:transform .25s ease}
.yt-play svg{width:26px;height:26px;margin-left:3px}
.yt-vid:hover .yt-play{transform:scale(1.08)}
.yt-thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.yt-cap{font-size:15.5px;font-weight:500;line-height:1.45;color:#dbe4ea;transition:color .18s ease;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.yt-vid:hover .yt-cap{color:#3fd896}

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.enq{display:grid;grid-template-columns:1fr 1fr;gap:clamp(40px,5vw,72px);align-items:center}
.enq-copy .eyebrow{display:block;margin-bottom:18px}
.enq-copy h2{margin-bottom:18px;text-wrap:balance;max-width:16ch}
.enq-lead{font-size:17.5px;line-height:1.7;color:var(--gray-d);max-width:46ch;margin-bottom:32px}
.enq-assure{list-style:none;display:flex;flex-direction:column;gap:13px;border-top:1px solid var(--line);padding-top:26px}
.enq-assure li{display:flex;gap:13px;align-items:flex-start;font-size:16px;line-height:1.45;color:var(--ink)}
.enq-assure li svg{width:22px;height:22px;flex:0 0 auto;margin-top:1px;padding:3px;border-radius:50%;
  background:var(--mint);stroke:var(--green);box-sizing:border-box}
.enq-card{background:#fff;border:1px solid var(--line);border-radius:var(--r);
  padding:clamp(30px,3.4vw,44px);display:flex;flex-direction:column;gap:20px;
  box-shadow:0 30px 64px -40px rgba(14,43,63,.4)}
.field{display:flex;flex-direction:column;gap:9px}
.field label{font-size:13px;font-weight:600;letter-spacing:.05em;text-transform:uppercase;color:var(--gray-d)}
.field input,.field select{font-family:var(--sans);font-size:16px;color:var(--ink);width:100%;
  padding:15px 16px;border:1px solid var(--line);border-radius:12px;background:#fdfdfc;
  transition:border-color .18s ease,box-shadow .18s ease;appearance:none;-webkit-appearance:none}
.field input::placeholder{color:var(--faint)}
.field input:focus,.field select:focus{outline:none;border-color:var(--green);box-shadow:0 0 0 3px rgba(11,94,66,.12)}
.field input:user-invalid,.field select:user-invalid{border-color:#c4553f}
.sel-wrap{position:relative}
.sel-wrap select{padding-right:46px;cursor:pointer}
.sel-wrap select:invalid{color:var(--faint)}
.sel-ic{position:absolute;right:16px;top:50%;transform:translateY(-50%);width:19px;height:19px;
  stroke:var(--green);pointer-events:none}
.enq-submit{margin-top:4px;width:100%;justify-content:center;border:0;cursor:pointer;font-size:16px;padding:17px 26px}
.enq-note{font-size:13px;line-height:1.5;color:var(--gray);text-align:center}
.enq-ok{font-size:15px;font-weight:600;color:var(--green);text-align:center;background:var(--mint);
  padding:13px 16px;border-radius:11px}
.enq-err{font-size:15px;font-weight:600;color:#a3241d;text-align:center;background:#fdeceb;
  padding:13px 16px;border-radius:11px}
.enq-err a{color:inherit;text-decoration:underline}
.enq-submit[disabled]{opacity:.62;cursor:progress}
/* Honeypot: hidden from people, still filled by naive bots. Not display:none —
   some bots skip fields that are display:none, which defeats the point. */
.hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

/* ============================================================
   FAQ
   ============================================================ */
.faq{margin-top:clamp(36px,4vw,52px);border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:24px;
  background:none;border:0;cursor:pointer;text-align:left;padding:28px 4px;font-family:var(--sans);
  font-size:clamp(18px,1.7vw,21px);font-weight:600;color:var(--ink)}
.faq-ic{flex:0 0 auto;width:26px;height:26px;position:relative;transition:transform .3s ease}
.faq-ic::before,.faq-ic::after{content:"";position:absolute;background:var(--green);border-radius:2px;
  top:50%;left:50%;transform:translate(-50%,-50%)}
.faq-ic::before{width:16px;height:2px}
.faq-ic::after{width:2px;height:16px;transition:transform .3s ease}
.faq-item.open .faq-ic::after{transform:translate(-50%,-50%) scaleY(0)}
.faq-a{overflow:hidden;max-height:0;transition:max-height .35s ease}
.faq-a p{padding:0 70px 30px 4px;font-size:17px;line-height:1.7;color:var(--gray)}

/* ============================================================
   CTA (navy + map)
   ============================================================ */
.cta-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(40px,6vw,80px);align-items:center}
.cta-copy h2{color:#fff;margin:0 0 18px;max-width:13ch}
.cta-copy .lead{color:#c3ccd2;max-width:46ch;margin-bottom:30px}
.cta-contact{display:flex;flex-direction:column;gap:18px;margin-top:30px}
.cta-line{display:flex;gap:18px;align-items:center;text-decoration:none;color:inherit;transition:opacity .18s ease}
.cta-line:hover{opacity:.82}
.cta-line .cic{width:46px;height:46px;border-radius:9px;flex:0 0 auto;display:grid;place-items:center;
  background:var(--navy-2);border:1px solid var(--navy-line);transition:border-color .18s ease,background .18s ease}
.cta-line:hover .cic{border-color:var(--green);background:var(--green)}
.cta-line .cic svg{width:20px;height:20px;stroke:#cfe9df}
.cta-line span:last-child{font-size:17px;color:#eef2f4;line-height:1.45}
.cta-map{border-radius:var(--r);overflow:hidden;min-height:380px;border:1px solid var(--navy-line)}
.cta-map iframe{width:100%;height:100%;min-height:420px;border:0;display:block;filter:grayscale(.12)}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:var(--cream);padding:clamp(56px,7vw,80px) 0 40px}
.foot-top{display:grid;grid-template-columns:1.6fr 1fr .8fr;gap:40px;align-items:start}
.foot-brand img{height:40px;margin-bottom:20px}
.foot-brand p{max-width:42ch;font-size:16px;line-height:1.6;color:#444}
.foot-reach .eyebrow{margin-bottom:20px;display:block}
.foot-reach .rdetail{display:flex;flex-direction:column;gap:12px;font-size:16px;color:var(--ink)}
.foot-div{height:1px;background:var(--gold-line);margin:44px 0 22px}
.foot-bottom{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;font-size:15px;color:#3a3a3a}
.foot-link{color:inherit;text-decoration:none;transition:color .18s ease}
.foot-link:hover{color:var(--green);text-decoration:underline;text-underline-offset:3px}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float{position:fixed;bottom:26px;z-index:60;display:grid;place-items:center;
  width:60px;height:60px;border-radius:50%;cursor:pointer;
  color:#fff;box-shadow:0 12px 30px -8px rgba(0,0,0,.45);
  transition:transform .2s ease, box-shadow .25s ease;
}
.float:hover{transform:translateY(-3px) scale(1.04)}
.float .fbubble{display:grid;place-items:center}
.float svg{width:27px;height:27px}
.float-call{left:26px;background:var(--navy)}
.float-wa{right:26px;background:var(--wa)}

/* pulse ring */
.float-wa::after{content:"";position:absolute;inset:0;border-radius:50%;
  box-shadow:0 0 0 0 rgba(37,211,102,.5);animation:pulse 2.4s infinite}
@keyframes pulse{70%{box-shadow:0 0 0 14px rgba(37,211,102,0)}100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}}

html,body{max-width:100%;overflow-x:hidden}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1000px){
  .hero-grid{grid-template-columns:1fr;gap:48px}
  .hero-copy h1{max-width:none}
  .snapshot{order:-1;max-width:440px}
  .about-grid,.why-grid,.cta-grid{grid-template-columns:1fr;gap:44px}
  .about2{grid-template-columns:1fr;gap:40px}
  .about2-left h2{max-width:none}
  .feat-grid{grid-template-columns:1fr;gap:36px}
  .svc-grid{grid-template-columns:repeat(2,1fr)}
  .mf3{grid-template-columns:1fr}
  .steps{grid-template-columns:repeat(2,1fr);gap:34px}
  .rail{grid-template-columns:repeat(2,1fr);gap:36px 28px}
  .rail-step:nth-child(2) .rail-node::before{right:0;background:linear-gradient(90deg,var(--green) 0%, rgba(11,94,66,0) 100%)}
  .foot-top{grid-template-columns:1fr;gap:32px}
  .enq{grid-template-columns:1fr;gap:40px;justify-items:center}
  .yt{grid-template-columns:1fr;gap:38px}
  .yt-head{grid-template-columns:1fr;align-items:start;gap:26px}
  .yt-h,.yt-lead{max-width:none}
  .rev-rail{flex-wrap:nowrap}
  .rev-card{flex:0 0 82%}
  .rev-head{flex-direction:column;align-items:flex-start;gap:18px}
  .rev-actions{width:100%;justify-content:space-between}
  .rev-score{padding:10px 14px;font-size:13px}
  .rev-score span strong{font-size:inherit}
  .ytc{grid-template-columns:1fr;gap:36px}
  .ytc-copy h2,.ytc-lead{max-width:none}
  .yt-h,.yt-lead{max-width:none}
  .enq-copy{max-width:560px;width:100%}
  .enq-card{max-width:560px;width:100%}
  .enq-copy h2,.enq-lead{max-width:none}
}
@media (max-width:620px){
  .nav-cta{display:none}
  .nav-inner{justify-content:center}
  .mobile-cta{display:flex;position:fixed;left:16px;right:16px;bottom:16px;z-index:60;
    justify-content:center;height:54px;border-radius:999px;text-decoration:none;
    box-shadow:0 16px 32px -12px rgba(11,94,66,.5)}
  .float{bottom:88px;width:52px;height:52px}
  .float svg{width:23px;height:23px}
  body{padding-bottom:78px}
  .svc-grid{grid-template-columns:1fr}
  .mf3-benefits{grid-template-columns:1fr}
  .aud-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .rail{grid-template-columns:1fr;gap:0}
  .rail-step{flex-direction:row;gap:22px;padding-bottom:30px}
  .rail-step:last-child{padding-bottom:0}
  .rail-node{height:auto;align-items:flex-start;flex:0 0 auto}
  .rail-node::before{left:50%;right:auto;top:44px;bottom:-30px;width:2px;height:auto;
    background:linear-gradient(180deg,var(--green) 0%, rgba(11,94,66,.18) 100%);transform:translateX(-50%)}
  .rail-step:last-child .rail-node::before{display:none}
  .hero-cta .btn{flex:1 1 auto}
  .float{width:54px;height:54px}
  .faq-a p{padding-right:20px}
  .foot-bottom{flex-direction:column}
  .stat-panel-grid{grid-template-columns:1fr}
  .enq-card{padding:26px 22px}
  .footer{padding-bottom:96px}
}
@media (max-width:440px){
  .ytc-card{flex-direction:column;align-items:flex-start;gap:12px;padding:22px 20px}
  .ytc-card strong{min-width:0}
  .ytc-card span{border-left:0;padding-left:0}
  .yt-vid{flex:0 0 82%}
}
@media (max-width:380px){
  .nav-logo img{height:32px}
  .hero-copy h1{font-size:31px}
  .h-section{font-size:29px}
  .enq-card{padding:22px 18px}
  .yt-vid{flex:0 0 88%}
}
