/* ExelNode V8 — production stylesheet */
:root {
  --navy-975: #030817;
  --navy-950: #050b20;
  --navy-900: #071330;
  --navy-850: #0a193b;
  --navy-800: #10234e;
  --navy-700: #173267;
  --blue-700: #1f45ce;
  --blue-600: #2856f6;
  --blue-500: #3e6bff;
  --blue-100: #eaf0ff;
  --blue-50: #f4f7ff;
  --red-700: #aa1208;
  --red-600: #c7180a;
  --red-500: #df291b;
  --red-100: #ffe9e6;
  --red-50: #fff5f3;
  --ink: #111a2f;
  --ink-soft: #253250;
  --muted: #64708a;
  --muted-2: #8792a8;
  --line: #e5e9f2;
  --line-strong: #d5dbea;
  --surface: #ffffff;
  --surface-soft: #f7f9fd;
  --surface-blue: #f1f5ff;
  --success: #22b573;
  --shadow-sm: 0 10px 30px rgba(10, 24, 58, 0.08);
  --shadow-md: 0 22px 60px rgba(10, 24, 58, 0.13);
  --shadow-lg: 0 38px 90px rgba(1, 8, 27, 0.23);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1220px;
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; flex: 0 0 auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); letter-spacing: -0.035em; line-height: 1.08; }
h1 { font-size: clamp(2.65rem, 5.2vw, 5.15rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.35rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }
[hidden] { display: none !important; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-soft { background: var(--surface-soft); }
.section-kicker,
.eyebrow,
.prefooter-kicker,
.mega-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-kicker::before,
.eyebrow::before,
.prefooter-kicker::before,
.mega-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.eyebrow-light { color: #a8bdff; }
.section-heading { margin-bottom: 44px; }
.section-heading h2 { max-width: 760px; margin-bottom: 16px; }
.section-heading > p { max-width: 720px; margin-bottom: 0; font-size: 1.06rem; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr); align-items: end; gap: 48px; }
.split-heading > p { margin: 0 0 7px; }
.center-heading { max-width: 820px; margin-inline: auto; text-align: center; }
.center-heading h2, .center-heading p { margin-inline: auto; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Buttons */
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
.nav-link:focus-visible,
.nav-trigger:focus-visible,
.plan-tab:focus-visible,
.service-card:focus-visible,
.mega-item:focus-visible,
.mobile-nav a:focus-visible,
.mobile-host-toggle:focus-visible,
summary:focus-visible { outline: 3px solid rgba(40, 86, 246, .28); outline-offset: 3px; }
.btn-primary { color: #fff; background: var(--blue-600); box-shadow: 0 12px 25px rgba(40, 86, 246, .24); }
.btn-primary:hover { background: var(--blue-700); box-shadow: 0 16px 32px rgba(40, 86, 246, .3); }
.btn-red { color: #fff; background: var(--red-600); box-shadow: 0 12px 25px rgba(199, 24, 10, .2); }
.btn-red:hover { background: var(--red-700); }
.btn-light { color: var(--navy-900); background: #fff; box-shadow: 0 12px 28px rgba(0, 0, 0, .12); }
.btn-light:hover { background: #f7f9ff; }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.55); }
.btn-outline { color: var(--navy-900); border-color: var(--line-strong); background: #fff; }
.btn-outline:hover { border-color: var(--blue-600); color: var(--blue-600); box-shadow: var(--shadow-sm); }
.btn-sm { min-height: 42px; padding: 0 17px; border-radius: 10px; font-size: .92rem; }
.btn-block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-weight: 750; }
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

/* Utility bar and header */
.utility-bar { background: var(--navy-975); color: #d5ddf2; font-size: .79rem; }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-group { display: flex; align-items: center; gap: 23px; }
.utility-group a { display: inline-flex; align-items: center; gap: 7px; color: #c8d2eb; transition: color .2s ease; }
.utility-group a:hover { color: #fff; }
.utility-group svg { width: 14px; height: 14px; }
.utility-since { color: #8f9bb7; }
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(34, 181, 115, .13); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(213,219,234,.75);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.985); box-shadow: 0 9px 30px rgba(8, 21, 52, .08); }
.header-inner { position: relative; min-height: var(--header-height); display: flex; align-items: center; gap: 36px; }
.brand { width: 226px; flex: 0 0 226px; display: block; }
.brand img { width: 100%; height: auto; object-fit: contain; }
.desktop-nav { display: flex; align-items: stretch; align-self: stretch; gap: 4px; margin-left: auto; }
.nav-link, .nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 700;
}
.nav-trigger svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-link::after, .nav-trigger::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--blue-600);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav-link:hover, .nav-trigger:hover, .nav-link.active, .nav-trigger.active { color: var(--blue-600); }
.nav-link:hover::after, .nav-trigger:hover::after, .nav-link.active::after, .nav-trigger.active::after { transform: scaleX(1); }
.nav-parent { position: static; display: flex; }
.nav-parent.open .nav-trigger svg { transform: rotate(180deg); }
.header-actions { display: flex; align-items: center; gap: 11px; }
.header-login { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-soft); font-size: .9rem; font-weight: 700; }
.header-login svg { width: 17px; height: 17px; color: var(--blue-600); }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--navy-900); }
.menu-toggle svg { width: 22px; height: 22px; }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 13px);
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.mega-menu::before { content: ""; position: absolute; top: -15px; left: 0; right: 0; height: 18px; }
.nav-parent:hover .mega-menu,
.nav-parent:focus-within .mega-menu,
.nav-parent.open .mega-menu { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
.mega-menu-inner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid rgba(213,219,234,.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.mega-intro { padding: 34px; background: linear-gradient(155deg, var(--navy-950), var(--navy-800)); color: #fff; }
.mega-intro h2 { margin-bottom: 13px; color: #fff; font-size: 1.75rem; }
.mega-intro p { margin-bottom: 24px; color: #b8c4e1; font-size: .93rem; }
.mega-intro .text-link { color: #fff; font-size: .9rem; }
.mega-services { padding: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mega-label { margin-bottom: 11px; color: var(--muted-2); font-size: .71rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.mega-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  min-height: 76px;
  padding: 11px 9px;
  border-radius: 13px;
  transition: background .2s ease, transform .2s ease;
}
.mega-item:hover { background: var(--blue-50); transform: translateX(3px); }
.mega-item.local:hover { background: var(--red-50); }
.mega-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; color: var(--blue-600); background: var(--blue-100); }
.mega-item.local .mega-icon { color: var(--red-600); background: var(--red-100); }
.mega-icon svg { width: 20px; height: 20px; }
.mega-item-copy { min-width: 0; }
.mega-item-copy strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: .95rem; letter-spacing: -.01em; }
.mega-item-copy small { display: -webkit-box; color: var(--muted); font-size: .75rem; line-height: 1.35; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mega-price { color: var(--blue-600); font-style: normal; font-size: .75rem; font-weight: 800; }
.mega-item.local .mega-price { color: var(--red-600); }
.mega-footer { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 24px; padding: 15px 28px; border-top: 1px solid var(--line); background: var(--surface-soft); }
.mega-footer a { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-soft); font-size: .83rem; font-weight: 700; }
.mega-footer a:hover { color: var(--blue-600); }

/* Mobile navigation */
.mobile-backdrop { position: fixed; inset: 0; z-index: 1190; background: rgba(2, 7, 22, .64); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  width: min(420px, 92vw);
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #fff;
  box-shadow: -20px 0 70px rgba(0,0,0,.2);
  transform: translateX(105%);
  transition: transform .3s ease;
  overflow-y: auto;
}
body.menu-open .mobile-backdrop { opacity: 1; visibility: visible; }
body.menu-open .mobile-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.drawer-head img { width: 205px; height: auto; }
.menu-close { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--ink); }
.menu-close svg { width: 21px; height: 21px; }
.mobile-nav { display: grid; gap: 4px; padding: 18px 0; }
.mobile-nav > a,
.mobile-host-toggle { width: 100%; min-height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 12px; border: 0; border-radius: 10px; background: transparent; color: var(--ink); text-align: left; font-weight: 750; }
.mobile-nav > a:hover, .mobile-host-toggle:hover { background: var(--surface-soft); }
.mobile-host-toggle svg { transition: transform .2s ease; }
.mobile-parent.open .mobile-host-toggle svg { transform: rotate(180deg); }
.mobile-subnav { display: none; padding: 4px 0 7px 12px; }
.mobile-parent.open .mobile-subnav { display: grid; }
.mobile-subnav a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 12px; border-left: 2px solid var(--line); color: var(--ink-soft); }
.mobile-subnav a:hover { color: var(--blue-600); border-color: var(--blue-600); }
.mobile-subnav small { color: var(--muted); white-space: nowrap; }
.drawer-help { margin-top: auto; padding: 18px; border-radius: 14px; background: var(--surface-blue); }
.drawer-help span { color: var(--blue-600); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.drawer-help p { margin: 6px 0 0; font-size: .88rem; }
.drawer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 16px; }

/* Home hero */
.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 94px 0 142px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(40,86,246,.26), transparent 35%),
    radial-gradient(circle at 90% 70%, rgba(199,24,10,.18), transparent 32%),
    linear-gradient(135deg, var(--navy-975) 0%, var(--navy-900) 55%, #0c1e47 100%);
}
.hero-grid-pattern,
.product-hero-pattern,
.page-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}
.hero-orb { position: absolute; z-index: -1; width: 420px; height: 420px; border-radius: 50%; filter: blur(100px); opacity: .22; }
.hero-orb-blue { left: -170px; top: 100px; background: var(--blue-500); }
.hero-orb-red { right: -160px; bottom: -120px; background: var(--red-500); }
.home-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr); align-items: center; gap: 72px; }
.home-hero-copy h1 { max-width: 720px; margin-bottom: 24px; color: #fff; }
.home-hero-copy h1 span { color: #a8bdff; }
.home-hero-copy > p { max-width: 690px; margin-bottom: 30px; color: #c1cce5; font-size: 1.13rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; }
.hero-assurances span { display: inline-flex; align-items: center; gap: 7px; color: #d7def0; font-size: .85rem; font-weight: 650; }
.hero-assurances svg { width: 16px; height: 16px; color: #8eabff; }
.hero-price-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; margin-top: 26px; color: #9eaac5; font-size: .8rem; }
.hero-price-line strong { color: #fff; font-size: 1.15rem; }
.hero-price-line i { width: 1px; height: 20px; margin: 0 8px; background: rgba(255,255,255,.25); }
.home-hero-visual { position: relative; min-width: 0; }
.infra-shell { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.26); border-radius: 25px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg); }
.infra-head { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 24px; border-bottom: 1px solid var(--line); }
.infra-head > div { display: flex; align-items: center; gap: 12px; }
.infra-head strong, .infra-head small { display: block; }
.infra-head strong { color: var(--ink); font-size: .96rem; }
.infra-head small { color: var(--muted); font-size: .72rem; }
.infra-head > a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: .75rem; font-weight: 750; }
.infra-mark { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--blue-600), var(--navy-800)); font-size: .78rem; font-weight: 900; }
.infra-canvas { position: relative; height: 385px; overflow: hidden; background: linear-gradient(145deg, #f6f8fd, #fff); }
.infra-canvas::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(#cfd6e8 1px, transparent 1px); background-size: 20px 20px; opacity: .45; }
.infra-canvas > img { position: absolute; right: -28px; bottom: -40px; width: 64%; opacity: .58; filter: saturate(.85); }
.infra-path { position: absolute; left: 88px; top: 73px; bottom: 70px; width: 2px; background: linear-gradient(var(--blue-600), var(--red-500)); }
.infra-path span { position: absolute; left: 50%; width: 11px; height: 11px; border: 3px solid #fff; border-radius: 50%; background: var(--blue-600); box-shadow: 0 0 0 4px rgba(40,86,246,.14); transform: translateX(-50%); }
.infra-path span:nth-child(1) { top: 18px; }
.infra-path span:nth-child(2) { top: 50%; background: var(--blue-600); }
.infra-path span:nth-child(3) { bottom: 18px; background: var(--red-600); box-shadow: 0 0 0 4px rgba(199,24,10,.12); }
.infra-node {
  position: absolute;
  left: 55px;
  z-index: 2;
  min-width: 285px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 15px 35px rgba(14,31,72,.12);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.infra-node:hover { transform: translateX(5px); border-color: #bbc9ff; box-shadow: 0 18px 40px rgba(14,31,72,.17); }
.infra-node span:nth-child(2) > * { display: block; }
.infra-node small { color: var(--muted-2); font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.infra-node strong { color: var(--ink); font-size: .98rem; }
.infra-node em { color: var(--blue-600); font-size: .75rem; font-style: normal; font-weight: 800; }
.infra-node-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: var(--blue-600); background: var(--blue-100); }
.infra-node-icon.red { color: var(--red-600); background: var(--red-100); }
.infra-node-icon svg { width: 23px; height: 23px; }
.node-hosting { top: 45px; }
.node-vps { top: 153px; left: 95px; }
.node-physical { bottom: 38px; }
.infra-foot { min-height: 82px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.infra-foot > div { display: flex; align-items: center; gap: 11px; padding: 16px 20px; }
.infra-foot > div + div { border-left: 1px solid var(--line); }
.infra-foot > div > svg { width: 22px; height: 22px; color: var(--blue-600); }
.infra-foot strong, .infra-foot small { display: block; }
.infra-foot strong { color: var(--ink); font-size: .82rem; }
.infra-foot small { color: var(--muted); font-size: .7rem; }
.hero-float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.28); border-radius: 14px; color: #fff; background: rgba(5,11,32,.88); box-shadow: 0 18px 45px rgba(0,0,0,.25); backdrop-filter: blur(12px); }
.hero-float-card svg { width: 23px; height: 23px; color: #8eabff; }
.hero-float-card strong, .hero-float-card small { display: block; }
.hero-float-card strong { font-size: .82rem; }
.hero-float-card small { color: #aeb9d2; font-size: .68rem; }
.float-secure { right: -34px; top: 98px; }
.float-since { left: -28px; bottom: 72px; max-width: 172px; align-items: baseline; }
.float-since strong { color: #ffb0a9; font-size: 1.55rem; }
.float-since span { color: #c3cce0; font-size: .7rem; line-height: 1.3; }

/* Domain and trust */
.domain-band { position: relative; z-index: 5; margin-top: -72px; }
.domain-panel { display: grid; grid-template-columns: 285px minmax(0,1fr) auto; align-items: center; gap: 26px; padding: 26px 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-md); }
.domain-panel-copy .section-kicker { margin-bottom: 6px; font-size: .66rem; }
.domain-panel-copy h2 { margin: 0; font-size: 1.55rem; }
.domain-search { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
.domain-search input { width: 100%; height: 54px; padding: 0 18px 0 47px; border: 1px solid var(--line-strong); border-radius: 12px; outline: none; color: var(--ink); background: var(--surface-soft); }
.domain-search input:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(40,86,246,.1); background: #fff; }
.domain-input-icon { position: absolute; left: 17px; top: 50%; z-index: 2; color: var(--blue-600); transform: translateY(-50%); pointer-events: none; }
.domain-input-icon svg { width: 19px; height: 19px; }
.domain-tlds { display: flex; gap: 8px; }
.domain-tlds span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font-size: .73rem; font-weight: 800; }
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip-item { display: flex; align-items: center; gap: 12px; min-height: 104px; padding: 18px 26px; }
.trust-strip-item + .trust-strip-item { border-left: 1px solid var(--line); }
.trust-strip-item > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; color: var(--blue-600); background: var(--blue-100); }
.trust-strip-item > span.red { color: var(--red-600); background: var(--red-100); }
.trust-strip-item svg { width: 21px; height: 21px; }
.trust-strip-item strong, .trust-strip-item small { display: block; }
.trust-strip-item strong { color: var(--ink); font-size: .86rem; }
.trust-strip-item small { color: var(--muted); font-size: .72rem; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(13,29,67,.035);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--blue-600), #829fff); opacity: 0; transition: opacity .25s ease; }
.service-card.is-local::before { background: linear-gradient(90deg, var(--red-600), #ff9d92); }
.service-card:hover { transform: translateY(-7px); border-color: #cad4f3; box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-card-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 30px; }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; color: var(--blue-600); background: var(--blue-100); }
.service-card.is-local .service-icon { color: var(--red-600); background: var(--red-100); }
.service-icon svg { width: 26px; height: 26px; }
.service-label { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--surface-soft); font-size: .67rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 13px; font-size: 1.48rem; }
.service-card > p { margin-bottom: 23px; }
.service-audience { margin-top: auto; padding: 15px 0 20px; border-top: 1px solid var(--line); }
.service-audience small, .service-audience span { display: block; }
.service-audience small { margin-bottom: 3px; color: var(--muted-2); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-audience span { color: var(--ink-soft); font-size: .85rem; line-height: 1.45; }
.service-card-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.service-card-bottom small, .service-card-bottom strong { display: block; }
.service-card-bottom small { color: var(--muted); font-size: .7rem; }
.service-card-bottom strong { color: var(--ink); font-size: 1.08rem; }
.service-card-bottom strong em { color: var(--muted); font-size: .7rem; font-style: normal; font-weight: 650; }
.service-arrow { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--navy-900); transition: transform .2s ease, background .2s ease; }
.service-card.is-local .service-arrow { background: var(--red-600); }
.service-card:hover .service-arrow { transform: translateX(4px); background: var(--blue-600); }
.service-card.is-local:hover .service-arrow { background: var(--red-700); }

/* Service guide */
.service-guide-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.guide-intro { position: sticky; top: 120px; }
.guide-intro h2 { margin-bottom: 18px; }
.guide-intro p { margin-bottom: 26px; }
.guide-list { display: grid; border-top: 1px solid var(--line-strong); }
.guide-list > a { display: grid; grid-template-columns: 58px minmax(0,1fr) auto; align-items: center; gap: 20px; padding: 27px 4px; border-bottom: 1px solid var(--line-strong); transition: padding .2s ease, background .2s ease; }
.guide-list > a:hover { padding-left: 12px; padding-right: 12px; background: #fff; }
.guide-number { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: var(--blue-600); background: var(--blue-100); font-size: .78rem; font-weight: 900; }
.guide-number.red { color: var(--red-600); background: var(--red-100); }
.guide-list strong, .guide-list small { display: block; }
.guide-list strong { margin-bottom: 5px; color: var(--ink); font-size: 1.04rem; }
.guide-list small { max-width: 600px; color: var(--muted); line-height: 1.5; }
.guide-list em { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-600); font-size: .8rem; font-style: normal; font-weight: 800; white-space: nowrap; }

/* Pricing */
.pricing-section { background: #fff; }
.pricing-header { display: grid; grid-template-columns: minmax(0,1fr) 340px; align-items: end; gap: 50px; margin-bottom: 34px; }
.pricing-header h2 { margin-bottom: 14px; }
.pricing-header p { max-width: 720px; margin-bottom: 0; }
.pricing-note { display: flex; gap: 12px; padding: 17px 18px; border: 1px solid #d8e1ff; border-radius: 14px; color: var(--ink-soft); background: var(--blue-50); font-size: .82rem; line-height: 1.5; }
.pricing-note svg { width: 22px; height: 22px; color: var(--blue-600); }
.plan-tabs { display: flex; gap: 7px; margin-bottom: 32px; padding: 7px; overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-soft); scrollbar-width: none; }
.plan-tabs::-webkit-scrollbar { display: none; }
.plan-tab { flex: 1 0 auto; min-height: 43px; padding: 0 16px; border: 0; border-radius: 9px; color: var(--muted); background: transparent; font-size: .85rem; font-weight: 800; white-space: nowrap; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.plan-tab[aria-selected="true"] { color: var(--navy-900); background: #fff; box-shadow: 0 5px 16px rgba(13,29,67,.08); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); align-items: stretch; gap: 20px; }
.pricing-grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.pricing-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 22px rgba(13,29,67,.045);
}
.pricing-card::before { content: ""; position: absolute; top: -1px; left: 28px; right: 28px; height: 4px; border-radius: 0 0 4px 4px; background: var(--blue-600); opacity: 0; }
.pricing-card.is-popular { border-color: #a9baff; box-shadow: 0 20px 55px rgba(40,86,246,.13); }
.pricing-card.is-popular::before { opacity: 1; }
.pricing-card.accent-red.is-popular { border-color: #ffb2a9; box-shadow: 0 20px 55px rgba(199,24,10,.1); }
.pricing-card.accent-red::before { background: var(--red-600); }
.popular-badge { position: absolute; top: 16px; right: 17px; padding: 6px 9px; border-radius: 999px; color: var(--blue-700); background: var(--blue-100); font-size: .65rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.accent-red .popular-badge { color: var(--red-700); background: var(--red-100); }
.pricing-card-head { min-height: 118px; padding-right: 5px; }
.pricing-category { display: block; margin-bottom: 10px; color: var(--blue-600); font-size: .69rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.accent-red .pricing-category { color: var(--red-600); }
.pricing-card h3 { margin-bottom: 9px; padding-right: 70px; font-size: 1.35rem; }
.pricing-card-head p { margin-bottom: 0; font-size: .88rem; line-height: 1.5; }
.pricing-value { display: flex; align-items: flex-end; min-height: 78px; margin: 13px 0 23px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--ink); }
.pricing-value .currency { align-self: flex-start; margin: 12px 4px 0 0; color: var(--ink); font-size: 1rem; font-weight: 800; }
.pricing-value strong { color: var(--ink) !important; font-size: clamp(2.2rem, 3.2vw, 3rem); line-height: .95; letter-spacing: -.06em; }
.pricing-value .period { margin-left: 9px; color: var(--muted) !important; font-size: .67rem; font-weight: 700; line-height: 1.25; }
.pricing-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 22px; }
.pricing-specs > div { min-width: 0; padding: 10px 11px; border-radius: 10px; background: var(--surface-soft); }
.pricing-specs span, .pricing-specs strong { display: block; }
.pricing-specs span { margin-bottom: 2px; color: var(--muted); font-size: .65rem; font-weight: 700; }
.pricing-specs strong { overflow-wrap: anywhere; color: var(--ink) !important; font-size: .79rem; }
.pricing-features { display: grid; gap: 11px; margin: 0 0 25px; padding: 0; list-style: none; }
.pricing-features li { display: flex; align-items: flex-start; gap: 8px; color: var(--ink-soft); font-size: .82rem; }
.pricing-features svg { width: 16px; height: 16px; margin-top: 3px; color: var(--blue-600); }
.accent-red .pricing-features svg { color: var(--red-600); }
.pricing-card .btn { margin-top: auto; }

/* Experience section */
.experience-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 86px; }
.experience-visual { position: relative; min-height: 560px; }
.experience-image-card { position: absolute; inset: 20px 26px 35px 0; display: grid; place-items: center; overflow: hidden; border-radius: 26px; background: linear-gradient(150deg, var(--navy-950), var(--navy-800)); box-shadow: var(--shadow-md); }
.experience-image-card::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.15) 1px, transparent 1px); background-size: 22px 22px; }
.experience-image-card img { position: relative; width: 83%; filter: drop-shadow(0 24px 30px rgba(0,0,0,.24)); }
.experience-year { position: absolute; top: 0; right: 0; z-index: 2; width: 178px; padding: 21px; border-radius: 18px; color: #fff; background: var(--red-600); box-shadow: 0 18px 40px rgba(199,24,10,.24); }
.experience-year strong, .experience-year span { display: block; }
.experience-year strong { font-size: 1.3rem; }
.experience-year span { margin-top: 4px; color: #ffd3cf; font-size: .72rem; line-height: 1.4; }
.experience-mini-card { position: absolute; left: 34px; bottom: 0; z-index: 2; display: flex; align-items: center; gap: 11px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow-md); }
.experience-mini-card > svg { width: 23px; height: 23px; color: var(--blue-600); }
.experience-mini-card strong, .experience-mini-card small { display: block; }
.experience-mini-card strong { font-size: .84rem; }
.experience-mini-card small { color: var(--muted); font-size: .69rem; }
.experience-copy h2 { margin-bottom: 18px; }
.experience-copy > p { margin-bottom: 26px; font-size: 1.04rem; }
.experience-points { display: grid; gap: 19px; margin-bottom: 27px; }
.experience-points > div { display: grid; grid-template-columns: 45px 1fr; gap: 14px; }
.experience-points > div > span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 12px; color: var(--blue-600); background: var(--blue-100); }
.experience-points svg { width: 21px; height: 21px; }
.experience-points strong { display: block; margin-bottom: 4px; color: var(--ink); }
.experience-points p { margin: 0; font-size: .88rem; line-height: 1.55; }

/* Local section */
.local-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, #6f0c05, var(--red-600) 48%, #eb3b2d); }
.local-bg { position: absolute; inset: 0; opacity: .1; mix-blend-mode: screen; }
.local-bg img { width: 100%; height: 100%; object-fit: cover; }
.local-grid { position: relative; display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 80px; }
.local-copy h2 { max-width: 680px; margin-bottom: 18px; color: #fff; }
.local-copy p { max-width: 670px; margin-bottom: 28px; color: #ffd9d5; font-size: 1.03rem; }
.local-options { display: grid; gap: 12px; }
.local-options > a { display: grid; grid-template-columns: 52px 1fr 20px; align-items: center; gap: 15px; padding: 20px; border: 1px solid rgba(255,255,255,.24); border-radius: 16px; background: rgba(80,5,0,.24); backdrop-filter: blur(9px); transition: transform .2s ease, background .2s ease; }
.local-options > a:hover { transform: translateX(5px); background: rgba(80,5,0,.38); }
.local-option-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: var(--red-600); background: #fff; }
.local-option-icon svg { width: 24px; height: 24px; }
.local-options small, .local-options strong, .local-options em { display: block; }
.local-options small { color: #ffc9c4; font-size: .68rem; font-weight: 750; }
.local-options strong { color: #fff; font-size: 1.02rem; }
.local-options em { color: #fff; font-size: .76rem; font-style: normal; font-weight: 750; }
.local-options > a > svg { color: #fff; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: steps; }
.steps-grid article { position: relative; padding: 31px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.steps-grid article::after { content: ""; position: absolute; top: 50px; right: -21px; width: 20px; height: 1px; background: var(--line-strong); }
.steps-grid article:last-child::after { display: none; }
.steps-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 14px; color: var(--blue-600); background: var(--blue-100); font-size: .8rem; font-weight: 900; }
.steps-grid h3 { margin-bottom: 11px; }
.steps-grid p { margin: 0; font-size: .9rem; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 82px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { margin-bottom: 16px; }
.faq-intro p { margin-bottom: 25px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-list details[open] { border-color: #cbd5f2; box-shadow: 0 12px 28px rgba(13,29,67,.06); }
.faq-list summary { position: relative; padding: 21px 56px 21px 22px; color: var(--ink); font-weight: 750; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list summary::after { content: ""; position: absolute; right: 23px; top: 50%; width: 14px; height: 2px; background: var(--blue-600); transform: translateY(-50%); transition: transform .2s ease; }
.faq-list summary::after { transform: translateY(-50%) rotate(90deg); }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(0); }
.faq-answer { padding: 0 22px 21px; }
.faq-answer p { margin: 0; }

/* Product and page heroes */
.product-hero,
.page-hero,
.legal-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 25%, rgba(40,86,246,.25), transparent 30%),
    linear-gradient(135deg, var(--navy-975), var(--navy-800));
}
.product-hero.accent-red { background: radial-gradient(circle at 85% 25%, rgba(223,41,27,.26), transparent 30%), linear-gradient(135deg, var(--navy-975), #2b1015); }
.product-hero-grid { min-height: 650px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 74px; padding-top: 78px; padding-bottom: 84px; }
.breadcrumbs { display: flex; align-items: center; gap: 7px; margin-bottom: 25px; color: #8998ba; font-size: .78rem; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs svg { width: 13px; height: 13px; }
.product-hero-copy h1 { max-width: 700px; margin-bottom: 20px; color: #fff; font-size: clamp(2.65rem, 4.7vw, 4.65rem); }
.product-hero-copy > p { max-width: 680px; margin-bottom: 23px; color: #c0cbe3; font-size: 1.08rem; }
.product-price-row { display: flex; align-items: baseline; gap: 9px; margin-bottom: 24px; color: #aeb9d3; font-size: .8rem; }
.product-price-row strong { color: #fff; font-size: 2.2rem; letter-spacing: -.05em; }
.product-proof { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 24px; }
.product-proof span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #d4dcef; background: rgba(255,255,255,.05); font-size: .75rem; font-weight: 700; }
.product-proof svg { width: 15px; height: 15px; color: #93adff; }
.product-showcase { position: relative; min-width: 0; }
.showcase-card { overflow: hidden; border: 1px solid rgba(255,255,255,.28); border-radius: 24px; background: #fff; box-shadow: var(--shadow-lg); }
.showcase-head { min-height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 23px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .88rem; font-weight: 800; }
.showcase-head em { color: var(--muted); font-size: .72rem; font-style: normal; font-weight: 700; }
.showcase-art { height: 315px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #f8faff, #eef3ff); }
.showcase-art img { width: 72%; max-height: 94%; object-fit: contain; filter: drop-shadow(0 22px 24px rgba(12,28,67,.14)); }
.showcase-stats { display: grid; grid-template-columns: 1fr 1fr; }
.showcase-stats > div { display: grid; grid-template-columns: 35px 1fr; align-items: center; gap: 9px; padding: 15px 18px; border-top: 1px solid var(--line); }
.showcase-stats > div:nth-child(even) { border-left: 1px solid var(--line); }
.showcase-stats > div > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; color: var(--blue-600); background: var(--blue-100); }
.accent-red .showcase-stats > div > span { color: var(--red-600); background: var(--red-100); }
.showcase-stats svg { width: 17px; height: 17px; }
.showcase-stats strong, .showcase-stats small { display: block; }
.showcase-stats strong { color: var(--ink); font-size: .78rem; }
.showcase-stats small { color: var(--muted); font-size: .65rem; }
.showcase-float { position: absolute; z-index: 2; min-width: 190px; padding: 13px 15px; border-radius: 13px; color: #fff; background: rgba(5,11,32,.9); box-shadow: 0 16px 36px rgba(0,0,0,.25); backdrop-filter: blur(12px); }
.showcase-float strong, .showcase-float span { display: block; }
.showcase-float strong { font-size: .82rem; }
.showcase-float span { color: #aeb9d3; font-size: .67rem; }
.showcase-float.one { top: 92px; left: -34px; }
.showcase-float.two { right: -26px; bottom: 73px; }
.product-pricing { background: #fff; }
.pricing-grid.product-grid { margin-top: 44px; }
.order-assurance { max-width: 940px; display: flex; align-items: flex-start; gap: 11px; margin: 28px auto 0; padding: 15px 17px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.order-assurance svg { width: 20px; height: 20px; margin-top: 2px; color: var(--blue-600); }
.order-assurance p { margin: 0; font-size: .82rem; }

/* Feature and use-case sections */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.feature-card > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 13px; color: var(--blue-600); background: var(--blue-100); }
.feature-card.accent-red > span { color: var(--red-600); background: var(--red-100); }
.feature-card svg { width: 23px; height: 23px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { margin: 0; font-size: .9rem; }
.usecase-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 80px; align-items: start; }
.usecase-intro { position: sticky; top: 120px; }
.usecase-intro h2 { margin-bottom: 18px; }
.usecase-intro p { margin-bottom: 23px; }
.usecase-list { display: grid; border-top: 1px solid var(--line-strong); }
.usecase-list article { display: grid; grid-template-columns: 62px 1fr; gap: 18px; padding: 29px 0; border-bottom: 1px solid var(--line-strong); }
.usecase-list article > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; color: var(--blue-600); background: var(--blue-100); font-size: .8rem; font-weight: 900; }
.usecase-list h3 { margin-bottom: 8px; }
.usecase-list p { margin: 0; }

/* Generic page hero, about and contact */
.page-hero-grid { min-height: 515px; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 80px; padding-top: 72px; padding-bottom: 78px; }
.page-hero h1 { max-width: 800px; margin-bottom: 20px; color: #fff; font-size: clamp(2.7rem, 4.8vw, 4.75rem); }
.page-hero p { max-width: 730px; margin-bottom: 28px; color: #c0cbe3; font-size: 1.08rem; }
.about-brand-card { padding: 28px; border: 1px solid rgba(255,255,255,.24); border-radius: 23px; background: rgba(255,255,255,.08); box-shadow: 0 25px 65px rgba(0,0,0,.19); backdrop-filter: blur(16px); }
.about-logo-wrap { padding: 24px; border-radius: 16px; background: #fff; }
.about-logo-wrap img { width: 100%; height: auto; }
.about-brand-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.about-brand-meta > span { padding: 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; background: rgba(0,0,0,.11); }
.about-brand-meta strong, .about-brand-meta small { display: block; }
.about-brand-meta strong { color: #fff; font-size: 1.35rem; }
.about-brand-meta small { color: #b8c4df; font-size: .68rem; }
.about-brand-card > p { margin: 16px 0 0; color: #d1d8e9; font-size: .85rem; }
.story-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 86px; }
.story-art { position: relative; min-height: 500px; }
.story-art-frame { position: absolute; inset: 0 36px 35px 0; display: grid; place-items: center; overflow: hidden; border-radius: 25px; background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); }
.story-art-frame::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px); background-size: 20px 20px; }
.story-art-frame img { position: relative; z-index: 1; width: 83%; }
.story-tag { position: absolute; right: 0; bottom: 0; z-index: 2; display: flex; align-items: center; gap: 11px; padding: 17px 19px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow-md); }
.story-tag > svg { width: 23px; height: 23px; color: var(--blue-600); }
.story-tag strong, .story-tag small { display: block; }
.story-tag strong { font-size: .84rem; }
.story-tag small { color: var(--muted); font-size: .68rem; }
.story-copy h2 { margin-bottom: 18px; }
.story-copy p { margin-bottom: 15px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.value-grid article > span { width: 47px; height: 47px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 13px; color: var(--blue-600); background: var(--blue-100); }
.value-grid article:nth-child(even) > span { color: var(--red-600); background: var(--red-100); }
.value-grid svg { width: 22px; height: 22px; }
.value-grid h3 { margin-bottom: 9px; }
.value-grid p { margin: 0; font-size: .88rem; }
.service-path-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.service-path-layout > div:first-child { position: sticky; top: 120px; }
.service-path { display: grid; border-top: 1px solid var(--line-strong); }
.service-path a { display: grid; grid-template-columns: 52px 1fr 20px; align-items: center; gap: 18px; padding: 24px 5px; border-bottom: 1px solid var(--line-strong); transition: padding .2s ease, background .2s ease; }
.service-path a:hover { padding-left: 14px; padding-right: 14px; background: var(--surface-soft); }
.service-path a > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: var(--blue-600); background: var(--blue-100); font-size: .78rem; font-weight: 900; }
.service-path strong, .service-path small { display: block; }
.service-path strong { color: var(--ink); }
.service-path small { color: var(--muted); }
.service-path a > svg { color: var(--blue-600); }

/* Contact */
.contact-hero-actions { display: grid; gap: 10px; }
.contact-hero-actions > a { display: grid; grid-template-columns: 49px 1fr 20px; align-items: center; gap: 14px; padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); transition: background .2s ease, transform .2s ease; }
.contact-hero-actions > a:hover { transform: translateX(5px); background: rgba(255,255,255,.12); }
.contact-hero-actions > a > span { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 13px; color: var(--blue-600); background: #fff; }
.contact-hero-actions > a > span.red { color: var(--red-600); }
.contact-hero-actions svg { width: 22px; height: 22px; }
.contact-hero-actions small, .contact-hero-actions strong { display: block; }
.contact-hero-actions small { color: #aeb9d2; font-size: .68rem; }
.contact-hero-actions strong { color: #fff; }
.contact-hero-actions > a > svg { color: #fff; }
.contact-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-channels article { display: flex; flex-direction: column; min-height: 370px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 8px 24px rgba(13,29,67,.04); }
.contact-channels article > span { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 14px; color: var(--blue-600); background: var(--blue-100); }
.contact-channels article > span.red { color: var(--red-600); background: var(--red-100); }
.contact-channels article > span svg { width: 24px; height: 24px; }
.contact-channels h2 { margin-bottom: 13px; font-size: 1.42rem; }
.contact-channels p { margin-bottom: 25px; }
.contact-channels .btn { margin-top: auto; }
.contact-info-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-info-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-info-list a { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 12px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: border-color .2s ease, transform .2s ease; }
.contact-info-list a:hover { transform: translateY(-3px); border-color: #becafb; }
.contact-info-list a > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; color: var(--blue-600); background: var(--blue-100); }
.contact-info-list a > span.red { color: var(--red-600); background: var(--red-100); }
.contact-info-list svg { width: 21px; height: 21px; }
.contact-info-list small, .contact-info-list strong { display: block; }
.contact-info-list small { color: var(--muted); font-size: .68rem; }
.contact-info-list strong { color: var(--ink); font-size: .86rem; overflow-wrap: anywhere; }
.contact-prep { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; }
.contact-prep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-prep-grid > div { padding: 21px; border: 1px solid var(--line); border-radius: 15px; }
.contact-prep-grid strong { display: block; margin-bottom: 7px; color: var(--ink); }
.contact-prep-grid p { margin: 0; font-size: .84rem; }

/* Legal */
.legal-hero { padding: 105px 0 95px; }
.legal-hero h1 { max-width: 870px; margin-bottom: 20px; color: #fff; font-size: clamp(2.6rem, 4.5vw, 4.35rem); }
.legal-hero p { max-width: 800px; margin-bottom: 0; color: #c0cbe3; font-size: 1.07rem; }
.legal-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.legal-card-grid article { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.legal-card-grid article > span { width: 49px; height: 49px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 13px; color: var(--blue-600); background: var(--blue-100); }
.legal-card-grid svg { width: 23px; height: 23px; }
.legal-card-grid h2 { margin-bottom: 12px; font-size: 1.45rem; }
.legal-card-grid p { min-height: 82px; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 70px; align-items: start; }
.legal-nav { position: sticky; top: 110px; display: grid; padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-soft); }
.legal-nav a { padding: 9px 11px; border-radius: 8px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.legal-nav a:hover { color: var(--blue-600); background: #fff; }
.legal-content { display: grid; gap: 16px; }
.legal-content section { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.legal-number { position: absolute; top: 29px; right: 28px; color: #d7deee; font-size: 1.7rem; font-weight: 900; }
.legal-content h2 { margin-bottom: 14px; padding-right: 55px; font-size: 1.35rem; }
.legal-content p:last-child { margin-bottom: 0; }
.error-page { min-height: 620px; display: grid; place-items: center; padding: 90px 0; background: var(--surface-soft); }
.error-card { max-width: 720px; margin: auto; padding: 55px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-md); text-align: center; }
.error-code { display: block; margin-bottom: 4px; color: var(--blue-600); font-size: clamp(4rem, 10vw, 7rem); font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.error-card .section-kicker { justify-content: center; }
.error-card h1 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.4rem); }
.error-card p { margin-bottom: 27px; }
.error-card .hero-actions { justify-content: center; }

/* Prefooter and footer */
.prefooter { padding: 0 0 42px; background: var(--navy-950); }
.prefooter-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: 42px 46px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: linear-gradient(135deg, rgba(40,86,246,.19), rgba(199,24,10,.13)); }
.prefooter-kicker { margin-bottom: 7px; color: #9fb4ff; }
.prefooter h2 { margin-bottom: 8px; color: #fff; font-size: 2rem; }
.prefooter p { max-width: 720px; margin: 0; color: #b9c4dc; }
.prefooter-actions { display: flex; gap: 10px; }
.site-footer { color: #aeb8d0; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .72fr .72fr .82fr; gap: 58px; padding-top: 58px; padding-bottom: 58px; }
.footer-logo-panel { width: 268px; display: block; padding: 12px 14px; border-radius: 12px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.footer-logo { display: block; width: 100%; height: auto !important; aspect-ratio: 1228 / 221; object-fit: contain; }
.footer-brand > p { max-width: 430px; margin: 22px 0; color: #9ca8c3; font-size: .9rem; }
.footer-contact { display: grid; gap: 7px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: #c7d0e5; font-size: .83rem; }
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 16px; height: 16px; color: #8ea9ff; }
.footer-col h3 { margin: 7px 0 20px; color: #fff; font-size: .95rem; letter-spacing: -.01em; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: #98a5c1; font-size: .85rem; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; color: #77849f; font-size: .78rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal a { color: #8794ae; font-size: .78rem; }
.footer-legal a:hover { color: #fff; }

/* Responsive */
@media (max-width: 1180px) {
  .container { width: min(var(--container), calc(100% - 40px)); }
  .brand { width: 205px; flex-basis: 205px; }
  .header-inner { gap: 24px; }
  .nav-link, .nav-trigger { padding-inline: 10px; }
  .header-login span { display: none; }
  .home-hero-grid { grid-template-columns: .9fr 1.1fr; gap: 44px; }
  .float-secure { right: -12px; }
  .float-since { left: -12px; }
  .pricing-grid.four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pricing-card-head { min-height: auto; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3, .7fr); gap: 34px; }
}

@media (max-width: 1040px) {
  .desktop-nav, .header-actions > .header-login, .header-actions > .btn { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: inline-flex; }
  .utility-since { display: none; }
  .home-hero { padding-top: 76px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .home-hero-copy { max-width: 780px; }
  .home-hero-visual { max-width: 760px; width: 100%; margin-inline: auto; }
  .domain-panel { grid-template-columns: 1fr; gap: 16px; }
  .domain-panel-copy { display: flex; align-items: baseline; gap: 14px; }
  .domain-panel-copy .section-kicker { margin: 0; }
  .domain-tlds { display: none; }
  .trust-strip-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-strip-item:nth-child(4) { border-top: 1px solid var(--line); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-guide-grid, .experience-grid, .local-grid, .faq-layout, .usecase-layout, .story-layout, .service-path-layout, .contact-info-layout, .contact-prep { grid-template-columns: 1fr; gap: 48px; }
  .guide-intro, .faq-intro, .usecase-intro, .service-path-layout > div:first-child { position: static; }
  .experience-visual, .story-art { max-width: 700px; width: 100%; margin-inline: auto; }
  .pricing-header { grid-template-columns: 1fr; gap: 20px; }
  .pricing-note { max-width: 620px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-hero-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .product-showcase, .about-brand-card, .contact-hero-actions { max-width: 720px; width: 100%; }
  .product-hero-grid { padding-top: 70px; }
  .feature-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .contact-channels { grid-template-columns: 1fr; }
  .contact-channels article { min-height: auto; }
  .contact-prep-grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  :root { --header-height: 70px; }
  body { font-size: 15px; }
  .container { width: min(100% - 30px, var(--container)); }
  .section { padding: 76px 0; }
  .utility-bar { display: none; }
  .brand { width: 192px; flex-basis: 192px; }
  .header-inner { min-height: 70px; }
  .home-hero { padding: 62px 0 105px; }
  .home-hero-copy h1 { font-size: clamp(2.55rem, 11vw, 4rem); }
  .home-hero-copy > p { font-size: 1rem; }
  .hero-price-line { align-items: center; }
  .hero-price-line i { display: none; }
  .home-hero-visual { margin-top: 4px; }
  .infra-canvas { height: auto; min-height: 440px; padding: 25px 18px; display: grid; align-content: center; gap: 12px; }
  .infra-canvas > img { right: -60px; bottom: -50px; width: 100%; opacity: .22; }
  .infra-path { display: none; }
  .infra-node { position: relative; left: auto !important; top: auto !important; bottom: auto !important; min-width: 0; width: 100%; }
  .infra-foot { grid-template-columns: 1fr; }
  .infra-foot > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .hero-float-card { display: none; }
  .domain-band { margin-top: -54px; }
  .domain-panel { padding: 22px; }
  .domain-panel-copy { display: block; }
  .domain-panel-copy .section-kicker { margin-bottom: 6px; }
  .domain-search { grid-template-columns: 1fr; }
  .domain-search .btn { width: 100%; }
  .trust-strip-grid { grid-template-columns: 1fr; }
  .trust-strip-item + .trust-strip-item { border-left: 0; border-top: 1px solid var(--line); }
  .split-heading { grid-template-columns: 1fr; gap: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-guide-grid { gap: 35px; }
  .guide-list > a { grid-template-columns: 52px 1fr; }
  .guide-list em { grid-column: 2; }
  .plan-tabs { border-radius: 12px; }
  .pricing-grid, .pricing-grid.four { grid-template-columns: 1fr; }
  .pricing-card { padding: 25px; }
  .experience-visual, .story-art { min-height: 450px; }
  .experience-image-card { right: 12px; }
  .experience-year { width: 150px; }
  .local-grid { gap: 42px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article::after { display: none; }
  .faq-layout { gap: 35px; }
  .product-hero-grid, .page-hero-grid { min-height: auto; padding-top: 62px; padding-bottom: 67px; }
  .product-hero-copy h1, .page-hero h1 { font-size: clamp(2.45rem, 10vw, 3.65rem); }
  .showcase-float { display: none; }
  .showcase-art { height: 275px; }
  .feature-grid, .value-grid { grid-template-columns: 1fr; }
  .usecase-list article { grid-template-columns: 52px 1fr; }
  .about-brand-meta { grid-template-columns: 1fr; }
  .contact-info-list { grid-template-columns: 1fr; }
  .contact-prep-grid { grid-template-columns: 1fr; }
  .legal-card-grid { grid-template-columns: 1fr; }
  .legal-card-grid article p { min-height: 0; }
  .prefooter-inner { grid-template-columns: 1fr; padding: 34px 28px; }
  .prefooter-actions { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, var(--container)); }
  .brand { width: 170px; flex-basis: 170px; }
  .drawer-actions { grid-template-columns: 1fr; }
  .home-hero-copy h1 { font-size: 2.45rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-assurances { display: grid; gap: 9px; }
  .hero-price-line { display: grid; grid-template-columns: auto auto 1fr; gap: 5px 8px; }
  .infra-head { padding-inline: 16px; }
  .infra-head > a { display: none; }
  .infra-foot > div { padding-inline: 16px; }
  .service-card { padding: 24px; }
  .guide-list > a { padding-block: 23px; }
  .pricing-specs { grid-template-columns: 1fr 1fr; }
  .experience-visual, .story-art { min-height: 390px; }
  .experience-image-card, .story-art-frame { right: 0; bottom: 25px; }
  .experience-year { right: 4px; width: 132px; padding: 16px; }
  .experience-mini-card, .story-tag { left: 12px; right: auto; max-width: calc(100% - 24px); }
  .showcase-stats { grid-template-columns: 1fr; }
  .showcase-stats > div:nth-child(even) { border-left: 0; }
  .contact-hero-actions > a { grid-template-columns: 45px 1fr 18px; padding: 15px; }
  .legal-nav { display: grid; }
  .error-card { padding: 38px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .footer-logo-panel { width: min(260px, 100%); }
  .footer-bottom-inner { flex-direction: column; justify-content: center; padding: 20px 0; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Subtle production-safe motion: decorative only and disabled for reduced-motion users. */
@keyframes exelnode-status-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34,181,115,.13); }
  50% { box-shadow: 0 0 0 8px rgba(34,181,115,.03); }
}
@keyframes exelnode-network-drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-7px,-5px,0) scale(1.015); }
}
@keyframes exelnode-float-card {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}
@media (prefers-reduced-motion: no-preference) {
  .status-dot { animation: exelnode-status-pulse 2.8s ease-in-out infinite; }
  .infra-canvas > img { animation: exelnode-network-drift 11s ease-in-out infinite; will-change: transform; }
  .hero-float-card { animation: exelnode-float-card 5.4s ease-in-out infinite; will-change: translate; }
  .float-since { animation-delay: .8s; }
}


/* Live chat entry points */
.utility-live-chat { color: #e9efff !important; }
.utility-live-chat svg { color: #7ee2a8; }
.utility-live-chat:hover { color: #fff !important; }
.mobile-live-chat { color: var(--blue-700) !important; background: #f3f7ff !important; }
.mobile-live-chat small { color: var(--muted); font-size: .73rem; font-weight: 650; }
.footer-links a[data-live-chat] { color: #fff; font-weight: 750; }
.footer-links a[data-live-chat]::before { background: #64d899; }
