/* =====================================================================
   VASTROX — Cloud Hosting Platform
   Marketing design system  (light premium theme, blue accents)
   ===================================================================== */

/* ----------  Design tokens  ---------- */
:root {
  /* Brand */
  --primary: #2563eb;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-500: #3b82f6;
  --primary-400: #60a5fa;
  --primary-soft: #eff4ff;
  --primary-soft-2: #e0ecff;
  --cyan: #22d3ee;
  --purple: #8b5cf6;
  --green: #22c55e;
  --green-600: #16a34a;
  --orange: #f97316;
  --red: #ef4444;
  --yellow: #f59e0b;

  /* Neutrals */
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --surface: #ffffff;
  --border: #e6ebf2;
  --border-2: #e2e8f0;
  --text: #0f172a;
  --text-2: #334155;
  --text-3: #475569;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --navy: #0b1220;
  --navy-2: #111a2e;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow: 0 4px 16px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, .08), 0 2px 8px rgba(15, 23, 42, .04);
  --shadow-lg: 0 24px 64px rgba(37, 99, 235, .14), 0 8px 24px rgba(15, 23, 42, .08);
  --shadow-blue: 0 16px 40px rgba(37, 99, 235, .28);
  --ring: 0 0 0 4px rgba(37, 99, 235, .14);

  --grad-blue: linear-gradient(135deg, #2563eb 0%, #1d4ed8 60%, #4f46e5 100%);
  --grad-blue-soft: linear-gradient(135deg, #eef4ff 0%, #e7efff 100%);
  --grad-hero: radial-gradient(1200px 600px at 80% -10%, #e8f0ff 0%, rgba(232, 240, 255, 0) 60%),
               radial-gradient(900px 500px at -10% 10%, #eef6ff 0%, rgba(238, 246, 255, 0) 55%);
  --grad-cta: linear-gradient(120deg, #1d4ed8 0%, #2563eb 45%, #6d28d9 110%);

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --pill: 999px;

  --container: 1200px;
  --header-h: 70px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-body);
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text-2);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

::selection { background: rgba(37, 99, 235, .18); }

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 92px; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--muted { background: var(--bg-muted); }
.section--tight { padding-block: 64px; }

.text-grad {
  background: linear-gradient(90deg, var(--primary-500), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-blue { color: var(--primary); }
.text-muted { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--primary-700);
  background: var(--primary-soft);
  border: 1px solid var(--primary-soft-2);
  padding: 7px 14px; border-radius: var(--pill);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,.16); }

.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-block: 18px 16px; }
.section-head p { font-size: 18px; color: var(--muted); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px; line-height: 1;
  padding: 14px 22px; border-radius: var(--radius-sm);
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; cursor: pointer; position: relative;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 22px rgba(37,99,235,.28); }
.btn-primary:hover { background: var(--primary-700); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(37,99,235,.34); }
.btn-ghost { background: #fff; color: var(--text); border: 1px solid var(--border-2); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--primary-400); color: var(--primary-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-soft { background: var(--primary-soft); color: var(--primary-700); }
.btn-soft:hover { background: var(--primary-soft-2); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--primary-700); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-outline-white:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 10px 16px; font-size: 13.5px; }
.btn-block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--primary); font-family: var(--font-display); font-size: 15px; transition: gap .2s ease; }
.link-arrow:hover { gap: 11px; }
.link-arrow svg { width: 16px; height: 16px; }

/* ----------  Top promo bar  ---------- */
.promo {
  background: var(--grad-blue); color: #fff;
  font-size: 13.5px; font-weight: 500;
  position: relative; z-index: 60;
}
.promo .container { display: flex; align-items: center; justify-content: center; gap: 14px; padding-block: 9px; flex-wrap: wrap; }
.promo b { font-weight: 800; }
.promo .tag { background: rgba(255,255,255,.18); padding: 2px 9px; border-radius: var(--pill); font-weight: 800; letter-spacing: .03em; }
.promo a { display: inline-flex; align-items: center; gap: 5px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.promo a svg { width: 14px; height: 14px; }

/* ----------  Header  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; gap: 28px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--text); letter-spacing: -.02em; }
.brand .logo {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--grad-blue); color: #fff; box-shadow: 0 6px 16px rgba(37,99,235,.34);
}
.brand .logo svg { width: 22px; height: 22px; }

.nav { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.nav > li > a, .nav > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px; color: var(--text-2);
  transition: color .18s ease, background .18s ease;
}
.nav > li > a:hover, .nav > li > button:hover { color: var(--primary-700); background: var(--primary-soft); }
.nav .chev { width: 15px; height: 15px; opacity: .7; transition: transform .2s ease; }
.nav .has-menu { position: relative; }
.nav .has-menu:hover .chev { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 12px; width: 560px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: all .22s ease; z-index: 70;
}
.nav .has-menu:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega.mega-sm { width: 280px; grid-template-columns: 1fr; }
.mega::before { content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 14px; }
.mega a { display: flex; gap: 12px; padding: 11px 12px; border-radius: var(--radius-sm); transition: background .16s ease; }
.mega a:hover { background: var(--bg-soft); }
.mega .mi-ico { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); }
.mega .mi-ico svg { width: 19px; height: 19px; }
.mega .mi-tt { font-weight: 700; color: var(--text); font-size: 14.5px; font-family: var(--font-display); }
.mega .mi-ds { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--text-3); }
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,.18); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 3px rgba(34,197,94,.18);} 50%{ box-shadow: 0 0 0 6px rgba(34,197,94,.05);} }
.login-link { font-weight: 600; font-size: 15px; color: var(--text-2); }
.login-link:hover { color: var(--primary-700); }

.hamburger { display: none; width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1px solid var(--border-2); background: #fff; place-items: center; }
.hamburger svg { width: 22px; height: 22px; color: var(--text); }

/* ----------  Hero  ---------- */
.hero { position: relative; background: var(--grad-hero); padding-block: 70px 90px; overflow: hidden; }
.hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(37,99,235,.07) 1px, transparent 0); background-size: 36px 36px; -webkit-mask-image: radial-gradient(700px 400px at 70% 20%, #000, transparent); mask-image: radial-gradient(700px 400px at 70% 20%, #000, transparent); }
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; margin-block: 22px 20px; }
.hero-copy p.lead { font-size: 19px; color: var(--text-3); max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-feats { display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-feats li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--text-2); }
.hero-feats .ico { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(34,197,94,.12); color: var(--green-600); }
.hero-feats .ico svg { width: 14px; height: 14px; }

.trusted-row { margin-top: 44px; }
.trusted-row .lbl { font-size: 13px; font-weight: 600; color: var(--muted-2); letter-spacing: .02em; margin-bottom: 14px; }
.trusted-logos { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.trusted-logos span { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: #aeb8c7; letter-spacing: -.01em; transition: color .2s ease; }
.trusted-logos span:hover { color: var(--muted); }

/* ----------  Dashboard preview (hero mock)  ---------- */
.hero-visual { position: relative; }
.float-badge { position: absolute; z-index: 5; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-md); padding: 11px 14px; display: flex; align-items: center; gap: 10px; animation: floaty 5s ease-in-out infinite; }
.float-badge .fb-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; }
.float-badge .fb-ico svg { width: 18px; height: 18px; }
.float-badge .fb-t { font-size: 12px; color: var(--muted); }
.float-badge .fb-v { font-size: 14px; font-weight: 800; color: var(--text); font-family: var(--font-display); }
.float-badge.fb-1 { top: 6%; left: -22px; animation-delay: -1s; }
.float-badge.fb-2 { bottom: 8%; right: -16px; animation-delay: -2.5s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

.dash {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.dash-top { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.dash-top .dots { display: flex; gap: 6px; }
.dash-top .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dash-top .dots i:nth-child(1){ background:#f87171;} .dash-top .dots i:nth-child(2){ background:#fbbf24;} .dash-top .dots i:nth-child(3){ background:#34d399;}
.dash-top .url { margin-inline: auto; font-size: 12px; color: var(--muted); background: #fff; border: 1px solid var(--border); padding: 4px 14px; border-radius: var(--pill); }
.dash-body { padding: 18px; }
.dash-greet { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash-greet h4 { font-size: 16px; }
.dash-greet .pill { font-size: 11px; font-weight: 700; color: var(--green-600); background: rgba(34,197,94,.12); padding: 4px 9px; border-radius: var(--pill); }
.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
.dstat { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 11px; }
.dstat .ico { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; margin-bottom: 8px; }
.dstat .ico svg { width: 16px; height: 16px; }
.dstat .v { font-size: 19px; font-weight: 800; color: var(--text); font-family: var(--font-display); line-height: 1; }
.dstat .t { font-size: 11px; color: var(--muted); margin-top: 3px; }
.dash-section-t { font-size: 12px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.dbars { display: grid; gap: 12px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.dbar .dbar-h { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 6px; }
.dbar .dbar-h b { color: var(--text); font-weight: 700; }
.dbar .track { height: 7px; background: #e8edf4; border-radius: var(--pill); overflow: hidden; }
.dbar .fill { height: 100%; border-radius: var(--pill); }

.bg-blue-i { background: var(--primary-soft); color: var(--primary); }
.bg-cyan-i { background: rgba(34,211,238,.14); color: #0891b2; }
.bg-purple-i { background: rgba(139,92,246,.14); color: var(--purple); }
.bg-green-i { background: rgba(34,197,94,.14); color: var(--green-600); }
.bg-orange-i { background: rgba(249,115,22,.14); color: var(--orange); }
.bg-red-i { background: rgba(239,68,68,.12); color: var(--red); }
.fill-blue { background: linear-gradient(90deg,#3b82f6,#2563eb); }
.fill-purple { background: linear-gradient(90deg,#a78bfa,#8b5cf6); }
.fill-cyan { background: linear-gradient(90deg,#22d3ee,#0891b2); }
.fill-green { background: linear-gradient(90deg,#4ade80,#22c55e); }

/* ----------  Trust bar (under hero)  ---------- */
.trustbar { border-block: 1px solid var(--border); background: #fff; }
.trustbar .container { display: grid; grid-template-columns: repeat(7,1fr); gap: 14px; padding-block: 26px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px; }
.trust-item .ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); }
.trust-item .ico svg { width: 20px; height: 20px; }
.trust-item span { font-size: 13px; font-weight: 600; color: var(--text-2); }

/* ----------  Product cards  ---------- */
.prod-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.prod-card::after { content:""; position:absolute; inset:0 0 auto 0; height: 4px; background: var(--grad-blue); opacity: 0; transition: opacity .25s ease; }
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.prod-card:hover::after { opacity: 1; }
.prod-ico { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; }
.prod-ico svg { width: 28px; height: 28px; }
.prod-card h3 { font-size: 20px; margin-bottom: 9px; }
.prod-card > p { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; }
.prod-feats { display: grid; gap: 10px; margin-bottom: 22px; }
.prod-feats li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.prod-feats .ck { width: 18px; height: 18px; flex: none; border-radius: 50%; display: grid; place-items: center; background: rgba(34,197,94,.14); color: var(--green-600); }
.prod-feats .ck svg { width: 12px; height: 12px; }
.prod-card .price-from { margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--border-2); display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.prod-card .price-from .amt { font-size: 28px; font-weight: 800; color: var(--text); font-family: var(--font-display); }
.prod-card .price-from .per { font-size: 13px; color: var(--muted); }
.prod-card .price-from small { font-size: 12px; color: var(--muted); }

/* ----------  Feature cards (why choose)  ---------- */
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature .ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: var(--primary-soft); color: var(--primary); }
.feature .ico svg { width: 25px; height: 25px; }
.feature h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--muted); }

.feature-min { text-align: center; padding: 10px; }
.feature-min .ico { margin-inline: auto; width: 58px; height: 58px; border-radius: 16px; }
.feature-min .ico svg { width: 27px; height: 27px; }
.feature-min h3 { font-size: 17px; }
.feature-min p { font-size: 14px; }

/* ----------  Platform / split feature rows  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split + .split { margin-top: 80px; }
.split .num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--grad-blue); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 17px; box-shadow: 0 8px 18px rgba(37,99,235,.3); margin-bottom: 18px; }
.split h3 { font-size: clamp(24px,3vw,32px); margin-bottom: 14px; }
.split > div > p { font-size: 16.5px; color: var(--text-3); margin-bottom: 22px; }
.split-feats { display: grid; gap: 13px; margin-bottom: 26px; }
.split-feats li { display: flex; gap: 11px; font-size: 15px; color: var(--text-2); }
.split-feats .ck { width: 22px; height: 22px; flex: none; border-radius: 7px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); }
.split-feats .ck svg { width: 14px; height: 14px; }

/* ----------  Panel mock (directadmin/solusvm previews)  ---------- */
.panel-mock { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.panel-mock .pm-top { display: flex; align-items: center; gap: 9px; padding: 12px 15px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.panel-mock .pm-top .lg { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; background: var(--primary); color:#fff; font-weight: 800; font-size: 12px; font-family: var(--font-display); }
.panel-mock .pm-top b { font-size: 13.5px; color: var(--text); font-family: var(--font-display); }
.panel-mock .pm-top .pm-st { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--green-600); background: rgba(34,197,94,.12); padding: 3px 9px; border-radius: var(--pill); }
.panel-mock .pm-body { padding: 16px; }
.pm-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }
.pm-cell { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; padding: 11px 10px; text-align: center; }
.pm-cell .ico { width: 30px; height: 30px; margin: 0 auto 7px; border-radius: 8px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); }
.pm-cell .ico svg { width: 16px; height: 16px; }
.pm-cell span { font-size: 11px; color: var(--text-2); font-weight: 600; }

/* ----------  Pricing  ---------- */
.pricing-tabs { display: inline-flex; gap: 5px; padding: 6px; background: var(--bg-muted); border-radius: var(--pill); margin: 0 auto 18px; }
.pricing-tabs button { padding: 10px 20px; border-radius: var(--pill); font-weight: 700; font-size: 14px; color: var(--muted); font-family: var(--font-display); transition: all .2s ease; }
.pricing-tabs button.active { background: #fff; color: var(--primary-700); box-shadow: var(--shadow-sm); }

.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 44px; font-weight: 600; font-size: 15px; color: var(--muted); }
.billing-toggle .on { color: var(--text); }
.switch { width: 52px; height: 30px; border-radius: var(--pill); background: var(--primary); position: relative; transition: background .2s ease; }
.switch i { position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform .22s ease; }
.switch.annual i { transform: translateX(22px); }
.save-pill { font-size: 12px; font-weight: 800; color: var(--green-600); background: rgba(34,197,94,.12); padding: 4px 10px; border-radius: var(--pill); }

.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; position: relative; transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.popular { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.price-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-blue); color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--pill); box-shadow: 0 8px 18px rgba(37,99,235,.34); }
.price-card .pc-name { font-size: 19px; font-family: var(--font-display); font-weight: 800; color: var(--text); }
.price-card .pc-desc { font-size: 13.5px; color: var(--muted); margin-top: 4px; min-height: 38px; }
.price-card .pc-price { display: flex; align-items: baseline; gap: 4px; margin: 16px 0 4px; }
.price-card .pc-price .cur { font-size: 20px; font-weight: 700; color: var(--text); }
.price-card .pc-price .amt { font-size: 46px; font-weight: 800; color: var(--text); font-family: var(--font-display); line-height: 1; letter-spacing: -.03em; }
.price-card .pc-price .per { font-size: 14px; color: var(--muted); }
.price-card .pc-renew { font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }
.price-card .pc-feats { display: grid; gap: 12px; margin-bottom: 24px; }
.price-card .pc-feats li { display: flex; gap: 10px; font-size: 14px; color: var(--text-2); }
.price-card .pc-feats .ck { width: 19px; height: 19px; flex: none; border-radius: 50%; display: grid; place-items: center; background: rgba(34,197,94,.14); color: var(--green-600); }
.price-card .pc-feats .ck svg { width: 12px; height: 12px; }
.price-card .pc-feats .mut { color: var(--muted-2); }
.price-card .pc-feats .mut .ck { background: var(--bg-muted); color: var(--muted-2); }
.price-card .btn { margin-top: auto; }
.price-amount[data-annual] { display: none; }

/* ----------  Comparison / benefits side panel  ---------- */
.benefit-list { display: grid; gap: 18px; }
.benefit { display: flex; gap: 14px; }
.benefit .ico { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); }
.benefit .ico svg { width: 22px; height: 22px; }
.benefit h4 { font-size: 16px; margin-bottom: 3px; }
.benefit p { font-size: 13.5px; color: var(--muted); }

/* ----------  Comparison table  ---------- */
.cmp-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.cmp-table th, .cmp-table td { padding: 16px 20px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--border); }
.cmp-table thead th { background: var(--bg-soft); font-family: var(--font-display); color: var(--text); font-weight: 800; }
.cmp-table tbody td:first-child { font-weight: 600; color: var(--text-2); }
.cmp-table td.center, .cmp-table th.center { text-align: center; }
.cmp-table .yes { color: var(--green-600); }
.cmp-table .no { color: var(--muted-2); }
.cmp-table tbody tr:hover { background: var(--bg-soft); }
.cmp-table .col-hl { background: var(--primary-soft); }

/* ----------  Stats band  ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-band.cols-3 { grid-template-columns: repeat(3,1fr); }
.stat-cell { text-align: center; }
.stat-cell .num { font-size: clamp(30px,4vw,44px); font-weight: 800; font-family: var(--font-display); color: var(--text); letter-spacing: -.02em; }
.stat-cell .num .text-grad, .stat-cell .num.text-grad { display: inline; }
.stat-cell .lbl { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* ----------  Map  ---------- */
.world-map { position: relative; background: var(--grad-blue-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.world-map svg { width: 100%; height: auto; opacity: .9; }
.map-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px rgba(37,99,235,.16); }
.map-dot::after { content:""; position:absolute; inset:-5px; border-radius:50%; border:2px solid var(--primary); animation: ripple 2.4s ease-out infinite; }
@keyframes ripple { 0%{ transform: scale(.6); opacity: .8;} 100%{ transform: scale(2.4); opacity: 0;} }

/* ----------  Testimonials  ---------- */
.tcard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; height: 100%; display: flex; flex-direction: column; }
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tcard .stars { display: flex; gap: 3px; color: #f59e0b; margin-bottom: 14px; }
.tcard .stars svg { width: 17px; height: 17px; fill: currentColor; }
.tcard p { font-size: 15px; color: var(--text-2); margin-bottom: 22px; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-family: var(--font-display); font-size: 16px; }
.tcard .who b { display: block; font-size: 14.5px; color: var(--text); font-family: var(--font-display); }
.tcard .who span { font-size: 12.5px; color: var(--muted); }

/* ----------  FAQ  ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 980px; margin-inline: auto; align-items: start; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--primary-soft-2); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--text); }
.faq-q .pm { width: 26px; height: 26px; flex: none; border-radius: 8px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); transition: transform .25s ease, background .2s ease; }
.faq-q .pm svg { width: 16px; height: 16px; }
.faq-item.open .faq-q .pm { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); }

/* ----------  CTA banner  ---------- */
.cta-banner { position: relative; background: var(--grad-cta); border-radius: var(--radius-xl); padding: 60px; overflow: hidden; color: #fff; box-shadow: var(--shadow-lg); }
.cta-banner::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.14) 1px, transparent 0); background-size: 30px 30px; opacity:.5; }
.cta-banner::after { content:""; position:absolute; width: 460px; height: 460px; right: -120px; top: -160px; background: radial-gradient(circle, rgba(34,211,238,.4), transparent 65%); }
.cta-banner .container, .cta-inner { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.cta-banner h2 { color: #fff; font-size: clamp(28px,4vw,40px); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 540px; }
.cta-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.cta-feats { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.cta-feats li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.92); }
.cta-feats svg { width: 17px; height: 17px; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--navy); color: #cbd5e1; padding-top: 70px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr) 1.3fr; gap: 36px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: #94a3b8; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #cbd5e1; transition: all .2s ease; }
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h5 { color: #fff; font-size: 14px; font-family: var(--font-display); margin-bottom: 18px; letter-spacing: .01em; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: #94a3b8; transition: color .18s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; font-size: 14px; color: #94a3b8; margin-bottom: 13px; }
.footer-contact svg { width: 17px; height: 17px; flex: none; color: var(--primary-400); margin-top: 2px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 24px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13.5px; color: #94a3b8; }
.pay-methods { display: flex; align-items: center; gap: 10px; }
.pay-methods .pm { height: 30px; padding: 0 11px; border-radius: 7px; background: rgba(255,255,255,.92); display: grid; place-items: center; font-size: 11px; font-weight: 800; color: #1e293b; font-family: var(--font-display); }

/* ----------  Page hero (interior pages)  ---------- */
.page-hero { background: var(--grad-hero); padding-block: 56px 30px; position: relative; overflow: hidden; }
.page-hero .container { position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ----------  Contact  ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: transform .25s ease, box-shadow .25s ease; }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card .ico { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin: 0 auto 16px; background: var(--primary-soft); color: var(--primary); }
.contact-card .ico svg { width: 27px; height: 27px; }
.contact-card h3 { font-size: 18px; margin-bottom: 7px; }
.contact-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.contact-card a { font-weight: 700; color: var(--primary); font-family: var(--font-display); font-size: 15px; }

.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border-2); border-radius: var(--radius-sm);
  font-size: 14.5px; color: var(--text); background: var(--bg-soft); transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-aside { display: grid; gap: 20px; }
.aside-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.aside-card.blue { background: var(--grad-blue); color: #fff; border: none; }
.aside-card h4 { font-size: 17px; margin-bottom: 16px; }
.aside-card.blue h4 { color: #fff; }
.aside-list li { display: flex; gap: 13px; margin-bottom: 16px; font-size: 14px; }
.aside-list li:last-child { margin-bottom: 0; }
.aside-list .ico { width: 40px; height: 40px; flex: none; border-radius: 11px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); }
.aside-list .ico svg { width: 19px; height: 19px; }
.aside-list b { display: block; color: var(--text); font-family: var(--font-display); font-size: 14.5px; }
.aside-list span { color: var(--muted); }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: rgba(255,255,255,.85); }
.hours-row b { color: #fff; }

/* ----------  Reveal animation  ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ----------  Mobile nav  ---------- */
.mobile-nav { position: fixed; inset: 0; z-index: 90; background: rgba(15,23,42,.5); opacity: 0; visibility: hidden; transition: opacity .25s ease; }
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav .panel { position: absolute; top: 0; right: 0; width: min(360px, 86vw); height: 100%; background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; padding: 20px; overflow-y: auto; }
.mobile-nav.open .panel { transform: none; }
.mobile-nav .mn-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-nav .mn-close { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border-2); display: grid; place-items: center; }
.mobile-nav .mn-links { display: grid; gap: 4px; }
.mobile-nav .mn-links a { padding: 13px 14px; border-radius: 10px; font-weight: 600; font-size: 16px; color: var(--text-2); }
.mobile-nav .mn-links a:hover { background: var(--bg-soft); color: var(--primary-700); }
.mobile-nav .mn-cta { margin-top: 18px; display: grid; gap: 10px; }

/* ----------  Responsive  ---------- */
@media (max-width: 1080px) {
  .trustbar .container { grid-template-columns: repeat(4,1fr); gap: 22px; }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 940px) {
  .nav, .header-actions .status-pill, .header-actions .login-link { display: none; }
  .hamburger { display: grid; }
  .hero .container, .split, .cta-banner .container, .cta-inner { grid-template-columns: 1fr; }
  .split .panel-mock, .split-media { order: 2; }
  .grid-4, .grid-3, .price-grid, .stat-band, .dash-stats { grid-template-columns: repeat(2,1fr); }
  .grid-5 { grid-template-columns: repeat(2,1fr); }
  .contact-layout, .contact-cards { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .section { padding-block: 64px; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .price-grid, .grid-5, .stat-band, .stat-band.cols-3, .faq-grid { grid-template-columns: 1fr; }
  .trustbar .container { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner, .section { padding-inline: 0; }
  .cta-banner { padding: 36px 24px; }
  .price-card.popular { transform: none; }
  .dash-stats { grid-template-columns: repeat(2,1fr); }
  .promo .container { font-size: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}
