/* =====================================================================
   HIPAA LINK — Site kit (shared across all marketing pages)
   Built from HIPAA-LINK-Brand-Tokens. Open Sans · teal system · soft/rounded.
   Marketing display type scales up; app UI scale kept for small labels.
   ===================================================================== */

/* ---------------- cookie consent ---------------- */
.hl-cookie{ position:fixed; left:0; right:0; bottom:0; z-index:120; background:#fff;
  border-top:1px solid var(--divider); box-shadow:0 -8px 30px -18px rgba(19,38,43,.28);
  transform:translateY(100%); transition:transform .32s cubic-bezier(.22,1,.36,1); }
.hl-cookie.show{ transform:translateY(0); }
.hl-cookie-inner{ max-width:1200px; margin:0 auto; display:flex; align-items:center; gap:18px;
  padding:14px 28px; flex-wrap:wrap; }
.hl-cookie-text{ font-size:13.5px; color:var(--text-secondary); line-height:1.5; margin:0; flex:1; min-width:240px; }
.hl-cookie-text a{ color:var(--teal-deep); font-weight:700; }
.hl-cookie-btns{ display:flex; gap:8px; flex-wrap:wrap; }
.hl-ck{ font-family:var(--font-ui); font-weight:700; font-size:13.5px; cursor:pointer; line-height:1;
  padding:10px 16px; border-radius:9px; border:1.5px solid transparent; transition:background .18s ease, border-color .18s ease, color .18s ease; }
.hl-ck-solid{ background:var(--cta); color:#fff; }
.hl-ck-solid:hover{ background:var(--cta-700); }
.hl-ck-ghost{ background:#fff; color:var(--text-primary); border-color:var(--input-border); }
.hl-ck-ghost:hover{ border-color:var(--teal-deep); color:var(--teal-deep); }
.hl-ckmodal{ position:fixed; inset:0; z-index:130; background:rgba(19,38,43,.42); backdrop-filter:blur(2px);
  display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; transition:opacity .2s ease; }
.hl-ckmodal.show{ opacity:1; }
.hl-ckmodal-card{ background:#fff; border-radius:18px; box-shadow:var(--sh-lg); width:100%; max-width:460px; padding:26px; }
.hl-ckmodal-card h3{ font-size:20px; margin:0 0 6px; }
.hl-ckm-sub{ font-size:13.5px; color:var(--text-secondary); line-height:1.55; margin:0 0 18px; }
.hl-ckrow{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0; border-top:1px solid var(--divider); cursor:pointer; }
.hl-ckrow span{ display:flex; flex-direction:column; gap:3px; }
.hl-ckrow b{ font-size:14.5px; color:var(--text-primary); }
.hl-ckrow small{ font-size:12px; color:var(--text-muted); line-height:1.45; }
.hl-ckrow input{ width:20px; height:20px; accent-color:var(--cta); flex:0 0 20px; cursor:pointer; }
.hl-ckrow-off{ cursor:default; }
.hl-ckpill{ font-size:11px; font-weight:800; letter-spacing:.04em; color:var(--teal-deep); background:var(--teal-bg); border-radius:99px; padding:5px 11px; white-space:nowrap; }
.hl-ckm-btns{ display:flex; gap:10px; justify-content:flex-end; margin-top:22px; }
/* breadcrumb (shared) */
.breadcrumb{ font-size:13px; color:var(--text-muted); display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.breadcrumb a{ color:var(--text-secondary); font-weight:600; }
.breadcrumb a:hover{ color:var(--teal-deep); }
.breadcrumb .sep{ opacity:.55; }
@media (max-width:600px){
  .hl-cookie-btns{ width:100%; } .hl-cookie-btns .hl-ck{ flex:1; }
  .hl-ckm-btns{ flex-direction:column-reverse; } .hl-ckm-btns .hl-ck{ width:100%; }
}

:root{
  /* brand / core */
  --brand-teal:#3BB8A4;      /* primary accent */
  --brand-teal-600:#2fa08e;
  --brand-teal-700:#268575;
  --cta:#0B7285;             /* CTA / action color (deep teal, blue-leaning) */
  --cta-700:#095a68;
  --teal-light:#81CFDD;
  --teal-cyan:#33D0FF;
  --teal-deep:#0B7285;
  --calm-blue:#6FA4D9;
  --calm-bg:#EDF3FB;
  --green:#1DAA5A;
  --green-bg:#E7F6EE;
  --nature-green:#4CAF7D;
  --accent-orange:#F1A843;

  /* neutrals */
  --page-bg:#FAFAFA;
  --surface:#FFFFFF;
  --surface-2:#F3F6F9;
  --text-primary:#2F3A4A;
  --text-secondary:#626363;
  --text-muted:#8A94A3;
  --divider:#E6EDF5;
  --input-border:#D6DEE8;
  --error:#F52F2F;

  /* teal tint surfaces */
  --teal-bg:#EAF7F5;
  --teal-bg-2:#F1FAF8;

  /* type */
  --font-ui:'Open Sans', system-ui, -apple-system, sans-serif;
  --font-accent:'Caveat', cursive;
  --font-serif:'IBM Plex Serif', Georgia, serif;

  /* rhythm */
  --gap-tight:4px;
  --gap:15px;
  --pad-section:30px;
  --radius:12px;
  --radius-lg:20px;
  --radius-xl:28px;
  --maxw:1200px;

  /* elevation (soft, diffuse) */
  --sh-sm:0 2px 6px rgba(47,58,74,.06), 0 1px 2px rgba(47,58,74,.04);
  --sh-md:0 10px 30px -14px rgba(47,58,74,.20), 0 4px 12px -8px rgba(47,58,74,.10);
  --sh-lg:0 30px 70px -30px rgba(47,58,74,.30), 0 12px 28px -16px rgba(47,58,74,.14);
  --sh-teal:0 12px 26px -10px rgba(59,184,164,.55);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--surface); color:var(--text-primary);
  font-family:var(--font-ui); font-size:16px; line-height:1.6; font-weight:400;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img,svg{ max-width:100%; display:block; }
a{ color:var(--teal-deep); text-decoration:none; }
a:hover{ color:var(--brand-teal-700); }
/* keyboard focus visibility (a11y) — only for keyboard users, not mouse clicks */
:focus-visible{ outline:2px solid var(--brand-teal); outline-offset:2px; border-radius:4px; }
.btn:focus-visible{ outline:2px solid var(--teal-deep); outline-offset:3px; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }

/* skip link (a11y) */
.skip{ position:absolute; left:-9999px; top:0; z-index:200; background:var(--brand-teal); color:#fff;
  padding:10px 16px; border-radius:0 0 10px 0; font-weight:700; }
.skip:focus{ left:0; color:#fff; }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible,
[tabindex]:focus-visible{ outline:3px solid var(--teal-cyan); outline-offset:2px; border-radius:6px; }

/* ---------------- typography (marketing display scale) ---------------- */
h1,h2,h3,h4{ margin:0; color:var(--text-primary); font-weight:700; line-height:1.12; letter-spacing:-.01em; }
h1{ font-size:56px; font-weight:800; line-height:1.05; letter-spacing:-.02em; }
h2{ font-size:38px; font-weight:800; letter-spacing:-.02em; }
h3{ font-size:22px; font-weight:700; }
h4{ font-size:18px; font-weight:700; }
p{ margin:0; }
.lead{ font-size:19px; line-height:1.6; color:var(--text-secondary); }
.muted{ color:var(--text-secondary); }
.fine{ font-size:12px; color:var(--text-muted); }
.eyebrow{
  font-size:13px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--teal-deep); display:inline-flex; align-items:center; gap:9px;
}
.eyebrow::before{ content:""; width:22px; height:2px; background:var(--brand-teal); border-radius:2px; }
.eyebrow.center{ justify-content:center; }
.accent-script{ font-family:var(--font-accent); font-weight:700; }

/* ---------------- buttons ---------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px; cursor:pointer;
  font-family:var(--font-ui); font-weight:700; font-size:16px; line-height:1;
  padding:15px 24px; border-radius:var(--radius); border:1.5px solid transparent;
  transition:transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn .ic{ width:18px; height:18px; }
.btn-primary{ background:var(--cta); color:#fff; box-shadow:0 8px 20px -8px rgba(11,114,133,.55); }
.btn-primary:hover{ background:var(--cta-700); color:#fff; transform:translateY(-2px); }
.btn-ghost{ background:var(--surface); color:var(--text-primary); border-color:var(--input-border); }
.btn-ghost:hover{ border-color:var(--brand-teal); color:var(--brand-teal-700); transform:translateY(-2px); }
.btn-lg{ font-size:17px; padding:17px 30px; }
.btn-sm{ font-size:14px; padding:11px 18px; border-radius:10px; }
.btn-white{ background:#fff; color:var(--teal-deep); }
.btn-white:hover{ background:#eefaf8; color:var(--teal-deep); transform:translateY(-2px); }
.btn-outline-white{ background:transparent; color:#fff; border-color:rgba(255,255,255,.45); }
.btn-outline-white:hover{ background:rgba(255,255,255,.12); color:#fff; border-color:#fff; }
.link-arrow{ color:var(--teal-deep); font-weight:700; display:inline-flex; align-items:center; gap:6px; }
.link-arrow .ic{ width:17px; height:17px; transition:transform .15s ease; }
.link-arrow:hover{ color:var(--brand-teal-700); }
.link-arrow:hover .ic{ transform:translateX(3px); }

/* ---------------- badges / chips / pills ---------------- */
.pill{
  display:inline-flex; align-items:center; gap:9px; font-weight:700; font-size:13.5px;
  padding:7px 14px 7px 10px; border-radius:99px; background:var(--teal-bg);
  border:1px solid #cdeae5; color:var(--teal-deep);
}
.pill .dot{ width:8px; height:8px; border-radius:50%; background:var(--green); box-shadow:0 0 0 4px rgba(29,170,90,.16); }
.badge{
  display:inline-flex; align-items:center; gap:7px; font-weight:700; font-size:13.5px;
  color:var(--teal-deep); background:var(--surface); border:1px solid var(--input-border);
  padding:8px 13px; border-radius:10px;
}
.badge .ic{ width:15px; height:15px; color:var(--brand-teal); }
.chip{
  display:inline-flex; align-items:center; gap:7px; font-size:14px; font-weight:600; color:var(--text-primary);
  background:var(--surface); border:1px solid var(--input-border); padding:8px 13px; border-radius:99px;
}
.chip .ic{ width:15px; height:15px; color:var(--brand-teal); }
.chip.new{ border-color:#cdeae5; background:var(--teal-bg); }
.chip .newtag{ font-size:9px; font-weight:800; letter-spacing:.06em; background:var(--brand-teal); color:#fff; padding:2px 5px; border-radius:5px; }
.newtag{ font-size:9px; font-weight:800; letter-spacing:.06em; background:var(--brand-teal); color:#fff; padding:2px 5px; border-radius:5px; }

/* ---------------- cards ---------------- */
.card{ background:var(--surface); border:1px solid var(--divider); border-radius:var(--radius-lg); box-shadow:var(--sh-sm); }
.card-pad{ padding:30px; }

/* ---------------- nav ---------------- */
.nav{ position:sticky; top:0; z-index:60; background:rgba(255,255,255,.86);
  backdrop-filter:saturate(1.4) blur(12px); border-bottom:1px solid transparent; transition:border-color .2s ease, box-shadow .2s ease; }
.nav.scrolled{ border-color:var(--divider); box-shadow:var(--sh-sm); }
.nav-inner{ display:flex; align-items:center; gap:28px; height:74px; position:relative; }
.nav-logo img{ height:30px; width:auto; }
.nav-menu{ display:flex; align-items:center; gap:24px; position:absolute; left:50%; top:0; height:100%; transform:translateX(-50%); }
.nav-menu > a, .nav-menu > .has-mega > button{
  font-family:var(--font-ui); font-weight:600; font-size:15.5px; color:var(--text-secondary);
  background:none; border:none; cursor:pointer; display:inline-flex; align-items:center; gap:5px; padding:6px 0;
}
.nav-menu > a:hover, .nav-menu > .has-mega > button:hover{ color:var(--text-primary); }
.nav-menu .ic{ width:15px; height:15px; opacity:.7; transition:transform .2s ease; }
.nav-cta{ margin-left:auto; display:flex; align-items:center; gap:18px; }
.nav-cta .login{ font-weight:600; font-size:15.5px; color:var(--text-secondary); }
.nav-cta .login:hover{ color:var(--text-primary); }

/* mega menu */
.has-mega{ position:relative; }
.mega{
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%) translateY(-6px);
  width:640px; background:var(--surface); border:1px solid var(--divider); border-radius:var(--radius-lg);
  box-shadow:var(--sh-lg); padding:22px; opacity:0; visibility:hidden; transition:opacity .18s ease, transform .18s ease; z-index:70;
}
.has-mega:hover .mega, .has-mega:focus-within .mega, .mega:hover{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.mega::before{ content:""; position:absolute; top:-16px; left:0; right:0; height:18px; background:transparent; }
.has-mega:hover > button .ic{ transform:rotate(180deg); }
.mega-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px 22px; }
.mega-col h5{ font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); margin:4px 0 10px; }
.mega-col a{ display:flex; align-items:center; gap:9px; padding:7px 8px; border-radius:9px; color:var(--text-primary); font-size:14.5px; font-weight:600; }
.mega-col a:hover{ background:var(--teal-bg-2); color:var(--teal-deep); }
.mega-col a .ic{ width:16px; height:16px; color:var(--brand-teal); flex:0 0 16px; }
.mega-foot{ margin-top:16px; padding-top:14px; border-top:1px solid var(--divider); display:flex; justify-content:space-between; align-items:center; }

/* mobile nav */
.nav-toggle{ display:none; margin-left:6px; background:none; border:none; cursor:pointer; color:var(--text-primary); padding:6px; }
.nav-toggle .ic{ width:26px; height:26px; }
.mobile-nav{ display:none; }
@media (max-width:960px){
  .nav-menu{ display:none; }
  .nav-inner{ gap:10px; }
  /* keep Login visible in the header, right next to the hamburger */
  .nav-cta{ margin-left:auto; gap:4px; }
  .nav-cta .login{ display:inline-flex; padding:6px 6px; }
  .nav-cta .btn{ display:none; }
  .nav-toggle{ display:inline-flex; margin-left:0; }

  .mobile-nav{ display:block; position:fixed; inset:74px 0 0; background:var(--surface); z-index:55;
    padding:8px 24px 44px; overflow-y:auto; overscroll-behavior:contain; transform:translateX(100%); transition:transform .25s ease; }
  .mobile-nav.open{ transform:translateX(0); }

  /* top-level plain links */
  .mobile-nav .m-top{ display:block; font-size:19px; font-weight:700; color:var(--text-primary); padding:16px 0; border-bottom:1px solid var(--divider); }

  /* Features / Solutions accordions */
  .m-acc{ border-bottom:1px solid var(--divider); }
  .m-acc-btn{ width:100%; background:none; border:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between;
    font-family:var(--font-ui); font-size:19px; font-weight:700; color:var(--text-primary); padding:16px 0; }
  .m-acc-btn .ic{ width:22px; height:22px; color:var(--teal-deep); transition:transform .25s ease; flex:0 0 22px; }
  .m-acc.open .m-acc-btn .ic{ transform:rotate(180deg); }
  .m-acc-panel{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
  .m-acc-panel .m-group{ padding:0 0 8px; }
  .m-acc-panel .m-group h5{ font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); margin:12px 0 2px; }
  .m-acc-panel .m-group a{ display:block; font-size:15.5px; font-weight:600; color:var(--text-secondary); padding:9px 0 9px 2px; }
  .m-acc-panel .m-group a:hover{ color:var(--teal-deep); }
  .m-acc-panel .m-seeall{ display:inline-flex; align-items:center; gap:6px; font-size:14.5px; font-weight:700; color:var(--teal-deep); padding:4px 0 16px; }

  /* bottom CTAs — centered, correct button colors */
  .mobile-nav .m-cta{ margin-top:24px; display:flex; flex-direction:column; gap:12px; }
  .mobile-nav .m-cta .btn{ width:100%; display:inline-flex; align-items:center; justify-content:center; text-align:center; }
  .mobile-nav .m-cta .btn-primary{ color:#fff; }

  body.nav-open{ overflow:hidden; }
}

/* ---------------- section rhythm ---------------- */
.sec{ padding:96px 0; }
.sec.tight{ padding:64px 0; }
.sec-soft{ background:var(--page-bg); }
.sec-teal{ background:var(--teal-bg-2); }
.sec-calm{ background:var(--calm-bg); }
.sec-head{ max-width:640px; }
.sec-head.center{ margin:0 auto; text-align:center; }
.sec-head h2{ margin:14px 0 0; }
.sec-head .lead{ margin-top:16px; }
.sec-head.center{ margin-bottom:44px; }
.sec-head.center:last-child{ margin-bottom:0; }

/* ---------------- forms (static labels, outlined, roomy) ---------------- */
.field{ display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
.field label{ font-size:12px; font-weight:700; color:var(--text-primary); letter-spacing:.01em; }
.field input, .field select, .field textarea{
  font-family:var(--font-ui); font-size:15px; color:var(--text-primary); background:var(--surface);
  border:1.5px solid var(--input-border); border-radius:10px; padding:13px 14px; outline:none; transition:border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--brand-teal); box-shadow:0 0 0 3px rgba(59,184,164,.16); }
.field .hint{ font-size:12px; color:var(--text-muted); }

/* ---------------- product mockup primitives (reused) ---------------- */
.appwin{ background:var(--surface); border-radius:var(--radius-lg); border:1px solid var(--divider); box-shadow:var(--sh-lg); overflow:hidden; }
.appbar{ display:flex; align-items:center; gap:8px; padding:12px 15px; border-bottom:1px solid var(--divider); background:#fbfdfe; }
.appbar .dot{ width:11px; height:11px; border-radius:50%; }
.appbar .url{ margin-left:10px; font-size:12px; color:var(--text-muted); background:#fff; border:1px solid var(--divider);
  border-radius:20px; padding:4px 12px; display:inline-flex; gap:7px; align-items:center; }
.appbar .url .ic{ width:13px; height:13px; color:var(--brand-teal); }

.call{ padding:14px; background:linear-gradient(160deg,#0e2f34,#12474f); }
.call-stage{ position:relative; border-radius:16px; overflow:hidden; aspect-ratio:16/10;
  background:linear-gradient(135deg,#2f8f83 0%, #3bb8a4 55%, #56c7bb 100%); }
.call-name{ position:absolute; left:12px; bottom:12px; background:rgba(6,26,29,.55); color:#fff; font-size:13px; font-weight:600;
  padding:6px 11px; border-radius:8px; backdrop-filter:blur(4px); display:flex; align-items:center; gap:7px; }
.call-name .liv{ width:7px; height:7px; border-radius:50%; background:#46d362; }
.avatar{ position:absolute; inset:0; margin:auto; width:96px; height:96px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:32px; color:#fff; background:rgba(255,255,255,.16); border:2px solid rgba(255,255,255,.35); }
.call-self{ position:absolute; right:12px; top:12px; width:116px; aspect-ratio:4/3; border-radius:12px; overflow:hidden;
  background:linear-gradient(135deg,#5f79b3,#8a7bba); border:2px solid rgba(255,255,255,.5); box-shadow:var(--sh-md); }
.call-self .avatar{ width:44px; height:44px; font-size:16px; }
.call-bar{ display:flex; align-items:center; justify-content:center; gap:9px; padding:14px 0 4px; }
.cbtn{ width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.12); color:#dff3f1; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.14); }
.cbtn .ic{ width:19px; height:19px; }
.cbtn.end{ background:#e5484d; color:#fff; border-color:#e5484d; width:auto; padding:0 18px; border-radius:22px; font-weight:700; font-size:13.5px; gap:7px; }
.cbtn.on{ background:var(--brand-teal); color:#fff; border-color:var(--brand-teal); }

/* AI notes pill on call */
.ainotes-pill{ position:absolute; top:12px; left:12px; display:inline-flex; align-items:center; gap:8px;
  background:rgba(6,26,29,.6); color:#fff; padding:6px 12px; border-radius:99px; font-size:12.5px; font-weight:700; backdrop-filter:blur(4px); }
.ainotes-pill .rec{ width:9px; height:9px; border-radius:50%; background:#ff6b6b; box-shadow:0 0 0 4px rgba(255,107,107,.3); }

/* list rows (queue) */
.mlist{ padding:15px; display:flex; flex-direction:column; gap:10px; background:var(--surface); }
.mrow{ display:flex; align-items:center; gap:12px; padding:11px 13px; border:1px solid var(--divider); border-radius:14px; background:var(--surface); }
.mrow.active{ border-color:#cdeae5; background:var(--teal-bg); }
.mrow .ava{ width:38px; height:38px; border-radius:50%; flex:0 0 38px; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:14px; }
.mrow .who{ font-weight:700; font-size:14.5px; }
.mrow .sub{ font-size:12.5px; color:var(--text-muted); }
.mrow .tag{ margin-left:auto; font-size:12px; font-weight:700; padding:5px 10px; border-radius:8px; }
.tag-teal{ background:var(--teal-bg); color:var(--teal-deep); }
.tag-green{ background:var(--green-bg); color:#127a41; }
.mrow .mini{ margin-left:auto; display:flex; gap:6px; }
.mini .ib{ width:30px; height:30px; border-radius:8px; background:var(--surface-2); display:flex; align-items:center; justify-content:center; color:var(--teal-deep); }
.mini .ib .ic{ width:15px; height:15px; }

/* ---------------- spotlight rows (shared) ---------------- */
.spot{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.spot.rev .spot-media{ order:2; }
.spot h2{ font-size:34px; margin:14px 0 0; }
.spot p{ color:var(--text-secondary); font-size:17px; margin-top:16px; }
.spot .spot-list{ list-style:none; margin:22px 0 0; padding:0; display:flex; flex-direction:column; gap:13px; }
.spot .spot-list li{ display:flex; align-items:flex-start; gap:11px; font-size:15.5px; color:var(--text-primary); font-weight:600; }
.spot .spot-list li .ic{ width:19px; height:19px; color:var(--brand-teal); flex:0 0 19px; margin-top:2px; }
.spot .spot-cta{ margin-top:26px; }

/* note / doc mock (shared) */
.note-card{ padding:18px; background:var(--surface); }
.note-head{ display:flex; align-items:center; gap:10px; margin-bottom:14px; flex-wrap:wrap; }
.note-head .badge{ background:var(--green-bg); border-color:#bfe6cf; color:#127a41; }
.note-head .badge .ic{ color:#1DAA5A; }
.skl{ height:11px; border-radius:6px; background:linear-gradient(90deg,#eef3f4,#e2ebec,#eef3f4); }
.note-line{ display:flex; gap:8px; align-items:center; margin:9px 0; }
.note-line .lbl{ font-size:11.5px; font-weight:800; color:var(--teal-deep); width:78px; flex:0 0 78px; letter-spacing:.03em; }

/* fax mock (shared) */
.fax-card{ padding:18px; background:var(--surface); }
.fax-row{ display:flex; align-items:center; gap:12px; padding:12px 13px; border:1px solid var(--divider); border-radius:12px; margin-bottom:10px; }
.fax-row .fi{ width:38px; height:38px; border-radius:10px; background:var(--teal-bg); color:var(--teal-deep); display:flex; align-items:center; justify-content:center; flex:0 0 38px; }
.fax-row .fi .ic{ width:19px; height:19px; }
.fax-row .who{ font-weight:700; font-size:14px; }
.fax-row .sub{ font-size:12px; color:var(--text-muted); }
.fax-row .st{ margin-left:auto; font-size:11.5px; font-weight:700; padding:5px 9px; border-radius:7px; }

/* consent/assessment form mock (shared) */
.form-card{ padding:16px; background:var(--surface); }
.form-card .ttl{ font-weight:800; font-size:15px; display:flex; align-items:center; gap:8px; }
.form-card .ttl .ic{ width:16px; height:16px; color:var(--teal-deep); }
.form-card .meta{ font-size:12px; color:var(--text-muted); margin:3px 0 12px; }
.fld{ border:1px solid var(--divider); border-radius:10px; padding:11px 12px; margin:8px 0; font-size:13px; color:var(--text-secondary); display:flex; align-items:center; gap:9px; }
.fld .ck{ width:18px; height:18px; border-radius:5px; border:1.5px solid var(--input-border); flex:0 0 18px; display:flex; align-items:center; justify-content:center; }
.fld .ck.on{ background:var(--brand-teal); border-color:var(--brand-teal); color:#fff; }
.fld .ck .ic{ width:12px; height:12px; }
.sig{ border:1.5px dashed var(--input-border); border-radius:10px; padding:12px; text-align:center; color:var(--text-muted); font-size:12px; margin-top:6px; }
.sig .scribble{ font-family:var(--font-accent); font-size:26px; color:var(--teal-deep); }

/* feature group cards (shared) */
.feat-groups{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:50px; }
.feat-col{ background:var(--surface); border:1px solid var(--divider); border-radius:var(--radius-lg); padding:30px; box-shadow:var(--sh-sm); }
.feat-col .cap{ width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.feat-col .cap .ic{ width:26px; height:26px; }
.feat-col.sessions .cap{ background:var(--teal-bg); color:var(--teal-deep); }
.feat-col.clinical .cap{ background:var(--calm-bg); color:var(--calm-blue); }
.feat-col.practice .cap{ background:var(--green-bg); color:#127a41; }
.feat-col h3{ font-size:20px; }
.feat-col .grp-sub{ font-size:14px; color:var(--text-muted); margin-top:4px; }
.feat-col ul{ list-style:none; margin:18px 0 0; padding:0; display:flex; flex-direction:column; gap:12px; }
.feat-col ul li{ display:flex; align-items:center; gap:10px; font-size:15px; color:var(--text-primary); font-weight:600; }
.feat-col ul li .ic{ width:17px; height:17px; color:var(--brand-teal); flex:0 0 17px; }
.feat-col.clinical ul li .ic{ color:var(--calm-blue); }
.feat-col.practice ul li .ic{ color:#1DAA5A; }

/* security band (shared) */
.sec-security{ background:linear-gradient(160deg,#0e2f34 0%, #0B7285 130%); color:#fff; }
.sec-security h2{ color:#fff; }
.sec-security .lead{ color:#c7ebe6; }
.security-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:44px; }
.sfeat{ background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:var(--radius-lg); padding:24px; }
.sfeat .ic-wrap{ width:46px; height:46px; border-radius:12px; background:rgba(255,255,255,.1); color:var(--teal-light); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.sfeat .ic-wrap .ic{ width:23px; height:23px; }
.sfeat h4{ color:#fff; font-size:16px; }
.sfeat p{ color:#a9d6d0; font-size:13.5px; margin-top:7px; line-height:1.5; }

/* ---------------- trusted-by strip ---------------- */
.trust{ border-top:1px solid var(--divider); border-bottom:1px solid var(--divider); background:var(--page-bg); }
.trust-inner{ display:flex; align-items:center; gap:26px; padding:22px 0; flex-wrap:wrap; }
.trust .stars{ color:var(--accent-orange); font-size:16px; letter-spacing:1px; font-weight:700; display:flex; align-items:center; gap:9px; }
.trust .stars small{ color:var(--text-secondary); font-size:13px; font-weight:600; letter-spacing:0; }
.trust .seenin{ display:inline-flex; align-items:center; gap:9px; font-weight:700; color:var(--text-secondary); font-size:14px; }
.trust .logos{ margin-left:auto; display:flex; gap:24px; align-items:center; flex-wrap:wrap; }
.clogo{ font-weight:800; font-size:15px; color:#a7b4c2; letter-spacing:-.01em; display:inline-flex; align-items:center; gap:7px; }
.clogo .ic{ width:17px; height:17px; }

/* ---------------- trust band (Trustpilot + as seen in) ---------------- */
.trustband{ border-top:1px solid var(--divider); border-bottom:1px solid var(--divider); background:var(--surface); }
.trustband-inner{ display:flex; align-items:center; justify-content:center; gap:44px; padding:26px 0; flex-wrap:wrap; }
.tp-img{ height:54px; width:auto; display:block; }
.tb-divider{ width:1px; height:44px; background:var(--divider); }
.seenin-group{ display:flex; align-items:center; gap:30px; flex-wrap:wrap; justify-content:center; }
.seenin-label{ font-size:12px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--text-muted); }
.seenin-logo{ width:auto; display:block; filter:grayscale(1); opacity:.9; transition:filter .2s ease, opacity .2s ease; }
.seenin-logo:hover{ filter:none; opacity:1; }
.seenin-logo.pt{ height:34px; }
.seenin-logo.swt{ height:56px; }
@media (max-width:760px){
  .trustband-inner{ gap:26px; padding:22px 0; }
  .tb-divider{ display:none; }
  .tp-img{ height:44px; }
  .seenin-logo.pt{ height:28px; } .seenin-logo.swt{ height:46px; }
}

/* ---------------- AI Progress Notes dialog (shared mock) ---------------- */
.ainote-dlg{ background:#fff; padding:22px 22px 20px; }
.ainote-dlg .adlg-title{ text-align:center; font-weight:800; font-size:17px; color:var(--text-primary); margin-bottom:16px; }
.ainote-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px 16px; }
.ainote-f{ display:flex; flex-direction:column; gap:5px; }
.ainote-f.full{ grid-column:1 / -1; }
.ainote-f label{ font-size:11.5px; font-weight:700; color:var(--teal-deep); }
.ainote-f .sel{ border:1px solid var(--input-border); border-radius:8px; padding:9px 11px; font-size:13px; color:var(--text-primary);
  display:flex; align-items:center; justify-content:space-between; gap:8px; background:#fff; }
.ainote-f .sel .ic{ width:14px; height:14px; color:var(--text-muted); }
.ainote-sechead{ font-size:12px; font-weight:800; color:var(--text-primary); margin:16px 0 10px; }
.ainote-checks{ display:grid; grid-template-columns:1fr 1fr; gap:11px 16px; }
.ainote-chk{ display:flex; align-items:flex-start; gap:8px; font-size:12.5px; color:var(--text-secondary); }
.ainote-chk .box{ width:17px; height:17px; border-radius:4px; border:1.5px solid var(--input-border); flex:0 0 17px; display:flex; align-items:center; justify-content:center; }
.ainote-chk .box.on{ background:var(--brand-teal); border-color:var(--brand-teal); color:#fff; }
.ainote-chk .box .ic{ width:11px; height:11px; }
.ainote-chk .info{ color:var(--teal-deep); width:13px; height:13px; }
.ainote-credits{ text-align:center; margin:16px auto 14px; display:inline-flex; align-self:center; }
.ainote-creditpill{ display:block; margin:16px auto 14px; width:fit-content; font-size:12.5px; font-weight:700; color:#127a41; background:var(--green-bg); padding:7px 16px; border-radius:99px; }
.ainote-btns{ display:flex; gap:12px; }
.ainote-btns .b{ flex:1; text-align:center; font-weight:700; font-size:13px; padding:11px; border-radius:8px; }
.ainote-btns .b.cancel{ border:1px solid var(--input-border); color:var(--teal-deep); }
.ainote-btns .b.start{ background:var(--brand-teal); color:#fff; }

/* AI notes ready list */
.ainote-list{ background:#fff; }
.ainote-list .al-tab{ display:inline-block; font-size:12px; font-weight:800; letter-spacing:.06em; color:var(--teal-deep); border-bottom:2px solid var(--brand-teal); padding:12px 16px; }
.ainote-list .al-head{ display:flex; align-items:center; justify-content:space-between; padding:16px 18px 12px; border-top:1px solid var(--divider); }
.ainote-list .al-credits{ font-size:14px; color:var(--text-secondary); } .ainote-list .al-credits b{ color:var(--text-primary); font-size:16px; }
.ainote-list .al-add{ font-size:12px; font-weight:700; color:#fff; background:var(--brand-teal); padding:8px 13px; border-radius:8px; }
.ainote-list table{ width:100%; border-collapse:collapse; }
.ainote-list th{ text-align:left; font-size:10.5px; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:.04em; padding:9px 12px; border-bottom:1px solid var(--divider); }
.ainote-list td{ font-size:12px; color:var(--text-secondary); padding:11px 12px; border-bottom:1px solid var(--divider); white-space:nowrap; }
.ainote-list td:first-child{ color:var(--text-primary); font-weight:600; }
.ainote-list .st-btns{ display:flex; gap:6px; }
.ainote-list .stb{ font-size:10.5px; font-weight:700; padding:5px 9px; border-radius:6px; }
.ainote-list .stb.pdf{ border:1px solid var(--input-border); color:var(--teal-deep); }
.ainote-list .stb.txt{ background:var(--brand-teal); color:#fff; }

/* ---------------- Transfer dialog (shared mock) ---------------- */
.xfer{ background:#fff; padding:20px; }
.xfer-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.xfer-head .t{ font-weight:800; font-size:15px; letter-spacing:.04em; color:var(--text-primary); }
.xfer-head .x{ color:var(--brand-teal); display:flex; }
.xfer-head .x .ic{ width:18px; height:18px; }
.xfer-select{ border:1px solid var(--input-border); border-radius:8px; padding:11px 13px; font-size:13.5px;
  color:var(--text-muted); display:flex; align-items:center; justify-content:space-between; gap:8px; }
.xfer-select .ic{ width:15px; height:15px; color:var(--text-secondary); }
.xfer-list{ border:1px solid var(--divider); border-top:none; border-radius:0 0 10px 10px; box-shadow:var(--sh-md); overflow:hidden; }
.xfer-opt{ display:flex; align-items:center; gap:11px; padding:10px 13px; border-bottom:1px solid var(--divider); }
.xfer-opt:last-child{ border-bottom:none; }
.xfer-opt .xa{ position:relative; width:38px; height:38px; border-radius:50%; flex:0 0 38px; display:flex; align-items:center;
  justify-content:center; color:#fff; font-weight:700; font-size:14px; }
.xfer-opt .xa .dotstat{ position:absolute; right:-1px; bottom:-1px; width:11px; height:11px; border-radius:50%;
  background:var(--accent-orange); border:2px solid #fff; }
.xfer-opt .xn{ font-weight:700; font-size:13.5px; color:var(--text-primary); line-height:1.25; }
.xfer-opt .xu{ font-size:12px; color:var(--text-muted); }
.xfer-btns{ display:flex; gap:12px; margin-top:16px; }
.xfer-btns .b{ flex:1; text-align:center; font-weight:700; font-size:13.5px; padding:11px; border-radius:8px; }
.xfer-btns .b.cancel{ border:1.5px solid var(--brand-teal); color:var(--teal-deep); }
.xfer-btns .b.go{ background:var(--cta); color:#fff; }

/* ---------------- Staff settings table (shared mock) ---------------- */
.staffui{ background:#fff; }
.staffui .st-tab{ display:inline-block; font-size:12px; font-weight:800; letter-spacing:.06em; color:var(--teal-deep); border-bottom:2px solid var(--brand-teal); padding:12px 16px; }
.staffui .st-top{ display:flex; align-items:center; gap:12px; padding:14px 16px 12px; border-top:1px solid var(--divider); flex-wrap:wrap; }
.staffui .st-seats{ font-size:12.5px; color:var(--text-secondary); } .staffui .st-seats b{ color:var(--text-primary); }
.staffui .st-seats .g{ color:var(--teal-deep); }
.staffui .st-search{ margin-left:auto; font-size:12px; color:var(--text-muted); border:1px solid var(--input-border); border-radius:8px; padding:7px 12px; min-width:130px; }
.staffui .st-export{ font-size:12px; font-weight:700; color:var(--teal-deep); border:1px solid var(--input-border); border-radius:8px; padding:7px 13px; }
.staffui .st-invite{ font-size:12px; font-weight:700; color:#fff; background:var(--brand-teal); border-radius:8px; padding:7px 14px; }
.staffui table{ width:100%; border-collapse:collapse; }
.staffui th{ text-align:left; font-size:10.5px; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:.04em; padding:9px 16px; border-bottom:1px solid var(--divider); }
.staffui td{ font-size:12px; color:var(--text-secondary); padding:10px 16px; border-bottom:1px solid var(--divider); white-space:nowrap; }
.staffui td:first-child{ color:var(--text-primary); font-weight:600; }
.staffui .st-role{ color:var(--text-primary); }
.staffui .st-seat .ic{ width:16px; height:16px; color:#1DAA5A; }
.staffui .st-active{ color:var(--text-primary); } .staffui .st-pending{ color:var(--accent-orange); }
.staffui .st-foot{ display:flex; align-items:center; justify-content:space-between; padding:11px 16px; color:var(--text-muted); font-size:11px; }

/* ---------------- EMDR live-session mock (shared) ---------------- */
.emdrui{ display:grid; grid-template-columns:1fr 168px; background:#0c0f12; }
.emdrui .em-main{ padding:10px; display:flex; flex-direction:column; gap:8px; }
.emdrui .em-client{ position:relative; border-radius:8px; overflow:hidden; aspect-ratio:16/9; background:#1a2530; }
.emdrui .em-client img{ width:100%; height:100%; object-fit:cover; object-position:center 28%; display:block; }
.emdrui .em-self{ position:absolute; left:8px; top:8px; width:66px; aspect-ratio:5/4; border-radius:6px; background:#20272e; border:1px solid rgba(255,255,255,.14); display:flex; align-items:flex-end; }
.emdrui .em-self span{ font-size:8px; color:#cfd6da; padding:3px 5px; display:flex; align-items:center; gap:3px; }
.emdrui .em-self .r{ width:5px; height:5px; border-radius:50%; background:#e5484d; }
.emdrui .em-cname{ position:absolute; left:8px; bottom:8px; font-size:10px; font-weight:600; color:#fff; background:rgba(6,18,22,.6); padding:3px 8px; border-radius:5px; backdrop-filter:blur(3px); }
/* vertical zoom scale on client video */
.emdrui .em-zoom{ position:absolute; right:8px; top:12px; bottom:12px; display:flex; flex-direction:column; align-items:center; gap:5px; }
.emdrui .em-zoom .ez-label{ font-size:7px; font-weight:800; letter-spacing:.12em; color:#eaf6f8; writing-mode:vertical-rl; }
.emdrui .em-zoom .ez-track{ position:relative; flex:1; width:3px; border-radius:3px; background:rgba(255,255,255,.35); }
.emdrui .em-zoom .ez-knob{ position:absolute; left:50%; top:30%; width:10px; height:10px; border-radius:50%; background:#fff; transform:translate(-50%,-50%); box-shadow:0 1px 3px rgba(0,0,0,.4); }
.emdrui .em-stage{ position:relative; border-radius:8px; background:#000; aspect-ratio:16/9; overflow:hidden; }
.emdrui .em-watch{ position:absolute; top:8px; left:50%; transform:translateX(-50%); font-size:8.5px; font-weight:800; letter-spacing:.08em; color:#cfd6da; }
.emdrui .em-tp{ position:absolute; top:8px; right:8px; font-size:8.5px; font-weight:700; color:#fff; background:rgba(255,255,255,.14); padding:5px 8px; border-radius:5px; line-height:1.35; }
.emdrui .em-dot{ position:absolute; left:9%; top:56%; width:20px; height:20px; border-radius:50%; background:#42E2FF; box-shadow:0 0 18px #42E2FF; }
/* controls panel */
.emdrui .em-panel{ background:#fff; padding:12px; overflow:hidden; }
.em-panel .ep-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:9px; }
.em-panel .ep-head .t{ font-size:10.5px; font-weight:800; letter-spacing:.04em; color:var(--text-primary); }
.em-panel .ep-head .x{ color:var(--brand-teal); font-size:12px; }
.em-panel .ep-lbl{ font-size:8.5px; font-weight:700; color:var(--text-secondary); margin:8px 0 4px; }
.em-seg{ display:flex; gap:4px; }
.em-seg span{ flex:1; text-align:center; font-size:8px; font-weight:700; padding:5px 0; border-radius:5px; border:1px solid var(--input-border); color:var(--text-secondary); }
.em-seg span.on{ background:var(--brand-teal); color:#fff; border-color:var(--brand-teal); }
.em-slider{ display:flex; align-items:center; gap:6px; }
.em-track{ flex:1; height:4px; border-radius:3px; background:var(--divider); position:relative; }
.em-track .fill{ position:absolute; left:0; top:0; bottom:0; border-radius:3px; background:var(--brand-teal); }
.em-track .knob{ position:absolute; top:50%; width:9px; height:9px; border-radius:50%; background:var(--brand-teal); transform:translate(-50%,-50%); }
.em-val{ font-size:8px; font-weight:700; color:var(--text-primary); border:1px solid var(--input-border); border-radius:4px; padding:2px 5px; min-width:18px; text-align:center; }
.em-row{ display:flex; gap:7px; align-items:center; margin-top:5px; }
.em-row .ic{ width:13px; height:13px; color:var(--text-secondary); }
.em-row .ic.on{ color:var(--brand-teal); }
.em-swatches{ display:flex; gap:5px; margin-top:5px; }
.em-sw{ width:14px; height:14px; border-radius:50%; }
.em-sw.sel{ box-shadow:0 0 0 2px #fff, 0 0 0 3.5px var(--teal-cyan); }
.em-panel .ep-btns{ display:flex; gap:7px; margin-top:11px; }
.em-panel .ep-btns .b{ flex:1; text-align:center; font-size:9px; font-weight:700; padding:8px 0; border-radius:6px; color:#fff; }
.em-panel .ep-btns .play{ background:var(--brand-teal); } .em-panel .ep-btns .close{ background:#e5484d; }

/* ---------------- footer ---------------- */
footer.site{ background:#0d1b2e; color:rgba(255,255,255,.78); padding:0 0 34px; }
footer.site .foot-top-pad{ padding-top:56px; }
/* app badges */
footer.site .foot-apps{ margin-top:20px; }
footer.site .foot-apps .lab{ font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.55); margin-bottom:9px; }
footer.site .foot-apps .badges{ display:flex; gap:10px; flex-wrap:wrap; }
footer.site .foot-apps img{ height:38px; width:auto; display:block; opacity:.92; }
footer.site .foot-apps .comingsoon{ font-size:11px; color:rgba(255,255,255,.5); margin-top:8px; }

/* App-store / Google Play badges are placeholders until the mobile apps ship.
   Make them clearly non-clickable and label them "Coming soon" everywhere. */
.store-badges, .foot-apps .badges{ position:relative; display:inline-flex; }
.store-badges img, .foot-apps .badges img{ opacity:.45 !important; filter:grayscale(1) !important; cursor:default; pointer-events:none; }
.store-badges::after, .foot-apps .badges::after{
  content:"Coming soon"; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  background:var(--brand-teal); color:#fff; font-family:var(--font-ui); font-weight:800; font-size:11.5px;
  letter-spacing:.02em; padding:5px 12px; border-radius:999px; white-space:nowrap;
  box-shadow:0 2px 10px rgba(0,0,0,.3); pointer-events:none;
}
footer.site .foot-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1fr 1fr; gap:30px; }
footer.site .flogo img{ height:30px; }
footer.site p{ font-size:14px; line-height:1.6; margin-top:15px; max-width:30ch; color:rgba(255,255,255,.68); }
footer.site h4{ font-size:12px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:#fff; margin:0; }
footer.site ul{ list-style:none; margin:14px 0 0; padding:0; display:flex; flex-direction:column; gap:11px; }
footer.site ul a{ font-size:14px; color:rgba(255,255,255,.78); }
footer.site ul a:hover{ color:#fff; }
footer.site .foot-badges{ display:flex; gap:10px; margin-top:20px; flex-wrap:wrap; align-items:center; }
footer.site .foot-badges .badge{ background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.22); color:#ece9ff; font-size:13px; padding:9px 14px; }
footer.site .foot-badges .badge .ic{ color:var(--teal-light); width:16px; height:16px; }
footer.site .foot-social{ display:flex; gap:10px; margin-top:22px; }
footer.site .foot-social a{ width:36px; height:36px; border-radius:9px; background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.16);
  display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.8); transition:background .2s ease, color .2s ease; }
footer.site .foot-social a:hover{ background:var(--brand-teal); color:#fff; border-color:var(--brand-teal); }
footer.site .foot-social a .ic{ width:18px; height:18px; }
footer.site .foot-bottom{ border-top:1px solid rgba(255,255,255,.16); margin-top:44px; padding-top:22px;
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:13px; color:rgba(255,255,255,.6); }

/* ---------------- FAQ (shared) ---------------- */
.faq{ max-width:800px; margin:44px auto 0; }
.faq-item{ border-bottom:1px solid var(--divider); }
.faq-q{ width:100%; background:none; border:none; cursor:pointer; font-size:19px; font-weight:700; color:var(--text-primary); text-align:left; padding:24px 42px 24px 0; position:relative; }
.faq-q .ic{ position:absolute; right:0; top:50%; transform:translateY(-50%); width:22px; height:22px; color:var(--teal-deep); transition:transform .25s ease; }
.faq-item.open .faq-q .ic{ transform:translateY(-50%) rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a p{ color:var(--text-secondary); font-size:16px; margin:0 0 24px; max-width:70ch; }

/* ---------------- final CTA (shared) ---------------- */
.final{ padding:0 0 96px; }
.final-card{ position:relative; overflow:hidden; border-radius:var(--radius-xl); padding:74px 40px; text-align:center; color:#fff;
  background:linear-gradient(150deg,#2fa08e 0%, #0B7285 120%); box-shadow:var(--sh-lg); }
.final-card::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 82% -10%, rgba(129,207,221,.4), transparent 55%); }
.final-card > *{ position:relative; }
.final-card h2{ color:#fff; font-size:44px; }
.final-card .lead{ color:#d6f2ee; margin:18px auto 30px; max-width:32em; }
.final-card .fine{ margin-top:18px; font-size:13.5px; color:#b6ddd7; }

/* ---------------- third-party widget guards ---------------- */
/* Zoho SalesIQ injects its chat button + chat window at end of <body>.
   If its own positioning CSS is slow or blocked, these render in normal
   flow and reserve a huge empty gap under the footer. Force them out of
   flow so they never affect page layout (matches Zoho's intended fixed
   positioning; their own offsets still apply). */
.zsiq_floatmain,
.zls-sptwndw,
div[data-id="zsalesiq"],
div[data-id="zsiqembed"]{ position:fixed !important; }
/* While the cookie banner is showing, lift the chat button above it so it
   doesn't cover the consent buttons. Drops back when the banner is dismissed. */
html.hl-cookie-open .zsiq_floatmain{
  bottom:calc(var(--hl-cookie-h, 72px) + 20px) !important;
  transition:bottom .25s ease;
}

/* ---------------- sticky mobile CTA (shared) ---------------- */
.sticky-cta{ display:none; }

/* ---------------- reveal-on-scroll ---------------- */
.reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ---------------- responsive base ---------------- */
@media (max-width:1024px){
  h1{ font-size:44px; } h2{ font-size:32px; }
  footer.site .foot-grid{ grid-template-columns:1.6fr 1fr 1fr; }
  .security-grid{ grid-template-columns:1fr 1fr; }
  .spot{ grid-template-columns:1fr; gap:32px; }
  .spot.rev .spot-media{ order:0; }
  .feat-groups{ grid-template-columns:1fr; }
}
@media (max-width:680px){
  h1{ font-size:34px; } h2{ font-size:27px; } .lead{ font-size:17px; }
  .sec{ padding:64px 0; } .wrap{ padding:0 20px; }
  footer.site .foot-grid{ grid-template-columns:1fr 1fr; }
  .trust .logos{ display:none; }
  .final-card{ padding:48px 22px; } .final-card h2{ font-size:32px; }
  .security-grid{ grid-template-columns:1fr; }
  .sticky-cta{ display:flex; position:fixed; left:0; right:0; bottom:0; z-index:50; gap:10px;
    padding:12px 16px calc(12px + env(safe-area-inset-bottom)); background:rgba(255,255,255,.94);
    backdrop-filter:blur(10px); border-top:1px solid var(--divider); }
  .sticky-cta .btn{ flex:1; }
  body{ padding-bottom:76px; }
}
