/* ============================================================
   ALTERASCAPE — Design System v3
   Premium Enterprise Hosting · Security-First
   Fonts: IBM Plex Sans (display + body)
   ============================================================ */

/* Google Fonts loaded via <link> tags in <head> for performance (no render-blocking @import) */

/* ============================================================
   DESIGN TOKENS — NEW PALETTE
   ============================================================ */
:root {
  /* Brand — NEW */
  --primary:     #0057FF;        /* Bold primary blue */
  --accent:      #00C6FF;        /* Vibrant cyan accent */
  --dark:        #06091A;        /* Very deep navy */
  --dark-secondary: #0D1533;     /* Dark secondary */
  --success:     #00D68F;        /* Success green */
  --orange:      #FF6B35;        /* Orange accent */
  --purple:      #7C3AED;        /* Purple accent */
  --light-bg:    #F5F8FF;        /* Light background */
  --text-primary:    #060D26;     /* Text primary */
  --text-secondary:  #334155;     /* Text secondary — slightly muted primary */
  --text-muted:      #64748B;     /* Muted text */
  --primary-light:   #EEF7FF;     /* Light primary tint (alias for blue-tint) */

  /* Extended palette for compatibility */
  --blue:        #0057FF;
  --blue-hover:  #0043CC;
  --blue-mid:    #0068FF;
  --blue-light:  #00C6FF;
  --blue-pale:   #B3E5FF;
  --blue-tint:   #EEF7FF;
  --blue-glow:   rgba(0, 87, 255, 0.18);
  --green:       #00D68F;
  --green-tint:  #E8FFFA;
  --amber:       #FF6B35;
  --amber-tint:  #FFF5F1;
  --red:         #FF3B30;

  /* Light surfaces */
  --white:       #FFFFFF;
  --gray-50:     #F5F8FF;
  --gray-100:    #EBEEF7;
  --gray-200:    #DDE2F0;
  --gray-300:    #C4CCE0;
  --gray-400:    #A9B4CC;
  --gray-500:    #64748B;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1E293B;
  --gray-900:    #0F172A;

  /* Dark surfaces — UPDATED */
  --dark-base:    #06091A;
  --dark-deep:    #0D1533;
  --dark-card:    #111B3E;
  --dark-raised:  #162555;
  --dark-border:  rgba(0, 199, 255, 0.15);
  --dark-border-bright: rgba(0, 199, 255, 0.35);
  --dark-text:    #F0F5FF;
  --dark-text-soft: #A8B5D1;
  --dark-text-muted: #6A7A9A;

  /* Typography */
  --font-display: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows — ENHANCED */
  --shadow-xs:  0 1px 3px rgba(6, 13, 38, 0.08), 0 1px 2px rgba(6, 13, 38, 0.06);
  --shadow-sm:  0 2px 8px rgba(6, 13, 38, 0.1), 0 1px 3px rgba(6, 13, 38, 0.08);
  --shadow-md:  0 4px 20px rgba(6, 13, 38, 0.12), 0 2px 6px rgba(6, 13, 38, 0.08);
  --shadow-lg:  0 8px 40px rgba(6, 13, 38, 0.15), 0 4px 12px rgba(6, 13, 38, 0.1);
  --shadow-xl:  0 20px 60px rgba(6, 13, 38, 0.18), 0 8px 20px rgba(6, 13, 38, 0.12);
  --shadow-blue: 0 8px 32px rgba(0, 87, 255, 0.3), 0 2px 8px rgba(0, 87, 255, 0.2);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.8);

  /* Radii */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  22px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Motion */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur:        0.25s;
  --dur-md:     0.35s;
  --dur-lg:     0.5s;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem);  letter-spacing: -0.025em; font-weight: 700; line-height: 1.08; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.9rem); letter-spacing: -0.02em;  font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem);  letter-spacing: -0.012em; font-weight: 600; }
h4 { font-size: clamp(1rem, 1.8vw, 1.15rem);   letter-spacing: -0.008em; font-weight: 600; }

p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.72;
  color: var(--text-muted);
}

/* Text utilities */
.text-dark   { color: var(--text-primary); }
.text-muted  { color: var(--text-muted); }

/* Solid text utilities */
.grad-blue  { color: var(--primary); }
.grad-light { color: var(--dark-text); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Section themes */
.section-light {
  background: var(--white);
  color: var(--text-primary);
}
.section-muted {
  background: var(--gray-50);
  color: var(--text-primary);
}
.section-dark {
  background: var(--dark-deep);
  color: var(--dark-text);
}
.section-deep {
  background: var(--dark-base);
  color: var(--dark-text);
}

/* Section spacing */
section { padding: 90px 0; }
section.section-sm { padding: 70px 0; }

/* Section layout helpers — for <div> wrappers that aren't <section> elements */
.s-white    { background: var(--white);   padding: 90px 0; }
.s-muted    { background: var(--gray-50); padding: 90px 0; }
.s-white-pb { background: var(--white);   padding: 0 0 90px; }
.s-muted-pb { background: var(--gray-50); padding: 0 0 90px; }

/* Legal page chrome */
.legal-toc-bar   { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 0.75rem 0; }
.legal-body-wrap { background: var(--white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r-lg);
  border: 1.5px solid transparent;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

/* Primary — NEW STYLE */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #003ECC 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(0, 87, 255, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0043CC 0%, #0032A8 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-primary:active { transform: translateY(0); }

/* On dark backgrounds */
.btn-primary-light {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.btn-primary-light:hover {
  background: #f0f5ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Ghost light */
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--gray-300);
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--gray-50);
  transform: translateY(-1px);
}

/* Ghost on dark */
.btn-ghost-dark {
  background: rgba(0, 199, 255, 0.08);
  color: rgba(255,255,255,0.9);
  border-color: rgba(0, 199, 255, 0.3);
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.btn-ghost-dark:hover {
  background: rgba(0, 199, 255, 0.15);
  border-color: rgba(0, 199, 255, 0.5);
  transform: translateY(-1px);
}

/* Sizes */
.btn-sm  { padding: 0.55rem 1.1rem;  font-size: 0.85rem; }
.btn-lg  { padding: 1rem 2.25rem;    font-size: 1rem; }
.btn-xl  { padding: 1.1rem 2.5rem;   font-size: 1.05rem; border-radius: var(--r-lg); }

/* ============================================================
   BADGES / LABELS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-blue {
  background: var(--blue-tint);
  color: var(--primary);
  border: 1px solid rgba(0, 87, 255, 0.2);
}
.badge-green {
  background: rgba(0, 214, 143, 0.1);
  color: var(--success);
  border: 1px solid rgba(0, 214, 143, 0.2);
}
.badge-dark {
  background: rgba(13, 21, 51, 0.5);
  color: var(--dark-text-soft);
  border: 1px solid rgba(0, 199, 255, 0.2);
}
.badge-blue-dark {
  background: rgba(0, 87, 255, 0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(0, 87, 255, 0.3);
}

.badge-dot::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* ============================================================
   BACKGROUND TEXTURES
   ============================================================ */
.dot-grid {
  position: relative;
  background-image:
    radial-gradient(circle, rgba(0, 87, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

.mesh-bg {
  position: relative;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(0, 199, 255, 0.06) 25%, rgba(0, 199, 255, 0.06) 26%, transparent 27%, transparent 74%, rgba(0, 199, 255, 0.06) 75%, rgba(0, 199, 255, 0.06) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(0, 199, 255, 0.06) 25%, rgba(0, 199, 255, 0.06) 26%, transparent 27%, transparent 74%, rgba(0, 199, 255, 0.06) 75%, rgba(0, 199, 255, 0.06) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
}

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave-divider {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
}

/* ============================================================
   ILLUSTRATION CONTAINER
   ============================================================ */
.illus-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* When the SVG itself is the illus-container (inline hero SVG) */
svg.illus-container {
  width: 100%;
  height: auto;
  max-width: 560px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.3));
}

.illus-container svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ============================================================
   STAT PILL
   ============================================================ */
.stat-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(0, 87, 255, 0.05);
  border: 1px solid rgba(0, 87, 255, 0.2);
  border-radius: var(--r-lg);
  text-align: center;
}

.stat-pill-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
}

.stat-pill-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   FEATURE ILLUSTRATION
   ============================================================ */
.feature-illustration {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-illustration svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  z-index: 999;
  transition: background var(--dur-md) var(--ease), border-color var(--dur-md) var(--ease), box-shadow var(--dur-md) var(--ease);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  gap: 2rem;
}

.nav.scrolled .nav-inner {
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}

.nav:not(.scrolled) .nav-links a,
.nav:not(.scrolled) .nav-dropdown-toggle { color: rgba(255,255,255,0.85); }
.nav:not(.scrolled) .nav-links a:hover,
.nav:not(.scrolled) .nav-dropdown-toggle:hover { color: #fff; }
.nav:not(.scrolled) .nav-login { color: rgba(255,255,255,0.85); }
.nav:not(.scrolled) .nav-login:hover { color: #fff; }
.nav:not(.scrolled) .btn-nav-ghost {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.nav:not(.scrolled) .btn-nav-ghost:hover {
  background: rgba(255,255,255,0.15);
}

.nav:not(.scrolled) .nav-toggle span { background: rgba(255,255,255,0.85); }

.nav.scrolled .nav-links a,
.nav.scrolled .nav-dropdown-toggle { color: var(--text-primary); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-dropdown-toggle:hover { color: var(--primary); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  min-width: 280px;
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--dur-md) var(--ease);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
}

.nav-dropdown-menu a:hover {
  background: var(--gray-50);
}

.dm-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 87, 255, 0.1);
  border-radius: var(--r-md);
}

.dm-icon .lucide { color: var(--primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login {
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: color var(--dur) var(--ease);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 2rem 2rem;
}

.nav-mobile a {
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--text-primary);
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
/* ============================================================
   PAGE HERO — dark hero banner for all inner pages
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--dark-base) 0%, var(--dark-deep) 100%);
  color: var(--dark-text);
  padding: 140px 0 90px;
  overflow: hidden;
}
.page-hero h1 {
  color: var(--dark-text);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.page-hero .lead { color: var(--dark-text-soft); }
.page-hero p:not(.lead) { color: var(--dark-text-soft); }
@media (max-width: 768px) { .page-hero { padding: 120px 0 70px; } }

/* Page-hero 2-column layout */
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.page-hero-content { max-width: 560px; }
.page-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-hero-visual svg {
  width: 100%;
  height: auto;
  max-width: 480px;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.4));
}
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
}

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--dark-base) 0%, var(--dark-deep) 100%);
  color: var(--dark-text);
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-orb-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 199, 255, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  filter: blur(60px);
}

.hero-orb-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  filter: blur(50px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-text-soft);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--dark-text-soft);
}

.hc-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(0, 214, 143, 0.15);
  border: 1px solid var(--success);
  border-radius: 50%;
  font-weight: 700;
  color: var(--success);
  flex-shrink: 0;
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-float-1, .dash-float-2 {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(8px);
}

.dash-float-1 {
  top: 40px;
  left: 0;
  animation: float 3s ease-in-out infinite;
  will-change: transform;
}

.dash-float-2 {
  bottom: 60px;
  right: 20px;
  animation: float 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.df-label { font-weight: 700; font-size: 0.85rem; color: var(--dark-text); }
.df-sub { font-size: 0.75rem; color: var(--dark-text-muted); }

.df-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.df-icon-green { background: rgba(0, 214, 143, 0.15); }
.df-icon-green .lucide { color: var(--success); width: 20px; height: 20px; }
.df-icon-blue { background: rgba(0, 87, 255, 0.15); }
.df-icon-blue .lucide { color: var(--primary); width: 20px; height: 20px; }

/* ============================================================
   SERVICES SECTION — PREMIUM REDESIGN
   ============================================================ */
.services-section {
  position: relative;
  padding: 120px 0;
  background: #fff;
}

.services-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-intro h2 {
  margin: 1.25rem 0 1rem;
}

.services-intro p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.services-tier {
  margin-bottom: 2.5rem;
}

.services-tier:last-child {
  margin-bottom: 0;
}

.services-tier-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.services-tier-chip {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.services-tier-chip--power {
  color: var(--primary);
  background: rgba(0, 87, 255, 0.07);
  border-color: rgba(0, 87, 255, 0.18);
}

.services-tier-rule {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.services-tier-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s, border-color 0.25s;
}

.service-card-accent {
  height: 3px;
  background: var(--sc-color, var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
}

.service-card:hover .service-card-accent {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(6, 13, 38, 0.1), 0 4px 10px rgba(6, 13, 38, 0.05);
  border-color: var(--gray-200);
}

.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--sc-bg, rgba(0, 87, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}

.service-card:hover .service-card-icon {
  background: var(--sc-color, var(--primary));
}

.service-card:hover .service-card-icon .lucide {
  color: white;
}

.service-card-icon .lucide {
  color: var(--sc-color, var(--primary));
  width: 22px;
  height: 22px;
  transition: color 0.2s;
}

.service-card-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.sc-badge {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sc-color, var(--primary));
  background: var(--sc-bg, rgba(0, 87, 255, 0.07));
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
}

.sc-badge--premium {
  color: var(--primary);
  background: rgba(0, 87, 255, 0.08);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.service-card-price {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.service-card-price strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.service-card-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sc-color, var(--primary));
  white-space: nowrap;
  transition: gap 0.2s;
}

.service-card:hover .service-card-cta {
  gap: 0.65rem;
}

.service-card-cta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ============================================================
   SECURITY SECTION
   ============================================================ */
.security-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.security-content h2 {
  color: var(--dark-text);
  margin-bottom: 1.5rem;
}

.security-content p {
  color: var(--dark-text-soft);
  margin-bottom: 1.5rem;
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.security-item {
  display: flex;
  gap: 1rem;
}

.security-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 214, 143, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-item-icon .lucide {
  color: var(--success);
  width: 20px;
  height: 20px;
}

.security-item h4 {
  color: var(--dark-text);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.security-item p {
  color: var(--dark-text-muted);
  font-size: 0.9rem;
}

.security-visual {
  position: relative;
  height: 400px;
}

/* ============================================================
   INCLUSIVE SECTION — PREMIUM REDESIGN
   ============================================================ */
.inclusive-section {
  position: relative;
  padding: 120px 0;
  background: var(--light-bg);
}

.inclusive-header {
  text-align: center;
  margin-bottom: 4rem;
}

.inclusive-header h2 {
  margin-bottom: 1rem;
}

.inclusive-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.inclusive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.inclusive-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.25s;
}

.inclusive-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--inc-alpha, rgba(0,87,255,0.04)) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.inclusive-item:hover::before {
  opacity: 1;
}

.inclusive-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(6, 13, 38, 0.09), 0 3px 8px rgba(6, 13, 38, 0.05);
  border-color: var(--inc-border, rgba(0, 87, 255, 0.2));
}

.inclusive-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--inc-bg, rgba(0, 87, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s;
}

.inclusive-item:hover .inclusive-icon {
  background: var(--inc-color, var(--primary));
}

.inclusive-item:hover .inclusive-icon .lucide {
  color: white;
}

.inclusive-icon .lucide {
  color: var(--inc-color, var(--primary));
  width: 22px;
  height: 22px;
  transition: color 0.2s;
}

.inclusive-item-label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--inc-color, var(--primary));
  background: var(--inc-bg, rgba(0, 87, 255, 0.08));
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
  margin-bottom: 0.6rem;
}

.inclusive-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.inclusive-item p {
  font-size: 0.865rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* Migration strip */
.migration-strip {
  margin-top: 3rem;
}

.migration-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0, 87, 255, 0.18);
  border-radius: var(--r-xl);
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.07);
}

.migration-strip-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 87, 255, 0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.migration-strip-icon .lucide {
  color: var(--primary);
  width: 20px;
  height: 20px;
}

.migration-strip-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.migration-strip-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.migration-strip-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  position: relative;
  padding: 100px 0;
  background: var(--white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  margin-bottom: 1rem;
}

.pricing-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  position: relative;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  transition: all var(--dur-md) var(--ease);
}

.pricing-card.featured {
  position: relative;   /* required for ::before glow layer */
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 87, 255, 0.15);
  transform: scale(1.05);
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 87, 255, 0.1);
}

.pricing-label {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(0, 214, 143, 0.15);
  color: var(--success);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-feature {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-feature .lucide {
  color: var(--success);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
}

/* Extended pricing-card subcomponents (drupal-hosting, etc.) */
.pricing-card-featured {
  background: var(--dark);
  border-color: rgba(255,255,255,0.12);
  color: var(--dark-text);
}
.pricing-card-featured {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, box-shadow 0.35s;
}
.pricing-card-featured:hover {
  border-color: var(--accent);
  box-shadow: 0 24px 50px rgba(0,87,255,0.25);
  transform: translateY(-8px);
}
.pc-badge {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
  width: fit-content;
}
.pc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.pc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pc-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.pricing-card-featured .pc-tagline { color: var(--dark-text-muted); }
.pc-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}
.pricing-card-featured .pc-amount { color: var(--dark-text); }
.pc-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-left: 0.15rem;
}
.pricing-card-featured .pc-period { color: var(--dark-text-muted); }
.pc-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.pc-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--text-primary); line-height: 1.5; }
.pricing-card-featured .pc-features li { color: var(--dark-text-soft); }
.btn-white {
  background: #fff;
  color: var(--primary);
  border: none;
  font-weight: 700;
}
.btn-white:hover {
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================================
   PRICE CARDS — service pages (web-hosting, wordpress, pricing)
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

.price-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, box-shadow 0.35s;
}
.price-card:hover {
  border-color: var(--primary);
  box-shadow: 0 24px 50px rgba(0,87,255,0.14), 0 0 0 3px rgba(0, 87, 255, 0.06);
  transform: translateY(-8px);
}
.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(0, 87, 255, 0.14), 0 0 0 3px rgba(0, 87, 255, 0.08);
  transform: translateY(-6px);
}
.price-card.featured:hover { transform: translateY(-11px); box-shadow: 0 28px 60px rgba(0,87,255,0.2), 0 0 0 3px rgba(0,87,255,0.1); }

.feat-tag {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.pc-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin-bottom: 0.3rem;
}
.pc-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.pc-price {
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.pc-price-curr {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-bottom: 0.3rem;
}
.pc-price-amt {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}
.pc-price-per {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-bottom: 0.35rem;
}
.pc-divider {
  height: 1px;
  background: var(--gray-100);
  margin-bottom: 1.5rem;
}
.pc-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  margin-bottom: 1.75rem;
}
.pc-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.pc-feat-check {
  color: #16A34A;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  line-height: 1.5;
}
.pc-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.plat-note {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
}
.plat-note strong { color: var(--text-primary); }
.plat-note a { color: var(--primary); text-decoration: none; }
.plat-note a:hover { text-decoration: underline; }

/* ============================================================
   PRICING INC GRID — pricing page "What's Always Included"
   ============================================================ */
.pricing-inc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 960px) { .pricing-inc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pricing-inc-grid { grid-template-columns: 1fr; } }

.inc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.inc-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm), 0 0 0 2px rgba(0, 87, 255, 0.06);
  transform: translateY(-2px);
}
.inc-check { display: none; }
.inc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.inc-icon .lucide { width: 22px; height: 22px; color: var(--primary); }
.inc-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  margin-bottom: 0.4rem;
}
.inc-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, var(--dark-base) 0%, #0A1535 60%, #0B1837 100%);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}
.why-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 15% 50%, rgba(0,87,255,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 25%, rgba(139,92,246,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 55% 85%, rgba(6,182,212,0.07) 0%, transparent 55%);
}

.why-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.why-header h2 {
  color: var(--dark-text);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.why-sub {
  font-size: 1.05rem;
  color: var(--dark-text-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Cards */
.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.why-card {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: 380px;
  min-width: 240px;
  min-height: 260px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-2xl);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, box-shadow 0.35s;
}
.why-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 28px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.07);
  transform: translateY(-8px);
}
.why-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.why-card-num {
  position: absolute;
  top: 1.6rem; right: 1.75rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.14);
  letter-spacing: 0.12em;
}
.why-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-text);
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}
.why-card-desc {
  font-size: 0.875rem;
  color: var(--dark-text-soft);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.why-card-proof {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-raised) 100%);
  color: var(--dark-text);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(0,199,255,0.4) 25%, rgba(139,92,246,0.55) 50%, rgba(0,199,255,0.4) 75%, transparent 100%) top / 100% 1px no-repeat,
    radial-gradient(circle at 20% 50%, rgba(0, 199, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 87, 255, 0.13) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-inner h2 {
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.cta-inner p {
  font-size: 1.1rem;
  color: var(--dark-text-soft);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-base);
  color: var(--dark-text);
  padding: 60px 0 0;
  border-top: 1px solid var(--dark-border-bright);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem 4rem;
  margin-bottom: 2.5rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.footer-brand {
  /* natural column — no spanning */
}

.footer-brand img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 1.1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.84rem;
  color: var(--dark-text-muted);
  line-height: 1.75;
  max-width: 290px;
  margin-bottom: 1.5rem;
}

/* Trust badges */
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ft-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--dark-text-muted);
}

.ft-badge .lucide {
  width: 13px;
  height: 13px;
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark-text);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--dark-text-muted);
  transition: color var(--dur) var(--ease);
  margin-bottom: 0.65rem;
}

.footer-col a:hover { color: var(--dark-text); }

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--dark-border);
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--dark-text-muted);
  margin: 0;
  flex: 1;
  white-space: nowrap;
}

/* Payment logos */
.footer-payment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: center;
}

.fp-label {
  font-size: 0.72rem;
  color: var(--dark-text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fp-logos {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pay-logo {
  height: 24px;
  width: auto;
  border-radius: 4px;
  transition: opacity var(--dur) var(--ease);
  opacity: 0.82;
}

.pay-logo:hover { opacity: 1; }

.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--dark-text-muted);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}

.footer-legal a:hover { color: var(--dark-text-soft); }

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.fs-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--dark-text-muted);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.fs-link:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--dark-text);
}

.fs-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.compare-table thead {
  background: var(--light-bg);
  border-bottom: 1px solid var(--gray-200);
}

.compare-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.compare-table th:first-child {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.compare-table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
  background: rgba(0, 87, 255, 0.02);
}

.compare-table .td-feat {
  background: rgba(0, 87, 255, 0.03);
  color: var(--text-primary);
  font-weight: 600;
}

.compare-table .th-feat {
  background: var(--text-primary);
  color: var(--white);
}

.compare-table tbody tr:hover {
  background: var(--gray-50);
}

.compare-table tr:last-child td { border-bottom: none; }

.ct-yes { color: var(--success); font-weight: 700; }
.ct-no { color: var(--text-muted); }

/* ============================================================
   ANIMATION SYSTEM
   ============================================================ */

/* --- Page Fade In --- */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn 0.35s ease-out both; }

/* --- Nav Entrance --- */
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.nav { animation: navSlideDown 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both; }

/* --- Hero Entrance --- */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes heroVisualReveal {
  from { opacity: 0; transform: translateX(48px) scale(0.94); }
  to   { opacity: 1; transform: translateX(0)    scale(1);    }
}

.hero-eyebrow { animation: heroReveal 0.7s cubic-bezier(0.16,1,0.3,1) 0.20s both; }
.hero-h1      { animation: heroReveal 0.8s cubic-bezier(0.16,1,0.3,1) 0.32s both; }
.hero-sub     { animation: heroReveal 0.8s cubic-bezier(0.16,1,0.3,1) 0.45s both; }
.hero-actions { animation: heroReveal 0.8s cubic-bezier(0.16,1,0.3,1) 0.57s both; }
.hero-checks  { animation: heroReveal 0.7s cubic-bezier(0.16,1,0.3,1) 0.68s both; }
.hero-visual  { animation: heroVisualReveal 1s cubic-bezier(0.16,1,0.3,1) 0.25s both; }

/* --- Orb Breathing --- */
@keyframes orbBreath {
  0%, 100% { transform: scale(1);    opacity: 1;    }
  50%       { transform: scale(1.18); opacity: 0.7;  }
}
@keyframes orbBreath2 {
  0%, 100% { transform: scale(1.12); opacity: 0.75; }
  50%       { transform: scale(0.88); opacity: 1;    }
}
.hero-orb-1 { animation: orbBreath  9s ease-in-out infinite; will-change: transform, opacity; }
.hero-orb-2 { animation: orbBreath2 11s ease-in-out infinite; will-change: transform, opacity; }

/* --- Illustration Float --- */
@keyframes floatComplex {
  0%   { transform: translateY(0px)   rotate(0deg);    }
  25%  { transform: translateY(-14px) rotate(0.4deg);  }
  50%  { transform: translateY(-22px) rotate(0deg);    }
  75%  { transform: translateY(-8px)  rotate(-0.4deg); }
  100% { transform: translateY(0px)   rotate(0deg);    }
}
.hero-visual .illus-container { animation: floatComplex 7s ease-in-out infinite; will-change: transform; }

/* --- Scroll Reveal: Base (fade up) --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Scroll Reveal: Left --- */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* --- Scroll Reveal: Right --- */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* --- Scroll Reveal: Scale --- */
.reveal-scale {
  opacity: 0;
  transform: scale(0.93) translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

/* --- Stagger Delays (auto-applied via JS to .stagger-group children) --- */
.stagger-group > *:nth-child(1)  { transition-delay:   0ms; }
.stagger-group > *:nth-child(2)  { transition-delay:  80ms; }
.stagger-group > *:nth-child(3)  { transition-delay: 160ms; }
.stagger-group > *:nth-child(4)  { transition-delay: 240ms; }
.stagger-group > *:nth-child(5)  { transition-delay: 320ms; }
.stagger-group > *:nth-child(6)  { transition-delay: 400ms; }
.stagger-group > *:nth-child(7)  { transition-delay: 480ms; }
.stagger-group > *:nth-child(8)  { transition-delay: 560ms; }

/* Transition delay utilities */
.delay-1 { transition-delay:  80ms !important; }
.delay-2 { transition-delay: 160ms !important; }
.delay-3 { transition-delay: 240ms !important; }
.delay-4 { transition-delay: 320ms !important; }
.delay-5 { transition-delay: 400ms !important; }
.delay-6 { transition-delay: 480ms !important; }

/* --- Stat Pills Entrance --- */
@keyframes statPillIn {
  from { opacity: 0; transform: scale(0.82) translateY(14px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
.stat-pill:nth-child(1) { animation: statPillIn 0.55s cubic-bezier(0.34,1.56,0.64,1) 0.65s both; }
.stat-pill:nth-child(2) { animation: statPillIn 0.55s cubic-bezier(0.34,1.56,0.64,1) 0.78s both; }
.stat-pill:nth-child(3) { animation: statPillIn 0.55s cubic-bezier(0.34,1.56,0.64,1) 0.91s both; }
.stat-pill:nth-child(4) { animation: statPillIn 0.55s cubic-bezier(0.34,1.56,0.64,1) 1.04s both; }

/* --- Label Tag Shimmer ---
   background-position is a paint op; use transform: translateX() instead
   so the compositor handles the sweep without touching the main thread.  */
@keyframes shimmer {
  0%   { transform: translateX(-200%); }
  100% { transform: translateX(200%);  }
}
.label-tag {
  position: relative;
  overflow: hidden;
}
.label-tag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.55) 50%,
    transparent 100%
  );
  animation: shimmer 2.8s ease-in-out infinite;
  border-radius: inherit;
  pointer-events: none;
  will-change: transform;
}

/* --- Featured Pricing Card Glow ---
   box-shadow is a paint op; animate opacity on a ::before layer instead
   so the compositor can skip main-thread paint work every frame.        */
@keyframes glowPulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1;    }
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  box-shadow: 0 24px 60px rgba(0,87,255,0.28), 0 0 0 6px rgba(0,87,255,0.06);
  animation: glowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
  will-change: opacity;
  z-index: -1;
}
.pricing-card { transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, box-shadow 0.35s; }
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 24px 50px rgba(0,87,255,0.14);
}

/* --- Service Card: tilt override handled by JS, card transitions defined in main block --- */

/* ============================================================
   ISOLATION SECTION — PREMIUM TWO-COLUMN REDESIGN
   ============================================================ */
.iso-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.iso-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.iso-content > .badge {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.iso-content h2 {
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.iso-content > p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.iso-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.iso-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.iso-point-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(0, 87, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.iso-point-icon .lucide {
  color: var(--primary);
  width: 17px;
  height: 17px;
}

.iso-point-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.iso-point-text p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Isolation diagram */
.iso-diagram {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(6, 13, 38, 0.07);
}

.iso-diagram-platform {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark-base);
  border-radius: var(--r-lg);
  padding: 0.875rem 1.25rem;
}

.iso-diagram-platform-icon {
  width: 30px;
  height: 30px;
  background: rgba(0, 87, 255, 0.3);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.iso-diagram-platform-icon .lucide {
  color: #60A5FA;
  width: 15px;
  height: 15px;
}

.iso-diagram-platform > span:nth-child(2) {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-text);
  flex: 1;
}

.iso-diagram-platform-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--success);
  white-space: nowrap;
}

.iso-diagram-arrow {
  display: flex;
  justify-content: center;
  padding: 0.4rem 0;
}

.iso-diagram-containers {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.iso-container {
  background: var(--light-bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.iso-container--safe {
  border-color: rgba(0, 214, 143, 0.35);
  background: rgba(0, 214, 143, 0.03);
}

.iso-container--compromised {
  border-color: rgba(255, 59, 48, 0.35);
  background: rgba(255, 59, 48, 0.03);
}

.iso-container-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.iso-container-status {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.iso-container--safe .iso-container-status { color: var(--success); }
.iso-container--compromised .iso-container-status { color: var(--red); }

.iso-container-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iso-container--safe .iso-container-icon-wrap {
  background: rgba(0, 214, 143, 0.12);
}

.iso-container--safe .iso-container-icon-wrap .lucide {
  color: var(--success);
  width: 15px;
  height: 15px;
}

.iso-container--compromised .iso-container-icon-wrap {
  background: rgba(255, 59, 48, 0.1);
}

.iso-container--compromised .iso-container-icon-wrap .lucide {
  color: var(--red);
  width: 15px;
  height: 15px;
}

.iso-container-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
}

.iso-container-tag {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: var(--r-full);
}

.iso-container-tag--safe {
  background: rgba(0, 214, 143, 0.12);
  color: var(--success);
}

.iso-container-tag--blocked {
  background: rgba(255, 59, 48, 0.1);
  color: var(--red);
}

.iso-barrier {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  gap: 0.3rem;
}

.iso-barrier-line {
  flex: 1;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--gray-300) 0,
    var(--gray-300) 4px,
    transparent 4px,
    transparent 8px
  );
  min-height: 24px;
}

.iso-barrier-label {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.iso-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.iso-dot--green {
  background: var(--success);
  box-shadow: 0 0 0 2px rgba(0, 214, 143, 0.25);
}

.iso-dot--red {
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.2);
}

.iso-diagram-caption {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 87, 255, 0.04);
  border: 1px solid rgba(0, 87, 255, 0.1);
  border-radius: var(--r-md);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.iso-diagram-caption .lucide {
  color: var(--primary);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Feature Card Hover --- */
.feature-card { transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s, border-color 0.25s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* --- CTA Orb --- */
.cta-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,255,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: orbBreath 7s ease-in-out infinite;
  pointer-events: none;
}

/* --- Button Click Ripple --- */
@keyframes btnRipple {
  0%   { transform: scale(0) translate(-50%, -50%); opacity: 0.3; }
  100% { transform: scale(3) translate(-50%, -50%); opacity: 0;   }
}
/* overflow: hidden only on non-ghost buttons to avoid clipping focus rings */
.btn-primary,
.btn-primary-light {
  overflow: hidden;
}
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  pointer-events: none;
  animation: btnRipple 0.55s ease-out forwards;
  transform-origin: center center;
}

/* --- Scroll Progress Bar --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  z-index: 1001;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* --- Tilt Card (JS-enhanced) --- */
/* NOTE: No preserve-3d — flat perspective avoids border/overflow rendering artifacts */
.tilt-card {
  transition: transform 0.1s linear;
}

/* Reduced motion: disable all decorative animations */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { transition: none; opacity: 1; transform: none !important; }
  .hero-eyebrow, .hero-h1, .hero-sub, .hero-actions, .hero-checks, .hero-visual { animation: none; }
  .hero-orb-1, .hero-orb-2, .hero-visual .illus-container, .stat-pill { animation: none; }
  .label-tag::after { animation: none; }
  .pricing-card.featured { animation: none; }
  .pricing-card.featured::before { animation: none; opacity: 1; }
  .tilt-card { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    height: 350px;
  }

  .security-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .security-visual {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.mobile-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

  .nav.mobile-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.mobile-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  .nav-mobile.open,
  .nav.mobile-open .nav-mobile {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    height: 250px;
  }

  .services-grid,
  .services-grid-2 {
    grid-template-columns: 1fr;
  }

  .services-tier-note {
    display: none;
  }

  .iso-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .inclusive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .migration-strip-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: none;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-payment {
    justify-content: flex-start;
    flex: 1 0 100%;
    order: 3;
  }

  .footer-copy {
    flex: 1 0 auto;
  }

  .footer-legal {
    flex: 0 0 auto;
  }

  .compare-wrap {
    overflow-x: auto;
  }

  .compare-table {
    min-width: 680px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0.75rem 1rem;
    gap: 1rem;
  }

  h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 4vw, 2rem); }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-checks {
    gap: 0.75rem;
  }

  .hc-item {
    font-size: 0.85rem;
  }

  section { padding: 60px 0; }

  .services-grid,
  .services-grid-2,
  .pricing-grid {
    gap: 1rem;
  }

  .inclusive-grid {
    grid-template-columns: 1fr;
  }

  .service-card-body {
    padding: 1.25rem;
  }

  .service-card-footer {
    padding: 0.875rem 1.25rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .why-card {
    flex: 0 0 100%;
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .footer-payment {
    order: 0;
  }

  .footer-copy { flex: none; }
  .footer-legal { flex: none; justify-content: flex-start; }
}

/* ============================================================
   SECTION HEADING COMPONENT — .sh
   Used on all product pages as a centered section intro block
   ============================================================ */
.sh {
  max-width: 700px;
  margin-bottom: 3rem;
}
.sh.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sh-eyebrow {
  margin-bottom: 1rem;
}
.sh h2 {
  margin-bottom: 1rem;
  line-height: 1.12;
}
.sh p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}
.sh.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PAGE-SPECIFIC STYLES — Consolidated from $page_styles
   All product/contact page CSS lives here, keyed by class name
   or body class scope where needed to prevent conflicts.
   ============================================================ */

/* ── Page accent CSS variables (VPS & Dedicated) ────────────── */
:root {
  --vps-accent:       #EA580C;
  --vps-accent-light: #FB923C;
  --vps-glow:         rgba(234,88,12,0.3);
  --ded-accent:       #7C3AED;
  --ded-accent-light: #A78BFA;
  --ded-glow:         rgba(124,58,237,0.3);
}

/* ── Shared: Feature strip (web-hosting, drupal-hosting) ─────── */
.feat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (max-width: 768px) { .feat-strip { grid-template-columns: 1fr; } }

.fs-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all var(--dur) var(--ease);
}
.fs-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); transform: translateY(-2px); }
.fs-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.fs-icon .lucide { width: 22px; height: 22px; }
.fs-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.fs-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }
.fs-card p a { color: var(--primary); font-weight: 600; text-decoration: none; }
.fs-card p a:hover { text-decoration: underline; }

/* ── Shared: Tech specs strip (all product pages) ────────────── */
.tech-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .tech-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tech-strip { grid-template-columns: 1fr; } }

.ts-item {
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.ts-item:nth-child(4n) { border-right: none; }
.ts-val {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);           /* default: web-hosting */
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.ts-lbl { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* Page-scoped ts-val color overrides */
.page-drupal    .ts-val { color: #0D9488; }
.page-vps       .ts-val { color: var(--vps-accent); }
.page-dedicated .ts-val { color: var(--ded-accent); }

/* ── Shared: Isolation callout (web-hosting, drupal-hosting) ──── */
.isolation-callout {
  background: linear-gradient(135deg, var(--dark-deep) 0%, #0B1837 100%);
  border-radius: var(--r-2xl);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 5rem 0;
}
@media (max-width: 768px) { .isolation-callout { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; } }

.iso-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(11,94,215,0.25); border: 1px solid rgba(56,160,247,0.3);
  color: var(--blue-light); border-radius: 100px;
  padding: 0.4rem 1rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.iso-h {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--dark-text); letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 1rem;
}
.iso-p { color: var(--dark-text-soft); font-size: 1rem; line-height: 1.75; }
.iso-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.iso-pt { display: flex; align-items: flex-start; gap: 0.85rem; }
.iso-pt-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(11,94,215,0.2); border: 1px solid rgba(56,160,247,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.iso-pt-icon .lucide { width: 14px; height: 14px; color: var(--blue-light); }
.iso-pt-text h5 { font-size: 0.875rem; font-weight: 600; color: var(--dark-text); margin-bottom: 0.2rem; }
.iso-pt-text p { font-size: 0.82rem; color: var(--dark-text-muted); line-height: 1.6; }

.iso-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 1.75rem;
}
.iso-vis-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.iso-vis-title { font-size: 0.8rem; font-weight: 600; color: var(--dark-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.iso-vis-badge {
  font-size: 0.7rem; background: rgba(74,222,128,0.15); color: #4ADE80;
  border: 1px solid rgba(74,222,128,0.3); border-radius: 100px;
  padding: 0.2rem 0.6rem; font-weight: 600;
}
.account-row {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.875rem 1.1rem;
  margin-bottom: 0.6rem;
}
.acc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.acc-dot-blue   { background: var(--blue-light); }
.acc-dot-green  { background: #4ADE80; }
.acc-dot-violet { background: #A78BFA; }
.acc-label { font-size: 0.82rem; color: var(--dark-text-soft); flex: 1; }
.acc-isolated {
  font-size: 0.7rem; color: #4ADE80;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25);
  padding: 0.15rem 0.5rem; border-radius: 100px; font-weight: 600;
}
.iso-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 1rem 0; }
.iso-lock-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--dark-text-muted); }
.iso-lock-row .lucide { width: 13px; height: 13px; color: #4ADE80; }

/* ── WordPress hosting page ──────────────────────────────────── */
.wp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) { .wp-feature-grid { grid-template-columns: 1fr; } }

.wp-feat {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 2rem;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl); transition: all var(--dur) var(--ease);
}
.wp-feat:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); transform: translateY(-2px); }
.wp-feat-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wp-feat-icon .lucide { width: 20px; height: 20px; }
.wp-feat h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.wp-feat p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

.toolkit-showcase {
  background: linear-gradient(135deg, #0F1A3E 0%, var(--dark-deep) 100%);
  border-radius: var(--r-2xl); padding: 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 768px) { .toolkit-showcase { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; } }
.tk-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(99,102,241,0.25); border: 1px solid rgba(165,180,252,0.3);
  color: #A5B4FC; border-radius: 100px;
  padding: 0.4rem 1rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.tk-h { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; color: var(--dark-text); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem; }
.tk-p { color: var(--dark-text-soft); font-size: 0.95rem; line-height: 1.75; }
.tk-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.75rem; }
.tk-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--dark-text-soft); }
.tk-item-dot { width: 6px; height: 6px; border-radius: 50%; background: #A5B4FC; flex-shrink: 0; }

.tk-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); overflow: hidden;
}
.tk-card-header {
  padding: 1rem 1.25rem; background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 0.75rem;
}
.tk-card-dots { display: flex; gap: 5px; }
.tk-card-dot { width: 10px; height: 10px; border-radius: 50%; }
.tk-card-title { font-size: 0.78rem; color: var(--dark-text-muted); font-weight: 600; margin-left: 0.25rem; }
.tk-card-body { padding: 1.25rem; }
.tk-site-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem; border-radius: 8px; margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.04);
}
.tk-site-icon { width: 28px; height: 28px; border-radius: 7px; background: rgba(99,102,241,0.2); display: flex; align-items: center; justify-content: center; }
.tk-site-icon .lucide { width: 13px; height: 13px; color: #A5B4FC; }
.tk-site-name { font-size: 0.82rem; font-weight: 600; color: var(--dark-text); flex: 1; }
.tk-site-status { font-size: 0.7rem; border-radius: 100px; padding: 0.15rem 0.55rem; font-weight: 600; }
.tk-status-ok  { background: rgba(74,222,128,0.15); color: #4ADE80; border: 1px solid rgba(74,222,128,0.3); }
.tk-status-upd { background: rgba(251,191,36,0.15); color: #FBBF24; border: 1px solid rgba(251,191,36,0.3); }
.tk-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.tk-btn { flex: 1; font-size: 0.72rem; border-radius: 7px; padding: 0.5rem 0.75rem; text-align: center; font-weight: 600; border: 1px solid rgba(255,255,255,0.12); color: var(--dark-text-soft); background: rgba(255,255,255,0.06); cursor: default; }
.tk-btn-primary { background: rgba(99,102,241,0.3); border-color: rgba(99,102,241,0.5); color: #A5B4FC; }

/* ── Drupal hosting page ──────────────────────────────────────── */
.drush-showcase {
  background: linear-gradient(135deg, #042f2e 0%, #0B1837 100%);
  border-radius: var(--r-2xl); padding: 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin: 5rem 0;
}
@media (max-width: 768px) { .drush-showcase { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; } }
.drush-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(13,148,136,0.25); border: 1px solid rgba(45,212,191,0.3);
  color: #2DD4BF; border-radius: 100px;
  padding: 0.4rem 1rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.drush-h { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; color: var(--dark-text); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem; }
.drush-p { color: var(--dark-text-soft); font-size: 1rem; line-height: 1.75; }
.drush-features { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.75rem; }
.drush-feat { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--dark-text-soft); }
.drush-feat .lucide { width: 15px; height: 15px; color: #2DD4BF; flex-shrink: 0; }

.terminal-card {
  background: #0a0e1a; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); overflow: hidden; font-family: 'Courier New', monospace;
}
.term-header {
  background: rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.term-dot { width: 10px; height: 10px; border-radius: 50%; }
.term-body { padding: 1.25rem 1.5rem; }
.term-line { font-size: 0.78rem; line-height: 1.9; }
.term-prompt  { color: #2DD4BF; }
.term-cmd     { color: #e2e8f0; }
.term-out     { color: #94a3b8; padding-left: 1rem; }
.term-success { color: #4ADE80; }
.term-info    { color: #60A5FA; }
.term-warn    { color: #FBBF24; }

/* ── VPS hosting page ─────────────────────────────────────────── */
.vps-feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem;
}
@media (max-width: 900px) { .vps-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .vps-feat-grid { grid-template-columns: 1fr; } }
.vf-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 1.75rem; transition: all var(--dur) var(--ease);
}
.vf-card:hover { box-shadow: var(--shadow-md); border-color: var(--vps-accent-light); transform: translateY(-2px); }
.vf-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.vf-icon .lucide { width: 20px; height: 20px; }
.vf-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.vf-card p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

.vps-plans {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 900px) { .vps-plans { grid-template-columns: 1fr; } }
.vps-plan {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-2xl); overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, box-shadow 0.35s;
}
.vps-plan:hover { border-color: var(--vps-accent); box-shadow: 0 24px 50px rgba(234,88,12,0.18); transform: translateY(-8px); }
.vps-plan-featured { border-color: var(--vps-accent); box-shadow: 0 0 0 1px var(--vps-accent), 0 20px 60px rgba(234,88,12,0.15); }
.vps-plan-featured:hover { box-shadow: 0 28px 60px rgba(234,88,12,0.28), 0 0 0 1px var(--vps-accent); transform: translateY(-11px); }
.vps-plan-header { padding: 2rem 2rem 1.5rem; }
.vps-plan-name   { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.25rem; }
.vps-plan-tagline{ font-size: 0.82rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.vps-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.vps-spec      { background: var(--gray-50); border-radius: var(--r-lg); padding: 0.875rem 1rem; }
.vps-spec-val  { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em; color: var(--vps-accent); }
.vps-spec-lbl  { font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; margin-top: 0.1rem; }
.vps-price     { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 1.25rem; }
.vps-price-amt { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; }
.vps-price-period { font-size: 0.875rem; color: var(--gray-500); }
.vps-plan-body    { padding: 0 2rem 2rem; }
.vps-plan-divider { border: none; border-top: 1px solid var(--gray-100); margin: 1.5rem 0; }
.vps-feat-list  { display: flex; flex-direction: column; gap: 0.6rem; }
.vps-feat-item  { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--gray-700); }
.vps-feat-item .lucide { width: 14px; height: 14px; color: var(--vps-accent); flex-shrink: 0; }
.vps-feat-item.muted .lucide { color: var(--gray-300); }
.vps-feat-item.muted { color: var(--gray-400); }

.resource-bar-section {
  background: var(--dark-deep); border-radius: var(--r-2xl); padding: 3.5rem; margin: 5rem 0;
}
@media (max-width: 768px) { .resource-bar-section { padding: 2rem; } }
.rb-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--dark-text); letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.rb-sub   { color: var(--dark-text-soft); font-size: 0.95rem; margin-bottom: 2.5rem; }
.rb-row   { margin-bottom: 1.75rem; }
.rb-row-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.rb-label { font-size: 0.82rem; font-weight: 600; color: var(--dark-text-soft); }
.rb-value { font-size: 0.82rem; font-weight: 700; color: var(--vps-accent-light); }
.rb-track { background: rgba(255,255,255,0.08); border-radius: 100px; height: 6px; overflow: hidden; }
.rb-fill  { height: 100%; border-radius: 100px; transition: width 1.2s cubic-bezier(0.34,1.56,0.64,1); }
.rb-fill-orange { background: linear-gradient(90deg, var(--vps-accent), var(--vps-accent-light)); }
.rb-fill-blue   { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.rb-fill-green  { background: linear-gradient(90deg, #16A34A, #4ADE80); }
.rb-plans-legend { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.rb-legend-item  { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--dark-text-muted); }
.rb-legend-dot   { width: 10px; height: 10px; border-radius: 50%; }

/* ── Dedicated servers page ───────────────────────────────────── */
.ded-feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem;
}
@media (max-width: 900px) { .ded-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ded-feat-grid { grid-template-columns: 1fr; } }
.df-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 1.75rem; transition: all var(--dur) var(--ease);
}
.df-card:hover { box-shadow: var(--shadow-md); border-color: var(--ded-accent-light); transform: translateY(-2px); }
.df-icon-wrap { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.df-icon-wrap .lucide { width: 20px; height: 20px; }
.df-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.df-card p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

.baremetal-callout {
  background: linear-gradient(135deg, #1a0533 0%, #0B1837 100%);
  border-radius: var(--r-2xl); padding: 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin: 5rem 0;
}
@media (max-width: 768px) { .baremetal-callout { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; } }
.bm-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(124,58,237,0.2); border: 1px solid rgba(167,139,250,0.3);
  color: var(--ded-accent-light); border-radius: 100px;
  padding: 0.4rem 1rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.bm-h { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; color: var(--dark-text); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem; }
.bm-p { color: var(--dark-text-soft); font-size: 1rem; line-height: 1.75; margin-bottom: 1.75rem; }
.bm-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bm-stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); padding: 1.25rem; }
.bm-stat-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ded-accent-light); letter-spacing: -0.03em; margin-bottom: 0.2rem; }
.bm-stat-lbl { font-size: 0.75rem; color: var(--dark-text-muted); font-weight: 500; }

.server-visual { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-xl); padding: 1.75rem; }
.sv-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.sv-title  { font-size: 0.78rem; font-weight: 600; color: var(--dark-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.sv-status { display: flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; color: #4ADE80; font-weight: 600; }
.sv-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; animation: sv-pulse 2s infinite; }
@keyframes sv-pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.sv-component { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 0.75rem 1rem; margin-bottom: 0.5rem; }
.sv-comp-left { display: flex; align-items: center; gap: 0.6rem; }
.sv-comp-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.sv-comp-name { font-size: 0.8rem; font-weight: 600; color: var(--dark-text-soft); }
.sv-comp-spec { font-size: 0.72rem; color: var(--dark-text-muted); }
.sv-comp-bar  { width: 60px; height: 5px; background: rgba(255,255,255,0.08); border-radius: 100px; overflow: hidden; }
.sv-comp-fill { height: 100%; border-radius: 100px; }
.sv-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 1rem 0; }
.sv-footer { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--dark-text-muted); }
.sv-footer .lucide { width: 13px; height: 13px; color: var(--ded-accent-light); }

.ded-plans {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 1024px) { .ded-plans { grid-template-columns: 1fr; } }
.ded-plan {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-2xl); overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, box-shadow 0.35s;
}
.ded-plan:hover { border-color: var(--ded-accent); box-shadow: 0 24px 50px rgba(124,58,237,0.18); transform: translateY(-8px); }
.ded-plan-featured { border-color: var(--ded-accent); box-shadow: 0 0 0 1px var(--ded-accent), 0 20px 60px rgba(124,58,237,0.15); }
.ded-plan-featured:hover { box-shadow: 0 28px 60px rgba(124,58,237,0.28), 0 0 0 1px var(--ded-accent); transform: translateY(-11px); }
.ded-plan-top    { padding: 2rem; border-bottom: 1px solid var(--gray-100); }
.ded-plan-name   { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.2rem; }
.ded-plan-tagline{ font-size: 0.82rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.ded-hw-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.ded-hw      { background: var(--gray-50); border-radius: var(--r-lg); padding: 0.875rem 1rem; }
.ded-hw-val  { font-family: var(--font-display); font-size: 1rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.15rem; color: var(--ded-accent); }
.ded-hw-lbl  { font-size: 0.68rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }
.ded-price   { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 1.25rem; }
.ded-price-amt    { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; }
.ded-price-period { font-size: 0.875rem; color: var(--gray-500); }
.ded-plan-body { padding: 1.5rem 2rem 2rem; }
.ded-feat-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.ded-feat-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--gray-700); }
.ded-feat-item .lucide { width: 14px; height: 14px; color: var(--ded-accent); flex-shrink: 0; }

.mgmt-tabs {
  display: inline-flex; background: var(--gray-100);
  border-radius: 100px; padding: 4px; margin-bottom: 3rem;
}
.mgmt-tab {
  padding: 0.5rem 1.25rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; color: var(--gray-500);
  cursor: pointer; transition: all 0.2s ease;
}
.mgmt-tab.active { background: var(--white); color: var(--text-primary); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

/* ── Contact page ─────────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--dark-base) 0%, #0A1535 60%, #0B1837 100%);
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 70% 40%, rgba(0,87,255,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,198,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.contact-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.contact-hero-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 3rem;
  align-items: center; position: relative; z-index: 1;
}
@media (max-width: 860px) {
  .contact-hero-inner { grid-template-columns: 1fr; }
  .contact-hero-cards { display: none; }
}
.contact-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem); color: var(--dark-text);
  line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 1.25rem; max-width: 620px;
}
.contact-hero h1 span {
  background: linear-gradient(135deg, #60A5FA 0%, #38BDF8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.contact-hero .lead {
  font-size: 1.05rem; color: var(--dark-text-soft);
  max-width: 500px; line-height: 1.8; margin-bottom: 2rem;
}
.contact-hero-chips { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.contact-hero-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75); border-radius: 100px;
  padding: 0.4rem 0.9rem; font-size: 0.78rem; font-weight: 500; backdrop-filter: blur(6px);
}
.contact-hero-chip svg { opacity: 0.7; flex-shrink: 0; }

.contact-hero-cards { display: flex; flex-direction: column; gap: 0.85rem; width: 230px; }
.chc {
  background: rgba(8,14,40,0.85); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 1.1rem 1.25rem; backdrop-filter: blur(12px);
}
.chc-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.35rem;
}
.chc-value {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  color: #fff; letter-spacing: -0.04em; line-height: 1;
}
.chc-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }
.chc-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #4ADE80; margin-right: 0.35rem; box-shadow: 0 0 6px #4ADE80;
}

.hours-strip { background: var(--white); border-bottom: 1px solid var(--gray-100); }
.hours-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
@media (max-width: 640px) { .hours-grid { grid-template-columns: 1fr; } }
.hours-cell {
  padding: 2.75rem 3rem; border-right: 1px solid var(--gray-100);
  display: flex; align-items: flex-start; gap: 1.25rem;
}
.hours-cell:last-child { border-right: none; }
.hours-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hours-icon .lucide { width: 22px; height: 22px; }
.hours-cell h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.3rem; }
.hours-cell p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.hours-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: #F0FDF4; border: 1px solid #BBF7D0; color: #16A34A;
  border-radius: 100px; padding: 0.25rem 0.7rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; margin-top: 0.6rem;
}
.hours-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #16A34A; }

.contact-layout {
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem;
  align-items: start; padding: 80px 0;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }

.contact-form-wrap {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-2xl); padding: 2.5rem; box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.4rem; }
.contact-form-wrap > p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); letter-spacing: 0.01em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--r-lg);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none; box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,87,255,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-group select { appearance: none; cursor: pointer; }

.form-submit {
  width: 100%; padding: 0.85rem 1.5rem;
  background: var(--primary); color: #fff; border: none;
  border-radius: var(--r-lg); font-family: var(--font-body);
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.5rem;
}
.form-submit:hover { background: #0048d9; transform: translateY(-1px); }
.form-submit .lucide { width: 16px; height: 16px; }
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; line-height: 1.5; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 1.75rem;
}
.cic-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem; }
.cic-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cic-icon .lucide { width: 18px; height: 18px; }
.cic-header h3 { font-size: 0.95rem; font-weight: 700; margin: 0; }
.contact-info-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; margin: 0 0 0.75rem; }
.contact-info-card p:last-child { margin-bottom: 0; }
.contact-info-card a { color: var(--primary); font-weight: 600; font-size: 0.86rem; transition: color var(--dur) var(--ease); }
.contact-info-card a:hover { color: #0048d9; }

.cic-time-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0; border-bottom: 1px solid var(--gray-100); font-size: 0.84rem;
}
.cic-time-row:last-child { border-bottom: none; padding-bottom: 0; }
.cic-day  { color: var(--text-muted); }
.cic-time { color: var(--text-primary); font-weight: 600; }
.cic-time.always-on { color: #16A34A; display: flex; align-items: center; gap: 0.35rem; }
.cic-time.always-on::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #16A34A; display: inline-block;
}

.contact-promo-card {
  background: linear-gradient(135deg, var(--dark-deep) 0%, #0B1837 100%);
  border-radius: var(--r-xl); padding: 2rem; position: relative; overflow: hidden;
}
.contact-promo-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,87,255,0.25) 0%, transparent 70%);
}
.contact-promo-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark-text); margin-bottom: 0.5rem; position: relative; }
.contact-promo-card p  { font-size: 0.84rem; color: var(--dark-text-muted); line-height: 1.65; margin-bottom: 1.25rem; position: relative; }
.contact-promo-card a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--primary); color: #fff;
  padding: 0.6rem 1.1rem; border-radius: var(--r-lg);
  font-size: 0.84rem; font-weight: 700;
  transition: background var(--dur) var(--ease); position: relative;
}
.contact-promo-card a:hover { background: #0048d9; }
.contact-promo-card a .lucide { width: 14px; height: 14px; }

/* CTA section responsive fix (contact page layout) */
@media (max-width: 768px) {
  .cta-section [style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Security page ────────────────────────────────────────────── */
.security-layer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .security-layer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .security-layer-grid { grid-template-columns: 1fr; } }

.sl-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.sl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sl-color, var(--primary));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.sl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sl-card:hover::before { opacity: 1; }

.sl-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.sl-icon .lucide { width: 24px; height: 24px; }
.sl-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.sl-card p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; }

/* Imunify deep-dive */
.imunify-section {
  background: linear-gradient(135deg, #020B24 0%, #061438 60%, #071C45 100%);
  border-radius: var(--r-2xl);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin: 5rem 0;
}
@media (max-width: 900px) { .imunify-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; } }

.imu-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,198,255,0.15); border: 1px solid rgba(0,198,255,0.3);
  color: #67E8F9; border-radius: 100px;
  padding: 0.4rem 1rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.imu-h { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--dark-text); letter-spacing: -0.04em; line-height: 1.12; margin-bottom: 1rem; }
.imu-p { color: var(--dark-text-soft); font-size: 1rem; line-height: 1.8; }

.imu-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.imu-feat {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-lg);
}
.imu-feat-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(0,198,255,0.15); border: 1px solid rgba(0,198,255,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.imu-feat-icon .lucide { width: 16px; height: 16px; color: #67E8F9; }
.imu-feat-text h5 { font-size: 0.9rem; font-weight: 700; color: var(--dark-text); margin-bottom: 0.2rem; }
.imu-feat-text p  { font-size: 0.82rem; color: var(--dark-text-muted); line-height: 1.65; margin: 0; }

/* Imunify scan log visual */
.imu-scan-log {
  background: #050D24;
  border: 1px solid rgba(0,198,255,0.2);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.imu-log-header {
  padding: 0.875rem 1.25rem;
  background: rgba(0,198,255,0.08);
  border-bottom: 1px solid rgba(0,198,255,0.15);
  display: flex; align-items: center; justify-content: space-between;
}
.imu-log-title { font-size: 0.78rem; font-weight: 700; color: #67E8F9; font-family: monospace; letter-spacing: 0.05em; }
.imu-log-badge {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.7rem; color: #4ADE80; font-weight: 600;
}
.imu-log-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; animation: sv-pulse 2s infinite; }
.imu-log-body { padding: 1rem 1.25rem; font-family: 'Courier New', monospace; }
.imu-log-line { font-size: 0.72rem; line-height: 2; display: flex; gap: 0.75rem; align-items: baseline; }
.imu-log-time { color: rgba(255,255,255,0.25); flex-shrink: 0; width: 70px; }
.imu-log-ok   { color: #4ADE80; }
.imu-log-warn { color: #FBBF24; }
.imu-log-block{ color: #F87171; }
.imu-log-info { color: #67E8F9; }

/* FAQ section */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; border: 1.5px solid var(--gray-200); border-radius: var(--r-2xl); }
.faq-item { border-bottom: 1px solid var(--gray-100); overflow: hidden; }
.faq-item:first-child { border-radius: calc(var(--r-2xl) - 2px) calc(var(--r-2xl) - 2px) 0 0; }
.faq-item:last-child { border-bottom: none; border-radius: 0 0 calc(var(--r-2xl) - 2px) calc(var(--r-2xl) - 2px); }
.faq-item:only-child { border-radius: calc(var(--r-2xl) - 2px); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem; cursor: pointer;
  font-size: 1rem; font-weight: 700; color: var(--text-primary);
  letter-spacing: -0.01em; line-height: 1.4;
  transition: background var(--dur) var(--ease);
  background: var(--white);
  list-style: none;
  -webkit-appearance: none;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q summary { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.faq-q::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.faq-toggle .lucide { width: 14px; height: 14px; color: var(--text-muted); }
details[open] .faq-toggle { background: var(--primary); transform: rotate(45deg); }
details[open] .faq-toggle .lucide { color: #fff; }
.faq-a {
  padding: 0 2rem 1.5rem;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
  background: var(--white);
}

/* Security stats row */
.security-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin: 4rem 0;
}
@media (max-width: 768px) { .security-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .security-stats { grid-template-columns: 1fr; } }
.sec-stat {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--gray-100);
  text-align: center;
}
.sec-stat:last-child { border-right: none; }
.sec-stat-val {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 800;
  color: var(--primary); letter-spacing: -0.05em;
  line-height: 1; margin-bottom: 0.4rem;
}
.sec-stat-lbl { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; line-height: 1.4; }

/* ============================================================
   CONVERSION ELEMENTS — Trust Feature Bar, Tech Stack Strip,
   Page Related Bar, Why Section Enhancements
   ============================================================ */

/* ── Trust Feature Bar (homepage, replaces stat pills) ─────── */
.trust-feat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin: 0 auto;
  max-width: 960px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
  .trust-feat-bar { grid-template-columns: 1fr; max-width: 100%; }
}
.tfb-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--gray-100);
  transition: background 0.2s;
}
.tfb-item:last-child { border-right: none; }
@media (max-width: 768px) {
  .tfb-item { border-right: none; border-bottom: 1px solid var(--gray-100); padding: 1.5rem; }
  .tfb-item:last-child { border-bottom: none; }
}
.tfb-icon {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--r-lg);
  background: var(--primary-light);  /* now defined: #EEF7FF */
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.tfb-icon svg { width: 1.15rem; height: 1.15rem; }
.tfb-label {
  font-size: 0.875rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem; line-height: 1.3;
}
.tfb-desc {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.55;
}

/* ── Tech Stack Strip (inside why section — dark background) ─── */
.tech-stack-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08); /* visible on dark bg */
}
.tss-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--dark-text-muted);  /* readable on dark */
  width: 100%; text-align: center; margin-bottom: 0.35rem;
}
.tss-item {
  font-size: 0.78rem; font-weight: 600;
  color: var(--dark-text-soft);               /* light text on glass pill (dark bg) */
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  white-space: nowrap;
}

/* ── Page Related Bar (product pages, above footer CTA) ─────── */
.page-related-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.25rem 0;
}
.prb-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1rem;
}
.prb-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text-muted);
  margin-right: 0.5rem; flex-shrink: 0;
}
@media (max-width: 640px) {
  .prb-label { flex-basis: 100%; margin-right: 0; margin-bottom: 0.25rem; }
}
.prb-link {
  font-size: 0.8rem; font-weight: 600;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  min-height: 2rem;
  display: inline-flex; align-items: center;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.prb-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES — Icon color variants, CTA layouts, text helpers
   ═══════════════════════════════════════════════════════════════ */

/* ── Light-section icon color variants ──────────────────────────
   Apply alongside any icon-container class (.fs-icon, .wp-feat-icon,
   .vf-icon, .df-icon-wrap, .sl-icon, .hours-icon, .cic-icon,
   .value-icon, .step-icon, .term-icon, .pc-icon, etc.)
   ─────────────────────────────────────────────────────────────── */
.ic-blue   { background: #EEF5FF; }
.ic-blue   .lucide, .ic-blue   i[data-lucide] { color: var(--blue); }

.ic-purple { background: #FAF5FF; }
.ic-purple .lucide, .ic-purple i[data-lucide] { color: #9333EA; }

.ic-green  { background: #F0FDF4; }
.ic-green  .lucide, .ic-green  i[data-lucide] { color: var(--green); }

.ic-teal   { background: #F0FDFA; }
.ic-teal   .lucide, .ic-teal   i[data-lucide] { color: #0D9488; }

.ic-amber  { background: #FFFBEB; }
.ic-amber  .lucide, .ic-amber  i[data-lucide] { color: #D97706; }

.ic-orange { background: #FFF7ED; }
.ic-orange .lucide, .ic-orange i[data-lucide] { color: #EA580C; }

.ic-indigo { background: #EFF0FF; }
.ic-indigo .lucide, .ic-indigo i[data-lucide] { color: #6366F1; }

.ic-red    { background: #FFF1F2; }
.ic-red    .lucide, .ic-red    i[data-lucide] { color: #E11D48; }

/* ── Dark-section why-card icon variants (index.php) ────────────
   Apply to .why-card-icon alongside these modifier classes
   ─────────────────────────────────────────────────────────────── */
.wci-blue   { background: rgba(0,87,255,0.15);   border-color: rgba(0,87,255,0.3); }
.wci-blue   .lucide, .wci-blue   i[data-lucide] { color: #60A5FA; }

.wci-green  { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.3); }
.wci-green  .lucide, .wci-green  i[data-lucide] { color: #34D399; }

.wci-amber  { background: rgba(245,158,11,0.15); border-color: rgba(245,158,11,0.3); }
.wci-amber  .lucide, .wci-amber  i[data-lucide] { color: #FCD34D; }

.wci-purple { background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.3); }
.wci-purple .lucide, .wci-purple i[data-lucide] { color: #A78BFA; }

.wci-cyan   { background: rgba(6,182,212,0.15);  border-color: rgba(6,182,212,0.3); }
.wci-cyan   .lucide, .wci-cyan   i[data-lucide] { color: #67E8F9; }

.wci-pink   { background: rgba(236,72,153,0.15); border-color: rgba(236,72,153,0.3); }
.wci-pink   .lucide, .wci-pink   i[data-lucide] { color: #F9A8D4; }

/* ── CTA section layout helpers ─────────────────────────────────
   Used in CTA sections across all pages
   ─────────────────────────────────────────────────────────────── */
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.cta-actions.centered { justify-content: center; }

/* ── Dark CTA section heading and body copy ─────────────────────
   Replaces repeated long font-family/size/weight/color inline styles
   on h2/h3 and p elements inside dark CTA sections
   ─────────────────────────────────────────────────────────────── */
.dark-cta-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark-text);
  letter-spacing: -0.04em;
  margin: 1rem 0;
  line-height: 1.1;
}
.dark-cta-h.sm {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}
.dark-cta-h.lg {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
}
.dark-cta-p {
  color: var(--dark-text-soft);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.dark-cta-p.sm { font-size: 0.975rem; max-width: 420px; margin-bottom: 1.75rem; }

/* ── Icon link — small primary-colored icon+text row ────────────
   e.g. contact page sidebar links
   ─────────────────────────────────────────────────────────────── */
.icon-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.icon-link:hover { color: #0048d9; }
.icon-link .lucide, .icon-link i[data-lucide] { width: 15px; height: 15px; flex-shrink: 0; }
.icon-link-stack { display: flex; flex-direction: column; gap: 0.6rem; }

/* ── CTA checklist item label (dark section) ────────────────────
   e.g. "No setup fees", "30-day money-back" items
   ─────────────────────────────────────────────────────────────── */
.cta-check-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ── Prose body paragraphs (light section, body copy) ───────────
   e.g. about page story paragraphs
   ─────────────────────────────────────────────────────────────── */
.body-prose {
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.body-prose:last-child { margin-bottom: 0; }

/* ── Plan / spec card icon wrap ─────────────────────────────────
   Small icon badge in plan card headers (VPS, Dedicated)
   ─────────────────────────────────────────────────────────────── */
.plan-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

/* ── VPS monitoring stat icon (dark card, orange glass) ─────────
   Used for the 4 resource stat rows in vps-hosting.php spec panel
   ─────────────────────────────────────────────────────────────── */
.vps-stat-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(234, 88, 12, 0.15);
  border: 1px solid rgba(251, 146, 60, 0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── Terminal log muted text ─────────────────────────────────── */
.term-muted { color: rgba(255, 255, 255, 0.55); }

/* ── Inline icon sizing helpers ─────────────────────────────────
   For small Lucide icons inside badges, pills, buttons
   ─────────────────────────────────────────────────────────────── */
.icon-2xs { width: 12px !important; height: 12px !important; }
.icon-xs  { width: 13px !important; height: 13px !important; }
.icon-sm  { width: 15px !important; height: 15px !important; }
.icon-md  { width: 18px !important; height: 18px !important; }
.icon-lg  { width: 20px !important; height: 20px !important; }
.icon-xl  { width: 22px !important; height: 22px !important; }

/* ── CTA section compact variant (legal pages) ──────────────────
   Reduced padding for compact mini-CTA blocks
   ─────────────────────────────────────────────────────────────── */
.cta-section.cta-compact { padding: 60px 0; }
