/* ─── TOKENS — UnderHost Brand System ─── */
:root{
  --cyan:#00D4FF;        /* Primary Cyan */
  --blue:#0091D6;        /* Primary Dark */
  --navy-base:#0A1220;   /* Navy Base */
  --navy-mid:#0D1B30;    /* Navy Mid */
  --navy-panel:#0F2040;  /* Navy Panel */
  --soft:#F8F9FA;        /* Soft Surface */
  --red:#d9251c;
  --font-head:'Manrope','Inter',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
  --font-mono:'JetBrains Mono',monospace;

  /* ── UH- DESIGN SYSTEM VARIABLES ──
     Defined here globally so they always resolve on every page.
     Page-specific CSS (shared.css, offshorehosting.css, tokens.css)
     may override these values — this ensures a safe fallback that
     prevents the dark body theme from leaking into light sections. */
  --uh-navy:   #0D1F3C;
  --uh-blue:   #176ea5;
  --uh-cyan:   #0099cc;
  --uh-bg:     #f6f8fb;
  --uh-card:   #ffffff;
  --uh-text:   #1f2937;
  --uh-muted:  #6b7280;
  --uh-border: #e5e7eb;
  --uh-success:#16a34a;
  --uh-danger: #dc2626;
}

/* DEFAULT = Variant B: Dark Blue Tech */
body{
  --bg:#0A1220;--bg2:#0D1B30;--bg3:#0F2040;
  --border:rgba(0,212,255,0.10);--text:#e8f0fb;--muted:#b8c7d9;
  --accent:var(--cyan);--btn-bg:var(--cyan);--btn-text:#0A1220;
  --nav-dd-bg:#0F2040;--nav-shadow:0 20px 40px rgba(0,0,0,.6);
}
/* Variant A: White Blue Tech */
body.variant-a{
  --bg:#f4f7fc;--bg2:#eaeff8;--bg3:#dfe6f4;
  --border:rgba(0,100,200,0.12);--text:#0a1628;--muted:rgba(10,22,40,0.52);
  --accent:var(--blue);--btn-bg:var(--blue);--btn-text:#fff;
  --nav-dd-bg:#fff;--nav-shadow:0 20px 40px rgba(0,0,0,.12);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
/* overflow-x on html (not body) — setting it on body creates a new scroll container
   which breaks position:sticky on iOS Safari and mobile Chrome mid-scroll */
html{scroll-behavior:smooth;overflow-x:hidden}
body{font-family:var(--font-body);background:var(--bg);color:var(--text);line-height:1.6;overflow-x:visible;transition:background .35s,color .35s}
h1,h2,h3,h4,h5,h6,.section-title{font-family:var(--font-head)}
.plan-price .amount,.os-stat-n,.trust-num,.metric-stat-n,.sec-stat-n,.location-ping,.cmd-block,.enhance-price-val,.compare-table th{font-family:var(--font-mono)}
/* ── NO UNDERLINES — global override (beats Bootstrap + legacy CDN) ── */
a,a:hover,a:focus,a:active,a:visited{text-decoration:none!important}
/* Remove the browser's default mouse-click focus box while keeping a visible
   keyboard focus state for accessibility. */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible),
summary:focus:not(:focus-visible),
.btn:focus:not(:focus-visible){
  outline:0!important;
  box-shadow:none!important;
}
a img{outline:0!important}
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
summary:focus-visible,
.btn:focus-visible{
  outline:2px solid var(--cyan)!important;
  outline-offset:3px;
  box-shadow:none!important;
}
@media (hover:none){
  a,button,[role="button"],summary{-webkit-tap-highlight-color:transparent}
}
img{max-width:100%;display:block}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px}
.section-label{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--accent);margin-bottom:14px}
.section-title{font-size:clamp(26px,4vw,44px);font-weight:800;letter-spacing:-1.5px;line-height:1.1;color:var(--text)}
.section-sub{font-size:16px;color:var(--muted);line-height:1.7}

/* ─── TOPBAR ─── */
#topbar{background:linear-gradient(135deg,#071426,#0091d6 60%,#434cc5);padding:5px 0;font-size:11.5px}
#topbar .inner{display:flex;justify-content:space-between;align-items:center;padding:0 24px;max-width:1400px;margin:0 auto}
#topbar a{color:#fff;opacity:.9;display:inline-flex;align-items:center;gap:5px;padding:3px 10px;border-radius:20px;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.08);transition:background .2s}
#topbar a:hover{background:rgba(255,255,255,.2)}
.topbar-left,.topbar-right{display:flex;gap:8px;align-items:center}
.flag-img{width:20px;height:14px;border-radius:3px;object-fit:cover}

/* ─── HEADER ─── */
header{display:block;background:#fff;border-bottom:1px solid rgba(0,100,200,0.10);position:sticky;top:0;z-index:900;box-shadow:0 1px 0 rgba(0,0,0,.06)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:70px;padding:0 24px;max-width:1400px;margin:0 auto;background:#fff}
.logo img{height:42px;width:auto}

/* Nav */
nav ul{list-style:none;display:flex;gap:0;align-items:center}
nav ul > li{position:relative}
nav ul > li > a{padding:8px 12px;font-size:13px;font-weight:600;letter-spacing:.3px;text-transform:uppercase;color:#0a1628;opacity:.72;transition:opacity .2s,color .2s;white-space:nowrap;display:flex;align-items:center;gap:5px}
nav ul > li > a i.fa-chevron-down{font-size:9px;transition:transform .25s}
nav ul > li:hover > a{opacity:1;color:#0091D6!important}
nav ul > li:hover > a i.fa-chevron-down{transform:rotate(180deg)}
.nav-cta{background:var(--btn-bg)!important;color:var(--btn-text)!important;opacity:1!important;border-radius:8px;padding:8px 16px!important;font-weight:700!important}
.nav-cta:hover{filter:brightness(1.1);color:var(--btn-text)!important}

/* Dropdowns */
.nav-dd{position:absolute;top:calc(100% + 8px);left:0;background:#fff;border:1px solid rgba(0,100,200,0.12);border-radius:16px;box-shadow:0 20px 40px rgba(0,0,0,.12);min-width:220px;padding:8px;opacity:0;visibility:hidden;transform:translateY(6px);transition:all .22s;z-index:800}
nav ul > li:hover .nav-dd{opacity:1;visibility:visible;transform:translateY(0)}
header.nav-js-ready nav ul > li:hover > .nav-dd{opacity:0;visibility:hidden;transform:translateY(6px);pointer-events:none}
header.nav-js-ready nav ul > li.is-open > .nav-dd{opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto}
.nav-dd a{display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:6px;font-size:13px;font-weight:500;color:#0a1628!important;opacity:.85;transition:background .15s,opacity .15s,color .15s}
.nav-dd a:hover{background:#eaeff8;opacity:1;color:#0091D6!important}
.nav-dd a i{color:var(--accent);width:16px;font-size:13px;flex-shrink:0}
.nav-dd-title{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);padding:8px 12px 4px;margin-top:4px}
.nav-dd-title:first-child{margin-top:0}
.nav-dd-sep{height:1px;background:var(--border);margin:6px 0}
/* Mega menu — Dedicated Servers */
.nav-dd-mega{left:50%;transform:translateX(-50%) translateY(6px);width:800px;max-width:90vw;display:grid;grid-template-columns:repeat(4,1fr);gap:0;padding:20px;background:#fff;border:1px solid rgba(0,100,200,0.12)}
nav ul > li:hover .nav-dd-mega{transform:translateX(-50%) translateY(0)}
header.nav-js-ready nav ul > li:hover > .nav-dd-mega{transform:translateX(-50%) translateY(6px)}
header.nav-js-ready nav ul > li.is-open > .nav-dd-mega{transform:translateX(-50%) translateY(0)}
.nav-dd-mega .dd-col{padding:0 12px}
.nav-dd-mega .dd-col + .dd-col{border-left:1px solid var(--border)}
.nav-dd-mega .dd-col h4{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);margin-bottom:10px;padding-bottom:6px;border-bottom:1px solid var(--border)}
.nav-dd-mega .dd-col a,.nav-dd-mega .dd-col span.unavail{padding:7px 8px;font-size:13px;font-weight:500;border-radius:5px;display:flex;align-items:center;gap:8px;color:#0a1628!important;opacity:.8;transition:background .15s,color .15s,opacity .15s}
.nav-dd-mega .dd-col a:hover{background:#eaeff8;opacity:1;color:#0091D6!important}
.nav-dd-mega .dd-col .unavail{opacity:.38;pointer-events:none;color:var(--muted)!important;text-decoration:line-through;text-decoration-thickness:2px;text-decoration-color:currentColor;cursor:not-allowed}
.nav-dd-mega .dd-col a.nav-link-muted{color:#64748b!important;opacity:.48}
.nav-dd-mega .dd-col a.nav-link-muted:hover{opacity:.78;color:#0091D6!important}
.nav-dd-footer{grid-column:1/-1;border-top:1px solid var(--border);padding-top:14px;margin-top:8px;display:flex;justify-content:flex-end}
.nav-dd-footer a{font-size:13px;font-weight:600;color:var(--accent);display:inline-flex;align-items:center;gap:6px}
/* Hamburger button — hidden on desktop, shown via 1200px breakpoint */
.inline-hamburger{display:none}

/* ─── HERO ─── */
.hero{position:relative;height:100vh;min-height:620px;display:flex;align-items:center;justify-content:center;overflow:hidden;background:var(--bg)}
.hero-bg-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.2s ease}
.hero-bg-slide.active{opacity:.55}
body.variant-a .hero-bg-slide.active{opacity:.75;filter:none}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(4,10,24,.72) 0%,rgba(4,10,24,.38) 40%,rgba(4,10,24,.72) 100%)}
body.variant-a .hero-overlay{background:linear-gradient(to bottom,rgba(240,245,252,.55) 0%,rgba(240,245,252,.05) 40%,rgba(240,245,252,.55) 100%)}
.hero-content{position:relative;z-index:2;text-align:center;max-width:900px;padding:40px 24px}
.hero-badge{display:inline-flex;align-items:center;gap:8px;padding:6px 16px;border:1px solid var(--border);border-radius:40px;font-size:12px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);margin-bottom:32px}
.hero-badge .dot{width:6px;height:6px;border-radius:50%;background:var(--accent);box-shadow:0 0 8px var(--accent);flex-shrink:0}
.hero-title{font-size:clamp(38px,7vw,72px);font-weight:800;line-height:1.0;letter-spacing:-2px;margin-bottom:28px;color:var(--text)}
.hero-title em{font-style:normal;color:var(--accent)}
.hero-sub{font-size:clamp(16px,2vw,20px);color:var(--muted);max-width:540px;margin:0 auto 40px;line-height:1.7}
.hero-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-bottom:44px}
.btn-primary{background:var(--btn-bg);color:var(--btn-text);padding:14px 32px;border-radius:16px;font-weight:700;font-size:15px;letter-spacing:.3px;transition:all .2s;display:inline-flex;align-items:center;gap:8px;box-shadow:0 0 0 0 rgba(0,212,255,0)}
.btn-primary:hover{filter:brightness(1.08);transform:translateY(-2px);box-shadow:0 8px 32px rgba(0,212,255,.35)}
.btn-ghost{border:1px solid rgba(255,255,255,0.18);color:var(--text);padding:14px 32px;border-radius:16px;font-weight:600;font-size:15px;transition:border-color .2s,background .2s;display:inline-flex;align-items:center;gap:8px}
.btn-ghost:hover{border-color:var(--accent)}
.hero-pills{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.hero-pill{display:inline-flex;align-items:center;gap:6px;font-size:13px;color:var(--muted);background:var(--bg2);border:1px solid var(--border);padding:6px 14px;border-radius:40px}
.hero-pill i{color:var(--accent);font-size:12px}
.hero-trust{display:flex;gap:20px;justify-content:center;flex-wrap:wrap;margin-top:20px}
.hero-trust span{display:inline-flex;align-items:center;gap:6px;font-size:12px;color:rgba(232,240,251,0.6);font-weight:500}
.hero-trust span i{color:#34d399;font-size:11px}
.hero-dots{position:absolute;bottom:32px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:5}
.hero-dot{width:6px;height:6px;border-radius:3px;background:rgba(128,128,128,.35);transition:all .4s;cursor:pointer}
.hero-dot.active{width:22px;background:var(--accent)}

/* ─── TRUST BAR ─── */
.trust-bar{background:var(--bg2);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:28px 0}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.trust-item{text-align:center;padding:14px 20px;border-right:1px solid var(--border)}
.trust-item:last-child{border-right:none}
.trust-num{font-size:36px;font-weight:800;color:var(--text);letter-spacing:-1.5px;line-height:1}
.trust-num span{color:var(--accent)}
.trust-label{font-size:11px;text-transform:uppercase;letter-spacing:1.5px;color:var(--muted);margin-top:5px}

/* ─── PRICING CARDS ─── */
.plans-section{padding:88px 0 112px;background:var(--bg)}
.plans-header{text-align:center;margin-bottom:48px}
.plans-header .section-sub{max-width:500px;margin:12px auto 0}
.plans-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.plan-card{background:var(--bg2);border:1px solid var(--border);border-radius:18px;overflow:hidden;display:flex;flex-direction:column;transition:border-color .3s,transform .3s}
.plan-card:hover{transform:translateY(-5px)}
.plan-card.featured{border-color:var(--accent)}
.plan-head{padding:24px 20px 18px;position:relative}
.plan-head-y{background:linear-gradient(145deg,#b87800,#f2af00)}
.plan-head-p{background:linear-gradient(145deg,#8b1a42,#b7295a)}
.plan-head-b{background:linear-gradient(145deg,#0a4f80,#0091d6)}
.plan-head-o{background:linear-gradient(145deg,#c44a14,#ff6c2c)}
.plan-badge-tag{position:absolute;top:12px;right:12px;background:rgba(255,255,255,.2);color:#fff;font-size:10px;font-weight:700;letter-spacing:1px;padding:3px 10px;border-radius:20px;text-transform:uppercase}
.plan-icon{font-size:24px;color:rgba(255,255,255,.9);margin-bottom:8px}
.plan-name{font-size:16px;font-weight:700;color:#fff}
.plan-body{padding:18px 20px 24px;flex:1;display:flex;flex-direction:column}
.plan-price{display:flex;align-items:baseline;gap:2px;margin-bottom:6px}
.plan-price .from{font-size:11px;color:var(--muted);margin-right:4px;text-transform:uppercase}
.plan-price .amount{font-size:34px;font-weight:700;color:var(--text);letter-spacing:-1px}
.plan-price .per{font-size:13px;color:var(--muted)}
.plan-toggle{display:flex;gap:6px;margin-bottom:16px}
.ptbtn{flex:1;padding:5px 6px;border-radius:40px;border:1px solid var(--border);background:transparent;color:var(--muted);font-size:11px;font-weight:600;cursor:pointer;transition:all .2s;font-family:inherit;display:flex;align-items:center;justify-content:center;gap:4px}
.ptbtn.active{background:var(--btn-bg);color:#fff;border-color:var(--btn-bg)}
.plan-features{list-style:none;flex:1;display:flex;flex-direction:column;gap:8px;margin-bottom:20px}
.plan-features li{font-size:13px;color:var(--muted);display:flex;gap:8px;align-items:baseline}
.plan-features li i{color:var(--accent);font-size:11px;flex-shrink:0;margin-top:2px}
.plan-features li strong{color:var(--text)}
.plan-cta{display:block;text-align:center;padding:11px;border-radius:8px;font-weight:700;font-size:14px;letter-spacing:.5px;text-transform:uppercase;background:var(--btn-bg);color:var(--btn-text);transition:all .2s}
.plan-cta:hover{filter:brightness(1.12)}
.plans-section .plan-card{box-shadow:0 18px 44px rgba(0,0,0,.18)}
.plans-section .plan-body{padding:20px 20px 24px}
.plans-section .plan-price{
  justify-content:center;
  align-items:flex-end;
  width:100%;
  margin:0 auto 16px;
  padding:14px 12px;
  border:1px solid rgba(255,255,255,.065);
  border-radius:14px;
  background:rgba(255,255,255,.035);
}
.plans-section .plan-price .from{align-self:center;margin-right:6px}
.plans-section .plan-price .amount{
  font-family:inherit;
  font-size:38px;
  font-weight:800;
  line-height:.95;
  letter-spacing:-.02em;
  font-variant-numeric:tabular-nums;
  text-shadow:0 10px 24px rgba(0,0,0,.22);
}
.plans-section .plan-price .per{padding-bottom:4px}
.plans-section .plan-toggle{
  width:100%;
  margin:0 0 18px;
  padding:0;
  gap:8px;
  border:0;
  border-radius:0;
  background:transparent;
}
.plans-section .ptbtn{
  min-height:32px;
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.035);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.025);
}
.plans-section .ptbtn.active{box-shadow:0 6px 14px rgba(0,212,255,.06)}
.plans-section .plan-features{
  width:100%;
  margin:0 0 22px;
  gap:8px;
}
.plans-section .plan-features li{
  display:flex;
  align-items:flex-start;
  gap:8px;
  line-height:1.45;
  text-align:left;
}
.plans-section .plan-features li i{margin-top:4px}
.plans-section .plan-cta{margin-top:auto;border-radius:9px;box-shadow:0 14px 26px rgba(0,212,255,.16)}

/* ─── DOMAIN SEARCH ─── */
.domain-section{padding:80px 0 104px;background:var(--bg2);border-top:1px solid var(--border)}
.domain-section .text-center{text-align:center;margin-bottom:32px}
.domain-section .section-sub{margin:10px auto 0;max-width:400px}
.domain-form{display:flex;background:var(--bg);border:1px solid var(--border);border-radius:8px;overflow:hidden;max-width:640px;margin:0 auto 14px;transition:border-color .2s}
.domain-form:focus-within{border-color:var(--accent)}
.domain-prefix{padding:0 14px;font-size:13px;color:var(--muted);background:var(--bg3);border-right:1px solid var(--border);display:flex;align-items:center;white-space:nowrap}
.domain-form input{flex:1;background:transparent;border:none;outline:none;padding:15px 16px;font-size:15px;color:var(--text);font-family:inherit}
.domain-form input::placeholder{color:var(--muted)}
.domain-form button{background:var(--btn-bg);color:#fff;border:none;padding:0 26px;font-size:13px;font-weight:700;letter-spacing:1px;text-transform:uppercase;cursor:pointer;transition:filter .2s;white-space:nowrap;display:flex;align-items:center;gap:7px}
.domain-form button:hover{filter:brightness(1.12)}
.domain-tlds{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin-bottom:12px}
.tld-chip{padding:4px 13px;border:1px solid var(--border);border-radius:40px;font-size:12px;font-weight:600;color:var(--muted);text-transform:uppercase}
.domain-promo{font-size:13px;color:var(--muted);display:flex;align-items:center;justify-content:center;gap:7px}
.domain-promo i{color:var(--accent)}

/* ─── WORLD MAP / DATACENTER ─── */
.map-section{padding:96px 0 112px;background:var(--bg);border-top:1px solid var(--border);position:relative;overflow:hidden}
.map-section::before{content:'';position:absolute;inset:0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,212,255,0.06), transparent 60%),
    radial-gradient(circle at 15% 80%, rgba(0,145,214,0.04), transparent 50%);
  pointer-events:none}
.map-section .text-center{text-align:center;margin-bottom:42px;position:relative;z-index:1}
.map-section .section-sub{margin:10px auto 0;max-width:520px}
/* Top stats bar */
.dc-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;max-width:920px;margin:0 auto 40px;background:var(--border);border:1px solid var(--border);border-radius:14px;overflow:hidden;position:relative;z-index:1}
.dc-stat{background:var(--bg2);padding:22px 18px;text-align:center}
.dc-stat-n{font-family:'Manrope','Inter',system-ui,sans-serif;font-size:30px;font-weight:800;color:var(--accent);letter-spacing:-0.5px;line-height:1}
.dc-stat-l{font-size:11px;letter-spacing:1.4px;text-transform:uppercase;color:var(--muted);margin-top:8px;font-weight:600}
/* Map + side panel layout */
.dc-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:28px;max-width:1180px;margin:0 auto;position:relative;z-index:1}
@media(max-width:980px){.dc-grid{grid-template-columns:1fr}.dc-stats{grid-template-columns:repeat(2,1fr)}}
.map-wrap{position:relative;height:auto;margin:0;border-radius:18px;overflow:hidden;border:1px solid var(--border);background:linear-gradient(135deg,var(--bg2) 0%,var(--bg3) 100%);box-shadow:0 20px 60px rgba(0,0,0,0.25)}
.map-bg{position:absolute;inset:0;
  background:
    radial-gradient(ellipse 70% 40% at 25% 48%, rgba(0,145,214,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 55% 36%, rgba(0,212,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 78% 52%, rgba(0,145,214,0.07) 0%, transparent 60%),
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size:100% 100%,100% 100%,100% 100%,44px 44px,44px 44px}
body.variant-a .map-bg{background:
    radial-gradient(ellipse 70% 40% at 25% 48%, rgba(0,100,200,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 55% 36%, rgba(0,145,214,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 78% 52%, rgba(0,100,200,0.06) 0%, transparent 60%),
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size:100% 100%,100% 100%,100% 100%,44px 44px,44px 44px}
.map-dots{position:absolute;inset:0;width:100%;height:100%}
.map-dot{position:absolute;transform:translate(-50%,-50%);cursor:pointer}
.map-dot-ring{width:8px;height:8px;border-radius:50%;border:1.5px solid var(--accent);animation:mapRing 2.5s ease-out infinite;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}
.map-dot-inner{width:8px;height:8px;background:var(--accent);border-radius:50%;box-shadow:0 0 10px var(--accent);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}
@keyframes mapRing{0%{width:8px;height:8px;opacity:.8}100%{width:28px;height:28px;opacity:0}}
.map-dot-label{position:absolute;top:-28px;left:50%;transform:translateX(-50%);background:var(--bg2);border:1px solid var(--border);border-radius:4px;padding:3px 8px;font-size:10px;font-weight:600;white-space:nowrap;color:var(--text);opacity:0;transition:opacity .2s;pointer-events:none}
.map-dot:hover .map-dot-label{opacity:1}
.map-legend{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin-top:20px}
.map-legend-item{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--muted);padding:4px 12px;border:1px solid var(--border);border-radius:40px;background:var(--bg2)}
.map-legend-dot{width:6px;height:6px;border-radius:50%;background:var(--accent);box-shadow:0 0 6px var(--accent);flex-shrink:0}
/* Side panel */
.dc-panel{display:flex;flex-direction:column;gap:14px}
.dc-panel-header{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:0 4px}
.dc-panel-title{font-family:'Manrope','Inter',system-ui,sans-serif;font-size:13px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--text)}
.dc-panel-sub{margin-top:4px;font-size:11px;color:rgba(232,240,251,.56);line-height:1.4}
.dc-status{display:flex;align-items:center;gap:6px;font-size:11px;color:var(--muted);font-family:'JetBrains Mono',ui-monospace,monospace}
.dc-status::before{content:'';width:7px;height:7px;border-radius:50%;background:#00e676;box-shadow:0 0 8px #00e676;animation:sPulse 2s ease-in-out infinite}
.dc-locations{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.dc-loc{display:flex;align-items:center;gap:10px;padding:11px 12px;background:var(--bg2);border:1px solid var(--border);border-radius:10px;font-size:13px;color:var(--text);font-weight:500;transition:all .2s;cursor:pointer;text-decoration:none}
.dc-loc:hover{border-color:var(--accent);background:var(--bg3);transform:translateY(-1px)}
.dc-loc-flag{width:24px;height:18px;border-radius:3px;flex-shrink:0;background-size:cover;background-position:center;border:1px solid var(--border);overflow:hidden;display:block;object-fit:cover}
.dc-loc-name{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.dc-loc-ping{font-family:'JetBrains Mono',ui-monospace,monospace;font-size:10px;color:var(--accent);font-weight:600;flex-shrink:0}
.dc-loc.soon{opacity:.55}
.dc-loc.soon .dc-loc-ping{color:var(--muted)}
.dc-features-row{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:14px}
.dc-feat{padding:14px;background:var(--bg2);border:1px solid var(--border);border-radius:10px;text-align:center}
.dc-feat-icon{font-size:18px;color:var(--accent);margin-bottom:6px}
.dc-feat-label{font-size:11px;color:var(--muted);font-weight:600;letter-spacing:0.4px}
/* ─── MAP SEO / NETWORK STORY BLOCK ─── */
.map-network-story{max-width:1180px;margin:44px auto 0;position:relative;z-index:1;padding:34px;border:1px solid var(--border);border-radius:22px;background:radial-gradient(circle at 12% 0%,rgba(0,212,255,.10),transparent 34%),linear-gradient(145deg,rgba(15,32,64,.92),rgba(10,18,32,.82));box-shadow:0 22px 70px rgba(0,0,0,.22);overflow:hidden}
.map-network-story:before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:42px 42px;opacity:.45;pointer-events:none}
.map-story-head{position:relative;z-index:1;max-width:780px;margin-bottom:26px}
.map-story-head h3{font-size:clamp(22px,3vw,32px);line-height:1.18;letter-spacing:-.8px;color:var(--text);margin-bottom:12px}
.map-story-head p{font-size:15px;line-height:1.8;color:rgba(232,240,251,.76)}
.map-story-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.35fr 1fr 1fr;gap:16px}
.map-story-card{background:rgba(15,32,64,.72);border:1px solid rgba(255,255,255,.09);border-radius:16px;padding:22px;transition:border-color .25s,transform .25s,background .25s}
.map-story-card:hover{border-color:rgba(0,212,255,.38);background:rgba(19,36,59,.86);transform:translateY(-2px)}
.map-story-card--wide{grid-row:span 2}
.map-story-icon{width:42px;height:42px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--accent);background:linear-gradient(135deg,rgba(0,212,255,.16),rgba(0,145,214,.10));border:1px solid rgba(0,212,255,.22);box-shadow:0 10px 26px rgba(0,212,255,.08)}
.map-story-card h4{font-size:15px;font-weight:800;color:var(--text);margin-bottom:9px;letter-spacing:-.2px}
.map-story-card p{font-size:13px;line-height:1.75;color:rgba(232,240,251,.68)}
.map-location-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.map-location-tags span{display:inline-flex;align-items:center;padding:5px 10px;border-radius:999px;font-size:11px;font-weight:700;color:rgba(232,240,251,.84);background:rgba(0,212,255,.08);border:1px solid rgba(0,212,255,.16)}
.map-story-cta{position:relative;z-index:1;margin-top:18px;padding:18px 20px;border-radius:16px;border:1px solid rgba(0,212,255,.16);background:rgba(0,212,255,.06);display:flex;align-items:center;justify-content:space-between;gap:18px}
.map-story-cta strong{display:block;font-size:14px;color:var(--text);margin-bottom:3px}
.map-story-cta span{display:block;font-size:13px;color:rgba(232,240,251,.66)}
.map-story-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;flex-shrink:0;padding:11px 16px;border-radius:999px;background:linear-gradient(135deg,var(--cyan),var(--blue));color:#061426!important;font-size:12px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;transition:transform .2s,filter .2s}
.map-story-btn:hover{transform:translateY(-1px);filter:brightness(1.08)}
.map-story-btn i{font-size:11px}
body.variant-a .map-network-story{background:radial-gradient(circle at 12% 0%,rgba(0,145,214,.10),transparent 34%),linear-gradient(145deg,#fff,#f4f7fc);box-shadow:0 20px 60px rgba(15,32,64,.10)}
body.variant-a .map-story-head p,body.variant-a .map-story-card p,body.variant-a .map-story-cta span{color:rgba(10,22,40,.62)}
body.variant-a .map-story-card{background:rgba(255,255,255,.78);border-color:rgba(0,100,200,.10)}
body.variant-a .map-story-card:hover{background:#fff;border-color:rgba(0,145,214,.30)}
body.variant-a .map-location-tags span{color:#176ea5;background:rgba(0,145,214,.08);border-color:rgba(0,145,214,.16)}
body.variant-a .map-story-cta{background:rgba(0,145,214,.06);border-color:rgba(0,145,214,.14)}
@media(max-width:980px){.map-story-grid{grid-template-columns:1fr 1fr}.map-story-card--wide{grid-column:1/-1;grid-row:auto}.map-story-cta{align-items:flex-start;flex-direction:column}}
@media(max-width:600px){.map-network-story{padding:24px 18px;margin-top:32px;border-radius:18px}.map-story-grid{grid-template-columns:1fr}.map-story-card{padding:20px}.map-location-tags span{font-size:10px}.map-story-btn{width:100%}}


/* ─── OFFSHORE SECTION ─── */
.offshore-section{padding:88px 0 112px;background:var(--bg2);border-top:1px solid var(--border);position:relative;overflow:hidden}
.offshore-section::before{content:'';position:absolute;inset:0;background-image:linear-gradient(var(--border) 1px,transparent 1px),linear-gradient(90deg,var(--border) 1px,transparent 1px);background-size:60px 60px;opacity:.5;pointer-events:none}
.offshore-inner{position:relative;z-index:1}
.offshore-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:start;margin-top:52px}
.offshore-stats{display:flex;gap:36px;margin:28px 0 40px;flex-wrap:wrap}
.os-stat-n{font-size:38px;font-weight:700;color:var(--text);letter-spacing:-1px;line-height:1}
.os-stat-n em{font-style:normal;color:var(--accent)}
.os-stat-l{font-size:11px;text-transform:uppercase;letter-spacing:1.5px;color:var(--muted);margin-top:4px}
.feature-list{display:flex;flex-direction:column;gap:14px}
.feature-item{display:flex;gap:16px;align-items:flex-start;padding:20px;background:var(--bg3);border:1px solid var(--border);border-radius:8px;transition:border-color .2s}
.feature-item:hover{border-color:var(--accent)}
.feature-icon{width:40px;height:40px;border-radius:6px;background:rgba(128,128,128,.08);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:16px;color:var(--accent)}
.feature-item h3{font-size:14px;font-weight:600;margin-bottom:5px;color:var(--text)}
.feature-item p{font-size:13px;color:var(--muted);line-height:1.6}
.offshore-ctas{grid-column:1/-1;display:grid;grid-template-columns:repeat(3,minmax(220px,1fr));gap:12px;margin-top:2px}
.offshore-cta-btn{width:100%;min-height:64px;justify-content:center;text-align:center;line-height:1.25;padding-left:20px;padding-right:20px;white-space:nowrap}
.offshore-cta-btn span{display:inline}
.btn-outline{border:1px solid var(--border);color:var(--text);padding:10px 18px;border-radius:6px;font-weight:600;font-size:13px;transition:border-color .2s,background .2s;display:inline-flex;align-items:center;gap:7px}
.btn-outline:hover{border-color:var(--accent);background:rgba(128,128,128,.04)}
.offshore-card{background:var(--bg3);border:1px solid var(--border);border-radius:16px;padding:22px;margin-bottom:12px}
.offshore-card-header{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.status-dot{width:8px;height:8px;border-radius:50%;background:#00e676;box-shadow:0 0 8px #00e676;flex-shrink:0;animation:sPulse 2s ease-in-out infinite}
@keyframes sPulse{0%,100%{opacity:1}50%{opacity:.5}}
.offshore-card-title{font-size:12px;font-weight:600;letter-spacing:.5px;text-transform:uppercase;color:var(--muted)}
.location-list{display:flex;flex-direction:column;gap:0}
.location-row{display:flex;align-items:center;justify-content:space-between;padding:8px 0;border-bottom:1px solid var(--border);font-size:13px;text-decoration:none;color:var(--text)}
.location-row:last-child{border-bottom:none}
.location-name{display:flex;align-items:center;gap:9px;color:var(--text);font-weight:500}
.lflag{width:20px;height:14px;border-radius:3px;object-fit:cover}
.location-ping{color:var(--accent);font-size:12px;font-family:monospace}
.cmd-block{background:var(--bg);border:1px solid var(--border);border-radius:8px;padding:16px;font-family:'Courier New',monospace;font-size:13px;color:var(--muted)}
.cmd-block .prompt{color:var(--accent);margin-right:8px}

/* ─── APPS SECTION ─── */
.apps-section{padding:88px 0 112px;background:var(--bg);border-top:1px solid var(--border)}
.apps-header{text-align:center;margin-bottom:44px}
.apps-header .section-sub{margin:10px auto 0;max-width:420px}
.apps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.app-card{background:var(--bg2);border:1px solid var(--border);border-radius:16px;padding:28px 20px;display:flex;flex-direction:column;align-items:center;text-align:center;transition:border-color .3s,transform .3s}
.app-card:hover{border-color:var(--accent);transform:translateY(-4px)}
.app-icon{width:64px;height:64px;object-fit:contain;margin:0 auto 16px}
.app-card h3{font-size:15px;font-weight:700;margin-bottom:9px;color:var(--text)}
.app-card p{font-size:13px;color:var(--muted);line-height:1.7;margin-bottom:20px;flex:1}
.app-link{font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--accent);display:inline-flex;align-items:center;gap:6px}
.app-link i{font-size:10px;transition:transform .2s}
.app-card:hover .app-link i{transform:translateX(3px)}
.apps-note{text-align:center;margin-top:32px;color:var(--muted);font-size:13px;display:flex;align-items:center;justify-content:center;gap:8px}
.apps-note i{color:var(--accent)}

/* ─── FOOTER ─── */
footer{background:var(--bg2);border-top:1px solid var(--border);padding:60px 0 32px}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;gap:28px;margin-bottom:0}
.footer-ded-row{border-top:1px solid var(--border);padding-top:32px;margin-top:32px;margin-bottom:44px}
.footer-ded-row h4{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--text);margin-bottom:18px}
.footer-ded-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.footer-ded-grid .footer-sub-title{font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--muted);margin-bottom:10px;display:block}
.footer-ded-grid ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.footer-ded-grid ul li a{font-size:13px;color:var(--muted);transition:color .2s}
.footer-ded-grid ul li a:hover{color:var(--accent)}
.footer-ded-grid ul li .unavail{font-size:13px;color:var(--muted);opacity:.42;pointer-events:none;text-decoration:line-through;text-decoration-thickness:2px;text-decoration-color:currentColor;cursor:not-allowed}
.footer-brand p{font-size:13px;color:var(--muted);line-height:1.7;max-width:230px;margin-top:14px}
.footer-col h4{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--cyan);margin-bottom:14px}
.footer-ded-row{border-top:1px solid var(--border);padding-top:28px;margin-top:28px;margin-bottom:44px}
.footer-ded-row>h4{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--cyan);margin-bottom:18px}
.footer-ded-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
.footer-all-servers-cta{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;margin:28px 0 0;border-radius:999px;background:linear-gradient(135deg,rgba(0,212,255,.18),rgba(0,145,214,.12));border:1px solid rgba(0,212,255,.35);color:#00D4FF!important;font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;box-shadow:0 12px 28px rgba(0,212,255,.08);transition:transform .2s,border-color .2s,background .2s,color .2s}
.footer-all-servers-cta i{font-size:11px;transition:transform .2s}
.footer-all-servers-cta:hover{transform:translateY(-1px);background:linear-gradient(135deg,#00D4FF,#0091D6);border-color:#00D4FF;color:#061426!important}
.footer-all-servers-cta:hover i{transform:translateX(3px)}
.footer-all-servers-cta--mobile{display:none}
.footer-ded-sub{font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--muted);margin-bottom:10px;display:block;padding-bottom:6px;border-bottom:1px solid var(--border)}
.footer-ded-sub--specialty{margin-top:16px}
.footer-ded-grid ul{list-style:none;display:flex;flex-direction:column;gap:8px;margin-top:0}
.footer-ded-grid ul.footer-specialty-list{gap:6px}
.footer-ded-grid ul li a{font-size:13px;color:var(--muted);transition:color .2s}
.footer-ded-grid ul li a:hover{color:var(--accent)}
.footer-ded-grid ul li a.footer-link-muted{color:rgba(184,199,217,.46)}
.footer-ded-grid ul li a.footer-link-muted:hover{color:rgba(0,212,255,.82)}
.footer-ded-grid ul li .unavail{font-size:13px;color:var(--muted);opacity:.42;pointer-events:none;text-decoration:line-through;text-decoration-thickness:2px;text-decoration-color:currentColor;cursor:not-allowed}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.footer-col ul li a{font-size:13px;color:var(--muted);transition:color .2s}
.footer-col ul li a:hover{color:var(--accent)}
.footer-col ul li .unavail{font-size:13px;color:var(--muted);opacity:.42;pointer-events:none;text-decoration:line-through;text-decoration-thickness:2px;text-decoration-color:currentColor;cursor:not-allowed}
.footer-sub-title{font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--muted);margin:16px 0 8px;padding-top:8px;border-top:1px solid var(--border)}
.footer-sub-title:first-of-type{margin-top:0;border-top:none;padding-top:0}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:24px;border-top:1px solid var(--border);font-size:12px;color:var(--muted)}
.footer-bottom-right{display:flex;gap:16px}
.footer-bottom-right a:hover{color:var(--accent)}

/* ─── TWEAKS ─── */
#tweaks-panel{position:fixed;bottom:24px;right:24px;background:var(--bg2);border:1px solid var(--border);border-radius:18px;padding:20px;width:240px;z-index:1000;display:none;box-shadow:0 20px 40px rgba(0,0,0,.4)}
#tweaks-panel h5{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);margin-bottom:14px}
.tweak-row{margin-bottom:12px}
.tweak-row label{font-size:12px;color:var(--muted);display:block;margin-bottom:7px;font-weight:600}
.tweak-toggle{display:flex;gap:6px}
.tweak-btn{flex:1;padding:8px;border-radius:6px;border:1px solid var(--border);background:transparent;color:var(--muted);font-size:12px;font-weight:600;cursor:pointer;transition:all .2s;font-family:inherit}
.tweak-btn.active{background:var(--btn-bg);color:#fff;border-color:var(--btn-bg)}

/* ─── SECTION SEPARATOR ─── */
.section-sep{
  display:flex;align-items:center;justify-content:center;
  position:relative;z-index:20;margin:-1px 0;
  height:72px;overflow:hidden;
}
/* sec-dark / sec-light on separator = the FROM (above) section's color */
.sec-dark.section-sep{background:#071426}
.sec-light.section-sep{background:#f4f7fc}
/* Special: separator coming OUT of the features blue gradient — match the gradient bottom edge */
.section-sep.from-features{background:linear-gradient(135deg,#0a1a3a 0%,#0077ff 50%,#00c8ff 100%)}
/* SVG wave spans the full width, sits behind the icon */
.section-sep .sep-wave{
  position:absolute;inset:0;width:100%;height:101%;pointer-events:none;display:block;
}
/* icon bubble */
.sep-icon{
  width:54px;height:54px;border-radius:50%;padding:9px;object-fit:contain;
  flex-shrink:0;position:relative;z-index:2;
  background:#fff;
  border:2px solid rgba(0,145,214,0.18);
  transition:transform .3s ease;
}
.section-sep:hover .sep-icon{
  transform:scale(1.08);
}

/* ─── MOBILE MENU ─── */
.mob-overlay{position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:950;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s;backdrop-filter:blur(4px)}
.mob-overlay.open{opacity:1;visibility:visible}
.mob-menu{position:fixed;top:0;right:0;width:320px;max-width:90vw;height:100vh;background:var(--bg2);border-left:1px solid var(--border);z-index:960;transform:translateX(100%);transition:transform .32s cubic-bezier(.4,0,.2,1);overflow-y:auto;display:flex;flex-direction:column}
.mob-menu.open{transform:translateX(0)}
.mob-header{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;border-bottom:1px solid var(--border)}
.mob-close{background:none;border:none;color:var(--text);font-size:20px;cursor:pointer;padding:4px;display:flex}
.mob-nav{padding:12px 0;flex:1}
.mob-nav a,.mob-nav button,.mob-nav span.unavail{display:flex;align-items:center;gap:12px;width:100%;padding:12px 24px;font-size:14px;font-weight:600;color:var(--text);background:none;border:none;text-align:left;cursor:pointer;font-family:inherit;text-decoration:none;transition:background .15s,color .15s}
.mob-nav a:hover,.mob-nav button:hover{background:var(--bg3);color:var(--accent)}
.mob-nav a i,.mob-nav button i,.mob-nav span.unavail i{color:var(--accent);width:18px;font-size:14px;flex-shrink:0}
.mob-nav span.unavail{opacity:.42;pointer-events:none;color:var(--muted);text-decoration:line-through;text-decoration-thickness:2px;text-decoration-color:currentColor;cursor:not-allowed}
.mob-nav span.unavail i{color:var(--muted)}
.mob-nav a.mob-link-muted{color:rgba(232,240,251,.62)}
.mob-nav a.mob-link-muted:hover{color:var(--accent)}
.mob-flag{width:20px;height:14px;border-radius:2px;object-fit:cover;box-shadow:0 0 0 1px rgba(255,255,255,.12);flex-shrink:0}
.mob-nav .mob-group-title{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);padding:16px 24px 6px;display:block}
.mob-nav .mob-sep{height:1px;background:var(--border);margin:8px 16px}
.mob-nav a.mob-cta{background:var(--btn-bg);color:#fff;margin:16px;width:calc(100% - 32px);border-radius:6px;justify-content:center}
.mob-socials{display:flex;gap:10px;padding:16px 24px;border-top:1px solid var(--border)}
.mob-social{width:36px;height:36px;border-radius:6px;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--muted);font-size:15px;transition:border-color .2s,color .2s}
.mob-social:hover{border-color:var(--accent);color:var(--accent)}

/* ─── HAMBURGER + NAV HIDE ─── */
@media(max-width:1200px){
  nav ul{display:none}
  .inline-hamburger{display:flex !important;flex-direction:column;justify-content:center;align-items:center;gap:5px;margin-left:auto;flex-shrink:0;width:40px;height:40px;padding:0;background:linear-gradient(135deg,#00D4FF 0%,#0091D6 100%);border:none;border-radius:10px;box-shadow:0 3px 12px rgba(0,212,255,0.35);cursor:pointer;transition:all .22s ease}
  .inline-hamburger:hover{box-shadow:0 5px 20px rgba(0,212,255,0.50);transform:scale(1.06)}
  .inline-hamburger span{width:18px;height:2px;background:#fff;border-radius:2px;transition:all .22s ease}
  .inline-hamburger:focus-visible{outline:2px solid #00D4FF;outline-offset:3px}
}

/* ─── ENHANCE SECTION ─── */
.enhance-section{padding:88px 0 112px;background:var(--bg2);border-top:1px solid var(--border);position:relative;overflow:hidden}
.enhance-bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.08}
body.variant-a .enhance-bg{opacity:.06}
.enhance-inner{position:relative;z-index:1;text-align:center}
.enhance-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px;text-align:left}
.enhance-card{background:var(--bg3);border:1px solid var(--border);border-radius:18px;overflow:hidden;display:flex;flex-direction:column;transition:transform .3s,border-color .3s}
.enhance-card:hover{transform:translateY(-5px)}
.enhance-card-head{padding:24px 20px 18px}
.enhance-card-icon{font-size:28px;color:#fff;opacity:.9;margin-bottom:10px}
.enhance-card-title{font-size:17px;font-weight:700;color:#fff}
.enhance-card-body{padding:20px 22px 26px;flex:1;display:flex;flex-direction:column}
.enhance-price{display:flex;align-items:baseline;gap:6px;margin-bottom:14px}
.enhance-price-label{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:.5px}
.enhance-price-val{font-size:28px;font-weight:700;color:var(--text);letter-spacing:-1px}
.enhance-price-note{font-size:11px;color:var(--muted)}
.enhance-card-desc{font-size:13px;color:var(--muted);line-height:1.7;flex:1;margin-bottom:20px}
.enhance-card-btn{display:inline-flex;align-items:center;gap:8px;padding:11px 20px;border-radius:6px;font-size:13px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;color:#fff;transition:filter .2s;align-self:flex-start}
.enhance-card-btn:hover{filter:brightness(1.12)}

/* ─── FEATURES on gradient bg ─── */
.features-section .section-label{color:rgba(255,255,255,.7)}
.features-section .section-title{color:#fff}
.features-section .section-sub{color:rgba(255,255,255,.75)}
/* Replaced grid pattern with subtle radial dots + diagonal accent */
.features-section::before{content:'';position:absolute;inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,212,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 35%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.12) 1px, transparent 0);
  background-size:100% 100%, 100% 100%, 24px 24px;
  pointer-events:none;
  mask-image:linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image:linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}
.features-section .feat-card{background:rgba(13,27,48,.45);border:1px solid rgba(255,255,255,.16);backdrop-filter:blur(10px)}
.features-section .feat-card:hover{border-color:rgba(0,212,255,.6);transform:translateY(-3px)}
.features-section .feat-card h3{color:#fff}
.features-section .feat-card p{color:rgba(255,255,255,.78)}
.features-section{padding:88px 0 112px;background:var(--bg);border-top:1px solid var(--border);position:relative;overflow:hidden}
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px}
.feat-card{background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);border-radius:16px;padding:28px 22px;display:flex;flex-direction:column;gap:14px;transition:border-color .25s,transform .25s}
.feat-card:hover{border-color:var(--accent);transform:translateY(-3px);box-shadow:0 8px 32px rgba(0,212,255,.12)}
.feat-card h3{color:#fff}
.feat-card p{color:rgba(255,255,255,0.72)}
/* Wrap icons in matching cyan-tinted box */
.feat-icon-box{
  width:56px;height:56px;border-radius:14px;
  background:linear-gradient(135deg,rgba(0,212,255,0.18),rgba(0,145,214,0.28));
  border:1px solid rgba(0,212,255,0.35);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;box-shadow:0 4px 16px rgba(0,212,255,0.15);
}
.feat-img{width:36px;height:36px;object-fit:contain;flex-shrink:0;filter:brightness(1.1) contrast(1.05)}
/* Bitcoin keeps its white circle treatment */
.feat-icon-box.icon-bitcoin{background:#fff;box-shadow:0 4px 16px rgba(247,147,26,0.25)}
.feat-icon-box.icon-bitcoin .feat-img{filter:none;width:38px;height:38px}
.feat-card h3{font-size:15px;font-weight:700;color:var(--text)}
.feat-card p{font-size:13px;color:var(--muted);line-height:1.7}

/* ─── USE CASES ─── */
.usecases-section{padding:88px 0 112px;background:var(--bg2);border-top:1px solid var(--border)}
.usecases-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:48px}
.usecase-card{background:var(--bg3);border:1px solid var(--border);border-radius:16px;padding:24px 18px;transition:border-color .25s,transform .25s}
.usecase-card:hover{border-color:var(--accent);transform:translateY(-3px)}
.usecase-icon{font-size:24px;color:var(--accent);margin-bottom:12px}
.usecase-card h3{font-size:14px;font-weight:700;color:var(--text);margin-bottom:8px}
.usecase-card p{font-size:12px;color:var(--muted);line-height:1.6}
.usecase-card .uc-tags{display:flex;flex-wrap:wrap;gap:5px;margin-top:12px}
.uc-tag{font-size:10px;font-weight:600;padding:3px 8px;border-radius:20px;background:rgba(0,145,214,0.12);color:var(--accent);letter-spacing:.3px}
/* Use Cases CTA block */
.usecases-cta{margin-top:48px;padding:32px 36px;background:var(--bg3);border:1px solid var(--border);border-radius:18px;display:flex;flex-direction:column;align-items:center;gap:18px;text-align:center;position:relative;overflow:hidden}
.usecases-cta::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at center top,rgba(0,145,214,0.10),transparent 60%);pointer-events:none}
.usecases-cta-text{font-family:'Manrope','Inter',system-ui,sans-serif;font-size:18px;font-weight:600;color:var(--text);position:relative;z-index:1}
.usecases-cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;position:relative;z-index:1}

/* ─── METRICS ─── */
.metrics-section{padding:88px 0 112px;background:var(--bg);border-top:1px solid var(--border)}
.metrics-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:40px;align-items:center;margin-top:48px}
.metric-bars{display:flex;flex-direction:column;gap:20px}
.metric-bar-row{display:flex;flex-direction:column;gap:6px}
.metric-bar-label{display:flex;justify-content:space-between;font-size:13px;font-weight:600;color:var(--text)}
.metric-bar-label span:last-child{color:var(--accent)}
.metric-bar-track{height:6px;background:var(--bg3);border-radius:3px;overflow:hidden}
.metric-bar-fill{height:100%;border-radius:3px;background:linear-gradient(90deg,var(--blue),var(--cyan));animation:fillBar .8s ease forwards;transform-origin:left}
@keyframes fillBar{from{width:0}to{}}
.metrics-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.metric-stat{background:var(--bg2);border:1px solid var(--border);border-radius:16px;padding:24px 20px;text-align:center}
.metric-stat-n{font-size:38px;font-weight:700;color:var(--text);letter-spacing:-1px;line-height:1}
.metric-stat-n em{font-style:normal;color:var(--accent)}
.metric-stat-l{font-size:11px;text-transform:uppercase;letter-spacing:1.5px;color:var(--muted);margin-top:6px}

/* ─── COMPARISON TABLE ─── */
.compare-section{padding:88px 0 112px;background:var(--bg2);border-top:1px solid var(--border)}
.compare-table{width:100%;border-collapse:collapse;margin-top:48px;font-size:14px}
.compare-table th{padding:14px 18px;text-align:left;font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);border-bottom:2px solid var(--border)}
.compare-table th.highlight{color:var(--accent)}
.compare-table td{padding:14px 18px;border-bottom:1px solid var(--border);color:rgba(226,239,255,.88)}
.compare-table td:first-child{color:var(--text);font-weight:500}
.compare-table td.yes{color:#00e676;font-weight:700}
.compare-table td.no{color:rgba(203,213,225,.72)}
.compare-table td.highlight{color:var(--text);font-weight:600;background:rgba(0,145,214,0.05)}
.compare-table th.highlight{background:rgba(0,145,214,0.08)}
.compare-table tr:hover td{background:rgba(255,255,255,.02)}

/* ─── SECURITY BLOCK ─── */
.security-section{padding:88px 0 112px;background:var(--bg);border-top:1px solid var(--border)}
.security-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-top:48px}
.security-list{display:flex;flex-direction:column;gap:16px}
.security-item{display:flex;gap:16px;align-items:flex-start;padding:18px 20px;background:var(--bg2);border:1px solid var(--border);border-radius:8px;transition:border-color .2s}
.security-item:hover{border-color:var(--accent)}
.sec-icon{width:38px;height:38px;border-radius:6px;background:rgba(0,145,214,.1);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:16px;color:var(--accent);flex-shrink:0}
.security-item h3{font-size:14px;font-weight:600;color:var(--text);margin-bottom:4px}
.security-item p{font-size:12px;color:var(--muted);line-height:1.6}
.security-visual{background:var(--bg2);border:1px solid var(--border);border-radius:18px;padding:32px;position:relative;overflow:hidden}
.sec-stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.sec-stat{background:var(--bg3);border:1px solid var(--border);border-radius:8px;padding:20px;text-align:center}
.sec-stat-n{font-size:30px;font-weight:700;letter-spacing:-1px;color:var(--text);line-height:1}
.sec-stat-n em{font-style:normal;color:var(--accent)}
.sec-stat-l{font-size:10px;text-transform:uppercase;letter-spacing:1.5px;color:var(--muted);margin-top:5px}
.sec-badge{display:inline-flex;align-items:center;gap:7px;padding:8px 16px;border-radius:40px;font-size:12px;font-weight:600;margin-top:16px}
.sec-badge.green{background:rgba(0,230,118,.1);color:#00e676;border:1px solid rgba(0,230,118,.2)}
.sec-badge.blue{background:rgba(0,145,214,.1);color:var(--accent);border:1px solid var(--border)}

/* ─── CTA SECTION ─── */
.cta-section{padding:80px 0;background:radial-gradient(120% 85% at 15% 20%,rgba(0,212,255,.24),transparent 58%),radial-gradient(95% 80% at 85% 72%,rgba(67,76,197,.30),transparent 62%),linear-gradient(135deg,#0a1a3a 0%,#006fe6 48%,#00c8ff 100%);text-align:center;position:relative;overflow:hidden}
body.variant-a .cta-section{background:linear-gradient(135deg,#0a1a3a 0%,#0077ff 50%,#0091d6 100%)}
.cta-section::before{content:'';position:absolute;inset:-12%;background:linear-gradient(115deg,transparent 8%,rgba(255,255,255,.10) 33%,transparent 58%),linear-gradient(160deg,transparent 18%,rgba(255,255,255,.055) 45%,transparent 70%);opacity:.72;transform:skewY(-5deg)}
.cta-section::after{content:'';position:absolute;inset:auto 0 0;height:42%;background:linear-gradient(180deg,transparent 0%,rgba(7,20,38,.18) 100%);pointer-events:none}
.cta-inner{position:relative;z-index:1}
.cta-section h2{font-size:clamp(28px,5vw,52px);font-weight:700;color:#fff;letter-spacing:-1.5px;line-height:1.05;margin-bottom:20px}
.cta-section p{font-size:18px;color:rgba(255,255,255,.8);max-width:520px;margin:0 auto 36px;line-height:1.6}
.cta-pills{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:36px}
.cta-pill{display:inline-flex;align-items:center;gap:6px;padding:6px 14px;border-radius:40px;font-size:12px;font-weight:600;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);color:#fff}
.cta-pill i{font-size:11px}
.cta-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.cta-btn-primary{background:#fff;color:#0a1a3a;padding:14px 32px;border-radius:6px;font-weight:700;font-size:15px;letter-spacing:.5px;display:inline-flex;align-items:center;gap:8px;transition:filter .2s,transform .2s}
.cta-btn-primary:hover{filter:brightness(1.05);transform:translateY(-1px);color:#0a1a3a!important}
.cta-btn-ghost{border:2px solid rgba(255,255,255,.4);color:#fff;padding:13px 28px;border-radius:6px;font-weight:600;font-size:15px;display:inline-flex;align-items:center;gap:8px;transition:border-color .2s,background .2s}
.cta-btn-ghost:hover{border-color:rgba(255,255,255,.8);background:rgba(255,255,255,.08)}

/* ─── CAROUSELS (CSS infinite scroll) ─── */
.carousel-wrap{overflow:hidden;position:relative}
.carousel-wrap::before,.carousel-wrap::after{content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none}
.carousel-wrap::before{left:0;background:linear-gradient(90deg,var(--bg2),transparent)}
.carousel-wrap::after{right:0;background:linear-gradient(-90deg,var(--bg2),transparent)}
.carousel-track{display:flex;gap:0;width:max-content;animation:cScroll 78s linear infinite}
.carousel-track:hover{animation-play-state:paused}
@keyframes cScroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.tld-item{display:flex;flex-direction:column;align-items:center;gap:5px;padding:8px 14px;cursor:pointer}
.tld-item-inner{background:#fff;border-radius:8px;padding:7px 10px;display:flex;align-items:center;justify-content:center;height:44px;width:64px;transition:box-shadow .2s}
.tld-item:hover .tld-item-inner{box-shadow:0 4px 12px rgba(0,0,0,.15)}
.tld-item img{height:28px;width:auto;object-fit:contain}
.tld-item span{font-size:10px;font-weight:700;letter-spacing:1px;color:var(--muted);text-transform:uppercase}

/* Partners carousel */
.partners-section{padding:36px 0;background:linear-gradient(135deg,#0a1a3a 0%,#0055b3 40%,#434cc5 70%,#0a1a3a 100%);position:relative}
.partners-section::before,.partners-section::after{content:'';display:block;height:3px;background:linear-gradient(90deg,#d9251c,#0091d6,#00d4ff,#434cc5,#d9251c);background-size:200% 100%;animation:borderShift 9s linear infinite;position:absolute;left:0;right:0}
.partners-section::before{top:0}
.partners-section::after{bottom:0}
@keyframes borderShift{0%{background-position:0% 0}100%{background-position:200% 0}}
.partners-section .carousel-wrap::before{display:none}
.partners-section .carousel-wrap::after{display:none}
.partner-item{padding:8px 20px;display:flex;align-items:center;justify-content:center}
.partner-item-inner{background:#fff;border-radius:8px;padding:8px 16px;display:flex;align-items:center;justify-content:center;height:52px;min-width:100px;transition:box-shadow .2s}
.partner-item-inner:hover{box-shadow:0 4px 16px rgba(0,0,0,.15)}
.partner-item img{height:32px;width:auto;max-width:110px;object-fit:contain}

.soc-btn{width:36px;height:36px;border-radius:6px;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--muted);font-size:15px;transition:border-color .2s,color .2s,background .2s}
.soc-btn:hover{border-color:var(--accent);color:var(--accent);background:rgba(0,145,214,0.08)}

/* domain carousel fade edges */
.domain-section .domain-tld-carousel::before,
.domain-section .domain-tld-carousel::after{display:none}
.domain-section .domain-tld-carousel{max-width:1150px;margin-left:auto;margin-right:auto}
.sec-light .carousel-wrap::before{background:linear-gradient(90deg,var(--bg),transparent)}
.sec-light .carousel-wrap::after{background:linear-gradient(-90deg,var(--bg),transparent)}


/* ─── PRODUCT CATEGORY CARDS ─── */
.products-section{padding:88px 0 104px;background:var(--bg)}
.typed-word{color:var(--accent);font-weight:800;display:inline-block;min-width:1ch}
.typed-caret{display:inline-block;color:var(--accent);font-weight:300;animation:caretBlink 1s step-end infinite;margin-left:2px}
@keyframes caretBlink{0%,50%{opacity:1}51%,100%{opacity:0}}
.products-header{text-align:center;margin-bottom:52px}
.products-header .section-sub{max-width:500px;margin:12px auto 0}
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.product-card{background:var(--bg2);border:1px solid var(--border);border-radius:20px;padding:32px 28px;display:flex;flex-direction:column;gap:0;transition:border-color .25s,transform .3s,box-shadow .3s;position:relative;overflow:hidden;text-decoration:none;color:inherit}
.product-card::before{content:'';position:absolute;inset:0;border-radius:20px;background:linear-gradient(135deg,rgba(0,212,255,.04) 0%,transparent 60%);opacity:0;transition:opacity .3s}
.product-card:hover{border-color:var(--accent);transform:translateY(-5px);box-shadow:0 16px 48px rgba(0,212,255,.12)}
.product-card:hover::before{opacity:1}
.product-card-icon{width:48px;height:48px;border-radius:12px;background:rgba(0,212,255,.1);border:1px solid rgba(0,212,255,.2);display:flex;align-items:center;justify-content:center;font-size:20px;color:var(--accent);margin-bottom:20px;flex-shrink:0}
.product-card h3{font-size:18px;font-weight:700;color:var(--text);margin-bottom:10px;letter-spacing:-.3px}
.product-card p{font-size:14px;color:var(--muted);line-height:1.7;flex:1;margin-bottom:24px}
.product-card-link{display:inline-flex;align-items:center;gap:7px;font-size:13px;font-weight:700;color:var(--accent);letter-spacing:.3px;text-transform:uppercase;margin-top:auto}
.product-card-link i{font-size:11px;transition:transform .2s}
.product-card:hover .product-card-link i{transform:translateX(4px)}
.product-card.featured-card{border-color:rgba(0,212,255,.35);background:linear-gradient(145deg,#0f2040,#13243b)}

/* ─── AUDIENCE SECTION ─── */
.audience-section{padding:88px 0 104px;background:#0a1628;border-top:1px solid var(--border);position:relative;overflow:hidden}
.audience-section::before{content:'';position:absolute;inset:0;
  background-image:url('https://cdn.underhost.com/images/differencebg-min.jpg');
  background-size:cover;background-position:center;
  pointer-events:none}
.audience-section .container{position:relative;z-index:1}
.audience-section .section-title{color:#fff}
.audience-section .section-sub{color:rgba(255,255,255,0.78)}
.audience-section .section-label{color:#00c8ff}
.audience-header{text-align:center;margin-bottom:52px}
.audience-header .section-sub{max-width:480px;margin:12px auto 0}
.audience-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.audience-card{background:rgba(15,32,64,0.55);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,0.10);border-radius:18px;padding:28px 24px;transition:border-color .25s,transform .3s,background .25s}
.audience-card:hover{border-color:#00c8ff;transform:translateY(-4px);background:rgba(15,32,64,0.7)}
.audience-icon{font-size:22px;color:#00c8ff;margin-bottom:14px}
.audience-card h3{font-size:16px;font-weight:700;color:#fff;margin-bottom:10px}
.audience-card p{font-size:13px;color:rgba(255,255,255,0.7);line-height:1.7}

/* ─── FAQ SECTION ─── */
.faq-section{padding:88px 0 104px;background:var(--bg);border-top:1px solid var(--border)}
.faq-header{text-align:center;margin-bottom:52px}
.faq-header .section-sub{max-width:440px;margin:12px auto 0}
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:0}
.faq-item{border-bottom:1px solid var(--border)}
.sec-light .faq-btn .faq-q{color:var(--text)}
.sec-light .faq-body p{color:var(--muted)}
.faq-item:first-child{border-top:1px solid var(--border)}
.faq-btn{width:100%;background:none;border:none;padding:22px 4px;display:flex;align-items:center;justify-content:space-between;gap:16px;cursor:pointer;font-family:inherit;text-align:left}
.faq-q{font-size:16px;font-weight:600;color:var(--text);line-height:1.4}
.faq-chevron{color:var(--accent);font-size:13px;flex-shrink:0;transition:transform .3s}
.faq-item.open .faq-chevron{transform:rotate(180deg)}
.faq-body{display:none;padding:0 4px 22px}
.faq-item.open .faq-body{display:block}
.faq-body p{font-size:15px;color:var(--muted);line-height:1.75}


/* ─── SCROLL FADE-IN ─── */
[data-fade]{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
[data-fade].visible{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){[data-fade]{opacity:1;transform:none;transition:none}}
[data-fade]:nth-child(2){transition-delay:.08s}
[data-fade]:nth-child(3){transition-delay:.16s}
[data-fade]:nth-child(4){transition-delay:.08s}
[data-fade]:nth-child(5){transition-delay:.16s}
[data-fade]:nth-child(6){transition-delay:.24s}
/* ─── RESPONSIVE ─── */
@media(max-width:1100px){
  nav ul > li > a{padding:8px 10px;font-size:12px}
  .nav-dd-mega{width:600px;grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr}
}
@media(max-width:960px){
  .plans-grid,.apps-grid,.enhance-grid,.features-grid,.products-grid,.audience-grid{grid-template-columns:repeat(2,1fr)}
  .offshore-grid,.security-grid,.metrics-grid{grid-template-columns:1fr;gap:40px}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-item:nth-child(2){border-right:none}
  .trust-item:nth-child(3){border-top:1px solid var(--border)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px}
  .usecases-grid{grid-template-columns:repeat(2,1fr)}
  .compare-table{font-size:12px}
  .compare-table th,.compare-table td{padding:10px 12px}
}

/* ─── MOBILE ─── */
@media(max-width:600px){
  /* Topbar: hidden on mobile, items move to hamburger menu */
  #topbar{display:none}

  /* Header: tighter, logo left / hamburger right */
  .header-inner{height:58px;padding:0 16px}
  .logo img{height:34px}

  /* Hero */
  .hero-title{letter-spacing:-1.5px}
  .hero-actions{flex-direction:column;align-items:center;gap:10px}
  .btn-primary,.btn-ghost{width:100%;max-width:300px;justify-content:center}
  .hero-pills{gap:7px}
  .hero-pill{font-size:12px;padding:5px 11px}

  /* Trust bar: 2×2 */
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-item:nth-child(2){border-right:none}
  .trust-item:nth-child(3){border-top:1px solid var(--border)}
  .trust-num{font-size:26px}

  /* Sections: tighten padding */
  .plans-section,.domain-section,.map-section,.offshore-section,
  .apps-section,.enhance-section,.features-section,.usecases-section,
  .metrics-section,.compare-section,.security-section{padding:56px 0 72px}

  /* Grids: single column */
  .plans-grid,.apps-grid,.enhance-grid,.features-grid,.usecases-grid{grid-template-columns:1fr}
  .plans-section .plan-body{padding:18px 18px 22px}
  .plans-section .plan-price{max-width:270px}
  .plans-section .plan-price .amount{font-size:34px}
  .plans-section .plan-toggle{width:min(100%,270px);margin-left:auto;margin-right:auto}
  .plans-section .plan-features{width:100%}
  .offshore-ctas{grid-template-columns:1fr;gap:10px}

  /* Domain form */
  .domain-form{flex-direction:column;border-radius:16px}
  .domain-prefix{border-right:none;border-bottom:1px solid var(--border);padding:10px 14px;justify-content:flex-start}
  .domain-form input{padding:12px 16px}
  .domain-form button{padding:14px;justify-content:center;border-radius:0 0 8px 8px}

  /* Map legend: 2 cols */
  .map-legend{grid-template-columns:repeat(2,1fr);display:grid;gap:6px}
  .map-seo-text{grid-template-columns:1fr}
  .dc-locations{grid-template-columns:1fr}
  .dc-features-row{grid-template-columns:1fr}

  /* Metrics */
  .metrics-stats{grid-template-columns:repeat(2,1fr)}
  .sec-stat-grid{grid-template-columns:repeat(2,1fr)}

  /* Compare table: horizontal scroll */
  .compare-section .container > div{overflow-x:auto;-webkit-overflow-scrolling:touch}
  .compare-table{min-width:480px;font-size:12px}
  .compare-table th,.compare-table td{padding:10px 10px}

  /* Section separator wave: shorter on mobile */
  .section-sep{height:52px}

  /* Footer: stack everything */
  .footer-grid{grid-template-columns:1fr;gap:0}
  .footer-col,.footer-brand{padding:20px 0;border-bottom:1px solid var(--border)}
  .footer-col:last-child{border-bottom:none}
  .footer-brand{padding-bottom:20px}
  .footer-ded-row{margin-top:0;padding-top:20px}
  .footer-ded-grid{grid-template-columns:1fr;gap:20px}
  .footer-all-servers-cta{width:100%;justify-content:center;margin:18px 0 2px}
  .footer-all-servers-cta--desktop{display:none}
  .footer-all-servers-cta--mobile{display:flex}
  .footer-col ul,
  .footer-ded-grid ul{gap:0}
  .footer-col ul li a,
  .footer-ded-grid ul li a,
  .footer-col ul li .unavail,
  .footer-ded-grid ul li .unavail{
    min-height:36px;
    display:flex;
    align-items:center;
    padding:6px 0;
  }
  .footer-ded-sub{margin-top:4px}
  .footer-ded-sub--specialty{margin-top:18px}
  .footer-bottom{flex-direction:column;gap:12px;text-align:center;padding-top:20px}
  .footer-bottom-right{flex-wrap:wrap;justify-content:center;gap:12px}

  /* CTA section */
  .cta-section h2{letter-spacing:-1px}
  .cta-actions{flex-direction:column;align-items:center}
  .cta-btn-primary,.cta-btn-ghost{width:100%;max-width:300px;justify-content:center}

  /* New sections mobile */
  .products-grid,.audience-grid{grid-template-columns:1fr}
  .faq-q{font-size:15px}

  /* Mobile menu: full width */
  .mob-menu{width:100%;max-width:100vw}
}

/* ─── ALTERNATING DARK / LIGHT SECTIONS ─── */
.sec-dark{
  --bg:#071426;--bg2:#0f2040;--bg3:#13243b;
  --border:rgba(255,255,255,0.08);--text:#e8f0fb;--muted:#b8c7d9;
  --accent:#00d4ff;--btn-bg:#00d4ff;--btn-text:#071426;
  --nav-dd-bg:#0c1628;--nav-shadow:0 20px 40px rgba(0,0,0,.6);
  background:var(--bg);color:var(--text)
}
.sec-light{
  --bg:#f4f7fc;--bg2:#eaeff8;--bg3:#dfe6f4;
  --border:rgba(0,100,200,0.12);--text:#0a1628;--muted:rgba(10,22,40,0.52);
  --accent:#0091d6;--btn-bg:#0091d6;--btn-text:#fff;
  --nav-dd-bg:#fff;--nav-shadow:0 20px 40px rgba(0,0,0,.12);
  background:var(--bg);color:var(--text)
}
/* inherit tokens inside sections */
.sec-dark .plan-card,.sec-dark .feat-card,.sec-dark .app-card,.sec-dark .usecase-card,
.sec-dark .metric-stat,.sec-dark .sec-stat,.sec-dark .feature-item,.sec-dark .enhance-card,
.sec-dark .offshore-card,.sec-dark .cmd-block,.sec-dark .security-visual{background:var(--bg2);border-color:var(--border)}
.sec-dark .trust-bar,.sec-dark .domain-section,.sec-dark .map-wrap{background:var(--bg2);border-color:var(--border)}
/* light section card overrides */
.sec-light .plan-card,.sec-light .feat-card,.sec-light .app-card,.sec-light .usecase-card,
.sec-light .metric-stat,.sec-light .sec-stat,.sec-light .feature-item,.sec-light .enhance-card,
.sec-light .offshore-card,.sec-light .cmd-block,.sec-light .security-visual{background:var(--bg2);border-color:var(--border)}
.sec-light .product-card{background:var(--bg);border-color:var(--border)}
.sec-light .usecase-card{background:var(--bg2);border-color:var(--border)}
.sec-light .app-card{background:var(--bg);border-color:var(--border)}
.sec-light .app-card:hover{border-color:var(--blue)}
.sec-light .app-link{color:var(--blue)}
.sec-light .usecase-card:hover{border-color:var(--blue)}
.sec-light .usecase-icon{color:var(--blue)}
.sec-light .uc-tag{background:rgba(0,100,200,.08);color:var(--blue)}
.sec-light .product-card:hover{border-color:var(--blue);box-shadow:0 16px 48px rgba(0,100,200,.1)}
.sec-light .product-card-icon{background:rgba(0,100,200,.08);border-color:rgba(0,100,200,.18);color:var(--blue)}
.sec-light .product-card-link{color:var(--blue)}
.sec-light .audience-card{background:var(--bg2);border-color:var(--border)}
.sec-light .audience-card:hover{border-color:var(--blue)}
.sec-light .audience-icon{color:var(--blue)}
/* offshore CTA horizontal */
.offshore-ctas{align-items:stretch}
/* map section text */
.map-seo-text{max-width:900px;margin:36px auto 0;display:grid;grid-template-columns:1fr 1fr;gap:36px;padding:28px;background:rgba(255,255,255,0.04);border:1px solid var(--border);border-radius:18px}
.map-seo-text p{font-size:14px;color:var(--muted);line-height:1.85}
.map-seo-text p strong{color:var(--text);display:block;margin-bottom:8px;font-size:15px;font-weight:700}
@media(max-width:720px){.map-seo-text{grid-template-columns:1fr}.offshore-ctas{grid-template-columns:1fr}}

  /* Modern Animated Chat Widget - UnderHost Colors */
  .uh-chat-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2147483000;
    background: #0091d6;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 145, 214, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.25s ease, background 0.2s;
    animation: fab-pulse 3s infinite ease-in-out;
  }

  .uh-chat-fab:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 145, 214, 0.4);
    background: #0082c4;
  }

  .uh-chat-fab i {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.2s;
  }

  .uh-chat-fab:hover i {
    transform: rotate(5deg) scale(1.05);
  }

  @keyframes fab-pulse {
    0% { box-shadow: 0 8px 20px rgba(0,145,214,0.4); }
    50% { box-shadow: 0 16px 32px rgba(0,145,214,0.7), 0 0 0 4px rgba(0,145,214,0.1); }
    100% { box-shadow: 0 8px 20px rgba(0,145,214,0.4); }
  }

  .uh-chat-widget {
    position: fixed;
    right: 18px;
    bottom: 86px;
    width: 750px;
    max-width: calc(100vw - 36px);
    height: 800px;
    min-height: 700px;
    max-height: 85vh;
    display: none;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2147483001;
    background: #fafafa;
    box-shadow: 0 25px 60px rgba(0, 30, 60, 0.25), 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #c5c5c5;
    animation: widget-rise 0.35s cubic-bezier(0.21, 0.98, 0.35, 1) forwards;
    transform-origin: bottom right;
    font-family: system-ui, -apple-system, 'Inter', 'Segoe UI', Roboto, sans-serif;
  }

  @keyframes widget-rise {
    0% { opacity: 0; transform: scale(0.9) translateY(15px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
  }

  .uh-chat-header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background: #0091d6;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
  }

  .uh-chat-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
  }

  .uh-chat-header h3 i {
    font-size: 16px;
  }

  .uh-chat-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(2px);
  }

  .uh-chat-close {
    background: transparent;
    border: 0;
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .uh-chat-close:hover {
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
    transform: rotate(180deg);
  }

  #uhChatFrameMount {
    flex: 1;
    position: relative;
    background: #fafafa;
    height: calc(100% - 60px);
    min-height: 0;
  }

  .uh-chat-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fafafa;
    display: block;
  }

  .uh-chat-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .uh-chat-loader.hidden {
    opacity: 0;
  }

  .loader-dots {
    display: flex;
    gap: 8px;
  }

  .loader-dots div {
    width: 12px;
    height: 12px;
    background: #0091d6;
    border-radius: 50%;
    opacity: 0.6;
    animation: dot-wave 1s infinite alternate ease-in-out;
  }

  .loader-dots div:nth-child(2) {
    animation-delay: 0.2s;
    background: #2768db;
  }

  .loader-dots div:nth-child(3) {
    animation-delay: 0.4s;
    background: #0091d6;
  }

  @keyframes dot-wave {
    0% { transform: translateY(0); opacity: 0.3; }
    100% { transform: translateY(-12px); opacity: 1; }
  }

  @media (max-width: 520px) {
    .uh-chat-widget {
      right: 10px;
      left: 10px;
      width: auto;
      height: 700px;
      min-height: 500px;
      max-height: 80vh;
      bottom: 78px;
      border-radius: 10px;
    }
    
    .uh-chat-fab {
      right: 12px;
      bottom: 12px;
    }
    
    .uh-chat-header {
      height: 55px;
    }
    
    #uhChatFrameMount {
      height: calc(100% - 55px);
    }
  }

/* ─── BREADCRUMB BAR ─── */
/* Used on dedicated server & subpages — between header and hero */
.uh-breadcrumb-bar{
  background:#0a1628;
  border-bottom:1px solid rgba(255,255,255,0.08);
  padding:9px 0;
  font-size:13px;
}
.uh-breadcrumb-list{
  display:flex;align-items:center;gap:6px;
  list-style:none;margin:0;padding:0;flex-wrap:wrap;
}
.uh-breadcrumb-list li{display:flex;align-items:center}
.uh-breadcrumb-list a{
  color:#00D4FF;text-decoration:none;
  transition:opacity .2s;font-weight:500;
}
.uh-breadcrumb-list a:hover{opacity:.75}
.uh-breadcrumb-current{color:rgba(232,240,251,0.55);font-weight:400}
/* separator chevron */
.uh-breadcrumb-list li[aria-hidden="true"]{
  color:rgba(232,240,251,0.25);font-size:12px;margin:0 2px;
}

/* ─── SUBPAGE HERO / LEGACY SECTION FIXES ─── */
/* Prevent old fixed-header CSS (body{padding-top:Xpx}) from creating blank space */
/* overflow-x:hidden on body would break position:sticky — keep it on html only */
body{padding-top:0!important;overflow-x:visible!important;overflow-y:visible!important}
/* Prevent legacy .subpagebanner negative margin-top from sliding behind sticky header */
.subpagebanner,.ds-hero,.plansheader{margin-top:0!important}
/* ─── LEGACY head.js / stylesuh.css HEADER OVERRIDE ─────────────────────────
   Problem: head.js adds class "headertop" to <header> when scrollY > 250px.
   stylesuh.css has two conflicting rules for .headertop:
     1) .headertop { position:fixed!important; z-index:99999!important; }
     2) .headertop, .headertop .topmenu ... { display:none }
   Rule 2 hides the header on scroll. Rule 1 also fights our sticky layout.
   stylesuh.css also has .headertop .logo { padding:5px; width:161px } which
   resizes the logo container every time you scroll past 250px.

   Fix: "header.headertop" has specificity (0,0,1,1) which beats .headertop
   (0,0,1,0), so these !important rules always win regardless of cascade order.
────────────────────────────────────────────────────────────────────────────── */
header,
header.headertop {
  display:block!important;
  position:sticky!important;
  top:0!important;
  z-index:900!important;
  background:#fff!important;
}

/* Lock logo size — beats .headertop .logo { width:161px; padding:5px } */
header .logo,
header.headertop .logo {
  flex-shrink:0!important;
  line-height:0!important;
  padding:0!important;
  width:auto!important;
}
header .logo img,
header.headertop .logo img {
  height:42px!important;
  width:auto!important;
  display:block!important;
}
@media(max-width:600px){
  header .logo img,
  header.headertop .logo img { height:34px!important; }
}

/* Topbar must remain visible above page content on all screen sizes > 600px */
#topbar{position:relative;z-index:901}

/* ─── MOBILE HEADER STABILITY ─── */
/* Prevents the header-inner flex row from collapsing or dispersing on mobile scroll.
   Applies at ≤1200px (same breakpoint as hamburger). */
@media(max-width:1200px){
  header,
  header.headertop{
    /* Force sticky to re-evaluate correctly on iOS Safari after overflow-x fix */
    display:block!important;
    position:-webkit-sticky!important;
    position:sticky!important;
    top:0!important;
    left:0!important;
    right:0!important;
    width:100%!important;
    z-index:900!important;
    background:#fff!important;
  }
  .header-inner{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    flex-wrap:nowrap!important;
    width:100%!important;
    height:58px!important;
    padding:0 16px!important;
    gap:0!important;
  }
  .logo{flex-shrink:0!important;line-height:0}
  .logo img{height:34px!important;width:auto!important;display:block!important}
  /* Hamburger stays right-aligned, never wraps */
  .inline-hamburger{
    margin-left:auto!important;
    flex-shrink:0!important;
  }
}

/* ─── LEGACY CSS VARIABLE OVERRIDE ─── */
/* update/main.css loads AFTER style.css and sets --color-primary to red (#d9251c).
   !important on custom properties in an earlier stylesheet wins over a later
   non-!important declaration of the same property, fixing all components that
   use var(--color-primary) across every old-style page. */
:root{
  --color-primary:#0091D6!important;
  --color-primary-rgb:0,145,214!important;
  --color-secondary:#00D4FF!important;
  --color-accent:#00D4FF!important;
  --color-primary-dark:#0077b8!important;
  --color-primary-light:rgba(0,145,214,0.12)!important;
}

/* ─── NS-BREADCRUMB (legacy pages) ─── */
/* Old-style pages use .ns-breadcrumb instead of .uh-breadcrumb-bar.
   Providing base styles here prevents the breadcrumb from being invisible
   on pages that don't have inline CSS for it (or where the inline CSS
   references --color-primary which is now cyan). */
.ns-breadcrumb{
  background:rgba(0,0,0,.04);
  padding:9px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.ns-breadcrumb ol{
  list-style:none;margin:0;padding:0;
  display:flex;gap:6px;align-items:center;flex-wrap:wrap;
  font-size:13px;color:#888;
}
.ns-breadcrumb a{color:#888;text-decoration:none;transition:color .2s}
.ns-breadcrumb a:hover{color:#0091D6}
.ns-breadcrumb .breadcrumb-sep{color:#bbb;font-size:12px}

/* ─── HERO-OVERLAY (legacy pages) ─── */
/* .hero-overlay inside old .subpagebanner sections */
.subpagebanner .hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom,rgba(4,10,24,.72) 0%,rgba(4,10,24,.38) 40%,rgba(4,10,24,.72) 100%);
  pointer-events:none;z-index:0;
}
.subpagebanner .hero-content{position:relative;z-index:1}

/* ─── UH-PAGE-HERO — subpage dark navy hero (shared/offshore hosting, etc.) ─── */
/* Replaces legacy .subpagebanner.plansheader with a properly z-indexed dark navy hero.
   Background image is set inline on the element. */
.uh-page-hero{
  position:relative;
  overflow:hidden;
  background:#080f1e;
}
/* Hero intro text */
.uh-hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 18px;
  background:rgba(0,212,255,0.12);
  color:#00D4FF;
  border:1px solid rgba(0,212,255,0.25);
  border-radius:40px;
  font-size:12px;font-weight:800;letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:22px;
}
.uh-hero-title{
  font-size:clamp(28px,4vw,52px);
  font-weight:800;
  color:#fff;
  line-height:1.15;
  margin-bottom:24px;
  text-shadow:0 4px 20px rgba(0,0,0,.35);
}
.uh-hero-title-em{
  font-style:normal;
  opacity:.8;
  font-size:.85em;
}
.uh-hero-sub{
  font-size:17px;
  line-height:1.75;
  color:rgba(232,240,251,.88);
  max-width:820px;
  margin:0 auto 16px;
}
.uh-hero-sub strong{color:#fff}
.uh-hero-sub a{color:#00D4FF!important;text-decoration:none}
.uh-hero-sub a:hover{opacity:.85}
/* Plan cards inside the hero section */
.sectionshared{padding:0 0 20px;}
.uh-btn-outline{
  display:inline-block;
  padding:12px 36px;
  border:2px solid rgba(0,212,255,0.55);
  border-radius:50px;
  color:#00D4FF;
  font-weight:700;
  font-size:14px;
  letter-spacing:1px;
  text-decoration:none;
  transition:background .25s,color .25s,border-color .25s;
}
.uh-btn-outline:hover{
  background:rgba(0,212,255,0.12);
  border-color:#00D4FF;
  color:#fff;
}
/* Mobile: stack hero text, reduce font sizes */
@media(max-width:767px){
  .uh-page-hero .container{padding-top:40px!important;padding-bottom:20px!important}
  .uh-hero-title{font-size:28px;}
  .uh-hero-sub{font-size:15px;}
  .uh-hero-badge{font-size:11px;}
}
/* breadcrumb subclasses used on new pages */
.uh-breadcrumb-link{
  color:#00D4FF;
  text-decoration:none;
  display:inline-flex;align-items:center;gap:5px;
  font-weight:500;
  transition:opacity .2s;
}
.uh-breadcrumb-link:hover{opacity:.75}
.uh-breadcrumb-sep{
  color:rgba(232,240,251,.25);
  font-size:12px;
  margin:0 2px;
}

/* ─── LIGHT-SECTION COLOR RESETS ──────────────────────────────────────────
   The default body theme sets color:#e8f0fb (near-white). Without explicit
   overrides, text in light-bg sections (.greybg2, .greybg) inherits this
   and becomes invisible on white cards/backgrounds.
   These rules force readable dark text on every page that uses $body_class.
   Specificity (body class + section class) safely overrides the body default
   without touching the dark-themed hero/CTA/footer sections.
─────────────────────────────────────────────────────────────────────────── */
body.page-shared-hosting .greybg2,
body.page-shared-hosting .greybg,
body.page-offshore-hosting .greybg2,
body.page-offshore-hosting .greybg {
  color: #1f2937;
}
body.page-shared-hosting .greybg2 h1,
body.page-shared-hosting .greybg2 h2,
body.page-shared-hosting .greybg2 h3,
body.page-shared-hosting .greybg2 h4,
body.page-shared-hosting .greybg2 h5,
body.page-shared-hosting .greybg2 h6,
body.page-offshore-hosting .greybg2 h1,
body.page-offshore-hosting .greybg2 h2,
body.page-offshore-hosting .greybg2 h3,
body.page-offshore-hosting .greybg2 h4,
body.page-offshore-hosting .greybg2 h5,
body.page-offshore-hosting .greybg2 h6,
body.page-shared-hosting .greybg h1,
body.page-shared-hosting .greybg h2,
body.page-shared-hosting .greybg h3,
body.page-shared-hosting .greybg h4,
body.page-offshore-hosting .greybg h1,
body.page-offshore-hosting .greybg h2,
body.page-offshore-hosting .greybg h3,
body.page-offshore-hosting .greybg h4 {
  color: #1f2937;
}
body.page-shared-hosting .greybg2 p,
body.page-offshore-hosting .greybg2 p,
body.page-shared-hosting .greybg p,
body.page-offshore-hosting .greybg p {
  color: #374151;
}
/* Comparison / accordion tables inside greybg2 */
body.page-shared-hosting .modern-comparison-table td,
body.page-shared-hosting .modern-comparison-table th,
body.page-offshore-hosting .modern-comparison-table td,
body.page-offshore-hosting .modern-comparison-table th {
  color: #1f2937;
}
body.page-shared-hosting .accordion-title,
body.page-offshore-hosting .accordion-title {
  color: #1f2937;
}
/* FAQ section headings and text */
body.page-shared-hosting .faq-item .faq-question,
body.page-offshore-hosting .faq-item .faq-question,
body.page-shared-hosting .faq-item .faq-answer,
body.page-offshore-hosting .faq-item .faq-answer {
  color: #1f2937;
}
/* section-title, section-sub used on light pages */
body.page-shared-hosting .greybg2 .section-title,
body.page-offshore-hosting .greybg2 .section-title {
  color: #1f2937;
}
body.page-shared-hosting .greybg2 .section-sub,
body.page-offshore-hosting .greybg2 .section-sub {
  color: #374151;
}
/* FAQ text class */
body.page-shared-hosting .faq-text,
body.page-offshore-hosting .faq-text {
  color: #374151;
}
/* Mobile: collapse the 2-column FAQ grid to a single column */
@media(max-width:767px){
  body.page-shared-hosting .greybg2 [style*="grid-template-columns: 1fr 1fr"],
  body.page-offshore-hosting .greybg2 [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   UH-PLAN-CARD — Modern hosting plan cards (shared + offshore hosting pages)
   Replaces legacy .planbox CDN component with a fully self-contained design.
   Variants:
     .uh-plan-card              — base (cyan/blue — shared hosting)
     .uh-plan-card--popular     — highlighted card (elevated, glowing border)
     .uh-plan-card--offshore    — gold accent variant (offshore hosting page)
═══════════════════════════════════════════════════════════════════════════ */

/* ── Wrapper row spacing ── */
.sectionshared .row.topmargin10 { padding-top: 16px; }

/* ── Base card ── */
.uh-plan-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(13,31,60,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  margin-top: 20px;
}
.uh-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(13,31,60,0.14);
}

/* ── Popular variant ── */
.uh-plan-card--popular {
  border: 2px solid #00D4FF;
  box-shadow: 0 8px 32px rgba(0,212,255,0.18);
  transform: translateY(-8px);
  z-index: 2;
}
.uh-plan-card--popular:hover {
  transform: translateY(-14px);
  box-shadow: 0 24px 55px rgba(0,212,255,0.22);
}

/* ── Offshore (gold) variant ── */
.uh-plan-card--offshore.uh-plan-card--popular {
  border-color: #ffc107;
  box-shadow: 0 8px 32px rgba(255,193,7,0.22);
}
.uh-plan-card--offshore.uh-plan-card--popular:hover {
  box-shadow: 0 24px 55px rgba(255,193,7,0.26);
}

/* ── Popular badge ── */
.uh-plan-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,#00D4FF,#0091D6);
  color: #051020;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,212,255,0.3);
}
.uh-plan-badge--offshore {
  background: linear-gradient(135deg,#ffc107,#ff8a00);
  color: #111;
  box-shadow: 0 4px 12px rgba(255,193,7,0.3);
}

/* ── Card header (dark navy) ── */
.uh-plan-header {
  background: linear-gradient(160deg,#0D1B30 0%,#0f2240 100%);
  padding: 30px 22px 22px;
  text-align: center;
  position: relative;
}
.uh-plan-card--popular .uh-plan-header { padding-top: 40px; }
.uh-plan-header::after {
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,#00D4FF,#0091D6);
}
.uh-plan-card--offshore .uh-plan-header::after {
  background: linear-gradient(90deg,#ffc107,#ff8a00);
}

.uh-plan-level {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(0,212,255,0.75);
  margin-bottom: 6px;
}
.uh-plan-card--offshore .uh-plan-level { color: rgba(255,193,7,0.8); }

.uh-plan-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -.3px;
}

/* Price */
.uh-plan-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}
.uh-plan-currency {
  font-size: 18px;
  font-weight: 700;
  color: #00D4FF;
  padding-top: 8px;
}
.uh-plan-card--offshore .uh-plan-currency { color: #ffc107; }

.uh-plan-amount {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}
.uh-plan-period {
  font-size: 14px;
  color: rgba(232,240,251,0.55);
  padding-top: 36px;
  margin-left: 2px;
}
.uh-plan-billing {
  font-size: 12px;
  color: rgba(232,240,251,0.4);
  margin-top: 8px;
  letter-spacing: .3px;
}

/* ── Card body ── */
.uh-plan-body {
  padding: 20px 22px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.uh-plan-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.uh-plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.uh-plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-size: 13.5px;
  color: #374151;
  border-bottom: 1px solid #f9fafb;
}
.uh-plan-features li:last-child { border-bottom: none; }
.uh-plan-features li i.fa-check {
  color: #16a34a;
  font-size: 11px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.uh-plan-features li strong { color: #111827; font-weight: 700; }
.uh-plan-features .feat-free { color: #16a34a; font-weight: 700; }

/* ── CTA footer ── */
.uh-plan-cta {
  padding: 16px 22px 20px;
  border-top: 1px solid #f1f5f9;
}
.uh-plan-btn {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg,#00D4FF,#0091D6);
  color: #051020 !important;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .6px;
  text-align: center;
  text-decoration: none !important;
  border-radius: 10px;
  border: none;
  transition: filter .2s, transform .2s, box-shadow .2s;
}
.uh-plan-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,212,255,0.28);
}
.uh-plan-btn--popular {
  box-shadow: 0 6px 18px rgba(0,212,255,0.25);
}
.uh-plan-btn--offshore {
  background: linear-gradient(135deg,#ffc107,#ff8a00);
  color: #111 !important;
}
.uh-plan-btn--offshore:hover {
  box-shadow: 0 8px 22px rgba(255,193,7,0.28);
}

/* ── Responsive ── */
@media(max-width:991px) and (min-width:768px){
  .uh-plan-amount { font-size: 42px; }
  .uh-plan-name   { font-size: 18px; }
  .uh-plan-body   { padding: 16px 16px 12px; }
  .uh-plan-cta    { padding: 14px 16px 18px; }
  .uh-plan-header { padding: 26px 16px 18px; }
  .uh-plan-card--popular .uh-plan-header { padding-top: 36px; }
}
@media(max-width:767px){
  .uh-plan-card { margin-bottom: 16px; }
  .uh-plan-card--popular { transform: none; }
  .uh-plan-card--popular:hover { transform: translateY(-6px); }
  .uh-plan-card--offshore.uh-plan-card--popular { transform: none; }
  .uh-plan-amount { font-size: 48px; }
}

/* ================================================================
   One-Click VPS Application Deployments
   ================================================================ */
.uh-one-click-apps {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(0,212,255,0.13), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(122,184,0,0.1), transparent 30%),
    linear-gradient(160deg, #06111f 0%, #0b1d36 55%, #071426 100%);
  color: #e8f4ff;
  border-top: 1px solid rgba(0,212,255,0.16);
  border-bottom: 1px solid rgba(0,212,255,0.16);
}

.uh-one-click-apps::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;
  pointer-events: none;
}

.uh-one-click-apps .container {
  position: relative;
  z-index: 1;
}

.uh-one-click-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.uh-one-click-kicker,
.uh-one-click-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,212,255,0.28);
  background: rgba(0,212,255,0.1);
  color: #00d4ff;
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.uh-one-click-head h2 {
  margin: 18px 0 14px;
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.12;
}

.uh-one-click-head p {
  margin: 0;
  color: rgba(232,244,255,0.76);
  font-size: 16px;
  line-height: 1.75;
}

.uh-one-click-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.uh-one-click-featured,
.uh-one-click-card,
.uh-one-click-delivery {
  background: linear-gradient(155deg, rgba(17,39,66,0.92), rgba(7,20,38,0.96));
  border: 1px solid rgba(148,190,228,0.18);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.26);
}

.uh-one-click-featured {
  padding: 30px;
}

.uh-one-click-featured-top {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.uh-one-click-main-icon,
.uh-one-click-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #00d4ff, #16c784);
  color: #06111f;
  box-shadow: 0 14px 34px rgba(0,212,255,0.24);
}

.uh-one-click-main-icon {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  font-size: 30px;
}

.uh-one-click-featured h3,
.uh-one-click-card h3,
.uh-one-click-delivery h3 {
  margin: 0;
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 800;
}

.uh-one-click-featured h3 {
  margin-top: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.uh-one-click-featured-copy {
  margin: 0 0 22px;
  color: rgba(232,244,255,0.78);
  font-size: 16px;
  line-height: 1.75;
}

.uh-one-click-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.uh-one-click-checks span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(0,212,255,0.14);
  border-radius: 12px;
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.88);
  font-size: 13.5px;
  font-weight: 700;
}

.uh-one-click-checks i,
.uh-one-click-pricing li i {
  color: #16c784;
}

.uh-one-click-pricing {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 16px;
  background: rgba(0,212,255,0.06);
}

.uh-one-click-price-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(232,244,255,0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.uh-one-click-pricing strong {
  display: block;
  color: #00d4ff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.uh-one-click-pricing div > span:last-child {
  color: rgba(232,244,255,0.58);
  font-size: 13px;
  font-weight: 700;
}

.uh-one-click-pricing ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.uh-one-click-pricing li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.84);
  font-size: 13.5px;
  font-weight: 700;
}

.uh-one-click-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.uh-one-click-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.uh-one-click-btn:hover {
  transform: translateY(-2px);
}

.uh-one-click-btn-primary {
  background: linear-gradient(135deg, #00d4ff, #16c784);
  color: #04111f !important;
  box-shadow: 0 15px 34px rgba(0,212,255,0.25);
}

.uh-one-click-btn-secondary {
  border: 1px solid rgba(255,255,255,0.22);
  color: #e8f4ff !important;
  background: rgba(255,255,255,0.04);
}

.uh-one-click-btn-secondary:hover {
  border-color: rgba(0,212,255,0.5);
  color: #fff !important;
}

.uh-one-click-side {
  display: grid;
  gap: 18px;
}

.uh-one-click-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.uh-one-click-card {
  padding: 18px;
  min-height: 178px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.uh-one-click-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.38);
  background: linear-gradient(155deg, rgba(20,50,84,0.96), rgba(7,20,38,0.98));
}

.uh-one-click-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: 19px;
}

.uh-one-click-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.uh-one-click-card p,
.uh-one-click-delivery p {
  margin: 0;
  color: rgba(232,244,255,0.7);
  font-size: 13.5px;
  line-height: 1.62;
}

.uh-one-click-delivery {
  padding: 20px;
}

.uh-one-click-delivery h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 19px;
}

.uh-one-click-delivery h3 i {
  color: #00d4ff;
}

.uh-one-click-terminal {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(0,212,255,0.14);
  border-radius: 12px;
  background: rgba(1,9,18,0.56);
  color: rgba(232,244,255,0.82);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 12px;
}

@media (max-width: 991px) {
  .uh-one-click-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .uh-one-click-apps {
    padding: 64px 0;
  }

  .uh-one-click-featured {
    padding: 22px;
  }

  .uh-one-click-pricing {
    grid-template-columns: 1fr;
  }

  .uh-one-click-featured-top {
    align-items: flex-start;
  }

  .uh-one-click-checks,
  .uh-one-click-grid {
    grid-template-columns: 1fr;
  }

  .uh-one-click-btn {
    width: 100%;
  }
}

/* ================================================================
   Control Panel / Softaculous Cross-Link Section
   ================================================================ */
.uhcp__blog-plug {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(0, 153, 255, .18);
  background:
    radial-gradient(circle at 8% 20%, rgba(0, 212, 255, .12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 18px 44px rgba(9, 33, 61, .08);
}

.uhcp__blog-plug-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, .14), rgba(22, 199, 132, .12));
  border: 1px solid rgba(0, 153, 255, .18);
  color: #0099ff;
  font-size: 22px;
}

.uhcp__blog-plug-copy span {
  display: block;
  margin-bottom: 5px;
  color: #0099ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.uhcp__blog-plug-copy h3 {
  margin: 0 0 7px;
  color: #061a33;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.uhcp__blog-plug-copy p {
  margin: 0;
  color: #5f6f83;
  font-size: 14px;
  line-height: 1.65;
}

.uhcp__blog-plug-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00d4ff, #168cff);
  color: #04111f !important;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(0, 153, 255, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.uhcp__blog-plug-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 153, 255, .25);
}

.uh-panel-soft-bridge {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(0,212,255,.13), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(255,107,0,.1), transparent 30%),
    linear-gradient(160deg, #06111f 0%, #0b1d36 56%, #071426 100%);
  border-top: 1px solid rgba(0,212,255,.16);
  border-bottom: 1px solid rgba(0,212,255,.16);
  color: #e8f4ff;
}

.uh-panel-soft-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.uh-panel-soft-bridge .container {
  position: relative;
  z-index: 1;
}

.uh-panel-soft-bridge__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
}

.uh-panel-soft-bridge__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(0,212,255,.28);
  background: rgba(0,212,255,.09);
  color: #00d4ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.uh-panel-soft-bridge__copy h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.uh-panel-soft-bridge__copy p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(232,244,255,.76);
  font-size: 16px;
  line-height: 1.75;
}

.uh-panel-soft-bridge__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 820px;
  margin-bottom: 26px;
}

.uh-panel-soft-bridge__checks span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148,190,228,.15);
  background: rgba(0,0,0,.2);
  color: rgba(255,255,255,.86);
  font-size: 13.5px;
  font-weight: 700;
}

.uh-panel-soft-bridge__checks i {
  color: #16c784;
}

.uh-panel-soft-bridge__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.uh-panel-soft-bridge__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.uh-panel-soft-bridge__btn:hover {
  transform: translateY(-2px);
}

.uh-panel-soft-bridge__btn--primary {
  color: #04111f !important;
  background: linear-gradient(135deg, #00d4ff, #16c784);
  box-shadow: 0 16px 36px rgba(0,212,255,.24);
}

.uh-panel-soft-bridge--softaculous .uh-panel-soft-bridge__btn--primary {
  background: linear-gradient(135deg, #ff8a00, #00d4ff);
}

.uh-panel-soft-bridge__btn--ghost {
  color: #e8f4ff !important;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.2);
}

.uh-panel-soft-bridge__panel {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(148,190,228,.18);
  background: linear-gradient(155deg, rgba(17,39,66,.92), rgba(7,20,38,.96));
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.uh-panel-soft-bridge__panel-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.uh-panel-soft-bridge__panel-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d4ff, #16c784);
  color: #04111f;
  font-size: 23px;
}

.uh-panel-soft-bridge--softaculous .uh-panel-soft-bridge__panel-icon {
  background: linear-gradient(135deg, #ff8a00, #00d4ff);
}

.uh-panel-soft-bridge__panel-top strong,
.uh-panel-soft-bridge__panel-top span {
  display: block;
}

.uh-panel-soft-bridge__panel-top strong {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.uh-panel-soft-bridge__panel-top span {
  color: rgba(232,244,255,.62);
  font-size: 13px;
  line-height: 1.5;
}

.uh-panel-soft-bridge__stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.uh-panel-soft-bridge__stack div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(148,190,228,.14);
  color: rgba(255,255,255,.9);
  font-size: 13.5px;
  font-weight: 800;
}

.uh-panel-soft-bridge__stack i {
  color: #00d4ff;
  font-size: 18px;
}

.uh-panel-soft-bridge__note {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255,138,0,.08);
  border: 1px solid rgba(255,138,0,.18);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}

.uh-panel-soft-bridge__note i {
  color: #ff8a00;
  margin-top: 3px;
}

@media (max-width: 991px) {
  .uhcp__blog-plug {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .uhcp__blog-plug-link {
    grid-column: 1 / -1;
    justify-self: flex-start;
  }

  .uh-panel-soft-bridge__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .uhcp__blog-plug {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .uhcp__blog-plug-link {
    width: 100%;
  }

  .uh-panel-soft-bridge {
    padding: 58px 0;
  }

  .uh-panel-soft-bridge__checks,
  .uh-panel-soft-bridge__stack {
    grid-template-columns: 1fr;
  }

  .uh-panel-soft-bridge__btn {
    width: 100%;
  }
}

/* UnderHost privacy settings widget */
.uh-privacy-fab {
  position: fixed;
  left: 40px;
  bottom: 26px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(145,232,255,0.72);
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.62) 0 12%, rgba(103,225,255,0.78) 13% 30%, transparent 31%),
    linear-gradient(145deg, #20d5ff 0%, #00a9ef 46%, #006fba 100%);
  box-shadow: 0 14px 28px rgba(0,169,239,0.28), 0 0 0 4px rgba(0,196,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 2147482999;
  transition: transform .2s ease, box-shadow .2s ease;
}

.uh-privacy-fab[hidden],
.uh-privacy-modal[hidden] {
  display: none !important;
}

.uh-privacy-fab:hover,
.uh-privacy-fab:focus-visible {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 18px 34px rgba(0,196,255,0.34), 0 0 0 6px rgba(0,196,255,0.11);
  outline: none;
}

.uh-privacy-fab img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 999px;
  padding: 4px;
  background: rgba(255,255,255,0.94);
  box-shadow: inset 0 0 0 1px rgba(0,113,186,0.12), 0 4px 10px rgba(0,54,91,0.22);
  display: block;
}

.uh-privacy-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2147483002;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.uh-privacy-modal.is-open {
  display: flex;
}

.uh-privacy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.uh-privacy-panel {
  position: relative;
  width: min(625px, calc(100vw - 32px));
  max-height: min(730px, calc(100vh - 48px));
  background: #fff;
  color: #111827;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.uh-privacy-panel::before {
  content: "";
  height: 4px;
  background: linear-gradient(90deg, #002b5c, #00aeef);
  flex: 0 0 auto;
}

.uh-privacy-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px 18px;
}

.uh-privacy-head h2 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.25;
  color: #0f172a;
  font-weight: 800;
}

.uh-privacy-head p {
  margin: 0;
  color: #263244;
  font-size: 12px;
  line-height: 1.55;
}

.uh-privacy-links {
  display: flex;
  gap: 20px;
  margin-top: 14px;
}

.uh-privacy-links a {
  color: #0f172a;
  font-size: 11px;
  text-decoration: none;
}

.uh-privacy-links a:hover {
  color: #0064c8;
}

.uh-privacy-close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  position: relative;
  margin-top: -4px;
}

.uh-privacy-close span,
.uh-privacy-close span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 17px;
  height: 2px;
  background: #111827;
  transform: rotate(45deg);
}

.uh-privacy-close span::after {
  left: 0;
  right: 0;
  top: 0;
  transform: rotate(90deg);
}

.uh-privacy-close:hover {
  background: #f3f4f6;
}

.uh-privacy-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eef1f5;
  border-bottom: 1px solid #d9dde4;
  background: #fbfdff;
}

.uh-privacy-tabs button {
  height: 48px;
  border: 0;
  background: #fff;
  color: #111827;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  position: relative;
}

.uh-privacy-tabs button.is-active {
  color: #0057bd;
}

.uh-privacy-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: #0057bd;
}

.uh-privacy-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 22px 24px;
  scrollbar-color: #8aa4bf #eef3f8;
  scrollbar-width: thin;
}

.uh-privacy-card {
  border: 1px solid #d7dce4;
  border-radius: 5px;
  padding: 17px 12px 17px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
}

.uh-privacy-card:has(input:checked:not(:disabled)) {
  border-color: rgba(0,110,210,0.34);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.uh-privacy-card h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

.uh-privacy-card p {
  margin: 0;
  color: #536070;
  font-size: 11px;
  line-height: 1.55;
}

.uh-privacy-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.uh-privacy-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.uh-privacy-switch span {
  width: 38px;
  height: 20px;
  border-radius: 999px;
  background: #cfd4dc;
  position: relative;
  transition: background .18s ease;
}

.uh-privacy-switch span::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.22);
  transition: transform .18s ease;
}

.uh-privacy-switch input:checked + span {
  background: #0057bd;
}

.uh-privacy-switch input:checked + span::before {
  transform: translateX(18px);
}

.uh-privacy-switch.is-locked {
  cursor: default;
}

.uh-privacy-switch.is-locked input:checked + span {
  background: #cfd4dc;
}

.uh-privacy-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  background: #eef6ff;
  color: #0057bd;
  font-size: 11px;
  font-weight: 800;
}

.uh-privacy-pill.is-off {
  background: #f3f4f6;
  color: #6b7280;
}

.uh-privacy-pill.is-required {
  background: #edfdf5;
  color: #047857;
}

.uh-privacy-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  padding: 12px 24px;
  border-top: 1px solid #e5e7eb;
  background: #fbfdff;
}

.uh-privacy-btn {
  min-height: 36px;
  border: 0;
  border-radius: 5px;
  background: #f3f4f6;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.uh-privacy-btn:hover {
  background: #e8ebef;
}

.uh-privacy-btn-primary {
  background: #00aeef;
  color: #fff;
}

.uh-privacy-btn-primary:hover {
  background: #0091d6;
}

body.uh-privacy-lock {
  overflow: hidden !important;
}

@media (max-width: 640px) {
  .uh-privacy-fab {
    left: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .uh-privacy-modal {
    padding: 12px;
    align-items: flex-end;
  }

  .uh-privacy-panel {
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 10px;
  }

  .uh-privacy-head,
  .uh-privacy-body {
    padding: 18px;
  }

  .uh-privacy-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .uh-privacy-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 18px 18px;
  }
}
