/* ==========================================================================
   Telecorenetwork — Enterprise VoIP & Cloud Communications
   Design System / Global Stylesheet
   Theme: Dark Navy · Black · Orange
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Core palette */
  --navy-950: #04070F;
  --navy-900: #070B16;
  --navy-850: #0A0F1E;
  --navy-800: #0E1526;
  --navy-750: #121A2E;
  --navy-700: #17203A;
  --navy-600: #1E2A47;
  --navy-500: #2A3A5E;

  --orange-400: #FF8A3D;
  --orange-500: #FF6B1A;
  --orange-600: #F05604;
  --orange-glow: rgba(255, 107, 26, 0.35);

  --cyan-400: #35D6E8;
  --violet-400: #8B7DFF;

  --white: #FFFFFF;
  --text-100: #F4F7FC;
  --text-200: #C9D3E5;
  --text-300: #9AA7C0;
  --text-400: #6E7C99;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Surfaces */
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.045);
  --glass: rgba(10, 15, 30, 0.72);

  /* Gradients */
  --grad-orange: linear-gradient(135deg, #FF8A3D 0%, #FF6B1A 45%, #F05604 100%);
  --grad-text: linear-gradient(100deg, #FFFFFF 0%, #FFD9C0 40%, #FF8A3D 100%);
  --grad-panel: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 100%);

  /* Type */
  --font-sans: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;

  /* Metrics */
  --container: 1240px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --header-h: 76px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 34px 80px rgba(0, 0, 0, 0.6);
  --shadow-orange: 0 16px 40px rgba(255, 107, 26, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  background: var(--navy-950);
  color: var(--text-200);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--orange-500); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--navy-600); border-radius: 20px; border: 3px solid var(--navy-900); }
::-webkit-scrollbar-thumb:hover { background: var(--orange-600); }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.022em;
}
h1 { font-size: clamp(2.35rem, 5.2vw, 4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.12rem; }
h5 { font-size: 1rem; }
p { color: var(--text-300); }
strong { color: var(--text-100); font-weight: 650; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.orange-text { color: var(--orange-500); }
.lead { font-size: clamp(1.03rem, 1.4vw, 1.18rem); color: var(--text-300); line-height: 1.75; }
.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

/* ---------- 4. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-wide { max-width: 1440px; }
.container-narrow { max-width: 860px; }

.section { padding: clamp(64px, 8vw, 116px) 0; position: relative; }
.section-sm { padding: clamp(48px, 5vw, 72px) 0; }
.section-dark { background: var(--navy-900); }
.section-darker { background: var(--navy-950); }
.section-panel { background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-850) 100%); }

.section-head { max-width: 780px; margin: 0 auto clamp(38px, 5vw, 64px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split-wide { grid-template-columns: 1.05fr 0.95fr; }

.stack-sm > * + * { margin-top: 10px; }
.stack > * + * { margin-top: 18px; }
.stack-lg > * + * { margin-top: 30px; }
.text-center { text-align: center; }
.mt-6 { margin-top: 24px; }
.mt-10 { margin-top: 40px; }

/* ---------- 5. Eyebrow / Badge ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  border: 1px solid rgba(255, 107, 26, 0.28);
  background: rgba(255, 107, 26, 0.08);
  border-radius: 999px;
  font-size: 0.755rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange-400);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.18);
  animation: pulse-dot 2.4s var(--ease-io) infinite;
}
.eyebrow.plain::before { display: none; }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,107,26,0.22); }
  50% { box-shadow: 0 0 0 8px rgba(255,107,26,0); }
}

.chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  color: var(--text-200);
}
.chip-orange { border-color: rgba(255,107,26,0.35); background: rgba(255,107,26,0.1); color: var(--orange-400); }

/* ---------- 6. Buttons ---------- */
.btn {
  --btn-bg: var(--grad-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 650;
  font-size: 0.945rem;
  letter-spacing: -0.01em;
  background: var(--btn-bg);
  color: #fff;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), color .28s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .75s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--line-strong);
  color: var(--text-100);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,107,26,0.5); box-shadow: none; }
.btn-outline { background: transparent; border-color: rgba(255,107,26,0.5); color: var(--orange-400); }
.btn-outline:hover { background: rgba(255,107,26,0.1); box-shadow: none; }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { box-shadow: 0 16px 36px rgba(0,0,0,0.35); }
.btn-sm { padding: 10px 18px; font-size: 0.87rem; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--orange-400); font-weight: 620; font-size: 0.925rem;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow:hover { gap: 12px; color: var(--orange-500); }
.link-arrow svg { width: 15px; height: 15px; }

/* ---------- 7. Cards ---------- */
.card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--grad-panel);
  backdrop-filter: blur(8px);
  transition: transform .38s var(--ease), border-color .38s var(--ease), box-shadow .38s var(--ease), background .38s var(--ease);
  overflow: hidden;
  height: 100%;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 0%), rgba(255,107,26,0.13), transparent 62%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,107,26,0.32); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card h3, .card h4 { margin-bottom: 10px; }
.card p { font-size: 0.945rem; line-height: 1.68; }

.card-link { display: block; }
.card-flat { background: var(--surface); }

.icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,107,26,0.1);
  border: 1px solid rgba(255,107,26,0.24);
  color: var(--orange-500);
  margin-bottom: 20px;
  transition: transform .38s var(--ease), background .38s var(--ease);
}
.icon-box svg { width: 25px; height: 25px; }
.card:hover .icon-box { transform: scale(1.08) rotate(-4deg); background: rgba(255,107,26,0.18); }
.icon-box.cyan { background: rgba(53,214,232,0.09); border-color: rgba(53,214,232,0.24); color: var(--cyan-400); }
.icon-box.violet { background: rgba(139,125,255,0.09); border-color: rgba(139,125,255,0.24); color: var(--violet-400); }
.icon-box.sm { width: 42px; height: 42px; border-radius: 11px; margin-bottom: 14px; }
.icon-box.sm svg { width: 20px; height: 20px; }

/* Numbered card */
.num-card { position: relative; padding-top: 34px; }
.num-card .num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-mono);
  font-size: 2.6rem; font-weight: 700;
  color: rgba(255,255,255,0.055);
  line-height: 1;
}

/* ---------- 8. Feature list ---------- */
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
  color: var(--text-200);
  font-size: 0.955rem;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(255,107,26,0.14);
  border: 1px solid rgba(255,107,26,0.4);
}
.check-list li::after {
  content: "";
  position: absolute; left: 6.5px; top: 8.5px;
  width: 5px; height: 9px;
  border: solid var(--orange-500);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- 9. Header + Mega menu ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease), height .35s var(--ease), box-shadow .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(4, 7, 15, 0.88);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line);
  height: 66px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.header-inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  gap: 34px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-orange);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(255,107,26,0.35);
  transition: transform .4s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.logo-mark svg { width: 20px; height: 20px; color: #fff; }
.logo-text {
  font-size: 1.16rem;
  font-weight: 750;
  color: #fff;
  letter-spacing: -0.032em;
  white-space: nowrap;
}
.logo-text span { color: var(--orange-500); }

/* Primary nav */
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-size: 0.915rem;
  font-weight: 550;
  color: var(--text-200);
  border-radius: 8px;
  transition: color .22s, background .22s;
}
.nav-link:hover, .nav-item.open .nav-link { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--orange-400); }
.nav-link .caret { width: 11px; height: 11px; transition: transform .28s var(--ease); opacity: .7; }
.nav-item.open .nav-link .caret { transform: rotate(180deg); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 600; color: var(--text-200);
  padding: 8px 12px; border-radius: 8px;
  transition: color .22s, background .22s;
}
.header-phone:hover { color: var(--orange-400); background: rgba(255,255,255,0.05); }
.header-phone svg { width: 15px; height: 15px; color: var(--orange-500); }

/* Mega panel */
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 12px);
  width: min(940px, calc(100vw - 48px));
  background: rgba(8, 12, 24, 0.97);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav-item.open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr 0.85fr; gap: 24px; }
.mega-col-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-400);
  margin-bottom: 14px; padding-left: 12px;
}
.mega-link {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 11px 12px;
  border-radius: 12px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.mega-link:hover { background: rgba(255,255,255,0.055); transform: translateX(3px); }
.mega-link .mi {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 9px; display: grid; place-items: center;
  background: rgba(255,107,26,0.1);
  border: 1px solid rgba(255,107,26,0.2);
  color: var(--orange-500);
}
.mega-link .mi svg { width: 17px; height: 17px; }
.mega-link strong { display: block; font-size: 0.9rem; color: var(--text-100); font-weight: 620; line-height: 1.35; }
.mega-link span { display: block; font-size: 0.79rem; color: var(--text-400); line-height: 1.45; margin-top: 3px; }
.mega-promo {
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(155deg, rgba(255,107,26,0.16), rgba(255,107,26,0.03));
  border: 1px solid rgba(255,107,26,0.25);
  display: flex; flex-direction: column; justify-content: space-between;
}
.mega-promo h4 { font-size: 1.05rem; margin-bottom: 8px; }
.mega-promo p { font-size: 0.83rem; margin-bottom: 18px; line-height: 1.6; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
  place-items: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: #fff; position: relative;
  transition: transform .3s var(--ease), background .2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  border-radius: 2px; background: #fff;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--navy-950);
  z-index: 890;
  padding: 22px 24px 60px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: none;
}
body.nav-open .mobile-nav { transform: translateX(0); }
.m-group { border-bottom: 1px solid var(--line); }
.m-head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 2px;
  font-size: 1rem; font-weight: 620; color: var(--text-100);
  text-align: left;
}
.m-head svg { width: 15px; height: 15px; color: var(--orange-500); transition: transform .3s var(--ease); }
.m-group.open .m-head svg { transform: rotate(180deg); }
.m-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.m-group.open .m-body { max-height: 620px; }
.m-body a {
  display: block; padding: 11px 2px 11px 16px;
  font-size: 0.925rem; color: var(--text-300);
  border-left: 2px solid var(--line);
}
.m-body a:hover { color: var(--orange-400); border-left-color: var(--orange-500); }
.m-body { padding-bottom: 6px; }
.mobile-nav .btn { margin-top: 26px; }

/* ---------- 10. Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 74px) 0 92px;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg::before {
  content: "";
  position: absolute;
  top: -22%; left: 50%;
  width: 1100px; height: 1100px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,107,26,0.14) 0%, transparent 62%);
  filter: blur(28px);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px) 0 0 / 62px 62px,
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px) 0 0 / 62px 62px;
  mask-image: radial-gradient(ellipse 90% 62% at 50% 32%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 62% at 50% 32%, #000 35%, transparent 78%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
.hero h1 { margin: 22px 0 20px; }
.hero .lead { max-width: 560px; font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 30px;
}
.hero-trust div span { display: block; font-size: 1.5rem; font-weight: 750; color: #fff; letter-spacing: -0.03em; }
.hero-trust div small { font-size: 0.79rem; color: var(--text-400); letter-spacing: 0.06em; text-transform: uppercase; }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 66px) 0 66px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute; top: -240px; right: -140px;
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(255,107,26,0.15), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px) 0 0 / 54px 54px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin: 18px 0 18px; max-width: 15ch; }
.page-hero .lead { max-width: 640px; }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-400); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--orange-400); }
.breadcrumb span { opacity: .5; }

/* ---------- 11. Network globe visual ---------- */
.globe-wrap { position: relative; display: grid; place-items: center; }
.globe-wrap svg { width: 100%; max-width: 560px; overflow: visible; }
.orbit-ring {
  fill: none;
  stroke: rgba(255,255,255,0.09);
  stroke-width: 1;
}
.globe-core { fill: url(#globeGrad); }
.node-dot { fill: var(--orange-500); }
.arc-path {
  fill: none;
  stroke: url(#arcGrad);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 6 220;
  animation: arc-flow 3.4s linear infinite;
}
@keyframes arc-flow { to { stroke-dashoffset: -226; } }
.spin-slow { animation: spin 46s linear infinite; transform-origin: center; }
.spin-rev { animation: spin 62s linear infinite reverse; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.pulse-ring { animation: pulse-ring 3.2s var(--ease-io) infinite; transform-origin: center; }
@keyframes pulse-ring {
  0% { r: 4; opacity: .9; }
  100% { r: 26; opacity: 0; }
}
.float { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Floating stat pills over visuals */
.float-pill {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(10,15,30,0.92);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
}
.float-pill strong { display: block; color: #fff; font-size: 0.95rem; font-weight: 700; line-height: 1.2; }
.float-pill small { color: var(--text-400); font-size: 0.72rem; }
.float-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #2BD97C; box-shadow: 0 0 0 4px rgba(43,217,124,0.16); }
.float-pill.p1 { top: 8%; left: -4%; animation: float 8s ease-in-out infinite; }
.float-pill.p2 { bottom: 14%; right: -6%; animation: float 9.5s ease-in-out infinite .8s; }
.float-pill.p3 { bottom: -2%; left: 10%; animation: float 7.5s ease-in-out infinite 1.4s; }

/* ---------- 12. Stats ---------- */
.stats-band {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,107,26,0.05), transparent);
}
.stat { text-align: center; padding: 12px; }
.stat .val {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 780;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .lbl { margin-top: 10px; font-size: 0.85rem; color: var(--text-400); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }

/* ---------- 13. Tables (pricing) ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; align-items: stretch; }
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--grad-panel);
  transition: transform .38s var(--ease), border-color .38s var(--ease), box-shadow .38s var(--ease);
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(255,107,26,0.3); box-shadow: var(--shadow); }
.price-card.featured {
  border-color: rgba(255,107,26,0.5);
  background: linear-gradient(165deg, rgba(255,107,26,0.11), rgba(255,255,255,0.02));
  box-shadow: 0 0 0 1px rgba(255,107,26,0.18), var(--shadow);
}
.price-card .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px;
  background: var(--grad-orange); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}
.price-card .plan { font-size: 1.15rem; font-weight: 700; color: #fff; }
.price-card .desc { font-size: 0.875rem; color: var(--text-400); margin-top: 6px; min-height: 42px; }
.price-card .amount {
  margin: 22px 0 4px;
  font-size: 2.6rem; font-weight: 780; color: #fff; letter-spacing: -0.04em; line-height: 1;
}
.price-card .amount sup { font-size: 1.1rem; font-weight: 600; top: -1.1em; margin-right: 2px; }
.price-card .per { font-size: 0.83rem; color: var(--text-400); }
.price-card ul { margin: 24px 0 28px; flex: 1; }
.price-card .btn { margin-top: auto; }

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
table.rate-table { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--surface); }
table.rate-table th, table.rate-table td { padding: 15px 20px; text-align: left; font-size: 0.92rem; }
table.rate-table thead th {
  background: rgba(255,255,255,0.05);
  color: #fff; font-weight: 650; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
}
table.rate-table tbody tr { border-bottom: 1px solid var(--line); transition: background .22s; }
table.rate-table tbody tr:last-child { border-bottom: 0; }
table.rate-table tbody tr:hover { background: rgba(255,107,26,0.05); }
table.rate-table td:first-child { color: var(--text-100); font-weight: 600; }
table.rate-table .num { font-family: var(--font-mono); color: var(--orange-400); }

/* ---------- 14. FAQ accordion ---------- */
.faq-list { max-width: 880px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq-item.open { border-color: rgba(255,107,26,0.36); background: rgba(255,107,26,0.045); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem; font-weight: 620; color: var(--text-100);
  transition: color .22s;
}
.faq-q:hover { color: var(--orange-400); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  position: relative;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  background: var(--orange-500); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.faq-icon::before { width: 11px; height: 2px; }
.faq-icon::after { width: 2px; height: 11px; }
.faq-item.open .faq-icon { background: var(--orange-500); border-color: var(--orange-500); transform: rotate(180deg); }
.faq-item.open .faq-icon::before { background: #fff; }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; font-size: 0.95rem; line-height: 1.72; color: var(--text-300); }
.faq-a-inner p + p { margin-top: 12px; }

/* ---------- 15. Testimonials ---------- */
.quote-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--grad-panel);
  position: relative;
  height: 100%;
  transition: transform .38s var(--ease), border-color .38s var(--ease);
}
.quote-card:hover { transform: translateY(-5px); border-color: rgba(255,107,26,0.3); }
.quote-card .stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--orange-500); }
.quote-card .stars svg { width: 16px; height: 16px; }
.quote-card blockquote { font-size: 1rem; line-height: 1.75; color: var(--text-200); }
.quote-card blockquote::before { content: "\201C"; }
.quote-card blockquote::after { content: "\201D"; }
.quote-meta { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-orange);
  color: #fff; font-weight: 700; font-size: 0.95rem;
  flex-shrink: 0;
}
.quote-meta strong { display: block; color: #fff; font-size: 0.93rem; font-weight: 650; }
.quote-meta small { color: var(--text-400); font-size: 0.8rem; }

/* ---------- 16. Logo marquee ---------- */
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.12rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text-400);
  opacity: .65;
  transition: opacity .3s, color .3s;
  white-space: nowrap;
}
.brand-logo:hover { opacity: 1; color: var(--text-100); }
.brand-logo svg { width: 22px; height: 22px; color: var(--orange-500); }

/* ---------- 17. Coverage map ---------- */
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  padding: 26px;
  overflow: hidden;
}
.map-dot { fill: rgba(255,255,255,0.16); }
.map-hub { fill: var(--orange-500); }
.map-hub-pulse { fill: var(--orange-500); opacity: .3; animation: hub-pulse 2.8s var(--ease-io) infinite; transform-origin: center; }
@keyframes hub-pulse { 0% { transform: scale(1); opacity: .35; } 100% { transform: scale(3.6); opacity: 0; } }

.region-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.region {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.region:hover { border-color: rgba(255,107,26,0.32); background: rgba(255,107,26,0.05); transform: translateX(4px); }
.region span { font-size: 0.92rem; color: var(--text-200); font-weight: 550; }
.region b { font-family: var(--font-mono); font-size: 0.88rem; color: var(--orange-400); }

/* ---------- 18. Forms ---------- */
.form-card {
  padding: clamp(26px, 3.4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.815rem; font-weight: 620; color: var(--text-200);
  margin-bottom: 8px; letter-spacing: 0.02em;
}
.field label .req { color: var(--orange-500); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.32);
  color: var(--text-100);
  font-size: 0.94rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
  outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239AA7C0' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
  padding-right: 42px;
}
.field select option { background: var(--navy-850); color: var(--text-100); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.15);
  background: rgba(0,0,0,0.45);
}
.field.error input, .field.error select, .field.error textarea { border-color: #FF5A5A; box-shadow: 0 0 0 3px rgba(255,90,90,0.12); }
.field .err-msg { display: none; margin-top: 6px; font-size: 0.775rem; color: #FF7B7B; }
.field.error .err-msg { display: block; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.checkbox-row input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--orange-500); flex-shrink: 0; }
.checkbox-row label { font-size: 0.82rem; color: var(--text-400); line-height: 1.55; }
.checkbox-row a { color: var(--orange-400); text-decoration: underline; }
.form-success {
  display: none;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(43,217,124,0.1);
  border: 1px solid rgba(43,217,124,0.32);
  color: #7FE9B2;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.form-success.show { display: block; animation: slide-in .45s var(--ease); }
@keyframes slide-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* Contact info cards */
.contact-tile {
  display: flex; gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color .3s, transform .3s var(--ease);
}
.contact-tile:hover { border-color: rgba(255,107,26,0.3); transform: translateY(-3px); }
.contact-tile h4 { font-size: 0.98rem; margin-bottom: 5px; }
.contact-tile p, .contact-tile a { font-size: 0.9rem; color: var(--text-300); line-height: 1.6; }
.contact-tile a:hover { color: var(--orange-400); }

/* ---------- 19. CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5.5vw, 72px);
  background: linear-gradient(135deg, #12192E 0%, #0A0F1E 55%, #1A1206 100%);
  border: 1px solid rgba(255,107,26,0.24);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
  width: 820px; height: 820px;
  background: radial-gradient(circle, rgba(255,107,26,0.22), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 62ch; margin: 18px auto 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.cta-note { margin-top: 22px; font-size: 0.83rem; color: var(--text-400); }

/* ---------- 20. Footer ---------- */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--line);
  padding: 74px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 52px;
}
.footer-about p { font-size: 0.9rem; margin: 18px 0 22px; max-width: 34ch; line-height: 1.7; }
.footer-col h5 {
  font-size: 0.755rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-400); margin-bottom: 18px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 0.895rem; color: var(--text-300); transition: color .22s, padding-left .22s; }
.footer-col a:hover { color: var(--orange-400); padding-left: 4px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text-300);
  transition: all .28s var(--ease);
}
.social-row a:hover { background: var(--orange-500); border-color: var(--orange-500); color: #fff; transform: translateY(-3px); }
.social-row svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
}
.footer-bottom p, .footer-bottom a { font-size: 0.835rem; color: var(--text-400); }
.footer-bottom a:hover { color: var(--orange-400); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 0 26px; border-top: 1px solid var(--line); }
.badge-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.76rem; font-weight: 600; color: var(--text-300);
}
.badge-pill svg { width: 13px; height: 13px; color: var(--orange-500); }

/* ---------- 21. Misc components ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.tab {
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 0.885rem; font-weight: 600; color: var(--text-300);
  transition: all .28s var(--ease);
}
.tab:hover { color: #fff; border-color: rgba(255,107,26,0.4); }
.tab.active { background: var(--grad-orange); border-color: transparent; color: #fff; box-shadow: var(--shadow-orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-up .5s var(--ease); }

.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, var(--orange-500), rgba(255,107,26,0.05));
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -30px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--navy-950); border: 2px solid var(--orange-500);
}
.timeline-item .yr { font-family: var(--font-mono); font-size: 0.82rem; color: var(--orange-400); font-weight: 600; }
.timeline-item h4 { margin: 5px 0 7px; }
.timeline-item p { font-size: 0.92rem; }

/* Blog */
.post-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--grad-panel);
  overflow: hidden;
  height: 100%;
  transition: transform .38s var(--ease), border-color .38s var(--ease), box-shadow .38s var(--ease);
}
.post-card:hover { transform: translateY(-6px); border-color: rgba(255,107,26,0.32); box-shadow: var(--shadow); }
.post-thumb {
  height: 168px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-750), var(--navy-850));
  display: grid; place-items: center;
}
.post-thumb::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 26px 26px;
}
.post-thumb svg { width: 52px; height: 52px; color: rgba(255,107,26,0.6); position: relative; z-index: 2; }
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.775rem; color: var(--text-400); margin-bottom: 12px; }
.post-body h3 { font-size: 1.12rem; line-height: 1.35; margin-bottom: 10px; }
.post-body p { font-size: 0.9rem; flex: 1; }
.post-body .link-arrow { margin-top: 18px; }

/* Support / docs */
.doc-tile {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: all .3s var(--ease);
}
.doc-tile:hover { border-color: rgba(255,107,26,0.32); background: rgba(255,107,26,0.05); transform: translateY(-3px); }
.doc-tile h4 { font-size: 0.96rem; margin-bottom: 4px; }
.doc-tile p { font-size: 0.85rem; }

.sla-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.sla-strip > div { background: var(--navy-900); padding: 24px 20px; text-align: center; }
.sla-strip b { display: block; font-size: 1.55rem; color: var(--orange-400); font-family: var(--font-mono); letter-spacing: -0.02em; }
.sla-strip span { font-size: 0.8rem; color: var(--text-400); margin-top: 6px; display: block; }

/* Legal / prose */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.55rem; margin: 42px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.prose p { margin-bottom: 15px; font-size: 0.96rem; line-height: 1.78; }
.prose ul { margin: 0 0 18px; }
.prose ul li { position: relative; padding-left: 22px; margin-bottom: 9px; font-size: 0.95rem; color: var(--text-300); line-height: 1.7; }
.prose ul li::before { content: ""; position: absolute; left: 3px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange-500); }
.prose a { color: var(--orange-400); text-decoration: underline; }
.prose .updated { font-size: 0.85rem; color: var(--text-400); font-family: var(--font-mono); }

/* ---------- 22. Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .78s var(--ease), transform .78s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.95); }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- 23. Utilities ---------- */
.divider { height: 1px; background: var(--line); border: 0; margin: 40px 0; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; }
.orb-o { background: rgba(255,107,26,0.14); }
.orb-c { background: rgba(53,214,232,0.09); }
.rel { position: relative; z-index: 2; }
.hide-mobile { display: initial; }
.only-mobile { display: none; }

/* Terminal / code visual */
.terminal {
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: #05080F;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.terminal-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--line); }
.terminal-bar i { width: 10px; height: 10px; border-radius: 50%; background: #303A50; display: block; }
.terminal-bar i:first-child { background: #FF5F57; }
.terminal-bar i:nth-child(2) { background: #FEBC2E; }
.terminal-bar i:nth-child(3) { background: #28C840; }
.terminal-bar span { margin-left: 8px; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-400); }
.terminal pre { padding: 20px; font-family: var(--font-mono); font-size: 0.79rem; line-height: 1.85; color: var(--text-200); overflow-x: auto; }
.terminal .k { color: #FF8A3D; }
.terminal .s { color: #7FE9B2; }
.terminal .c { color: var(--text-400); }
.terminal .n { color: #8B7DFF; }

/* Back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px;
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-orange); color: #fff;
  box-shadow: var(--shadow-orange);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all .35s var(--ease);
  z-index: 800;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 19px; height: 19px; }

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--grad-orange); z-index: 950;
  transition: width .1s linear;
}

/* ---------- 24. Responsive ---------- */
@media (max-width: 1240px) {
  .logo-text { font-size: 1.04rem; }
  .header-phone { display: none; }
}
@media (max-width: 1120px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); row-gap: 36px; }
  .nav-link { padding: 10px 9px; font-size: 0.85rem; }
  .header-inner { gap: 14px; }
  .logo-text { font-size: 0.98rem; }
}
@media (max-width: 1024px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: grid; }
  .mobile-nav { display: block; }
  .hero-grid, .split, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.featured { order: -1; }
  .sla-strip { grid-template-columns: repeat(2, 1fr); }
  .header-cta .btn { display: none; }
  .header-cta .nav-toggle { display: grid; }
}
@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .region-list { grid-template-columns: 1fr; }
  .float-pill.p1 { left: 0; }
  .float-pill.p2 { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  :root { --header-h: 66px; }
  .container { padding-inline: 18px; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--header-h) + 48px); padding-bottom: 64px; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .hero-trust { gap: 22px; }
  .hero-trust div span { font-size: 1.28rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sla-strip { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .float-pill { display: none; }
  .hide-mobile { display: none; }
  .only-mobile { display: initial; }
  .marquee-track { gap: 34px; }
}

/* ---------- 25. Motion / print ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
@media print {
  .site-header, .mobile-nav, .to-top, .scroll-progress, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
}
:focus-visible { outline: 2px solid var(--orange-500); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  padding: 10px 18px; border-radius: 8px;
  background: var(--orange-500); color: #fff; font-weight: 600; font-size: 0.9rem;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; }
