:root{
  /* Aquanova palette */
  --brand:#0b6b6b;
  --brand2:#0ea5a5;
  --brandRgb: 11, 107, 107;
  --brand2Rgb: 14, 165, 165;
  --brandSoft:#e6fbfb;
  --brandPanel:#c9f3f1;
  --brandGlow: rgba(var(--brandRgb),.14);

  --bg:#ffffff;
  --ink:#0f172a;
  --muted:#64748b;
  --line:#e6e8ee;

  --shadow: 0 18px 50px rgba(15,23,42,.08);
  --shadow2: 0 12px 30px rgba(15,23,42,.08);

  --r16:16px;
  --r20:20px;
  --r22:22px;
  --r26:26px;

  --max:1100px;

  /* Typography */
  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Playfair Display", serif;

  --fs-xxs: 11px;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 16px;

  --fs-h1: clamp(38px, 4.6vw, 54px);
  --fs-h2: clamp(26px, 3.2vw, 34px);
  --fs-h3: clamp(18px, 2.2vw, 22px);

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  --lh-tight: 1.08;
  --lh-snug: 1.25;
  --lh-body: 1.6;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  text-rendering: optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
.sr{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden}

/* Top bar */
.topbar{
  position:sticky; top:0; z-index:40;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbarIn{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding:10px 0;
}
.topLeft{
  display:flex; align-items:center; gap:10px;
  min-width: 220px;
}
.dot{
  width:10px;height:10px;border-radius:999px;background:var(--brand);
  box-shadow: 0 0 0 4px var(--brandGlow);
}
.badge{
  font-size: var(--fs-xs);
  color: var(--muted);
  display:flex; align-items:center; gap:8px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  white-space:nowrap;
  font-weight: var(--fw-extrabold);
  letter-spacing:.2px;
}
.nav{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  padding:10px 12px;
  border-radius:999px;
  color: rgba(15,23,42,.72);
  border:1px solid transparent;
}
.nav a:hover{border-color:var(--line); background:#fff; color:var(--ink)}
.nav .cta{
  color:#fff;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border:0;
  box-shadow: var(--shadow2);
}

/* Hero split */
.hero{
  padding:18px 0 8px;
  background: #f7f7f8;
}
.heroCard{
  border-radius: var(--r26);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
  background:#fff;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: auto;
}

.heroLeft{
  padding:32px 30px;
  position:relative;
  background:#fff;
}
.heroLeft:after{
  content:"";
  position:absolute;
  right:-180px; top:-140px;
  width:420px;height:420px;
  background: radial-gradient(circle at 30% 30%, var(--brandGlow), transparent 62%);
  border-radius:999px;
  pointer-events:none;
}

.logoBox{
  display:flex; align-items:flex-start; gap:18px;
  margin-bottom:10px;
}
.projectMark{
  width:92px; height:92px;
  border-radius: 22px;
  background: #fff;
  border:1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  overflow:hidden;
  flex:0 0 auto;
  display:flex; align-items:center; justify-content:center;
  padding:10px;
}
.projectMark img{width:100%;height:100%;object-fit:contain}
.projectWord{
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  letter-spacing:.6px;
  margin:0;
  line-height: 1;
  color: var(--brand);
  text-transform: uppercase;
  font-weight: 800;
}
.projectSub{
  margin:8px 0 0;
  font-size: var(--fs-xs);
  color: rgba(15,23,42,.62);
  letter-spacing:.2px;
  font-weight: var(--fw-semibold);
}

.heroHeadline{
  margin:18px 0 8px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  letter-spacing:.28px;
  color: var(--brand2);
  text-transform: uppercase;
}
.heroHeadline2{
  margin:0;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: var(--fw-black);
  letter-spacing:-.6px;
  line-height: var(--lh-tight);
}
.heroLead{
  margin:12px 0 0;
  color: rgba(15,23,42,.68);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 62ch;
  font-weight: var(--fw-regular);
}

.heroActions{
  display:flex; gap:10px; flex-wrap:wrap;
  align-items:center;
  margin-top:18px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight: var(--fw-bold);
  font-size: 13.5px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .2s ease, filter .2s ease;
  line-height: 1;
  letter-spacing: .1px;
}
.btn:hover{box-shadow: 0 14px 30px rgba(15,23,42,.10)}
.btn:active{transform: translateY(1px)}
.btn[disabled]{opacity:.72; cursor:not-allowed; box-shadow:none}
.btn[disabled]:active{transform:none}

.btnPrimary{
  color:#fff;
  border:0;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: var(--shadow2);
}

.heroRight{
  background:
    radial-gradient(900px 360px at 40% 20%, rgba(255,255,255,.55), transparent 55%),
    var(--brandPanel);
  padding:22px;
  border-left:1px solid rgba(255,255,255,.60);
}

.formTitle{
  text-align:center;
  margin:6px 0 4px;
  font-size: 16px;
  font-weight: var(--fw-black);
  color: var(--ink);
  letter-spacing:-.2px;
  line-height: var(--lh-snug);
}
.formTitleSmall{
  text-align:center;
  margin:0 0 12px;
  font-size: var(--fs-xs);
  color: rgba(15,23,42,.68);
  font-weight: var(--fw-semibold);
  line-height: 1.45;
}
.form{
  background: rgba(255,255,255,.55);
  border:1px solid rgba(255,255,255,.60);
  border-radius: var(--r20);
  padding:14px;
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}
label{
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: rgba(15,23,42,.72);
  display:block;
  margin:12px 0 6px;
  letter-spacing:.1px;
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.70);
  background:#fff;
  outline:none;
  font:inherit;
  font-size: 14.5px;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
  color: var(--ink);
}

/* Make select look exactly like text inputs */
select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
  
    width:100%;
    padding:12px 44px 12px 12px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.70);
    background:
      #fff
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%230f172a' fill-opacity='.55' d='M5.7 7.7a1 1 0 0 1 1.4 0L10 10.6l2.9-2.9a1 1 0 1 1 1.4 1.4l-3.6 3.6a1 1 0 0 1-1.4 0L5.7 9.1a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E")
      no-repeat right 14px center;
  
    box-shadow: 0 8px 18px rgba(15,23,42,.06);
    font:inherit;
    font-size:14.5px;
    line-height:1.2;
    color:var(--ink);
  }
  
  /* Focus state matches inputs */
  select:focus{
    border-color: rgba(var(--brandRgb),.55);
    box-shadow: 0 0 0 4px rgba(var(--brandRgb),.14);
    outline:none;
  }
  
  /* Disabled look */
  select:disabled{
    opacity:.7;
  }
  

input::placeholder, textarea::placeholder{color: rgba(15,23,42,.45)}
textarea{
  border-radius: 18px;
  min-height: 90px;
  resize: vertical;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(var(--brandRgb),.55);
  box-shadow: 0 0 0 4px rgba(var(--brandRgb),.14);
}

.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:10px}

.check{
  display:flex; gap:10px;
  align-items:flex-start;
  margin-top:12px;
  font-size: var(--fs-xxs);
  line-height: 1.4;
  color: rgba(15,23,42,.70);
}
.check input{
  width:16px;height:16px;
  margin:2px 0 0;
  box-shadow:none;
  flex:0 0 auto;
}
.check label{
  margin:0;
  font-weight: var(--fw-medium);
  cursor:pointer;
}

.formBtn{
  width:100%;
  margin-top:12px;
}
.miniNote{
  margin-top:10px;
  font-size: var(--fs-xxs);
  line-height:1.45;
  color: rgba(15,23,42,.60);
  text-align:center;
  font-weight: var(--fw-medium);
}
.ok, .err{
  display:none;
  margin-top:10px;
  padding:12px;
  border-radius: 16px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-align:center;
  background: rgba(255,255,255,.60);
  border:1px solid rgba(255,255,255,.60);
  line-height: 1.5;
}

/* Thumbnail strip */
.thumbStrip{
  padding:10px 0 8px;
  background: #f7f7f8;
  border-bottom:0px solid var(--line);
}
.thumbRow{
  display:flex;
  gap:12px;
  overflow:auto;
  padding-bottom:8px;
  -webkit-overflow-scrolling: touch;
}
.thumb{
  width:150px; height:84px;
  border-radius: 14px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: 0 10px 20px rgba(15,23,42,.06);
  flex:0 0 auto;
  cursor:pointer;
  position:relative;
}

.thumb.active{
  border-color: rgba(var(--brandRgb),.45);
  box-shadow: 0 14px 28px rgba(15,23,42,.10);
  transform: translateY(-1px);
}
.thumb img{width:100%;height:100%;object-fit:cover; object-position:center;}
.thumbTag{
  position:absolute;
  left:8px; top:8px;
  font-size: 10px;
  font-weight: var(--fw-bold);
  padding:6px 8px;
  border-radius:999px;
  background: rgba(255,255,255,.92);
  border:1px solid var(--line);
  color: var(--ink);
  line-height: 1;
}

/* Sections */
section{padding:28px 0}
.secTitle{
  font-size: var(--fs-h2);
  font-weight: var(--fw-black);
  margin:0 0 6px;
  text-align:center;
  letter-spacing:-.7px;
  line-height: var(--lh-snug);
}
.secSub{
  margin:0 auto;
  text-align:center;
  color: rgba(15,23,42,.62);
  font-size: var(--fs-sm);
  line-height: 1.6;
  max-width: 72ch;
  font-weight: var(--fw-regular);
}

/* Deposit + render */
.depositWrap{
  background: #f7f7f8;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.depositGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
  padding:18px 0;
}
.depositBox{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r26);
  box-shadow: var(--shadow);
  padding:22px;
}
.depositKicker{
    font-size: 20px;
    font-weight: var(--fw-black);
  text-align:center;
  color: var(--ink);
  margin:0;
  letter-spacing: .1px;
}
.depositKicker b{color: var(--brand)}
.depositList{
  margin:10px 0 0;
  padding:0;
  list-style:none;
  text-align:center;
  color: rgba(15,23,42,.62);
  font-weight: var(--fw-medium);
  line-height: 1.8;
  font-size: var(--fs-xs);
}
.depositTitle{
  text-align:center;
  margin:14px 0 8px;
  font-size: 20px;
  font-weight: var(--fw-black);
  color: var(--ink);
  letter-spacing:-.2px;
  line-height: var(--lh-snug);
}
.depositText{
  margin:0;
  font-size: var(--fs-sm);
  color: rgba(15,23,42,.62);
  line-height: 1.7;
  text-align:center;
  font-weight: var(--fw-regular);
}
.depositCta{
  margin-top:14px;
  display:flex; justify-content:center; gap:10px; flex-wrap:wrap;
}

.renderCard{
  border-radius: var(--r26);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  position:relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color:#fff;
}
.stamp{
  position:absolute;
  left:16px; bottom:16px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  padding:10px 12px;
  border-radius: 14px;
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-xs);
  box-shadow: 0 14px 30px rgba(15,23,42,.18);
  transform: rotate(-8deg);
  letter-spacing: .1px;
  line-height: 1;
}

/* Docs */
.docs{background:#f7f7f8;}
.docRow{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:18px;
}
.docCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(15,23,42,.07);
  overflow:hidden;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .2s ease;
}
.docCard:hover{box-shadow: var(--shadow2)}
.docImg{height:120px; background:#fff}
.docImg img{width:100%;height:100%;object-fit:cover; object-position:center;}
.docLabel{
  padding:12px 12px 13px;
  text-align:center;
  font-weight: var(--fw-extrabold);
  color: var(--brand);
  font-size: var(--fs-sm);
  letter-spacing:.1px;
  border-top:1px solid var(--line);
  line-height: 1.2;
}
.docsBtn{
  margin-top:14px;
  display:flex;
  justify-content:center;
}

/* Collage + bullets */
.aboutGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top:18px;
  align-items:center;
  justify-content: center;
}
.collage{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.tile{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: 0 12px 26px rgba(15,23,42,.07);
  background:#fff;
  min-height: 160px;
}
.tile img{width:100%;height:100%;object-fit:cover; object-position:center;}

.bullets{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r26);
  box-shadow: var(--shadow);
  padding:22px;
}
.bullets h3{
  margin:0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: var(--fw-black);
  letter-spacing:-.7px;
  color: var(--brand);
  text-align:left;
  line-height: var(--lh-snug);
}
.bullets h4{
  margin:0 0 10px;
  font-size: 15px;
  font-weight: var(--fw-extrabold);
  color: var(--ink);
  letter-spacing:-.1px;
  line-height: var(--lh-snug);
}
.bullets ul{
  margin:0;
  padding:0 0 0 18px;
  color: rgba(15,23,42,.62);
  font-size: var(--fs-sm);
  line-height: 1.8;
  font-weight: var(--fw-regular);
}
.bullets .btnRow{
  margin-top:14px;
  display:flex; gap:10px; flex-wrap:wrap;
}

/* Location */
.locationWrap{
  background:#f7f7f8;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.locGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top:18px;
  align-items:stretch;
}
.locCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r26);
  box-shadow: var(--shadow);
  padding:22px;
}
.locCard h3{
  margin:0 0 8px;
  font-size: 22px;
  font-weight: var(--fw-black);
  letter-spacing:-.5px;
  text-align:center;
  line-height: var(--lh-snug);
}
.locCard p{
  margin:0 0 12px;
  color: rgba(15,23,42,.62);
  font-size: var(--fs-sm);
  line-height: 1.7;
  text-align:center;
  font-weight: var(--fw-regular);
}
.map{
  border-radius: var(--r26);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
  min-height: 340px;
}
iframe{border:0;width:100%;height:100%}

/* Bottom split */
.bottomSplit{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top:18px;
  align-items:stretch;
}
.bottomForm{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r26);
  box-shadow: var(--shadow);
  padding:22px;
}
.bottomForm .formTitle{margin-top:0}

.benefits{
  border-radius: var(--r26);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  position:relative;
  min-height: 260px;
  background:
    radial-gradient(900px 360px at 20% 30%, rgba(var(--brandRgb),.12), transparent 60%),
    radial-gradient(700px 260px at 80% 70%, rgba(var(--brandRgb),.08), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.92));
}
.benefitsIn{padding:22px}
.benefits h3{
  margin:0 0 8px;
  font-size: 18px;
  font-weight: var(--fw-black);
  letter-spacing:-.3px;
  line-height: var(--lh-snug);
}
.benefits ul{
  margin:0;
  padding:0 0 0 18px;
  color: rgba(15,23,42,.62);
  font-size: var(--fs-sm);
  line-height: 1.8;
  font-weight: var(--fw-regular);
}

/* Footer */
.footer{
  padding:28px 0 50px;
  text-align:center;
  color: rgba(15,23,42,.60);
  font-size: var(--fs-xs);
}
.builderLine{
    font-size: var(--fs-h2);
    font-weight: var(--fw-black);  margin-bottom:10px;
  color: var(--ink);
  letter-spacing: .1px;
}
.builderLogo{
  display:flex; justify-content:center;
  margin:10px 0 8px;
}
.builderLogo img{height:58px; width:auto}
.finePrint{
  max-width: 92ch;
  margin:0 auto;
  line-height: 1.75;
  color: rgba(15,23,42,.60);
  font-weight: var(--fw-regular);
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background: rgba(15,23,42,.78);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:90;
  padding:18px;
}
.lbIn{
  width:min(980px, 96vw);
  border-radius: 18px;
  overflow:hidden;
  background:#0b1220;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  position:relative;
}
.lbImg{width:100%; height:min(80vh, 720px); object-fit:contain; display:block}
.lbClose{
  position:absolute; right:12px; top:12px;
  padding:10px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-weight: var(--fw-bold);
  cursor:pointer;
  backdrop-filter: blur(10px);
  line-height: 1;
}

/* Sticky mobile CTA */
.sticky{
  position:fixed;
  left:12px; right:12px; bottom:12px;
  display:none;
  gap:10px;
  background: rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding:10px;
  z-index:60;
}
.sticky .btn{flex:1}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .badge{display:none}
  .heroGrid{grid-template-columns: 1fr}
  .depositGrid{grid-template-columns: 1fr}
  .docRow{grid-template-columns: 1fr 1fr}
  .aboutGrid{grid-template-columns: 1fr}
  .locGrid{grid-template-columns: 1fr}
  .bottomSplit{grid-template-columns: 1fr}
  .sticky{display:flex}
  .heroLeft{padding:28px 22px}
  .projectMark{width:86px;height:86px;border-radius:20px}
}
@media (max-width: 520px){
  .grid2{grid-template-columns: 1fr}
  .docRow{grid-template-columns: 1fr}
  .heroRight{padding:18px}
  .thumb{width:140px;height:78px}
  .btn{padding:12px 14px}
}





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

#contact-dn{
  scroll-margin-top: 90px;
}

#register{
  scroll-margin-top: 90px;
}

#overview{
  scroll-margin-top: 90px;
}

#community{
  scroll-margin-top: 90px;
}

#docs{
  scroll-margin-top: 90px;
}

#location{
  scroll-margin-top: 90px;
}

/* ---------- Aquanova extra sections (match existing theme) ---------- */

.sectionPad{ padding:0 0; }

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top:18px;
  align-items:stretch;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:18px;
  align-items:stretch;
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r26);
  box-shadow: var(--shadow);
  padding:22px;
}
.card h3{
  margin:0 0 10px;
  font-size: 18px;
  font-weight: var(--fw-black);
  letter-spacing:-.3px;
  line-height: var(--lh-snug);
  color: var(--ink);
}
.card p{
  margin:0;
  color: rgba(15,23,42,.62);
  font-size: var(--fs-sm);
  line-height: 1.75;
  font-weight: var(--fw-regular);
}

.kicker{
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  letter-spacing:.28px;
  color: var(--brand2);
  text-transform: uppercase;
  margin:0 0 10px;
}

.iconList{
  margin:0;
  padding:0 0 0 18px;
  color: rgba(15,23,42,.62);
  font-size: var(--fs-sm);
  line-height: 1.85;
  font-weight: var(--fw-regular);
}

.note{
  margin-top:12px;
  font-size: var(--fs-xs);
  line-height: 1.7;
  color: rgba(15,23,42,.56);
  font-weight: var(--fw-regular);
}

/* Hero stats (3 mini boxes under hero copy) */
.heroStats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-top:16px;
  max-width: 62ch;
}
.heroStat{
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius: 18px;
  padding:10px 12px;
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
}
.heroStat .val{
  font-weight: var(--fw-black);
  letter-spacing:-.2px;
  font-size: 14.5px;
  line-height: 1.15;
  color: var(--ink);
}
.heroStat .lab{
  margin-top:4px;
  font-size: 11px;
  color: rgba(15,23,42,.60);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing:.5px;
  line-height: 1.2;
}

/* Timeline */
.timelineGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:18px;
}
.step{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r26);
  box-shadow: var(--shadow);
  padding:18px;
}
.stepNum{
  width:34px; height:34px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: var(--brandSoft);
  border:1px solid rgba(var(--brand2Rgb), .22);
  color: var(--brand);
  font-weight: var(--fw-black);
}
.stepTitle{
  margin:12px 0 6px;
  font-weight: var(--fw-black);
  letter-spacing:-.2px;
  line-height: var(--lh-snug);
}
.stepText{
  margin:0;
  color: rgba(15,23,42,.62);
  font-size: var(--fs-sm);
  line-height: 1.75;
  font-weight: var(--fw-regular);
}

/* FAQ */
.faqGrid{ margin-top:16px; display:grid; gap:10px; }
.faqItem{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r26);
  box-shadow: 0 12px 26px rgba(15,23,42,.07);
  padding: 4px 16px;
}
.faqItem summary{
  cursor:pointer;
  list-style:none;
  padding:14px 0;
  font-weight: var(--fw-black);
  letter-spacing:-.2px;
  line-height: var(--lh-snug);
  outline:none;
}
.faqItem summary::-webkit-details-marker{ display:none; }
.faqItem .ans{
  padding: 0 0 14px;
  color: rgba(15,23,42,.62);
  font-size: var(--fs-sm);
  line-height: 1.75;
  font-weight: var(--fw-regular);
}

/* Map card used in updated layout */
.mapCard{
  border-radius: var(--r26);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
  min-height: 340px;
}

/* Extra small notes used in some sections */
.benefitsNote{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(15,23,42,.08);
  color: rgba(15,23,42,.58);
  font-size: var(--fs-xs);
  line-height: 1.65;
}
.footerNote{
  margin-top:18px;
  text-align:center;
  color: rgba(15,23,42,.58);
  font-size: var(--fs-xs);
  line-height: 1.65;
}

/* Responsive for new grids */
@media (max-width: 980px){
  .grid2{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .timelineGrid{ grid-template-columns: 1fr; }
  .heroStats{ grid-template-columns: 1fr; }
}
