/* =========================================================
   SafestSource | site.css (CLEAN)
   - Dedupe of appended patches
   - Fix top menu: prevent "Contact" wrapping to a 2nd line on desktop
   - Keep responsive behavior (nav links hide on <=520px)
   ========================================================= */

:root{
  --blue: #0B5ED7;
  --green: #2E8B57;
  --navy: #0A2540;
  --soft: #F2F4F7;
  --slate: #667085;

  --success: #12B76A;
  --warn: #F79009;
  --danger: #D92D20;

  --shadow-strong: 0 18px 60px rgba(0,0,0,.45);
  --shadow-soft: 0 14px 40px rgba(0,0,0,.16);
  --radius: 22px;
  --radius2: 16px;
  --max: 1160px;

  --hfont: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --bfont: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html[data-theme="dark"]{
  --page-bg:
    radial-gradient(900px 520px at 18% 12%, rgba(11,94,215,.20), transparent 55%),
    radial-gradient(900px 520px at 82% 18%, rgba(46,139,87,.18), transparent 52%),
    radial-gradient(900px 520px at 55% 88%, rgba(11,94,215,.14), transparent 54%),
    linear-gradient(180deg, #061526 0%, #071A2C 62%, #061526 100%);
  --text: rgba(242,244,247,.98);
  --muted: rgba(242,244,247,.76);
  --muted2: rgba(242,244,247,.62);
  --line: rgba(242,244,247,.14);
  --nav-bg: rgba(10,37,64,.68);
  --panel: rgba(242,244,247,.05);
  --panel2: rgba(242,244,247,.08);
  --field: rgba(10,37,64,.28);
  --chip-bg: rgba(242,244,247,.04);
  --chip-border: rgba(242,244,247,.16);
  --hero-overlay: linear-gradient(180deg, rgba(7,26,44,.05) 0%, rgba(7,26,44,.74) 72%, rgba(7,26,44,.90) 100%);
  --card-bg: rgba(242,244,247,.05);
  --card-border: rgba(242,244,247,.16);
  --btn-ghost-bg: rgba(242,244,247,.03);
  --btn-ghost-border: rgba(242,244,247,.16);
  --icon-bg: linear-gradient(135deg, rgba(11,94,215,.18), rgba(46,139,87,.12));
  --icon-border: rgba(11,94,215,.22);
  --shadow: var(--shadow-strong);
  --shadow2: var(--shadow-soft);

  /* Solid section colors to avoid “cuts” */
  --section-solid: #061526;
  --section-band:  #071A2C;
}

html[data-theme="light"]{
  --page-bg:
    radial-gradient(900px 520px at 18% 12%, rgba(11,94,215,.10), transparent 60%),
    radial-gradient(900px 520px at 82% 18%, rgba(46,139,87,.08), transparent 58%),
    linear-gradient(180deg, #FFFFFF 0%, var(--soft) 62%, #FFFFFF 100%);
  --text: #0B1220;
  --muted: rgba(10,37,64,.78);
  --muted2: rgba(102,112,133,.92);
  --line: rgba(10,37,64,.12);
  --nav-bg: rgba(255,255,255,.78);
  --panel: rgba(255,255,255,.88);
  --panel2: rgba(255,255,255,.92);
  --field: rgba(242,244,247,.92);
  --chip-bg: rgba(242,244,247,.90);
  --chip-border: rgba(10,37,64,.12);
  --hero-overlay: linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.35) 40%, rgba(242,244,247,.90) 100%);
  --card-bg: rgba(255,255,255,.92);
  --card-border: rgba(10,37,64,.12);
  --btn-ghost-bg: rgba(255,255,255,.80);
  --btn-ghost-border: rgba(10,37,64,.12);
  --icon-bg: linear-gradient(135deg, rgba(11,94,215,.14), rgba(46,139,87,.10));
  --icon-border: rgba(11,94,215,.20);
  --shadow: 0 18px 60px rgba(10,37,64,.14);
  --shadow2: 0 14px 40px rgba(10,37,64,.10);

  /* Solid section colors to avoid “cuts” */
  --section-solid: #FFFFFF;
  --section-band:  #F2F4F7;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--bfont);
  color: var(--text);
  background: var(--page-bg);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
.container{ max-width: var(--max); margin:0 auto; padding: 0 20px; }

.skip{
  position:absolute; left:-9999px; top:0;
  background: var(--soft); color: var(--navy);
  padding: 10px 12px; border-radius: 10px;
}
.skip:focus{ left: 14px; top: 14px; z-index: 999; }

/* =========================================================
   NAV (FIX)
   ========================================================= */

.nav{
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--line);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:flex; align-items:center; gap:12px;
  flex: 0 0 auto;
  min-width: 230px; /* was 260; frees space so Contact doesn't wrap */
}
.brand img{
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.0);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  object-fit: contain;
}
.brand .name{ display:flex; flex-direction:column; line-height:1.1; }
.brand .name strong{
  font-family: var(--hfont);
  font-weight:800;
  letter-spacing:.2px;
}
.brand .name span{ font-size:12px; color: var(--muted2); }


.brand{
  min-width: 200px;
}
.brand .name{
  min-width: 0;
}
.brand .name strong{
  display:block;
}
.brand .name .brand-tagline{
  display:flex;
  flex-direction:column;
  gap:1px;
  margin-top:2px;
  font-size:11px;
  line-height:1.08;
  color: var(--muted2);
  white-space:nowrap;
}
.brand .name .brand-tagline span{
  display:block;
}

.nav-inner{
  gap: 10px;
}
.nav-links{
  justify-content:flex-start;
  gap: clamp(4px, .7vw, 12px);
}
.nav-links a{
  padding: 8px 8px;
}
.nav-actions{
  gap: 8px;
}
.theme-toggle{
  padding: 10px 10px;
}
.nav-cta{
  padding: 12px 14px;
  font-size: 14px;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: clamp(6px, .95vw, 16px);
  font-size: 14px;
  color: var(--muted2);
  flex: 1 1 auto;            /* can shrink */
  min-width: 0;              /* critical for flex shrink */
  white-space: nowrap;       /* prevents "Contact" dropping */
}
.nav-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding: 8px 10px;
  border-radius: 10px;
  text-align:center;
}
.nav-links a:hover{ background: rgba(11,94,215,.08); color: var(--text); }

.nav-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-weight: 650;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  white-space:nowrap;
  font-family: var(--bfont);
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(11,94,215,.35); }
.btn.primary{
  border: 1px solid rgba(11,94,215,.55);
  background: linear-gradient(135deg, rgba(11,94,215,.98), rgba(11,94,215,.76));
  color: #FFFFFF;
  box-shadow: 0 18px 50px rgba(11,94,215,.22);
}
.btn.primary:hover{ box-shadow: 0 20px 58px rgba(11,94,215,.28); }
.btn.secondary{
  border: 1px solid rgba(46,139,87,.45);
  background: linear-gradient(135deg, rgba(46,139,87,.20), rgba(46,139,87,.10));
}
.btn.ghost{
  background: var(--btn-ghost-bg);
  border-color: var(--btn-ghost-border);
}

.theme-toggle{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor:pointer;
  user-select:none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  font-size: 13px;
  color: var(--muted2);
}
.theme-toggle:hover{ transform: translateY(-1px); border-color: rgba(11,94,215,.35); }
.toggle-dot{
  width: 32px; height: 18px; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--chip-bg);
  position: relative;
  display:inline-block;
}
.toggle-knob{
  position:absolute; top: 2px; left: 2px;
  width: 14px; height: 14px; border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transition: left .14s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,.20);
}
html[data-theme="dark"] .toggle-knob{ left: 2px; }
html[data-theme="light"] .toggle-knob{ left: 16px; }

@media (max-width: 1200px){
  .brand{ min-width: 185px; }
  .nav-links{ gap: 6px; font-size: 12.5px; }
  .nav-links a{ padding: 8px 7px; }
  .btn{ padding: 11px 13px; }
  .nav-cta{ font-size: 13.5px; }
}

@media (max-width: 1024px){
  .brand{ min-width: 170px; }
  .nav-links{ gap: 4px; font-size: 12px; }
  .nav-links a{ padding: 8px 6px; }
  .brand .name .brand-tagline{ font-size:10px; }
  .theme-toggle{ padding: 9px 9px; }
  .nav-cta{ padding: 11px 12px; font-size: 13px; }
}

@media (max-width: 520px){
  .nav-links{ display:none; }
  .brand{ min-width: auto; }
}

/* =========================================================
   HERO (above-the-fold, statbar visible)
   ========================================================= */

.hero{ padding: 34px 0 16px; background: transparent !important; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: var(--panel);
  color: var(--muted2);
  font-size: 13px;
}
.dot{
  width:9px; height:9px; border-radius:99px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 0 6px rgba(11,94,215,.14);
}

h1{
  margin: 16px 0 10px;
  font-family: var(--hfont);
  font-size: clamp(34px, 3.6vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-weight: 800;
}

.subhead-wrap{
  display:block;
  max-width: 64ch;
}

.subhead{
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.6;
  margin: 12px 0 18px;
  max-width: 60ch;
}

.hero-cta{
  display:flex; flex-wrap:wrap; gap: 12px;
  align-items:center;
  margin: 18px 0 14px;
}

.tagline{
  display:flex; flex-wrap:wrap; gap:10px;
  align-items:center;
  color: var(--muted2);
  font-size: 13px;
  margin-top: 10px;
}
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--muted2);
}
.tag svg{ width: 16px; height:16px; fill:none; stroke: currentColor; stroke-width:2; opacity:.9; }

.hero-card{
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
  height: clamp(520px, 68vh, 720px);
  padding-bottom: 92px; /* reserve for statbar */
}
.hero-card .img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: 50% 22%;
  display:block;
  opacity:.98;
  filter: saturate(1.02) contrast(1.02);
}
.hero-card .overlay{
  position:absolute; inset:0;
  background: var(--hero-overlay);
  z-index: 1;
}
.hero-card .statbar{
  position:absolute; left: 16px; right: 16px; bottom: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  z-index: 3;
}
.stat{
  border: 1px solid var(--line);
  background: rgba(10,37,64,.18);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px 12px;
  color: #fff;
}
html[data-theme="light"] .stat{
  background: rgba(255,255,255,.75);
  color: var(--navy);
}
.stat strong{ display:block; font-size: 13px; font-weight:700; }
.stat span{ display:block; font-size: 11.5px; opacity:.9; margin-top: 4px; line-height: 1.35; }

@media (max-height: 820px){
  .hero-card{
    height: clamp(480px, 62vh, 660px);
    padding-bottom: 88px;
  }
}

/* =========================================================
   SECTIONS (solid background)
   ========================================================= */

section{
  position: relative;
  isolation: isolate;
  background: var(--section-solid);
  padding: 56px 0;
  border-top: none !important;
  border-bottom: none !important;
}

.lightband{
  background: var(--section-band) !important;
  border: none !important;
}

section[id], main[id], [id="top"]{ scroll-margin-top: 110px; }

.section-title{
  font-size: 12.5px;
  letter-spacing:.14em;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0 0 10px;
  font-weight: 700;
}

h2{
  margin: 0 0 10px;
  font-family: var(--hfont);
  font-size: clamp(26px, 2.1vw, 34px);
  letter-spacing:-0.015em;
  font-weight: 800;
}

.lead{
  color: var(--muted);
  max-width: 78ch;
  line-height:1.65;
  margin: 0 0 22px;
}

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

.card{
  border-radius: var(--radius2);
  border:1px solid var(--card-border);
  background: var(--card-bg);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.card h3{
  margin: 10px 0 8px;
  font-family: var(--hfont);
  font-size: 16px;
  letter-spacing:-0.01em;
  font-weight: 800;
}
.card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.icon{
  width: 44px; height: 44px; border-radius: 14px;
  display:grid; place-items:center;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
}
.icon svg{ width: 22px; height:22px; fill:none; stroke: currentColor; stroke-width: 2; opacity:.92; }

.split{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.panel{
  border-radius: var(--radius);
  border:1px solid var(--card-border);
  background: var(--card-bg);
  padding: 18px;
  box-shadow: var(--shadow2);
}

ul.clean{
  margin: 0; padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
ul.clean li{ margin: 8px 0; }

.pillrow{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--muted2);
  font-size: 13px;
}
.pillrow a.pill{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}
.pillrow a.pill:hover{
  border-color: rgba(11,94,215,.35);
  color: var(--text);
}

.callout{
  border-radius: var(--radius);
  border: 1px solid rgba(11,94,215,.28);
  background: var(--card-bg);
  padding: 20px;
  box-shadow: var(--shadow);
}
.callout-head{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.badge{
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted2);
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
}

/* Steps */
.steps{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.step{
  border-radius: 18px;
  border:1px solid var(--card-border);
  background: var(--card-bg);
  padding: 16px;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.step:before{
  content:"";
  position:absolute; inset:-40px -40px auto auto;
  width: 120px; height:120px;
  background: radial-gradient(circle at 30% 30%, rgba(46,139,87,.18), transparent 62%);
  transform: rotate(18deg);
}
.step .num{
  font-family: var(--hfont);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: var(--navy);
}
html[data-theme="dark"] .step .num{ color: rgba(242,244,247,.92); }
.step h3{
  margin: 10px 0 8px;
  font-family: var(--hfont);
  font-size: 15px;
  font-weight: 800;
}
.step p{ margin:0; color: var(--muted); font-size: 13.5px; line-height:1.6; }

/* FAQ */
.faq{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
details{
  border-radius: 16px;
  border:1px solid var(--card-border);
  background: var(--card-bg);
  padding: 14px 16px;
  box-shadow: var(--shadow2);
}
summary{
  cursor:pointer;
  list-style:none;
  font-weight: 750;
  letter-spacing:-0.01em;
  font-family: var(--hfont);
}
summary::-webkit-details-marker{ display:none; }
details p{ color: var(--muted); margin: 10px 0 0; line-height:1.6; font-size: 14px; }


/* Consent checkbox fix */
.consent-group{
  margin: 14px 0 10px;
}

.consent-label{
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 10px;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}

.consent-label input[type="checkbox"]{
  width: 16px;
  height: 16px;
  margin: 3px 0 0 0;
  padding: 0;
  border-radius: 4px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.consent-label span{
  display: block;
  min-width: 0;
}

.consent-label a{
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Contact form */
.contact{ display:grid; grid-template-columns: 1fr .95fr; gap: 16px; align-items: start; }
form{ display:grid; gap: 12px; }
label{ font-size: 13px; color: var(--muted2); }
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: var(--field);
  color: var(--text);
  outline:none;
  font-family: inherit;
}
input::placeholder, textarea::placeholder{ color: rgba(102,112,133,.75); }
html[data-theme="dark"] input::placeholder, html[data-theme="dark"] textarea::placeholder{ color: rgba(242,244,247,.48); }
textarea{ min-height: 120px; resize: vertical; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.note{ font-size: 12.5px; color: var(--muted2); line-height: 1.6; margin-top: 8px; }
.mini{ font-size: 12.5px; color: var(--muted); line-height:1.6; }

/* =========================================================
   PRICING (Packages section)
   ========================================================= */

.pricing-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pricing-title{ margin:0 0 10px; }
.pricing-lead{ margin:0; }

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

.plan{
  border-radius: 26px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 22px;
  box-shadow: var(--shadow2);
  display:flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.plan:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.plan.featured{
  border-color: rgba(46,139,87,.35);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.plan-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.plan-name{
  font-family: var(--hfont);
  font-weight: 900;
  font-size: 20px;
  letter-spacing:-0.015em;
}
.plan-sub{
  margin-top:6px;
  font-size: 13px;
  color: var(--muted2);
}
.plan-badge{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted2);
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  white-space:nowrap;
}
.plan-badge.green{
  border-color: rgba(46,139,87,.35);
  background: rgba(46,139,87,.12);
}

.plan-desc{
  margin: 10px 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.plan-fit{
  background: var(--panel);
  border:1px solid var(--line);
  padding:14px;
  border-radius: 18px;
  margin-bottom: 16px;
}
.fit-title{
  font-family: var(--hfont);
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--muted2);
}
.fit-text{
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.plan-block.plus{
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.block-title{
  font-family: var(--hfont);
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 14px;
}

.plan-list{
  padding-left:18px;
  margin:0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.plan-list li{ margin-bottom:8px; }

.plan-actions{
  margin-top:auto;
  padding-top:18px;
}

.pricing-foot{
  margin-top: 16px;
  display:flex;
  justify-content:flex-end;
}
.pricing-note{
  max-width: 72ch;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.6;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
  padding: 12px 14px;
}

/* =========================================================
   FOOTER (solid background)
   ========================================================= */

footer{
  padding: 22px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted2);
  font-size: 13px;
  background: var(--section-solid) !important;
}
.foot{
  display:flex; justify-content:space-between; gap: 14px;
  flex-wrap: wrap;
  align-items:center;
}
.foot a{ color: var(--muted2); }
.foot a:hover{ color: var(--text); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .faq{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .plan.featured{ transform:none; }
}

@media (max-width: 520px){
  .form-row{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}


/* =========================================================
   PACKAGES – Visual polish (accents + stronger lift on select)
   ========================================================= */

.plan{
  position: relative;
  cursor: pointer;
  will-change: transform;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

/* Accent bar */
.plan::after{
  content:"";
  position:absolute;
  left: 14px; right: 14px; top: 14px;
  height: 6px;
  border-radius: 999px;
  opacity: .9;
  pointer-events:none;
}

.plan.plan-essential::after{
  background: linear-gradient(90deg, rgba(11,94,215,.95), rgba(11,94,215,.20));
}
.plan.plan-advanced::after{
  background: linear-gradient(90deg, rgba(46,139,87,.95), rgba(46,139,87,.22));
}
.plan.plan-shield::after{
  background: linear-gradient(90deg, rgba(11,94,215,.85), rgba(46,139,87,.55));
}

/* Subtle tint per card (keeps your current text as-is) */
html[data-theme="dark"] .plan.plan-essential{
  background: linear-gradient(180deg, rgba(11,94,215,.10) 0%, rgba(242,244,247,.05) 24%);
}
html[data-theme="dark"] .plan.plan-advanced{
  background: linear-gradient(180deg, rgba(46,139,87,.10) 0%, rgba(242,244,247,.05) 24%);
}
html[data-theme="dark"] .plan.plan-shield{
  background: linear-gradient(180deg, rgba(11,94,215,.08) 0%, rgba(242,244,247,.05) 24%);
}

html[data-theme="light"] .plan.plan-essential{
  background: linear-gradient(180deg, rgba(11,94,215,.08) 0%, rgba(255,255,255,.92) 26%);
}
html[data-theme="light"] .plan.plan-advanced{
  background: linear-gradient(180deg, rgba(46,139,87,.08) 0%, rgba(255,255,255,.92) 26%);
}
html[data-theme="light"] .plan.plan-shield{
  background: linear-gradient(180deg, rgba(11,94,215,.06) 0%, rgba(255,255,255,.92) 26%);
}

/* Stronger lift: hover / focus / selected */
.plan:hover,
.plan:focus-within,
.plan.is-selected{
  transform: translateY(-12px) scale(1.012);
  box-shadow: var(--shadow);
  border-color: rgba(11,94,215,.35);
}

/* Keep featured emphasized but not “stuck” too high */
.plan.featured{
  border-color: rgba(46,139,87,.35);
}

/* Selected ring (clean on both themes) */
.plan.is-selected{
  outline: 3px solid rgba(11,94,215,.18);
  outline-offset: 3px;
}

/* Badge polish */
.plan-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(242,244,247,.06);
  color: var(--muted2);
  font-size: 12.5px;
  font-weight: 750;
  white-space: nowrap;
}
html[data-theme="light"] .plan-badge{
  background: rgba(255,255,255,.85);
}

/* Button alignment: full-width CTA inside each card */
.plan-actions .btn{
  width: 100%;
  justify-content: center;
}

/* Slightly more spacing at top since accent bar exists */
.plan-top{ margin-top: 6px; }

/* Mobile: reduce lift so it doesn't feel jumpy */
@media (max-width: 980px){
  .plan:hover,
  .plan:focus-within,
  .plan.is-selected{
    transform: translateY(-6px) scale(1.006);
  }
}


/* =========================================================
   VIDEO SECTION
   ========================================================= */

.video-section .lead{
  max-width: 900px;
}

.video-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 10px 0 20px;
}

.video-pill{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  border:1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

.video-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  border:1px solid var(--card-border);
  background: #000;
  box-shadow: var(--shadow2);
}

.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}

@media (max-width: 640px){
  .video-pill{
    width: 100%;
    justify-content: flex-start;
  }
}


/* =========================================================
   HERO ALERT
   ========================================================= */
.hero-alert{
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 800;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.35;
  max-width: 44ch;
}
.video-sublead{
  margin: -6px 0 16px;
  color: var(--muted2);
  max-width: 78ch;
  line-height: 1.65;
}

/* =========================================================
   RISK / SCENARIOS / WARNING THEMES
   ========================================================= */
.risk-grid,
.scenario-grid,
.warning-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 20px;
}

.risk-card,
.scenario-card,
.warning-card{
  border-radius: var(--radius2);
  border:1px solid var(--card-border);
  background: var(--card-bg);
  padding: 20px;
  box-shadow: var(--shadow2);
}

.risk-kpi{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-family: var(--hfont);
  font-weight: 900;
  background: linear-gradient(135deg, rgba(11,94,215,.18), rgba(46,139,87,.14));
  border: 1px solid var(--icon-border);
  margin-bottom: 12px;
}

.risk-card h3,
.scenario-card h3,
.warning-card h3{
  margin: 0 0 10px;
  font-family: var(--hfont);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.risk-card p,
.scenario-card p,
.warning-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.exposure-calculator{
  margin-top: 20px;
  border-radius: var(--radius);
  border:1px solid rgba(11,94,215,.24);
  background: var(--card-bg);
  padding: 22px;
  box-shadow: var(--shadow);
}

.calc-copy h3{
  margin: 0 0 8px;
  font-family: var(--hfont);
  font-weight: 800;
}
.calc-copy p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.calc-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}

.calc-item{
  border-radius: 18px;
  border:1px solid var(--line);
  background: var(--panel);
  padding: 16px;
}

.calc-item strong{
  display:block;
  margin-bottom: 8px;
  font-family: var(--hfont);
  font-weight: 800;
}

.calc-item span{
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.calc-cta{
  margin-top: 18px;
}

.scenario-badge{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border:1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--muted2);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.warning-callout{
  margin-top: 18px;
  border-radius: 18px;
  border:1px solid rgba(46,139,87,.28);
  background: var(--panel);
  padding: 16px 18px;
  color: var(--text);
  line-height: 1.6;
}

@media (max-width: 980px){
.risk-grid,
  .scenario-grid,
  .warning-grid,
  .calc-grid{
    grid-template-columns: 1fr;
  }
}


@media (max-width: 520px){
  .consent-label{
    grid-template-columns: 18px 1fr;
    column-gap: 10px;
    font-size: 13px;
  }
}


/* =========================================================
   MOVED FROM HTML INLINE STYLES
   ========================================================= */

.expert-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin-top:18px;
}
.expert-card{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:22px;
  align-items:start;
  background:#fff;
  border:1px solid rgba(10,31,68,.10);
  border-radius:22px;
  padding:20px;
  box-shadow:0 10px 24px rgba(10,31,68,.05);
}
.expert-photo{
  width:170px;
  height:210px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(10,31,68,.10);
  box-shadow:0 8px 18px rgba(10,31,68,.08);
  background:#eef3fb;
}
.expert-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}
.expert-body h3{ margin:0 0 6px; }
.expert-role{
  display:inline-block;
  margin-bottom:12px;
  font-weight:700;
  color:var(--blue);
}
.expert-cred{ margin-top:0; }
.expert-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:8px;
  font-weight:700;
  text-decoration:none;
}
@media (max-width: 860px){
  .expert-card{
    grid-template-columns:1fr;
  }
  .expert-photo{
    width:130px;
    height:160px;
    border-radius:18px;
  }
}

.coverage-network-wrap{
  margin-top:20px;
}
.coverage-hero{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(320px,.85fr);
  gap:20px;
  align-items:stretch;
}
.coverage-map-card,
.coverage-side,
.coverage-bottom-card{
  background:#fff;
  border:1px solid rgba(10,31,68,.10);
  border-radius:24px;
  box-shadow:0 12px 28px rgba(10,31,68,.05);
}
.coverage-map-card{
  padding:18px;
}
.coverage-map-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  margin-bottom:14px;
}
.coverage-map-top h3{
  margin:0 0 6px;
  font-size:24px;
}
.coverage-map-top p{
  margin:0;
  color:#50677f;
  max-width:620px;
}
.coverage-stats{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}
.coverage-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(10,31,68,.08);
  background:#f7faff;
  color:#29435d;
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
}
.coverage-chip .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  display:inline-block;
  margin:0;
  background:#1f6ae5;
}
.coverage-chip .dot.hub{ background:#13935c; }
.coverage-chip .dot.hq{ background:#0b1f44; }

.americas-map{
  position:relative;
  min-height:500px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(10,31,68,.08);
  background:linear-gradient(180deg,#f8fbff 0%,#edf4fb 100%);
}
.americas-map svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.americas-map .americas-map-figure{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  height:86%;
  aspect-ratio:458 / 614;
  width:auto;
  max-width:56%;
}
.americas-map .americas-map-image{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  opacity:.96;
  user-select:none;
  pointer-events:none;
  filter:none;
}
.americas-map .arc{
  fill:none;
  stroke:#b8cae3;
  stroke-width:2.2;
  stroke-linecap:round;
  opacity:.85;
}
.americas-map .land{
  fill:#d8e2ef;
}
.americas-map .land-strong{
  fill:#ced9e8;
}
.americas-map .coast{
  fill:none;
  stroke:#ffffff;
  stroke-width:2;
  opacity:.95;
}
.network-lines{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
  pointer-events:none;
}
.network-lines path{
  fill:none;
  stroke:#90a9d3;
  stroke-width:.7;
  stroke-linecap:round;
  opacity:.9;
}
.network-lines path.hq-line{
  stroke:#7f9bc9;
  stroke-width:.75;
  opacity:.82;
}
.map-marker{
  --x:50%;
  --y:50%;
  position:absolute;
  left:var(--x);
  top:var(--y);
  width:16px;
  height:16px;
  transform:translate(-50%,-50%);
  border-radius:999px;
  border:0;
  cursor:pointer;
  z-index:2;
  background:linear-gradient(135deg,#1f6ae5,#0b5ed7);
  box-shadow:0 0 0 6px rgba(31,106,229,.16),0 10px 18px rgba(10,31,68,.14);
  animation:markerPulse 2.6s ease-in-out infinite;
}
.map-marker::before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:999px;
  background:rgba(31,106,229,.14);
  animation:markerRipple 2.6s ease-out infinite;
}
.map-marker::after{
  content:"";
  position:absolute;
  inset:4px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
}
.map-marker:hover,
.map-marker:focus-visible{
  transform:translate(-50%,-50%) scale(1.08);
}
.map-marker:hover::before,
.map-marker:focus-visible::before{
  animation-duration:1.8s;
}
.map-marker.hub{
  background:linear-gradient(135deg,#0f8e58,#2ba46f);
  box-shadow:0 0 0 7px rgba(43,164,111,.16),0 10px 18px rgba(10,31,68,.14);
}
.map-marker.hq{
  background:linear-gradient(135deg,#0b1f44,#1c5fe0);
  box-shadow:0 0 0 7px rgba(28,95,224,.16),0 10px 18px rgba(10,31,68,.16);
}
.map-marker .tooltip{
  position:absolute;
  left:50%;
  bottom:calc(100% + 14px);
  transform:translateX(-50%) translateY(6px);
  min-width:230px;
  max-width:290px;
  padding:14px 14px 12px;
  border-radius:18px;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(10,31,68,.10);
  box-shadow:0 18px 34px rgba(10,31,68,.16);
  color:#0b1f44;
  text-align:left;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}
.map-marker:hover .tooltip,
.map-marker:focus-visible .tooltip{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}
.map-marker .tooltip em{
  display:block;
  margin-bottom:6px;
  font-style:normal;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#0b5ed7;
}
.map-marker .tooltip strong{
  display:block;
  margin-bottom:4px;
  font-size:15px;
}
.map-marker .tooltip span{
  display:block;
  font-size:13px;
  line-height:1.45;
  color:#405a74;
}

.coverage-side{
  padding:18px;
  display:grid;
  gap:14px;
}
.coverage-side-card{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(10,31,68,.08);
  background:#f8fbff;
}
.coverage-side-card h3{
  margin:0 0 10px;
  font-size:22px;
}
.coverage-side-card p{
  margin:0;
  color:#4d647b;
}
.coverage-keypoints{
  display:grid;
  gap:10px;
}
.coverage-keypoints .row{
  display:grid;
  grid-template-columns:1fr;
  gap:4px;
  padding:12px 0;
  border-top:1px solid rgba(10,31,68,.08);
}
.coverage-keypoints .row:first-child{
  border-top:0;
  padding-top:0;
}
.coverage-keypoints strong{
  display:block;
  font-size:16px;
  color:#0b1f44;
}
.coverage-keypoints span{
  color:#4d647b;
  line-height:1.5;
}
.coverage-contact{
  display:grid;
  gap:8px;
  color:#304c67;
}
.coverage-contact a{
  font-weight:700;
}

.coverage-bottom{
  display:block;
  width:100%;
  margin-top:20px;
}
.coverage-bottom-card{
  padding:18px;
  width:100%;
}
.coverage-bottom-card h3{
  margin:0 0 10px;
}
.location-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.location-line{
  padding:12px 14px;
  border-radius:16px;
  background:#f8fbff;
  border:1px solid rgba(10,31,68,.08);
}
.location-line strong{
  display:block;
  margin-bottom:3px;
  font-size:15px;
}
.location-line span{
  display:block;
  color:#4d647b;
  font-size:14px;
  line-height:1.45;
}
.coverage-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.coverage-tags .pill,
.coverage-tags span{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:#f7faff;
  border:1px solid rgba(10,31,68,.08);
  color:#48617a;
  font-weight:600;
}
.scope-mini{
  margin:12px 0 0;
  padding-left:18px;
}
.scope-mini li{
  margin:0 0 8px;
  color:#425b74;
}
.scope-mini li:last-child{
  margin-bottom:0;
}

@keyframes markerPulse{
  0%,100%{ transform:translate(-50%,-50%) scale(1); }
  50%{ transform:translate(-50%,-50%) scale(1.08); }
}
@keyframes markerRipple{
  0%{ transform:scale(.72); opacity:.55; }
  70%{ transform:scale(1.28); opacity:.08; }
  100%{ transform:scale(1.4); opacity:0; }
}

@media (max-width: 1180px){
  .coverage-hero,
  .coverage-bottom{
    grid-template-columns:1fr;
  }
  .americas-map{
    min-height:460px;
  }
}
@media (max-width: 760px){
  .coverage-map-top{
    flex-direction:column;
  }
  .coverage-stats{
    justify-content:flex-start;
  }
  .americas-map{
    min-height:390px;
  }
  .map-marker .tooltip{
    min-width:180px;
    max-width:220px;
  }
}

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:18px;
}
.testimonial-card,
.logo-proof,
.case-proof,
.marketing-proof-note{
  background:#fff;
  border:1px solid rgba(10,31,68,.10);
  border-radius:22px;
  box-shadow:0 10px 24px rgba(10,31,68,.05);
}
.testimonial-card{
  padding:22px;
}
.testimonial-card .quote-mark{
  font-size:34px;
  line-height:1;
  color:var(--blue);
  font-weight:800;
  margin-bottom:10px;
}
.testimonial-card p{
  margin:0 0 16px;
  color:#405a74;
}
.testimonial-card strong{
  display:block;
  color:#0b1f44;
  font-size:15px;
}
.testimonial-card span{
  display:block;
  color:#5c7288;
  font-size:14px;
  line-height:1.45;
}
.testimonial-note{
  margin-top:14px;
  color:#5c7288;
  font-size:13px;
}
.logo-proof{
  margin-top:18px;
  padding:18px;
}
.logo-proof h3,
.case-proof h3,
.marketing-proof-note h3{
  margin:0 0 10px;
}
.logo-proof-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  margin-bottom:14px;
}
.logo-proof-header p{
  margin:0;
  color:#4d647b;
}
.logo-proof-disclaimer{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:#f7faff;
  border:1px solid rgba(10,31,68,.08);
  color:#48617a;
  font-weight:700;
  font-size:13px;
  white-space:nowrap;
}
.logo-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.logo-pill{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:92px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(10,31,68,.08);
  background:#f8fbff;
}
.logo-pill img{
  max-width:100%;
  max-height:56px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.92;
}
.case-proof{
  margin-top:18px;
  padding:20px;
}
.case-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.case-step{
  padding:16px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid rgba(10,31,68,.08);
}
.case-step strong{
  display:block;
  margin-bottom:8px;
  color:#0b1f44;
}
.case-step p{
  margin:0;
  color:#425b74;
}
.case-result{
  border-color:rgba(46,139,87,.20);
  background:linear-gradient(180deg,#f8fbff 0%, #f4fbf7 100%);
}
.proof-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
  padding:8px 12px;
  border-radius:999px;
  background:#eef5ff;
  border:1px solid rgba(10,31,68,.08);
  color:#29435d;
  font-weight:700;
}
.marketing-proof-note{
  margin-top:18px;
  padding:20px;
}
.collect-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.collect-item{
  padding:14px 16px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid rgba(10,31,68,.08);
}
.collect-item strong{
  display:block;
  margin-bottom:6px;
  color:#0b1f44;
}
.collect-item span{
  color:#4d647b;
  line-height:1.5;
  font-size:14px;
}
@media (max-width: 980px){
  .testimonials-grid,
  .logo-grid,
  .case-grid,
  .collect-grid{ grid-template-columns:1fr; }
  .logo-proof-header{ flex-direction:column; }
}

/* Utility classes extracted from HTML */
.mini--hero-margin{ margin-top:14px; }
.callout-head-group{ display:flex; align-items:center; gap:12px; }
.callout-title{ margin:0; font-family: var(--hfont); font-weight:800; }
.callout-copy{ margin:6px 0 0; color: var(--muted); }
.spacer-14{ height:14px; }
.card-title-reset{ margin-top:0; }
.card--highlight{ border-color: rgba(46,139,87,.22); }
.mt-18{ margin-top:18px; }
.m-0{ margin:0; }
.is-hidden{ display:none; }
.mini--form-intro{ margin:-2px 0 4px; }
.note--tight{ margin:0 0 2px; }
.section-card-title{ margin-top:0; font-family: var(--hfont); font-weight:800; }
.font-heading{ font-family: var(--hfont); }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; }
.auditsuit-image{ width:100%; border-radius:18px; border:1px solid var(--card-border); background: rgba(255,255,255,.02); }
.marker-dallas{ --x:52.4%; --y:42.7%; }
.marker-mooresville{ --x:64.5%; --y:40.8%; }
.marker-jalisco{ --x:46.1%; --y:50.7%; }
.marker-nuevoleon{ --x:49.8%; --y:46.6%; }
.marker-mexicocity{ --x:52.6%; --y:52.9%; }
.marker-panama{ --x:63.8%; --y:59.6%; }
.marker-bogota{ --x:75.2%; --y:61.5%; }
.marker-buenosaires{ --x:73.8%; --y:92.3%; }


/* =========================================================
   MOBILE CONVERSION LAYER
   ========================================================= */
.mobile-nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--panel);
  cursor:pointer;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.mobile-nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:currentColor;
}
.mobile-nav{
  position:fixed;
  inset:0;
  z-index:90;
  background:rgba(6,21,38,.55);
  backdrop-filter:blur(10px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
}
.mobile-nav.is-open{
  opacity:1;
  pointer-events:auto;
}
.mobile-nav-panel{
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:min(90vw, 360px);
  background:var(--section-solid);
  border-left:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:18px;
  transform:translateX(100%);
  transition:transform .22s ease;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.mobile-nav.is-open .mobile-nav-panel{ transform:translateX(0); }
.mobile-nav-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.mobile-nav-close{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--panel);
  color:var(--text);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.mobile-nav-links{
  display:grid;
  gap:8px;
}
.mobile-nav-links a{
  padding:14px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--panel);
  font-weight:650;
}
.mobile-nav-cta{ width:100%; margin-top:auto; }
.mobile-proof-strip,
.mobile-coverage-summary,
.mobile-sticky-cta{ display:none; }
.mobile-proof-strip{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.mobile-proof-strip span{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--chip-border);
  background:var(--chip-bg);
  color:var(--muted2);
  font-size:12px;
  font-weight:700;
}
.mobile-coverage-summary{
  grid-template-columns:1fr;
  gap:10px;
  margin:18px 0 20px;
}
.mobile-coverage-card{
  border-radius:18px;
  border:1px solid var(--card-border);
  background:var(--card-bg);
  padding:16px;
  box-shadow:var(--shadow2);
}
.mobile-coverage-card strong{
  display:block;
  margin-bottom:8px;
  font-family:var(--hfont);
}
.mobile-coverage-card span{
  display:block;
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}
.mobile-coverage-card span + span{ margin-top:4px; }
.mobile-sticky-cta{
  position:fixed;
  left:12px;
  right:12px;
  bottom:calc(env(safe-area-inset-bottom, 0px) + 12px);
  z-index:60;
  border:1px solid var(--card-border);
  background:rgba(6,21,38,.9);
  backdrop-filter:blur(14px);
  border-radius:18px;
  padding:10px;
  box-shadow:var(--shadow);
  gap:10px;
  align-items:center;
}
html[data-theme="light"] .mobile-sticky-cta{ background:rgba(255,255,255,.94); }
.mobile-sticky-copy{
  min-width:0;
  flex:1 1 auto;
}
.mobile-sticky-copy strong{
  display:block;
  font-size:13px;
}
.mobile-sticky-copy span{
  display:block;
  font-size:12px;
  color:var(--muted2);
}
html.mobile-nav-open,
html.mobile-nav-open body{ overflow:hidden; }

@media (max-width: 900px){
  .nav{ position:sticky; }
  .nav-links,
  .nav .nav-cta{ display:none; }
  .mobile-nav-toggle{ display:inline-flex; }
  .nav-inner{ gap:10px; padding:12px 0; }
  .brand{ min-width:0; max-width:calc(100% - 124px); }
  .brand img{ width:44px; height:44px; }
  .brand .name strong{ font-size:18px; }
  .brand .name span{ display:none; }
  .theme-toggle{ padding:10px; }
  #themeLabel{ display:none; }

  .hero{ padding:34px 0 8px; }
  h1{ font-size:clamp(30px, 9vw, 42px); line-height:1.02; }
  .hero-grid{ gap:18px; }
  .hero-card{
    height:clamp(320px, 48vh, 380px);
    padding-bottom:0;
    order:-1;
  }
  .hero-card .img{ object-position:50% 18%; }
  .hero-card .statbar{
    position:static;
    grid-template-columns:1fr;
    padding:12px;
    background:var(--card-bg);
  }
  .subhead-wrap{
    background: linear-gradient(180deg, rgba(11,94,215,.08), rgba(11,94,215,.05));
    border:1px solid rgba(11,94,215,.14);
    border-radius:18px;
    padding:16px 16px 14px;
    margin:14px 0 18px;
  }
  .subhead{
    margin:0;
    max-width:none;
    font-size:clamp(15px, 4.8vw, 18px);
    line-height:1.62;
  }
  .hero-cta{ display:grid; grid-template-columns:1fr; gap:10px; }
  .hero-cta .btn{ width:100%; min-height:54px; }
  .hero-cta-primary{ font-size:16px; }
  .hero-cta-secondary{ order:2; }
  .hero-cta-tertiary{ display:none; }
  .tagline{ display:none; }
  .mini--hero-margin{ margin-top:10px; }
  .mobile-proof-strip{ display:flex; }

  section{ padding:40px 0; }
  .proof-kicker{ font-size:12px; }
  .pricing-title{ max-width:20ch; }
  .pricing-head .btn{ width:100%; }
  .testimonials-grid,
  .expert-grid,
  .logo-grid,
  .case-grid,
  .collect-grid{ gap:14px; }

  .contact{ gap:14px; }
  .panel{ padding:16px; }
  .contact .panel:last-child{ margin-bottom:88px; }

  .mobile-coverage-summary{ display:grid; }
  .coverage-hero{ grid-template-columns:1fr; }
  .coverage-side{ display:none; }
  .coverage-map-top p{ max-width:none; }
  .americas-map{
    min-height:260px;
    border-radius:18px;
  }
  .americas-map .americas-map-figure{
    height:74%;
    max-width:70%;
  }
  .network-lines,
  .map-marker .tooltip{ display:none; }
  .map-marker{
    width:14px;
    height:14px;
    box-shadow:0 0 0 5px rgba(31,106,229,.12), 0 8px 16px rgba(10,31,68,.12);
  }

  .logo-proof-header,
  .coverage-map-top,
  .callout-head,
  .pricing-head{ align-items:flex-start; }
  .mobile-sticky-cta{ display:flex; }
}

@media (max-width: 640px){
  .container{ padding:0 16px; }
  .hero-card{ height:340px; }
  .hero{ padding-top:38px; }
  .kicker{ font-size:12px; padding:7px 10px; }
  .hero-alert{ font-size:clamp(15px, 5vw, 18px); }
  .mobile-proof-strip span{ font-size:11.5px; }
  .coverage-map-card{ padding:14px; }
  .coverage-map-top h3{ font-size:20px; }
  .expert-card,
  .testimonial-card,
  .logo-proof,
  .case-proof,
  .marketing-proof-note{ padding:16px; }
}


/* Desktop menu refinement for better alignment with current content */
@media (min-width: 901px){
  .nav-inner{ gap: 18px; }
  .nav-links{
    justify-content:flex-end;
  }
  .nav-links a{
    font-weight:600;
    letter-spacing:-0.01em;
  }
}


@media (max-width: 900px){
  .hero{
    background: var(--section-solid) !important;
  }
  .subhead-wrap{
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 14px 0 18px;
  }
}

@media (min-width: 901px){
  .nav-links a[href="#experts"]{
    min-width: 84px;
  }
}

@media (max-width: 900px){
  .brand .name .brand-tagline{ display:none; }
}

@media (min-width: 901px){
  .nav-inner{ gap: 12px; }
  .nav-links{ justify-content:flex-start; }
}


/* =========================================================
   HIGH CONVERSION UPDATES
   ========================================================= */
.urgency-strip{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(247,144,9,.28);
  background: linear-gradient(135deg, rgba(247,144,9,.10), rgba(11,94,215,.08));
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
  max-width: 62ch;
}
.urgency-strip strong{
  font-family: var(--hfont);
  font-weight: 800;
}

.video-section .lead{
  max-width: 820px;
}
.video-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 12px 0 18px;
}
.video-pill{
  display:inline-flex;
  align-items:center;
  padding: 9px 12px;
  border-radius: 999px;
  border:1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}
.video-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  border:1px solid var(--card-border);
  background: #000;
  box-shadow: var(--shadow2);
}
.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.video-sublead{
  margin: 14px 0 0;
  color: var(--muted2);
  line-height: 1.65;
  max-width: 72ch;
}

@media (max-width: 900px){
  .urgency-strip{
    max-width: none;
    font-size: 12.5px;
  }
  .video-points{
    gap:8px;
  }
}

@media (max-width: 640px){
  .video-pill{
    width:100%;
    justify-content:center;
  }
}


/* =========================================================
   TRUST-BUILDER UPDATES
   ========================================================= */
.subhead--specialist{
  margin-top: 10px;
  color: var(--text);
}
.authority-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 0 0 12px;
}
.authority-strip span,
.credibility-compress,
.quick-path,
.urgency-hard,
.risk-reversal,
.results-footnote,
.logo-disclaimer-strong,
.testimonial-badge{
  border-radius: 999px;
}
.authority-strip span{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border:1px solid rgba(46,139,87,.26);
  background: linear-gradient(135deg, rgba(46,139,87,.14), rgba(11,94,215,.08));
  color: var(--text);
  font-size: 12.5px;
  font-weight: 700;
}
.credibility-compress{
  display:inline-flex;
  margin-bottom: 12px;
  padding: 9px 12px;
  border:1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.quick-path{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-top: 12px;
  padding: 10px 12px;
  border:1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--muted);
  font-size: 13px;
}
.quick-path a{
  color: var(--text);
  font-weight: 700;
}
.quick-path a:hover{ color: var(--blue); }
.urgency-hard{
  display:inline-flex;
  margin-top: 10px;
  padding: 9px 12px;
  border:1px solid rgba(217,45,32,.24);
  background: linear-gradient(135deg, rgba(217,45,32,.10), rgba(247,144,9,.10));
  color: var(--text);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
}
.why-us-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
  margin-top: 20px;
}
.why-us-card{
  border-radius: 20px;
  border:1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.why-us-card strong{
  display:block;
  margin-bottom: 8px;
  font-family: var(--hfont);
  font-size: 15px;
}
.why-us-card span{
  display:block;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.results-bar{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
  margin: 18px 0 8px;
}
.results-bar > div{
  border-radius: 20px;
  border:1px solid rgba(46,139,87,.18);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(10,31,68,.05);
  padding: 16px;
}
.results-bar strong{
  display:block;
  color:#0b1f44;
  font-family: var(--hfont);
  font-size: 24px;
  line-height: 1;
}
.results-bar span{
  display:block;
  margin-top: 8px;
  color:#4d647b;
  font-size:14px;
  line-height: 1.45;
}
.results-footnote{
  display:inline-flex;
  margin: 0 0 6px;
  padding: 7px 12px;
  background:#f7faff;
  border:1px solid rgba(10,31,68,.08);
  color:#5c7288;
  font-size:12px;
  line-height:1.45;
}
.logo-disclaimer-strong{
  display:inline-flex;
  margin-top:14px;
  padding:8px 12px;
  background:#fff8ed;
  border:1px solid rgba(247,144,9,.24);
  color:#8b5e11;
  font-size:12.5px;
  font-weight:700;
  line-height:1.45;
}
.testimonial-badge{
  display:inline-flex;
  align-items:center;
  margin-bottom:10px;
  padding:7px 10px;
  background:#eef5ff;
  border:1px solid rgba(10,31,68,.08);
  color:#29435d;
  font-size:12px;
  font-weight:700;
}
.testimonial-card strong a{
  color:#0b1f44;
  text-decoration:underline;
  text-underline-offset:2px;
}
.risk-reversal{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin: 4px 0 6px;
  padding: 9px 12px;
  border:1px solid rgba(46,139,87,.22);
  background: linear-gradient(135deg, rgba(46,139,87,.12), rgba(11,94,215,.06));
  color: var(--text);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 980px){
  .why-us-grid,
  .results-bar{
    grid-template-columns:1fr;
  }
}

@media (max-width: 900px){
  .authority-strip,
  .quick-path{
    gap:8px;
  }
  .credibility-compress,
  .urgency-hard,
  .risk-reversal,
  .results-footnote,
  .logo-disclaimer-strong{
    border-radius:16px;
  }
  .authority-strip span{
    font-size:12px;
  }
}


/* =========================================================
   HERO DECLUTTER UPDATE
   ========================================================= */
.authority-strip--hero{
  margin: 2px 0 12px;
}
.authority-strip--hero span:nth-child(n+4){
  display:none;
}
.hero .tagline{
  margin-top: 8px;
}
.hero-trust-band{
  padding: 18px 0 10px;
}
.hero-trust-grid{
  display:grid;
  grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
  gap: 16px;
  align-items:start;
}
.hero-trust-copy,
.hero-trust-aside{
  display:grid;
  gap: 12px;
}
.authority-strip--secondary{
  margin:0;
}
.authority-strip--secondary span{
  background: var(--chip-bg);
  border-color: var(--chip-border);
  color: var(--muted);
}
.hero-trust-band .credibility-compress,
.hero-trust-band .quick-path,
.hero-trust-band .urgency-hard{
  width:100%;
  margin:0;
}
.hero-trust-band .credibility-compress,
.hero-trust-band .quick-path,
.hero-trust-band .urgency-hard,
.hero-trust-band .authority-strip--secondary{
  max-width:none;
}
@media (max-width: 980px){
  .hero-trust-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 900px){
  .authority-strip--hero{
    margin-top: 4px;
  }
  .hero-trust-band{
    padding: 8px 0 0;
  }
  .hero-trust-copy,
  .hero-trust-aside{
    gap: 10px;
  }
}

/* =========================================================
   HERO FINAL DECLUTTER
   ========================================================= */
.hero-grid{ align-items:start; }
.hero-cta{ margin: 18px 0 18px; }
.authority-strip--hero{
  margin: 0 0 18px;
  gap: 12px;
}
.authority-strip--hero span{
  min-height: 46px;
  justify-content:center;
  padding: 10px 16px;
  font-size: 12px;
}
.hero .tagline{ display:none !important; }
.hero-support-line{
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}
.hero-support-line strong{ color: var(--text); }
.urgency-strip{
  margin-top: 16px;
  max-width: 46rem;
  font-size: 14px;
  line-height: 1.6;
}
.hero-trust-band{ display:none !important; }
.why-us-topline{
  display:inline-flex;
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border:1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
@media (min-width: 901px){
  .authority-strip--hero{
    display:grid;
    grid-template-columns: repeat(3, max-content);
    align-items:center;
    justify-content:start;
  }
}
@media (max-width: 900px){
  .hero-cta{ gap:12px; }
  .authority-strip--hero{
    display:grid;
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }
  .authority-strip--hero span{
    justify-content:flex-start;
    min-height:auto;
  }
  .hero-support-line{ font-size: 13px; }
  .urgency-strip{ font-size: 13px; }
  .why-us-topline{
    display:flex;
    width:100%;
    border-radius:16px;
    line-height:1.5;
  }
}


/* =========================================================
   HERO HARMONIC URGENCY UPDATE
   ========================================================= */
.hero-grid{
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.12fr);
  gap: 32px;
  align-items: stretch;
}
.hero-card{
  height: clamp(600px, 74vh, 820px);
}
.hero-card .img{
  object-position: 50% 20%;
}
.hero-cta{
  margin: 18px 0 12px;
}
.authority-strip--hero{
  margin: 0 0 12px;
}
.authority-strip--hero span{
  font-size: 11.5px;
  padding: 9px 14px;
}
.hero-support-line{
  margin-top: 0;
  font-size: 13px;
}
.urgency-strip{
  margin-top: 12px;
  max-width: 38rem;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.55;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(10,37,64,.06);
}
.mobile-proof-strip{
  display:none !important;
}
@media (min-width: 901px){
  .authority-strip--hero{
    grid-template-columns: repeat(3, max-content);
  }
}
@media (max-width: 900px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-card{
    order: -1;
    height: clamp(430px, 62vh, 560px);
  }
  .hero-card .statbar{
    position:absolute;
    left:12px;
    right:12px;
    bottom:12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:8px;
    padding:0;
    background:transparent;
  }
  .hero-card .statbar .stat,
  .hero-card .statbar .stat:nth-last-child(-n+2){
    grid-column: span 1;
  }
  .stat{
    padding:10px 10px;
    border-radius:14px;
  }
  .stat strong{ font-size:13px; }
  .stat span{ font-size:11px; }
  .authority-strip--hero{
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content:start;
    gap:10px;
  }
  .authority-strip--hero span:last-child{
    grid-column: 1 / -1;
  }
  .urgency-strip{
    max-width:none;
    font-size:12.5px;
    padding:11px 14px;
  }
}
@media (max-width: 640px){
  .hero-card{
    height: 460px;
  }
  .hero-card .statbar{
    grid-template-columns: 1fr;
  }
  .hero-card .statbar .stat,
  .hero-card .statbar .stat:nth-last-child(-n+2){
    grid-column: span 1;
  }
  .authority-strip--hero{
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   HERO / WHY-US REALIGNMENT UPDATE
   ========================================================= */
.hero-cta{
  margin: 18px 0 10px;
}
.urgency-strip{
  margin-top: 0;
  margin-bottom: 14px;
  max-width: 34rem;
}
.authority-strip--hero{
  margin: 0 0 12px;
}
.hero-card{
  padding-bottom: 0;
}
.hero-proof-rail{
  display:grid;
  grid-template-columns: max-content 1fr;
  gap: 14px;
  align-items: stretch;
  margin: 0 0 18px;
}
.hero-proof-chip{
  margin: 0;
  display:flex;
  align-items:center;
  min-height: 100%;
  padding: 12px 16px;
  border:1px solid rgba(46,139,87,.26);
  background: linear-gradient(135deg, rgba(46,139,87,.16), rgba(11,94,215,.10));
  color: var(--text);
  box-shadow: var(--shadow2);
}
.hero-proof-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.hero-proof-stats .stat{
  background: var(--card-bg);
  color: var(--text);
  border:1px solid var(--card-border);
  box-shadow: var(--shadow2);
}
@media (max-width: 980px){
  .hero-proof-rail{
    grid-template-columns: 1fr;
  }
  .hero-proof-stats{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px){
  .hero-cta{
    grid-template-columns: 1fr 1fr;
  }
  .hero-cta .btn{
    min-height: 52px;
  }
  .urgency-strip{
    margin-bottom: 12px;
    max-width: none;
  }
}
@media (max-width: 640px){
  .hero-cta{
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   WHY-US INLINE PROOF FINAL
   ========================================================= */
.hero-proof-inline{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin:0 0 18px;
}
.hero-proof-chip.colored{
  margin:0;
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(11,94,215,.20);
  background:linear-gradient(135deg, rgba(11,94,215,.10), rgba(46,139,87,.08));
  color:var(--blue);
  font-size:13px;
  font-weight:700;
  box-shadow:var(--shadow2);
}
.hero-proof-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.hero-proof-badges .badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(46,139,87,.22);
  background:linear-gradient(135deg, rgba(46,139,87,.12), rgba(11,94,215,.06));
  color:var(--text);
  font-size:12.5px;
  font-weight:700;
  white-space:nowrap;
}
.hero-proof-rail,
.hero-proof-stats{
  display:none !important;
}
@media (max-width: 900px){
  .hero-proof-inline{
    gap:10px;
  }
  .hero-proof-chip.colored{
    width:100%;
    border-radius:16px;
    line-height:1.5;
  }
  .hero-proof-badges{
    gap:8px;
  }
}

/* =========================================================
   HERO + CLIENT PROOF CONVERSION TUNING
   ========================================================= */
.hero-proof-inline--hero{
  margin: 14px 0 0;
}
.hero-proof-inline--hero .badge{
  border-color: rgba(11,94,215,.22);
  background: linear-gradient(135deg, rgba(11,94,215,.10), rgba(46,139,87,.08));
  color: var(--text);
  box-shadow: var(--shadow2);
}
.case-grid--3{
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.proof-disclaimer{
  display:inline-flex;
  margin-top:18px;
  padding:8px 12px;
  border-radius:999px;
  background:#f7faff;
  border:1px solid rgba(10,31,68,.08);
  color:#5c7288;
  font-size:12.5px;
  line-height:1.45;
}
@media (max-width: 980px){
  .case-grid--3{
    grid-template-columns:1fr;
  }
}
@media (max-width: 900px){
  .hero-proof-inline--hero{
    gap:8px;
  }
  .hero-proof-inline--hero .badge{
    white-space:normal;
  }
  .proof-disclaimer{
    border-radius:16px;
  }
}


/* =========================================================
   CREDIBILITY BAR
   ========================================================= */
.credibility-bar{
  padding: 18px 0 8px;
}
.credibility-bar-inner{
  display:grid;
  grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr);
  gap:18px;
  align-items:center;
  padding:18px 20px;
  border-radius:24px;
  border:1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow2);
}
.credibility-bar-copy,
.credibility-bar-logos{
  display:grid;
  gap:12px;
}
.credibility-bar-eyebrow{
  margin:0;
  font-family: var(--hfont);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height:1.35;
  font-weight:800;
  color: var(--text);
}
.credibility-bar-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.credibility-bar-badges span{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(11,94,215,.18);
  background: linear-gradient(135deg, rgba(11,94,215,.10), rgba(46,139,87,.08));
  color: var(--text);
  font-size:12.5px;
  font-weight:700;
}
.credibility-bar-logos p{
  margin:0;
  color: var(--muted);
  font-size:13px;
  line-height:1.55;
}
.credibility-bar-logo-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.credibility-bar .logo-pill{
  min-height:78px;
  background: rgba(255,255,255,.72);
}
html[data-theme="dark"] .credibility-bar .logo-pill{
  background: rgba(242,244,247,.05);
}
@media (max-width: 980px){
  .credibility-bar-inner,
  .credibility-bar-logo-row{
    grid-template-columns:1fr;
  }
}
@media (max-width: 900px){
  .credibility-bar{
    padding: 10px 0 0;
  }
  .credibility-bar-inner{
    padding:16px;
    border-radius:20px;
  }
}


/* =========================================================
   SATELLITE SERVICES
   ========================================================= */
.service-cluster{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.service-mini-card{
  border-radius: 20px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.service-mini-tag{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  border:1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--muted2);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-mini-card h3{
  margin: 0 0 8px;
  font-family: var(--hfont);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -.01em;
  font-weight: 800;
}
.service-mini-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.service-cluster-note{
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(11,94,215,.22);
  background: linear-gradient(135deg, rgba(11,94,215,.08), rgba(46,139,87,.06));
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 980px){
  .service-cluster{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  .service-cluster{
    grid-template-columns: 1fr;
  }
}


.support-showcase-head{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);
  gap:18px;
  align-items:start;
}
.support-showcase-lead{ margin-bottom:0; }
.support-showcase-aside{
  border-radius:22px;
  border:1px solid var(--card-border);
  background:linear-gradient(135deg, rgba(11,94,215,.08), rgba(46,139,87,.06));
  box-shadow:var(--shadow2);
  padding:18px;
}
.support-showcase-aside p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}
.support-aside-tag{
  display:inline-flex;
  align-items:center;
  margin-bottom:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(11,94,215,.20);
  background:rgba(255,255,255,.28);
  color:var(--text);
  font-size:12px;
  font-weight:800;
}
@media (max-width: 980px){
  .support-showcase-head{ grid-template-columns:1fr; }
}


/* =========================================================
   SATELLITE SERVICES – FLOATING BOXES
   ========================================================= */
.support-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
  margin-top:24px;
}
.support-card{
  position:relative;
  overflow:hidden;
  min-height:220px;
  border-radius:24px;
  border:1px solid var(--card-border);
  background:var(--card-bg);
  padding:18px 18px 20px;
  box-shadow:var(--shadow2);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.support-card::before{
  content:"";
  position:absolute;
  inset:auto -24px -24px auto;
  width:112px;
  height:112px;
  border-radius:28px;
  opacity:.9;
  transform:rotate(18deg);
  pointer-events:none;
}
.support-card::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;
  height:5px;
  border-radius:999px;
  opacity:.95;
}
.support-card:hover,
.support-card:focus-visible{
  transform:translateY(-8px);
  box-shadow:var(--shadow);
  border-color:rgba(11,94,215,.28);
}
.support-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:18px;
}
.support-kicker{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--chip-border);
  background:var(--chip-bg);
  color:var(--muted2);
  font-size:11.5px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.support-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:68px;
  padding:8px 10px;
  border-radius:999px;
  font-size:11.5px;
  font-weight:800;
  letter-spacing:.02em;
}
.support-card h3{
  margin:0 0 10px;
  max-width:16ch;
  font-family:var(--hfont);
  font-size:20px;
  line-height:1.18;
  letter-spacing:-0.02em;
  font-weight:800;
}
.support-card p{
  margin:0;
  max-width:30ch;
  color:var(--muted);
  font-size:14px;
  line-height:1.62;
}
.support-card.regulatory::before{
  background:radial-gradient(circle at 35% 35%, rgba(11,94,215,.20), rgba(11,94,215,.06) 65%, transparent 66%);
}
.support-card.regulatory::after{
  background:linear-gradient(90deg, rgba(11,94,215,.92), rgba(11,94,215,.24));
}
.support-card.regulatory .support-badge{
  background:rgba(11,94,215,.10);
  border:1px solid rgba(11,94,215,.16);
  color:var(--blue);
}
.support-card.import::before{
  background:radial-gradient(circle at 35% 35%, rgba(46,139,87,.20), rgba(46,139,87,.06) 65%, transparent 66%);
}
.support-card.import::after{
  background:linear-gradient(90deg, rgba(46,139,87,.92), rgba(46,139,87,.24));
}
.support-card.import .support-badge{
  background:rgba(46,139,87,.10);
  border:1px solid rgba(46,139,87,.16);
  color:var(--green);
}
.support-card.response::before{
  background:radial-gradient(circle at 35% 35%, rgba(247,144,9,.22), rgba(247,144,9,.07) 65%, transparent 66%);
}
.support-card.response::after{
  background:linear-gradient(90deg, rgba(247,144,9,.96), rgba(217,45,32,.30));
}
.support-card.response .support-badge{
  background:rgba(247,144,9,.10);
  border:1px solid rgba(247,144,9,.18);
  color:#a25d00;
}
.support-card.continuity::before{
  background:radial-gradient(circle at 35% 35%, rgba(111,66,193,.18), rgba(111,66,193,.06) 65%, transparent 66%);
}
.support-card.continuity::after{
  background:linear-gradient(90deg, rgba(111,66,193,.88), rgba(11,94,215,.24));
}
.support-card.continuity .support-badge{
  background:rgba(111,66,193,.10);
  border:1px solid rgba(111,66,193,.16);
  color:#6f42c1;
}
html[data-theme="dark"] .support-card{
  background:linear-gradient(180deg, rgba(242,244,247,.06) 0%, rgba(242,244,247,.04) 100%);
}
@media (max-width: 1180px){
  .support-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .support-grid{ grid-template-columns:1fr; }
  .support-card{
    min-height:auto;
    padding:18px 16px 18px;
  }
  .support-card:hover,
  .support-card:focus-visible{
    transform:translateY(-4px);
  }
  .support-card h3{ max-width:none; font-size:19px; }
  .support-card p{ max-width:none; }
}


/* ===== Satellite services final fix ===== */
#satellite-services .support-showcase-head{
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(280px,.82fr);
  gap:20px;
  align-items:start;
}
#satellite-services .support-grid{
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
  margin-top:24px;
}
#satellite-services .support-card{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  min-height:220px;
}
#satellite-services .support-card h3,
#satellite-services .support-card p,
#satellite-services .support-card .support-card-top,
#satellite-services .support-card .support-kicker,
#satellite-services .support-card .support-badge{
  display:block;
}
#satellite-services .support-card-top{
  display:flex;
}
#satellite-services .support-badge{
  display:inline-flex;
}
@media (max-width: 1180px){
  #satellite-services .support-grid{grid-template-columns:repeat(2, minmax(0,1fr));}
}
@media (max-width: 980px){
  #satellite-services .support-showcase-head{grid-template-columns:1fr;}
}
@media (max-width: 640px){
  #satellite-services .support-grid{grid-template-columns:1fr;}
  #satellite-services .support-card{min-height:auto;}
}


/* ===== Satellite services visual upgrade ===== */
#satellite-services .support-grid{
  gap:20px;
}
#satellite-services .support-card{
  position:relative;
  isolation:isolate;
  min-height:250px;
  padding:20px 20px 18px;
  border-radius:24px;
  backdrop-filter:blur(8px);
  box-shadow:0 18px 34px rgba(10,37,64,.08);
}
#satellite-services .support-card::before{
  inset:auto -20px -22px auto;
  width:128px;
  height:128px;
}
#satellite-services .support-card::after{
  left:20px;
  right:20px;
  height:6px;
}
#satellite-services .support-card-top{
  margin-bottom:14px;
}
#satellite-services .support-card-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  border-radius:16px;
  border:1px solid var(--card-border);
  background:linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.46));
  font-family:var(--hfont);
  font-size:14px;
  font-weight:800;
  letter-spacing:-0.02em;
  color:var(--text);
  box-shadow:0 10px 22px rgba(10,37,64,.08);
}
html[data-theme="dark"] #satellite-services .support-card-icon{
  background:linear-gradient(135deg, rgba(242,244,247,.12), rgba(242,244,247,.05));
}
#satellite-services .support-card h3{
  max-width:none;
  margin-bottom:12px;
  font-size:21px;
}
#satellite-services .support-card p{
  max-width:none;
}
#satellite-services .support-card-meta{
  margin-top:auto;
  padding-top:14px;
  border-top:1px solid var(--line);
  color:var(--muted2);
  font-size:12.5px;
  line-height:1.45;
}
#satellite-services .support-card.regulatory,
#satellite-services .support-card.import,
#satellite-services .support-card.response,
#satellite-services .support-card.continuity{
  background:linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 100%);
}
html[data-theme="dark"] #satellite-services .support-card.regulatory,
html[data-theme="dark"] #satellite-services .support-card.import,
html[data-theme="dark"] #satellite-services .support-card.response,
html[data-theme="dark"] #satellite-services .support-card.continuity{
  background:linear-gradient(180deg, rgba(242,244,247,.08) 0%, rgba(242,244,247,.04) 100%);
}
#satellite-services .support-card.regulatory .support-card-icon{
  color:var(--blue);
  border-color:rgba(11,94,215,.16);
}
#satellite-services .support-card.import .support-card-icon{
  color:var(--green);
  border-color:rgba(46,139,87,.16);
}
#satellite-services .support-card.response .support-card-icon{
  color:#a25d00;
  border-color:rgba(247,144,9,.18);
}
#satellite-services .support-card.continuity .support-card-icon{
  color:#6f42c1;
  border-color:rgba(111,66,193,.18);
}
#satellite-services .service-cluster-note{
  margin-top:20px;
  padding:14px 16px;
}
@media (max-width: 640px){
  #satellite-services .support-card{
    min-height:auto;
    padding:18px 16px 16px;
  }
  #satellite-services .support-card::after{
    left:16px;
    right:16px;
  }
  #satellite-services .support-card h3{
    font-size:19px;
  }
}


/* =========================================================
   DARK MODE FIXES FOR LIGHT CONTAINERS
   ========================================================= */
html[data-theme="dark"] .expert-card,
html[data-theme="dark"] .coverage-map-card,
html[data-theme="dark"] .coverage-side,
html[data-theme="dark"] .coverage-side-card,
html[data-theme="dark"] .coverage-bottom-card,
html[data-theme="dark"] .logo-proof,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .case-proof,
html[data-theme="dark"] .marketing-proof-note,
html[data-theme="dark"] .results-bar > div{
  background: linear-gradient(180deg, rgba(242,244,247,.08) 0%, rgba(242,244,247,.05) 100%);
  border-color: rgba(242,244,247,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

html[data-theme="dark"] .expert-photo,
html[data-theme="dark"] .coverage-side-card,
html[data-theme="dark"] .coverage-chip,
html[data-theme="dark"] .americas-map,
html[data-theme="dark"] .location-line,
html[data-theme="dark"] .coverage-tags .pill,
html[data-theme="dark"] .coverage-tags span,
html[data-theme="dark"] .logo-pill,
html[data-theme="dark"] .logo-proof-disclaimer,
html[data-theme="dark"] .testimonial-badge,
html[data-theme="dark"] .case-step,
html[data-theme="dark"] .collect-item,
html[data-theme="dark"] .results-footnote,
html[data-theme="dark"] .mobile-coverage-card,
html[data-theme="dark"] .proof-disclaimer,
html[data-theme="dark"] .hero-proof-chip.colored{
  background: rgba(242,244,247,.06);
  border-color: rgba(242,244,247,.12);
  box-shadow: none;
}

html[data-theme="dark"] .expert-card h3,
html[data-theme="dark"] .expert-role,
html[data-theme="dark"] .expert-link,
html[data-theme="dark"] .coverage-map-top h3,
html[data-theme="dark"] .coverage-side-card h3,
html[data-theme="dark"] .coverage-keypoints strong,
html[data-theme="dark"] .coverage-contact,
html[data-theme="dark"] .coverage-bottom-card h3,
html[data-theme="dark"] .location-line strong,
html[data-theme="dark"] .results-bar strong,
html[data-theme="dark"] .logo-proof h3,
html[data-theme="dark"] .case-proof h3,
html[data-theme="dark"] .marketing-proof-note h3,
html[data-theme="dark"] .testimonial-card strong,
html[data-theme="dark"] .testimonial-card strong a,
html[data-theme="dark"] .collect-item strong,
html[data-theme="dark"] .logo-proof-disclaimer,
html[data-theme="dark"] .testimonial-badge,
html[data-theme="dark"] .hero-proof-chip.colored{
  color: var(--text);
}

html[data-theme="dark"] .expert-card p,
html[data-theme="dark"] .coverage-map-top p,
html[data-theme="dark"] .coverage-side-card p,
html[data-theme="dark"] .coverage-keypoints span,
html[data-theme="dark"] .location-line span,
html[data-theme="dark"] .results-bar span,
html[data-theme="dark"] .logo-proof-header p,
html[data-theme="dark"] .testimonial-card p,
html[data-theme="dark"] .testimonial-card span,
html[data-theme="dark"] .collect-item span,
html[data-theme="dark"] .coverage-contact,
html[data-theme="dark"] .coverage-tags .pill,
html[data-theme="dark"] .coverage-tags span,
html[data-theme="dark"] .results-footnote,
html[data-theme="dark"] .testimonial-note,
html[data-theme="dark"] .proof-disclaimer,
html[data-theme="dark"] .mobile-coverage-card span{
  color: var(--muted);
}

html[data-theme="dark"] .expert-photo{
  background: rgba(242,244,247,.05);
}

html[data-theme="dark"] .americas-map{
  background: linear-gradient(180deg, rgba(242,244,247,.06) 0%, rgba(242,244,247,.03) 100%);
}

html[data-theme="dark"] .coverage-chip .dot.hq{
  background:#7fb0ff;
}

html[data-theme="dark"] .map-marker .tooltip{
  background: rgba(7,26,44,.96);
  border-color: rgba(242,244,247,.12);
  box-shadow: 0 18px 34px rgba(0,0,0,.35);
  color: var(--text);
}
html[data-theme="dark"] .map-marker .tooltip span{
  color: var(--muted);
}
html[data-theme="dark"] .map-marker .tooltip em{
  color: #8db8ff;
}

html[data-theme="dark"] .logo-pill img{
  filter: grayscale(100%) brightness(1.15);
  opacity: .95;
}

html[data-theme="dark"] .case-result{
  background: linear-gradient(180deg, rgba(46,139,87,.12) 0%, rgba(242,244,247,.06) 100%);
  border-color: rgba(46,139,87,.22);
}

html[data-theme="dark"] .results-bar > div{
  border-color: rgba(46,139,87,.18);
}

html[data-theme="dark"] .logo-disclaimer-strong{
  background: rgba(247,144,9,.10);
  border-color: rgba(247,144,9,.22);
  color: #f4c56f;
}

html[data-theme="dark"] .network-lines path{
  stroke:#7e9dcd;
  opacity:.75;
}
html[data-theme="dark"] .network-lines path.hq-line{
  stroke:#9db8e2;
}
