:root{
  --bg:#FFFFFF;
  --ink:rgba(15,18,26,.92);
  --muted:rgba(15,18,26,.65);
  --muted2:rgba(15,18,26,.52);
  --stroke:rgba(15,18,26,.10);
  --glass:rgba(255,255,255,.82);
  --accent:#2563EB;
  --radius:18px;
  --shadow:0 14px 40px rgba(15,18,26,.08);
  --max:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{overflow-x:hidden}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",Roboto,Inter,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  letter-spacing:-0.01em;
  overflow-x:hidden;
}

a{text-decoration:none;color:inherit}
.wrap{max-width:var(--max);margin:0 auto;padding:0 22px}

/* =========================================================
   TOP BAR / NAV
========================================================= */
.topbar{
  position:sticky;
  top:0;
  backdrop-filter:blur(12px) saturate(140%);
  background:rgba(255,255,255,.75);
  border-bottom:1px solid var(--stroke);
  z-index:50;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:92px;
  gap:12px;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  font-weight:600;
}

.brandLogoImg{
  height:78px;
  width:auto;
  display:block;
}

.navlinks{
  display:flex;
  gap:18px;
  font-size:14px;
  color:var(--muted);
}

.navlinks a{padding:8px 10px;border-radius:10px}
.navlinks a:hover{color:var(--ink); background:rgba(15,18,26,.04)}
.navlinks a.active{color:var(--ink)}

.cta{display:flex;gap:10px}

.navToggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.88);
  box-shadow:var(--shadow);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:rgba(15,18,26,.82);
}
.navToggle svg{width:20px;height:20px;display:block}

/* Mobile: true centered logo via 1fr auto 1fr
   Hamburger bigger, CTA smaller (wraps to 2 lines), same height.
*/
@media (max-width: 820px){
  .nav{
    display:grid;
    grid-template-columns: 1fr auto 1fr;
    align-items:center;
  }

  .brand{justify-self:center}

  .navToggle{
    display:inline-flex;
    justify-self:start;
    width:52px;
    height:52px;
    border-radius:16px;
  }
  .navToggle svg{width:24px;height:24px}

  .cta{
    justify-self:end;
  }

  /* CTA becomes a square-ish "bubble" matching hamburger size */
  .btnCta{
    width:52px;
    height:52px;
    padding:0;
    border-radius:16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    line-height:1.05;
    font-size:12px;
    white-space:normal; /* allow wrap */
  }
  .btnCta span{display:block}

  /* dropdown links */
  .navlinks{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 10px);
    padding:12px;
    border-radius:18px;
    border:1px solid var(--stroke);
    background:rgba(255,255,255,.96);
    box-shadow:var(--shadow);
    flex-direction:column;
    gap:8px;
    z-index:60;
  }
  .navOpen .navlinks{display:flex}

  .navlinks a{
    padding:10px 12px;
    border-radius:12px;
  }
}

/* =========================================================
   BUTTONS
========================================================= */
.btn{
  padding:10px 16px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:var(--glass);
  box-shadow:var(--shadow);
  font-size:14px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  white-space:nowrap;
}
.btn.primary{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

/* =========================================================
   HERO / TYPOGRAPHY
========================================================= */
.hero{padding:70px 0 24px}

h1{
  font-size:42px;
  line-height:1.1;
  margin:0 0 12px;
  letter-spacing:-0.04em;
}

.subtext{
  font-size:16.5px;
  color:var(--muted);
  line-height:1.6;
  max-width:85ch;
  margin:0;
}

/* =========================================================
   SECTIONS
========================================================= */
.section{padding:44px 0}

.sectionTitle{
  margin:0 0 8px;
  font-size:22px;
  letter-spacing:-0.03em;
}

.sectionIntro{
  margin:0 0 18px;
  color:var(--muted);
  font-size:14.5px;
  line-height:1.6;
  max-width:92ch;
}
.sectionIntroFull{max-width:none}

/* =========================================================
   CAROUSEL
========================================================= */
.scrollWrapper{
  margin-left:-22px;
  margin-right:-22px;
  padding-left:22px;
  padding-right:22px;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-x:contain;
  max-width:100%;
}

.productScroll{
  --tile: clamp(220px, 40vw, 300px);
  display:flex;
  flex-wrap:nowrap;
  gap:16px;
  width:max-content;
  min-width:100%;
  padding: 6px 0 14px;
  scroll-snap-type:x mandatory;
}

.productScroll .tile{
  flex:0 0 var(--tile);
  scroll-snap-align:start;
  scroll-snap-stop:always;
}

.productScroll .tile .media{
  width:var(--tile);
  aspect-ratio:1 / 1;
  border-radius:18px;
  overflow:hidden;
}

.productScroll .tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================================================
   HOME: GRID CARDS
========================================================= */
.gridTwo{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:14px;
}

.infoCard{
  background:rgba(255,255,255,.88);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

.infoCard h3{
  margin:0 0 6px;
  font-size:15px;
  letter-spacing:-0.02em;
}

.infoCard p{
  margin:0;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.55;
}

/* =========================================================
   SERVICE AREA
========================================================= */
.serviceAreaWrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:stretch;
  margin-top:18px;
}

.serviceAreaSquare{
  aspect-ratio: 1 / 1;
  border-radius:18px;
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  background:rgba(255,255,255,.92);
  overflow:hidden;
}

.serviceAreaMap img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:#f5f5f5;
}

.serviceAreaCard{
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.serviceAreaCard h3{margin:0 0 14px;font-size:20px}
.serviceAreaCard p{
  font-size:15.5px;
  line-height:1.65;
  margin:0 0 14px;
  color:var(--muted);
}

/* =========================================================
   CTA SECTION
========================================================= */
.ctaSection{padding:54px 0 64px}

.ctaInner{
  background:rgba(255,255,255,.88);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.ctaInner h2{margin:0;font-size:18px;letter-spacing:-0.02em}
.ctaInner p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  max-width:72ch;
}

.ctaButtons{display:flex;gap:10px;flex-wrap:wrap}

/* =========================================================
   FOOTER
========================================================= */
.footer{
  margin-top:64px;
  padding:40px 0;
  border-top:1px solid var(--stroke);
  font-size:13px;
  color:var(--muted);
}

.footerInner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.footerLeft{max-width:78ch}
.footerLeft .copyright{font-weight:600;color:var(--muted)}
.footerLeft .disclaimer{margin-top:6px;color:var(--muted);line-height:1.55}

.footerRight{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* Social bubbles should match email bubble height (same vertical padding band) */
.socialBtn{
  height:40px;            /* matches email pill height below */
  width:40px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:#fff;        /* requested: all white backgrounds */
  box-shadow:var(--shadow);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, border-color .15s ease;
  overflow:hidden;
}
.socialBtn:hover{
  transform: translateY(-1px);
  border-color: rgba(37,99,235,.25);
}

.socialIconImg{
  width:22px;
  height:22px;
  object-fit:contain;
  display:block;
}

.footerEmail{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;       /* yields ~40px total height */
  border-radius:12px;
  border:1px solid var(--stroke);
  background:#fff;
  box-shadow:var(--shadow);
  color:rgba(15,18,26,.78);
  font-weight:600;
  font-size:14px;
  white-space:nowrap;
}
.footerEmail svg{width:16px;height:16px;display:block}
.footerEmail:hover{border-color: rgba(37,99,235,.25); color: rgba(15,18,26,.90)}

/* =========================================================
   HERO BUTTONS
========================================================= */
.heroButtons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}

/* =========================================================
   CALLOUT (used on FAQ, About)
========================================================= */
.callout{
  margin-top:18px;
  background:var(--glass);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.callout h2{margin:0;font-size:16px;letter-spacing:-0.02em}
.callout p{margin:6px 0 0;color:var(--muted);font-size:14px;line-height:1.6;max-width:70ch}

/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:980px){
  .gridTwo{grid-template-columns:1fr}
  .serviceAreaWrap{grid-template-columns:1fr}
  .serviceAreaSquare{aspect-ratio:auto}
}

@media(max-width:700px){
  h1{font-size:34px}
  .wrap{padding:0 16px}

  .scrollWrapper{
    margin-left:-16px;
    margin-right:-16px;
    padding-left:16px;
    padding-right:16px;
  }

  .footerRight{width:100%; justify-content:flex-start}
}
