/* ============================================
   NETCOM MAIN SITE — Design System
   Brand: Mist Blue + Bright Aqua
   Typography: DM Sans + Cormorant Garamond
   Soft, welcoming, professional
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Primary Brand Palette */
  --mist-blue: #A8CDD8;           /* PRIMARY — logo, subtle accents, backgrounds */
  --mist-blue-soft: #D1E4EB;      /* lighter variant */
  --mist-blue-pale: #EEF6F9;      /* very soft wash */
  --mist-blue-deep: #7FB2C2;      /* deeper variant */

  --aqua: #2FC3E5;                /* ACCENT — buttons, links, highlights, hover */
  --aqua-hover: #24A8C7;
  --aqua-light: #5FD2EB;
  --aqua-soft: #E6F7FB;

  /* Deep Neutrals (text + nav) */
  --slate: #111827;               /* PRIMARY TEXT */
  --steel: #59656F;               /* UI background / nav */
  --steel-dark: #3F4951;
  --steel-light: #7A8691;

  /* Light Neutrals */
  --white: #FFFFFF;
  --soft-gray: #F8FAFC;           /* page background */
  --soft-gray-2: #F1F5F9;
  --gray-100: #E8EEF3;
  --gray-200: #CBD5DC;
  --gray-300: #A0ADB7;
  --gray-400: #7A8691;
  --gray-500: #59656F;
  --gray-600: #3F4951;
  --gray-700: #2A3239;
  --gray-800: #1A2128;

  /* Status */
  --success: #10B981;
  --error: #EF4444;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1280px;
  --container-padding: 0 32px;

  /* Shadows — soft */
  --shadow-sm: 0 1px 3px rgba(17, 24, 39, 0.05);
  --shadow-md: 0 4px 16px rgba(17, 24, 39, 0.06);
  --shadow-lg: 0 12px 32px rgba(17, 24, 39, 0.08);
  --shadow-xl: 0 24px 48px rgba(17, 24, 39, 0.10);
  --shadow-aqua: 0 8px 24px rgba(47, 195, 229, 0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--slate);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  letter-spacing: -0.02em;
  font-weight: 500;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.005em;
}

p {
  margin-bottom: 1rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--aqua);
  margin-bottom: 20px;
  display: inline-block;
}

.section-label--mist {
  color: var(--mist-blue-deep);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--steel);
  max-width: 640px;
  line-height: 1.75;
  font-weight: 400;
}

.section-subtitle.centered {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.15;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--aqua);
  color: var(--white);
  border-color: var(--aqua);
  box-shadow: 0 4px 14px rgba(47, 195, 229, 0.25);
}

.btn--primary:hover {
  background: var(--aqua-hover);
  border-color: var(--aqua-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-aqua);
}

.btn--secondary {
  background: transparent;
  color: var(--slate);
  border-color: var(--gray-200);
}

.btn--secondary:hover {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--slate);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--soft-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: rgba(255, 255, 255, 0.85);
  color: var(--slate);
  border-color: rgba(168, 205, 216, 0.6);
  backdrop-filter: blur(8px);
}

.btn--outline-white:hover {
  background: var(--white);
  border-color: var(--aqua);
  color: var(--aqua-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(47, 195, 229, 0.18);
}

/* Dark variant for dark backgrounds */
.btn--outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--aqua);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost:hover {
  color: var(--aqua-hover);
  gap: 12px;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.8125rem;
  letter-spacing: 0.025em;
}

.btn--lg {
  padding: 17px 36px;
  font-size: 0.9375rem;
  letter-spacing: 0.025em;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 24px 0;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04), var(--shadow-sm);
  padding: 15px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  gap: 28px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Netcom globe icon beside the wordmark in the nav */
.nav__brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(47, 195, 229, 0.20));
  transition: filter var(--transition), transform var(--transition);
}

.nav__brand:hover .nav__brand-logo {
  transform: translateY(-1px) rotate(-2deg);
}

.nav__logo {
  height: 42px;
  width: auto;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate);
  transition: color var(--transition);
  letter-spacing: -0.005em;
  line-height: 1.1;
}

.nav__brand-tagline {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--steel);
  transition: color var(--transition);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel);
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--aqua-hover);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--aqua);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav__portal-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--steel);
  transition: all var(--transition);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.nav__portal-link svg {
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform var(--transition);
}

.nav__portal-link:hover {
  color: var(--aqua-hover);
  border-color: var(--aqua);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px rgba(47, 195, 229, 0.14);
}

.nav__portal-link:hover svg {
  transform: translate(1px, -1px);
}

.nav__cta {
  padding: 12px 24px;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- Dropdown Menu --- */
.nav__item--has-dropdown {
  position: relative;
}

.nav__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav__caret {
  transition: transform var(--transition);
  opacity: 0.7;
}

.nav__item--has-dropdown:hover .nav__caret,
.nav__item--has-dropdown.open .nav__caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--mist-blue-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 48px -16px rgba(17, 24, 39, 0.22), 0 4px 12px -2px rgba(47, 195, 229, 0.10);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--mist-blue-soft);
  border-left: 1px solid var(--mist-blue-soft);
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown,
.nav__item--has-dropdown.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown li {
  list-style: none;
}

.nav__dropdown a {
  display: block;
  padding: 11px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.015em;
}

.nav__dropdown a:hover {
  background: var(--mist-blue-pale);
  color: var(--aqua-hover);
  transform: translateX(2px);
}

/* Mobile Menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--slate);
  transition: all var(--transition);
  border-radius: 2px;
}

/* --- Hero Section (Bright Modern Mesh Gradient) --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    /* Aurora mesh gradient — soft aqua + mist blue orbs */
    radial-gradient(ellipse 58% 50% at 8% 18%, rgba(47, 195, 229, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 50% 45% at 92% 12%, rgba(168, 205, 216, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 85% 88%, rgba(47, 195, 229, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse 50% 45% at 18% 92%, rgba(127, 178, 194, 0.24) 0%, transparent 58%),
    radial-gradient(ellipse 35% 28% at 52% 48%, rgba(255, 255, 255, 0.55) 0%, transparent 60%),
    /* Crisp near-white base */
    linear-gradient(180deg, #FCFEFF 0%, #FFFFFF 45%, #F2F9FC 100%);
  overflow: hidden;
  padding-top: 168px;
  padding-bottom: 100px;
  color: var(--slate);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 20% 25%, rgba(47, 195, 229, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 48% 35% at 80% 78%, rgba(111, 226, 255, 0.12) 0%, transparent 55%);
  animation: heroGlow 18s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(47, 195, 229, 0.22) 1px, transparent 0);
  background-size: 44px 44px;
  opacity: 0.45;
  mask-image: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  pointer-events: none;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.55; }
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

/* Hero Visual — Floating device cards */
.hero__visual {
  position: relative;
  z-index: 2;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 195, 229, 0.18) 0%, rgba(168, 205, 216, 0.14) 40%, transparent 70%);
  animation: pulseOrb 6s ease-in-out infinite;
  filter: blur(4px);
}

@keyframes pulseOrb {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero__rings {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1.5px solid rgba(47, 195, 229, 0.28);
  animation: spinRing 40s linear infinite;
}

.hero__rings::before,
.hero__rings::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(127, 178, 194, 0.35);
}

.hero__rings::before {
  inset: 40px;
  animation: spinRing 25s linear infinite reverse;
}

.hero__rings::after {
  inset: 85px;
  border-style: solid;
  border-color: rgba(47, 195, 229, 0.22);
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__device {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 205, 216, 0.35);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow:
    0 20px 48px rgba(11, 22, 40, 0.10),
    0 6px 18px rgba(47, 195, 229, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: floatCard 8s ease-in-out infinite;
}

.hero__device-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--mist-blue) 0%, var(--aqua) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(47, 195, 229, 0.35);
}

.hero__device-label {
  color: var(--steel);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 2px;
  opacity: 0.75;
}

.hero__device-name {
  color: var(--slate);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero__device-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.6875rem;
  color: var(--aqua-hover);
  font-weight: 600;
}

.hero__device-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: blinkDot 2s ease-in-out infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__device--1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero__device--2 {
  top: 42%;
  right: 0;
  animation-delay: 2s;
}

.hero__device--3 {
  bottom: 10%;
  left: 12%;
  animation-delay: 4s;
}

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

.hero__center-logo {
  position: relative;
  z-index: 3;
  width: 140px;
  height: 140px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--mist-blue) 0%, var(--aqua) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 30px 60px rgba(47, 195, 229, 0.35),
    0 0 0 8px rgba(47, 195, 229, 0.10),
    0 0 0 16px rgba(47, 195, 229, 0.05);
  animation: pulseLogo 4s ease-in-out infinite;
}

.hero__center-logo-text {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

@keyframes pulseLogo {
  0%, 100% { box-shadow: 0 30px 60px rgba(47, 195, 229, 0.35), 0 0 0 8px rgba(47, 195, 229, 0.10), 0 0 0 16px rgba(47, 195, 229, 0.05); }
  50% { box-shadow: 0 30px 60px rgba(47, 195, 229, 0.45), 0 0 0 14px rgba(47, 195, 229, 0.12), 0 0 0 28px rgba(47, 195, 229, 0.06); }
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    height: 420px;
  }

  .hero__orb,
  .hero__rings {
    width: 380px;
    height: 380px;
  }

  .hero__center-logo {
    width: 120px;
    height: 120px;
  }

  .hero__center-logo-text {
    font-size: 3.25rem;
  }
}

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

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 195, 229, 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--aqua-hover);
  margin-bottom: 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 6px 20px rgba(47, 195, 229, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero h1 {
  color: var(--slate);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #2FC3E5 0%, #1AB3D5 50%, #7FB2C2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 1.1875rem;
  color: var(--steel);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(11, 22, 40, 0.10);
  flex-wrap: wrap;
  grid-column: 1 / -1;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 500;
  background: linear-gradient(135deg, #2FC3E5 0%, #1AB3D5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--steel);
  margin-top: 8px;
  font-weight: 500;
}

/* --- Sections --- */
.section {
  padding: var(--section-padding);
}

.section--soft {
  background: var(--soft-gray);
}

.section--mist {
  background: var(--mist-blue-pale);
}

.section--slate {
  background: var(--slate);
}

.section--slate h2,
.section--slate h3,
.section--slate p {
  color: var(--white);
}

.section--slate .section-label {
  color: var(--aqua-light);
}

.section--slate .section-subtitle {
  color: rgba(255, 255, 255, 0.68);
}

.section__header {
  margin-bottom: 64px;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  margin-top: -4px;
  border-color: var(--mist-blue-soft);
}

.card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--mist-blue) 0%, var(--aqua) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(47, 195, 229, 0.2);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 12px;
  line-height: 1.25;
}

.card__text {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 400;
}

.card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--aqua);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.card__link:hover {
  gap: 10px;
  color: var(--aqua-hover);
}

/* --- Grid Layouts --- */
.grid {
  display: grid;
  gap: 32px;
}

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

/* --- Stats Bar --- */
.stats-bar {
  background: linear-gradient(135deg, var(--slate) 0%, #1B2A3F 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(47, 195, 229, 0.1) 0%, transparent 50%);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stats-bar__item {
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-bar__item:last-child {
  border-right: none;
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 500;
  color: var(--aqua);
  line-height: 1;
  letter-spacing: -0.01em;
}

.stats-bar__label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 10px;
  font-weight: 400;
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 56px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trust-bar__item {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-bar__item svg {
  color: var(--aqua);
  flex-shrink: 0;
}

/* --- Process/Steps Section --- */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: step;
  position: relative;
}

.process__step {
  position: relative;
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.process__step:hover {
  border-color: var(--mist-blue-soft);
  box-shadow: var(--shadow-md);
  margin-top: -4px;
}

.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 500;
  color: var(--mist-blue);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

.process__step h3 {
  margin-bottom: 12px;
}

.process__step p {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* --- Testimonial --- */
.testimonial {
  background: var(--mist-blue-pale);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  position: relative;
  border: 1px solid var(--mist-blue-soft);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 32px;
  left: 48px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 500;
  color: var(--mist-blue);
  line-height: 0.8;
  opacity: 0.6;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.testimonial__author {
  font-weight: 600;
  color: var(--slate);
  font-size: 1rem;
}

.testimonial__role {
  color: var(--steel);
  font-size: 0.875rem;
  margin-top: 4px;
}

/* --- Solution Picker (Interactive Tiles) --- */
.solution-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.solution-tile {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border: 1.5px solid rgba(168, 205, 216, 0.4);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--slate);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.solution-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 205, 216, 0.12) 0%, rgba(47, 195, 229, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.solution-tile:hover {
  transform: translateY(-6px);
  border-color: var(--aqua);
  box-shadow: 0 24px 56px rgba(47, 195, 229, 0.22), 0 8px 20px rgba(17, 24, 39, 0.06);
}

.solution-tile:hover::before {
  opacity: 1;
}

.solution-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mist-blue) 0%, var(--aqua) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 8px 20px rgba(47, 195, 229, 0.28);
}

.solution-tile__content {
  position: relative;
  flex: 1;
}

.solution-tile__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 12px;
  line-height: 1.2;
}

.solution-tile__text {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-tile__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aqua-hover);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: gap 0.25s ease;
}

.solution-tile:hover .solution-tile__cta {
  gap: 12px;
}

.solution-tile__cta svg {
  transition: transform 0.25s ease;
}

.solution-tile:hover .solution-tile__cta svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .solution-picker {
    grid-template-columns: 1fr;
  }
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #0E1825 0%, #111827 50%, #1B2A3F 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 195, 229, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 205, 216, 0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 500;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1875rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Contact Form --- */
.form {
  max-width: 100%;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
  letter-spacing: 0.005em;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--slate);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  font-weight: 400;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-300);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(47, 195, 229, 0.12);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --- Footer --- */
/* --- Slim Centered Footer (logo middle, contact stacked L/R) --- */
.footer {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.62);
  padding: 48px 0 22px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--aqua) 50%, transparent 100%);
  opacity: 0.35;
}

/* Three-column hero row: contact-left | logo | contact-right */
.footer__hero {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 28px;
}

.footer__contact-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.footer__contact-col--left {
  align-items: flex-end;
  text-align: right;
}

.footer__contact-col--right {
  align-items: flex-start;
  text-align: left;
}

.footer__contact-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  line-height: 1.3;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.footer__contact-col--left .footer__contact-line {
  flex-direction: row-reverse;
}

.footer__contact-line svg {
  color: var(--aqua);
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity var(--transition);
}

a.footer__contact-line:hover {
  color: var(--white);
}

a.footer__contact-line:hover svg {
  opacity: 1;
}

.footer__contact-line--static {
  cursor: default;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.footer__logo-link {
  display: inline-block;
  flex-shrink: 0;
}

.footer__logo {
  display: block;
  width: 148px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 22px rgba(47, 195, 229, 0.30));
  transition: transform var(--transition), filter var(--transition);
}

.footer__logo-link:hover .footer__logo {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 24px rgba(47, 195, 229, 0.42));
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 26px;
  padding: 16px 0;
  margin-bottom: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--transition);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--aqua);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer__copy {
  letter-spacing: 0.01em;
}

/* --- Utility --- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.pt-0 { padding-top: 0; }

/* --- Page Header (inner pages) --- */
.page-header {
  background: linear-gradient(135deg, #0E1825 0%, #111827 50%, #1B2A3F 100%);
  padding: 188px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(47, 195, 229, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(168, 205, 216, 0.06) 0%, transparent 45%);
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
}

.page-header > * {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
}

.page-header p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1875rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 1280px) {
  .nav__inner { gap: 18px; padding: 0 24px; }
  .nav__links { gap: 26px; }
  .nav__link { font-size: 0.8125rem; }
  .nav__brand-tagline { display: none; }
  .nav__portal-link { font-size: 0.6875rem; padding: 9px 13px; gap: 6px; }
  .nav__cta { padding: 11px 20px; font-size: 0.75rem; }
}

@media (max-width: 1140px) {
  .nav__links { gap: 20px; }
  .nav__portal-link { padding: 8px 11px; font-size: 0.625rem; }
  .nav__portal-link svg { width: 12px; height: 12px; }
  .nav__cta { padding: 10px 16px; font-size: 0.6875rem; }
  .nav__brand-name { font-size: 1.35rem; }
}

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { gap: 36px; }
  .nav__links { gap: 24px; }
  .nav__link { font-size: 0.8125rem; }
  .nav__portal-link { display: none; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .nav__links,
  .nav__actions .nav__portal-link {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__brand-logo {
    width: 38px;
    height: 38px;
  }

  .nav__brand-tagline {
    display: none;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }

  .nav__links.open .nav__link {
    color: var(--slate);
    font-size: 1rem;
    padding: 8px 0;
  }

  .nav__links.open .nav__item--has-dropdown {
    width: 100%;
  }

  .nav__links.open .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 4px 0 0 16px;
    backdrop-filter: none;
    min-width: 0;
  }

  .nav__links.open .nav__dropdown::before {
    display: none;
  }

  .nav__links.open .nav__dropdown a {
    color: var(--steel);
    font-size: 0.9375rem;
    padding: 8px 0;
  }

  .footer {
    padding: 42px 0 20px;
  }

  .footer__hero {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
    padding-bottom: 22px;
  }

  .footer__contact-col--left,
  .footer__contact-col--right {
    align-items: center;
    text-align: center;
  }

  .footer__contact-col--left .footer__contact-line {
    flex-direction: row;
  }

  .footer__contact-line {
    font-size: 0.75rem;
  }

  .footer__logo {
    width: 132px;
    order: -1;
  }

  .footer__logo-link {
    order: -1;
  }

  .footer__nav {
    gap: 4px 20px;
    padding: 16px 0;
  }

  .footer__nav a {
    font-size: 0.75rem;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
    font-size: 0.6875rem;
  }

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

  .process {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 32px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

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

  .cta-banner {
    padding: 64px 0;
  }

  .stats-bar__item {
    border-right: none;
  }

  .testimonial {
    padding: 48px 32px;
  }

  .testimonial__quote {
    font-size: 1.375rem;
  }
}

@media (max-width: 480px) {
  .stats-bar__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    flex-direction: column;
    gap: 28px;
  }
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Dark Hero Section (Ramsey-style contrast break) --- */
.section--dark-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 55% at 15% 20%, rgba(47, 195, 229, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(168, 205, 216, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(47, 195, 229, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0B1628 0%, #13223D 50%, #0B1628 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.section--dark-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 205, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 205, 216, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.section--dark-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(47, 195, 229, 0.22) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.section--dark-hero > .container {
  position: relative;
  z-index: 2;
}

.section--dark-hero .section__header h2 {
  color: #fff;
}

.section--dark-hero .section__header h2 em {
  color: var(--aqua-light);
}

.section--dark-hero .section-label {
  color: var(--aqua-light);
  font-weight: 600;
}

.section--dark-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.section--dark-hero .solution-tile {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-color: rgba(168, 205, 216, 0.25);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.35),
              0 6px 16px -8px rgba(47, 195, 229, 0.15);
}

.section--dark-hero .solution-tile:hover {
  border-color: var(--aqua);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45),
              0 12px 28px -10px rgba(47, 195, 229, 0.35);
}

/* --- Partner Logo Reel --- */
.partner-reel {
  padding: 72px 0 84px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--mist-blue-pale) 100%);
  border-top: 1px solid rgba(168, 205, 216, 0.35);
  border-bottom: 1px solid rgba(168, 205, 216, 0.35);
  overflow: hidden;
}

.partner-reel__header {
  text-align: center;
  margin-bottom: 48px;
}

.partner-reel__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-hover);
  margin-bottom: 14px;
}

.partner-reel__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--slate);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.partner-reel__heading em {
  font-style: italic;
  color: var(--aqua);
}

.partner-reel__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.partner-reel__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: partnerScroll 70s linear infinite;
  will-change: transform;
}

.partner-reel__viewport:hover .partner-reel__track {
  animation-play-state: paused;
}

/* Every logo occupies a fixed-size box so the row is uniform and centered */
.partner-reel__logo {
  flex: 0 0 auto;
  width: 200px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  box-sizing: border-box;
  filter: grayscale(100%) contrast(0.95);
  opacity: 0.72;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.partner-reel__logo:hover {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: translateY(-3px);
}

/* Fixed visual height for every logo → uniform reel regardless of source aspect ratio.
   mix-blend-mode: multiply neutralises any stray white backgrounds baked into source PNGs
   so the reel always appears seamless against the section gradient. */
.partner-reel__logo img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  mix-blend-mode: multiply;
}

@keyframes partnerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 32px)); }
}

@media (max-width: 768px) {
  .partner-reel {
    padding: 56px 0 64px;
  }

  .partner-reel__track {
    gap: 44px;
    animation-duration: 55s;
  }

  .partner-reel__logo {
    width: 152px;
    height: 90px;
    padding: 12px 16px;
  }

  .partner-reel__logo img {
    max-height: 54px;
  }
}

/* --- Mini Solution Builder (homepage inline) --- */
.mini-builder {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--mist-blue-soft);
  box-shadow: 0 30px 60px -30px rgba(17, 24, 39, 0.18), 0 8px 20px -10px rgba(47, 195, 229, 0.12);
  padding: 48px;
  max-width: 980px;
  margin: 0 auto;
}

.mini-builder__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--gray-100);
  flex-wrap: wrap;
}

.mini-builder__header-left {
  flex: 1;
  min-width: 260px;
}

.mini-builder__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-hover);
  background: var(--mist-blue-pale);
  border: 1px solid rgba(47, 195, 229, 0.2);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.mini-builder__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--slate);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 8px;
}

.mini-builder__subtitle {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

.mini-builder__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--steel);
  background: var(--mist-blue-pale);
  border: 1px solid var(--mist-blue-soft);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 500;
}

.mini-builder__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 3px rgba(47, 195, 229, 0.2);
  animation: blinkDot 2.4s ease-in-out infinite;
}

.mini-builder__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.mini-builder__step {
  position: relative;
  padding: 24px 22px;
  background: var(--mist-blue-pale);
  border: 1px solid var(--mist-blue-soft);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.mini-builder__step:hover {
  transform: translateY(-3px);
  border-color: var(--aqua);
  box-shadow: 0 16px 32px -12px rgba(47, 195, 229, 0.22);
  background: #fff;
}

.mini-builder__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--aqua);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.mini-builder__step-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--slate);
  margin: 0 0 6px;
}

.mini-builder__step-text {
  font-size: 0.8125rem;
  color: var(--steel);
  line-height: 1.55;
  margin: 0;
}

.mini-builder__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--mist-blue-pale) 0%, #fff 100%);
  border: 1px dashed var(--mist-blue-soft);
  border-radius: var(--radius-md);
  text-align: center;
}

.mini-builder__cta-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--slate);
  margin: 0;
}

.mini-builder__cta .btn {
  margin: 0;
}

@media (max-width: 900px) {
  .mini-builder {
    padding: 36px 28px;
  }

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

@media (max-width: 560px) {
  .mini-builder__steps {
    grid-template-columns: 1fr;
  }

  .mini-builder__header {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- Philanthropy Section --- */
.philanthropy {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255, 218, 185, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 70%, rgba(168, 205, 216, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, #FFF9F3 0%, #FFF5EC 50%, #FFFAF4 100%);
  position: relative;
  overflow: hidden;
}

.philanthropy::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.philanthropy__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.philanthropy__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(244, 162, 97, 0.35);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B8602E;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(244, 162, 97, 0.16);
}

.philanthropy__label svg {
  color: #D97441;
}

.philanthropy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 500;
  color: var(--slate);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 22px;
}

.philanthropy h2 em {
  font-style: italic;
  color: #D97441;
}

.philanthropy__text {
  color: var(--steel);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0 0 20px;
  max-width: 560px;
}

.philanthropy__text strong {
  color: var(--slate);
  font-weight: 600;
}

.philanthropy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.philanthropy__btn-warm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #D97441 0%, #B8602E 100%);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px -10px rgba(217, 116, 65, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.philanthropy__btn-warm:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(217, 116, 65, 0.7);
}

.philanthropy__card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 162, 97, 0.25);
  box-shadow: 0 40px 80px -40px rgba(184, 96, 46, 0.35),
              0 10px 24px -16px rgba(217, 116, 65, 0.22);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.philanthropy__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #D97441 0%, #F4A261 50%, #A8CDD8 100%);
}

.philanthropy__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FFF1E3 0%, #FFE4C9 100%);
  color: #B8602E;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(217, 116, 65, 0.2);
  margin-bottom: 24px;
}

.philanthropy__card-title {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.25;
  margin: 0 0 12px;
}

.philanthropy__card-title em {
  font-style: italic;
  color: #D97441;
}

.philanthropy__card-subtitle {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0 0 28px;
}

.philanthropy__card-url {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--mist-blue-pale);
  border: 1px solid var(--mist-blue-soft);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--slate);
  font-weight: 500;
  margin-top: 20px;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.philanthropy__card-url:hover {
  border-color: var(--aqua);
  transform: translateX(3px);
}

.philanthropy__card-url svg {
  color: var(--aqua);
  flex-shrink: 0;
}

.philanthropy__card-hearts {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.philanthropy__card-hearts-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--steel);
  margin: 0;
}

.philanthropy__card-hearts svg {
  color: #D97441;
  animation: heartPulse 2.4s ease-in-out infinite;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@media (max-width: 960px) {
  .philanthropy {
    padding: 72px 0;
  }

  .philanthropy__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .philanthropy__card {
    padding: 36px 28px;
  }
}

/* --- Team Section --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--mist-blue-soft);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mist-blue) 0%, var(--aqua) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(17, 24, 39, 0.2),
              0 10px 24px -14px rgba(47, 195, 229, 0.25);
  border-color: rgba(47, 195, 229, 0.4);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card__avatar {
  width: 220px;
  height: 220px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mist-blue) 0%, var(--aqua) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  box-shadow:
    0 24px 52px -20px rgba(47, 195, 229, 0.45),
    0 0 0 5px rgba(255, 255, 255, 1),
    0 0 0 6px rgba(47, 195, 229, 0.30);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Photo variant — light background, image fills circle */
.team-card__avatar--photo {
  background: #FFFFFF;
  padding: 0;
}

.team-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  border-radius: 50%;
}

@media (max-width: 560px) {
  .team-card__avatar {
    width: 200px;
    height: 200px;
    font-size: 3.5rem;
  }
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--slate);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}

.team-card__title {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-hover);
  margin-bottom: 14px;
}

.team-card__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--steel);
  font-size: 0.875rem;
  margin: 0 0 22px;
}

.team-card__location svg {
  color: var(--aqua);
  flex-shrink: 0;
}

.team-card__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.team-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: var(--mist-blue-pale);
  border: 1px solid var(--mist-blue-soft);
  border-radius: 999px;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.team-card__link svg {
  flex-shrink: 0;
}

.team-card__link--linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
}

.team-card__link--email:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: #fff;
}

/* Back-compat alias for any prior references */
.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--mist-blue-pale);
  border: 1px solid var(--mist-blue-soft);
  border-radius: 999px;
  color: var(--slate);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.team-card__linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
}

.team-card__linkedin svg {
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    padding: 32px 24px;
  }
}

/* --- Footer Social Icons --- */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(168, 205, 216, 0.12);
  border: 1px solid rgba(168, 205, 216, 0.25);
  color: var(--mist-blue);
  transition: all 0.25s ease;
}

.footer__social a:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
  transform: translateY(-2px);
}

/* --- Industries We Serve --- */
.industries {
  background: var(--white);
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.industry-card {
  background: var(--white);
  border: 1.5px solid rgba(168, 205, 216, 0.4);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--aqua);
  box-shadow: 0 24px 56px rgba(47, 195, 229, 0.22), 0 8px 20px rgba(17, 24, 39, 0.06);
}

.industry-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mist-blue) 0%, var(--aqua) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(47, 195, 229, 0.28);
}

.industry-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 10px;
  line-height: 1.2;
}

.industry-card__text {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .industries__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Public Solution Builder --- */
.builder-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 8px;
  flex-wrap: wrap;
}

.builder-step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid rgba(168, 205, 216, 0.4);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.builder-step.active {
  border-color: var(--aqua);
  box-shadow: 0 12px 28px rgba(47, 195, 229, 0.18);
}

.builder-step.completed {
  background: var(--mist-blue-pale);
  border-color: var(--mist-blue);
}

.builder-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(168, 205, 216, 0.35);
  color: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.builder-step.active .builder-step__num {
  background: var(--aqua);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(47, 195, 229, 0.4);
}

.builder-step.completed .builder-step__num {
  background: var(--aqua-hover);
  color: var(--white);
}

.builder-step__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate);
}

.builder-panel {
  display: none;
  animation: builder-fade 0.4s ease;
}

.builder-panel.active {
  display: block;
}

@keyframes builder-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.builder-panel__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 10px;
  text-align: center;
}

.builder-panel__subtitle {
  color: var(--steel);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 36px;
}

.builder-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.builder-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 24px;
  background: var(--white);
  border: 1.5px solid rgba(168, 205, 216, 0.4);
  border-radius: var(--radius-lg);
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

.builder-option:hover {
  border-color: var(--aqua);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(47, 195, 229, 0.18);
}

.builder-option.selected {
  border-color: var(--aqua);
  background: var(--mist-blue-pale);
  box-shadow: 0 16px 36px rgba(47, 195, 229, 0.22);
}

.builder-option__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mist-blue) 0%, var(--aqua) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(47, 195, 229, 0.28);
  margin-bottom: 6px;
}

.builder-option__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1.3;
}

.builder-option__text {
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.5;
}

.builder-back {
  background: transparent;
  border: none;
  color: var(--aqua-hover);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.builder-back:hover {
  color: var(--aqua);
}

.builder-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.builder-result {
  background: var(--white);
  border: 1.5px solid rgba(168, 205, 216, 0.4);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.builder-result:hover {
  transform: translateY(-4px);
  border-color: var(--aqua);
  box-shadow: 0 20px 44px rgba(47, 195, 229, 0.18);
}

.builder-result--better {
  border-color: var(--aqua);
  box-shadow: 0 20px 44px rgba(47, 195, 229, 0.22);
  transform: translateY(-6px);
}

.builder-result--best {
  background: linear-gradient(180deg, var(--white) 0%, rgba(168, 205, 216, 0.15) 100%);
}

.builder-result__tier {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--aqua-hover);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(168, 205, 216, 0.5);
}

.builder-result--better .builder-result__tier {
  color: var(--aqua);
}

.builder-result--best .builder-result__tier {
  color: var(--slate);
}

.builder-result__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.25;
  margin-bottom: 12px;
}

.builder-result__desc {
  color: var(--steel);
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.builder-result__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.builder-result__features li {
  position: relative;
  padding-left: 22px;
  color: var(--steel);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.builder-result__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--aqua);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.builder-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* MSRP pill + brand label under each result name */
.builder-result__price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -8px 0 14px;
}

.builder-result__msrp-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.builder-result__msrp {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--aqua-hover);
  letter-spacing: -0.005em;
}

.builder-result__brand {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--steel);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--mist-blue-pale);
  border: 1px solid var(--mist-blue-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Priority-based overlay note */
.builder-priority-note {
  display: block;
  margin: 0 auto 24px;
  max-width: 720px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(47, 195, 229, 0.08), rgba(47, 195, 229, 0.02));
  border: 1px solid rgba(47, 195, 229, 0.24);
  border-radius: var(--radius-md);
  color: var(--slate);
  font-size: 0.875rem;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.01em;
}

/* Pricing disclaimer under the tier cards */
.builder-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 780px;
  margin: 8px auto 28px;
  padding: 16px 20px;
  background: rgba(17, 24, 39, 0.03);
  border: 1px dashed var(--mist-blue-soft);
  border-radius: var(--radius-md);
  color: var(--steel);
  font-size: 0.8125rem;
  line-height: 1.65;
}

.builder-disclaimer svg {
  color: var(--aqua);
  flex-shrink: 0;
  margin-top: 3px;
}

.builder-disclaimer strong {
  color: var(--slate);
}

/* Builder tool launcher (header CTA row) */
.builder-tool-launcher {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* --- Check Coverage AI Modal --- */
.coverage-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.coverage-modal--open {
  opacity: 1;
}

.coverage-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 40, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.coverage-modal__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -20px rgba(11, 22, 40, 0.55);
  padding: 36px 36px 32px;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.coverage-modal--open .coverage-modal__card {
  transform: translateY(0);
}

.coverage-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--steel);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all var(--transition);
  display: inline-flex;
}

.coverage-modal__close:hover {
  background: var(--mist-blue-pale);
  color: var(--slate);
}

.coverage-modal__header {
  text-align: left;
  margin-bottom: 22px;
}

.coverage-modal__header h3 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--slate);
  margin: 6px 0 10px;
  line-height: 1.2;
}

.coverage-modal__header p {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.coverage-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coverage-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.coverage-form input,
.coverage-form select {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--slate);
  transition: border-color var(--transition);
}

.coverage-form input:focus,
.coverage-form select:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(47, 195, 229, 0.15);
}

.coverage-form button {
  margin-top: 6px;
  justify-content: center;
}

.coverage-modal__results {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-200);
}

.coverage-modal__result-header {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--steel);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.coverage-modal__result-header strong {
  color: var(--slate);
  font-weight: 600;
}

.coverage-modal__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coverage-modal__row {
  padding: 12px 14px;
  background: var(--mist-blue-pale);
  border: 1px solid var(--mist-blue-soft);
  border-radius: var(--radius-sm);
}

.coverage-modal__row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  color: var(--slate);
  font-size: 0.9375rem;
  font-weight: 600;
}

.coverage-modal__score {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--aqua-hover);
}

.coverage-modal__row-meta {
  font-size: 0.75rem;
  color: var(--steel);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.coverage-modal__bar {
  height: 6px;
  background: rgba(17, 24, 39, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.coverage-modal__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--aqua) 0%, var(--aqua-hover) 100%);
  transition: width 0.6s ease;
}

.coverage-modal__row--excellent .coverage-modal__bar span {
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.coverage-modal__row--excellent .coverage-modal__score {
  color: #16a34a;
}

.coverage-modal__row--weak .coverage-modal__bar span {
  background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
}

.coverage-modal__row--weak .coverage-modal__score {
  color: #ea580c;
}

.coverage-modal__note {
  font-size: 0.75rem;
  color: var(--steel);
  line-height: 1.6;
  padding: 12px 14px;
  background: rgba(17, 24, 39, 0.03);
  border-left: 3px solid var(--aqua);
  border-radius: var(--radius-sm);
  margin: 0 0 18px;
}

.coverage-modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .coverage-modal__card {
    padding: 28px 22px 24px;
  }

  .coverage-modal__header h3 {
    font-size: 1.375rem;
  }
}

@media (max-width: 900px) {
  .builder-options {
    grid-template-columns: 1fr;
  }
  .builder-results {
    grid-template-columns: 1fr;
  }
  .builder-result--better {
    transform: none;
  }
  .builder-step__label {
    display: none;
  }
  .builder-step {
    min-width: unset;
    flex: 0 1 auto;
    padding: 12px 14px;
  }
}

/* --- Insights / Blog --- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.insight-card {
  background: var(--white);
  border: 1.5px solid rgba(168, 205, 216, 0.4);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.insight-card:hover {
  transform: translateY(-6px);
  border-color: var(--aqua);
  box-shadow: 0 24px 56px rgba(47, 195, 229, 0.22), 0 8px 20px rgba(17, 24, 39, 0.06);
}

.insight-card__category {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--aqua-hover);
  margin-bottom: 16px;
}

.insight-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.22;
  margin-bottom: 14px;
}

.insight-card__excerpt {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--steel-light);
  padding-top: 16px;
  border-top: 1px dashed rgba(168, 205, 216, 0.5);
}

.insight-card__status {
  color: var(--aqua-hover);
  font-weight: 600;
}

@media (max-width: 900px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Case Stories --- */
.case-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.case-story-card {
  background: var(--white);
  border: 1.5px solid rgba(168, 205, 216, 0.4);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.case-story-card:hover {
  transform: translateY(-6px);
  border-color: var(--aqua);
  box-shadow: 0 24px 56px rgba(47, 195, 229, 0.22), 0 8px 20px rgba(17, 24, 39, 0.06);
}

.case-story-card__industry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mist-blue-pale);
  color: var(--aqua-hover);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.case-story-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.25;
  margin-bottom: 10px;
}

.case-story-card__meta {
  font-size: 0.8125rem;
  color: var(--steel-light);
  font-weight: 600;
  margin-bottom: 14px;
}

.case-story-card__text {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.case-story-card__status {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aqua-hover);
  padding-top: 16px;
  border-top: 1px dashed rgba(168, 205, 216, 0.5);
}

@media (max-width: 900px) {
  .case-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .case-stories-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FAQ Page --- */
.faq-group {
  margin-bottom: 56px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group__heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(168, 205, 216, 0.5);
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(168, 205, 216, 0.4);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: var(--aqua);
  box-shadow: 0 16px 36px rgba(47, 195, 229, 0.16), 0 4px 12px rgba(17, 24, 39, 0.04);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--slate);
  list-style: none;
  transition: color 0.2s ease;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary:hover {
  color: var(--aqua-hover);
}

.faq-item__chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mist-blue-pale);
  color: var(--aqua-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
  background: var(--aqua);
  color: var(--white);
}

.faq-item__body {
  padding: 0 28px 26px;
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-item__body p {
  margin: 0;
}

.faq-item__body a {
  color: var(--aqua-hover);
  font-weight: 600;
}

/* --- Brand Card Quote Button --- */
.brand-card {
  display: flex;
  flex-direction: column;
}

.brand-card__quote {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1.5px solid var(--aqua);
  background: transparent;
  color: var(--aqua-hover);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.25s ease;
  margin-top: 20px;
  width: 100%;
}

.brand-card__quote:hover {
  background: var(--aqua);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(47, 195, 229, 0.28);
}

.brand-card__quote svg {
  transition: transform 0.25s ease;
}

.brand-card__quote:hover svg {
  transform: translateX(3px);
}

/* --- Confirmation Modal --- */
.netcom-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 22, 40, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.netcom-modal--open {
  opacity: 1;
}

.netcom-modal__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 44px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(11, 22, 40, 0.32), 0 12px 32px rgba(47, 195, 229, 0.22);
  border: 1px solid rgba(168, 205, 216, 0.4);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.netcom-modal--open .netcom-modal__card {
  transform: translateY(0) scale(1);
}

.netcom-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(168, 205, 216, 0.3);
  color: var(--steel);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.netcom-modal__close:hover {
  background: var(--mist-blue-pale);
  border-color: var(--aqua);
  color: var(--aqua);
}

.netcom-modal__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mist-blue) 0%, var(--aqua) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 16px 36px rgba(47, 195, 229, 0.38);
}

.netcom-modal__card h3 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 14px;
  line-height: 1.2;
}

.netcom-modal__card p {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.netcom-modal__card p strong {
  color: var(--slate);
}

.netcom-modal__card code {
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 0.8125rem;
  background: var(--mist-blue-pale);
  color: var(--slate);
  padding: 2px 6px;
  border-radius: 4px;
}

.netcom-modal__meta {
  font-size: 0.875rem !important;
  margin-bottom: 28px !important;
}

.netcom-modal__meta a {
  color: var(--aqua-hover);
  font-weight: 600;
}

.netcom-modal__ok {
  padding: 12px 36px;
}

@media (max-width: 560px) {
  .netcom-modal__card {
    padding: 44px 28px 32px;
  }
  .netcom-modal__card h3 {
    font-size: 1.5rem;
  }
}
