/* ============================================
   RESET & BASE — Neocarrier Brand
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Neocarrier Brand Colors (from logo) */
  --navy: #1B2D5B;
  --navy-dark: #0F1C3A;
  --blue: #4BACC6;
  --blue-light: #6DC8E0;
  --green-brand: #6B9E3C;
  --green-light: #8BC34A;
  --teal: #3B8C6E;
  --teal-light: #4DB89A;

  /* Neutrals */
  --black: #181D27;
  --white: #ffffff;
  --gray: #717680;
  --gray-light: #D5D7DA;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: 0.2s ease;
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--blue-light); }

/* ============================================
   TYPOGRAPHY (Proxima Nova style via Montserrat)
   ============================================ */
h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
}

h3 {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
}

/* ============================================
   TOP UTILITY BAR
   ============================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.topbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.topbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 600;
  transition: color var(--transition);
}

.topbar__link:hover { color: rgba(255,255,255,0.9); }

.topbar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

.topbar__link svg {
  opacity: 0.6;
}

/* ============================================
   LANGUAGE DROPDOWN
   ============================================ */
.lang-dropdown {
  position: relative;
  z-index: 1002;
}

.lang-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.lang-dropdown__trigger:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

.lang-dropdown.open .lang-dropdown__trigger {
  background: rgba(255,255,255,0.1);
  border-color: rgba(75, 172, 198, 0.4);
  color: var(--white);
}

/* Bigger variant when inside the header bar */
.lang-dropdown--header .lang-dropdown__trigger {
  padding: 8px 16px;
  gap: 8px;
  font-size: 0.85rem;
  border-radius: 50px;
}

.lang-dropdown--header .lang-dropdown__globe {
  width: 16px;
  height: 16px;
}

.lang-dropdown--header .lang-dropdown__chevron {
  width: 11px;
  height: 7px;
}

.lang-dropdown__globe {
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.lang-dropdown__trigger:hover .lang-dropdown__globe,
.lang-dropdown.open .lang-dropdown__globe {
  opacity: 0.9;
}

.lang-dropdown__current {
  letter-spacing: 0.05em;
}

.lang-dropdown__chevron {
  opacity: 0.4;
  transition: transform 0.25s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.lang-dropdown.open .lang-dropdown__chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

/* Menu panel */
.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1010;
}

.lang-dropdown.open .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-dropdown__menu-inner {
  background: var(--white);
  border-radius: 10px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.18),
    0 0 0 1px rgba(0,0,0,0.04),
    0 2px 6px rgba(0,0,0,0.06);
  padding: 6px;
  overflow: hidden;
}

/* Individual option buttons */
.lang-dropdown__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: var(--black);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  position: relative;
}

.lang-dropdown__option:hover {
  background: #f0f6fa;
}

.lang-dropdown__option--active {
  background: rgba(75, 172, 198, 0.08);
}

.lang-dropdown__option--active:hover {
  background: rgba(75, 172, 198, 0.12);
}

.lang-dropdown__flag {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
}

.lang-dropdown__label {
  flex: 1;
  font-weight: 600;
  color: var(--black);
}

.lang-dropdown__code {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.05em;
  opacity: 0.5;
}

.lang-dropdown__option:hover .lang-dropdown__code {
  opacity: 0.7;
}

.lang-dropdown__check {
  color: var(--blue);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.lang-dropdown__option--active .lang-dropdown__check {
  opacity: 1;
  transform: scale(1);
}

.lang-dropdown__option--active .lang-dropdown__label {
  color: var(--navy);
}

/* ============================================
   HEADER — Floating Bar with Rounded Corners
   ============================================ */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  transition: top 0.3s ease;
}

.header.header--stuck {
  top: 0;
}

.header.header--stuck .header__layer {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* The floating dark bar layer — now navy */
.header__layer {
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  bottom: 0;
  background: var(--navy);
  border-radius: 8px;
  z-index: 0;
}

.header__layer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: var(--line-width, 0%);
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--teal-light), var(--green-light));
  z-index: 1;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(75, 172, 198, 0.5);
}

.header__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 10;
}

.logo__icon { flex-shrink: 0; }

.logo__text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.logo__text-neo {
  color: var(--white);
}

.logo__text-carrier {
  color: rgba(255,255,255,0.6);
}

/* Image logo */
.logo__img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.logo:hover .logo__img {
  opacity: 0.85;
}

/* Footer logo: show original colors */
.logo--footer .logo__img {
  filter: none;
  height: 30px;
}

/* Legacy footer text overrides */
.logo--footer .logo__text-neo {
  color: var(--navy);
}

.logo--footer .logo__text-carrier {
  color: var(--gray);
}

/* Navigation */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav__link:hover,
.nav__item--has-dropdown:hover > .nav__link {
  color: var(--blue-light);
}

.nav__chevron {
  opacity: 0.5;
  transition: transform var(--transition);
}

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

/* Header right actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header__emergency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-light);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.header__emergency-dot {
  width: 10px;
  height: 10px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(77, 184, 154, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(77, 184, 154, 0); }
}

/* Contact button — outlined pill */
.btn--contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--contact:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn--contact svg {
  opacity: 0.7;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile language selector — hidden on desktop */
.mobile-lang {
  display: none;
}

/* ============================================
   DROPDOWNS
   ============================================ */
.nav__item--has-dropdown { position: relative; }

/* Outer wrapper — transparent, includes hover bridge */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 10px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 100;
}

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

/* Simple dropdown — white panel */
.dropdown--simple {
  min-width: 200px;
}

.dropdown--simple .dropdown__panel {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 12px 8px;
}

.dropdown__link {
  display: block;
  padding: 10px 16px;
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all var(--transition);
}

.dropdown__link:hover {
  background: #f0f6fa;
  color: var(--blue);
}

/* Mega dropdown — 3 columns */
.dropdown--mega {
  left: 0;
  transform: translateX(0) translateY(6px);
  width: 720px;
}

.nav__item--has-dropdown:hover > .dropdown--mega {
  transform: translateX(0) translateY(0);
}

.dropdown__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
}

.dropdown__col {
  padding: 28px 24px;
  border-right: 1px solid #eee;
}

.dropdown__col:last-child { border-right: none; }

.dropdown__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown__item {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: 6px;
  transition: background var(--transition);
}

.dropdown__item:hover {
  background: #f0f6fa;
}

.dropdown__item:hover .dropdown__item-title {
  color: var(--blue);
}

.dropdown__item:hover .dropdown__item-icon {
  color: var(--blue);
  opacity: 1;
}

.dropdown__item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  opacity: 0.5;
  transition: all var(--transition);
}

.dropdown__item-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--black);
  margin-bottom: 2px;
  transition: color var(--transition);
}

.dropdown__item-desc {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.4;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 60px;
  overflow: hidden;
  contain: layout;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, var(--navy-dark) 0%, var(--navy) 40%, #1a3b5b 70%, #1a4a5b 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40vh;
  background: linear-gradient(to bottom, transparent, rgba(75, 172, 198, 0.08));
}

/* Subtle geometric shapes in hero background */
.hero__bg::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -5%;
  width: 500px;
  height: 500px;
  border: 1.5px solid rgba(75, 172, 198, 0.08);
  border-radius: 50%;
}

/* Background video layer — stacking: bg(0) → video(1) → overlay(2) → content(3) */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

/* Semi-transparent overlay for text readability over video */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 58, 0.91);
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

/* Split hero variant — left-aligned text over full-width video */
.hero--split {
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 78vh;
  padding-top: 275px;
  padding-bottom: 48px;
}

.hero--split .hero__logos {
  margin-top: 100px;
}

.hero--split .hero__content {
  text-align: left;
  max-width: 960px;
  padding-left: 5%;
}

.hero--split .hero__eyebrow {
  text-align: left;
}

.hero--split .hero__subtitle {
  margin-left: 0;
  max-width: 800px;
}

.hero--split .hero__cta {
  position: relative;
  z-index: 3;
  justify-content: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero--split .hero__content {
    text-align: center;
    padding-left: 0;
    max-width: 860px;
  }
  .hero--split .hero__eyebrow { text-align: center; }
  .hero--split .hero__subtitle { margin: 0 auto 40px; max-width: 700px; }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  text-align: center;
}

.hero__eyebrow {
  color: var(--blue-light);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 28px;
}

.hero__subtitle {
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero__subtitle--backdrop {
  display: block;
  background: rgba(0, 0, 0, 0.35);
  padding: 18px 40px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
}

.hero__cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero__link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: color var(--transition);
}

.hero__link-arrow:hover { color: var(--blue-light); }
.hero__link-arrow svg { opacity: 0.6; }

.btn--outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 28px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--outline-hero:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Hero logos */
.hero__logos {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 80px;
}

.hero__logos-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero__logo-item {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  user-select: none;
}

.hero__logo-img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.25;
}

.hero__logo-img--tall {
  height: 32px;
}

/* ============================================
   WAVE DIVIDER
   ============================================ */
.wave-divider {
  position: relative;
  margin-top: -80px;
  z-index: 2;
  background: transparent;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
}

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

.section--dark-gradient {
  background: linear-gradient(170deg, var(--navy) 0%, #1a3b5b 50%, #1a4a5b 100%);
  color: var(--white);
  padding: 0 0 100px;
}

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

.section__title-center--light {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

/* ============================================
   DASHBOARD SHOWCASE
   ============================================ */
.dashboard-showcase {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.dashboard-showcase__frame {
  background: #0e1a30;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.dashboard-showcase__bar {
  display: flex;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dashboard-showcase__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.dashboard-showcase__screen {
  display: flex;
  min-height: 300px;
}

.dashboard-showcase__sidebar {
  width: 180px;
  background: var(--blue);
  padding: 20px 0;
  flex-shrink: 0;
}

.dashboard-showcase__sidebar-logo {
  font-weight: 800;
  color: var(--white);
  font-size: 0.9rem;
  padding: 0 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 12px;
}

.dashboard-showcase__sidebar-item {
  padding: 8px 16px;
  color: rgba(255,255,255,0.65);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.dashboard-showcase__sidebar-item.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.dashboard-showcase__main {
  flex: 1;
  padding: 20px;
  background: #f8f9fa;
  color: var(--black);
}

.dashboard-showcase__header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 0.9375rem;
}

.dashboard-showcase__badge {
  background: #e3f2fd;
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.dashboard-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dashboard-showcase__card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
}

.dashboard-showcase__card-label {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 4px;
}

.dashboard-showcase__card-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.dashboard-showcase__sparkline {
  height: 32px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0.15;
  border-radius: 4px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 32'%3E%3Cpath d='M0,28 Q10,20 20,22 T40,16 T60,20 T80,10 T100,14 L100,32 L0,32Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 32'%3E%3Cpath d='M0,28 Q10,20 20,22 T40,16 T60,20 T80,10 T100,14 L100,32 L0,32Z' fill='black'/%3E%3C/svg%3E");
  mask-size: cover;
  -webkit-mask-size: cover;
}

.dashboard-showcase__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.dashboard-showcase__play:hover { opacity: 1; }

/* ============================================
   SOLUTION ROWS
   ============================================ */
.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}

.solution-row:last-child { border-bottom: none; }

.solution-row--reverse {
  direction: rtl;
}
.solution-row--reverse > * {
  direction: ltr;
}

.solution-row__title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(24, 29, 39, 0.15);
  margin-bottom: 20px;
  line-height: 1.1;
}

.solution-row__text {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.solution-row__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-row__links li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: color var(--transition);
}

.solution-row__links li a:hover {
  color: var(--teal);
}

.solution-row__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.solution-row__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Solution image frame */
.solution-row__frame {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #eee;
}

.solution-row__screen {
  padding: 24px;
  min-height: 280px;
}

.solution-row__chart-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 20px;
}

.solution-row__chart {
  display: flex;
  align-items: flex-end;
  height: 180px;
}

.solution-row__bar-group {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  height: 100%;
  width: 100%;
}

.solution-row__bar {
  flex: 1;
  background: linear-gradient(to top, var(--blue), var(--teal-light));
  border-radius: 4px 4px 0 0;
  min-height: 20px;
}

.solution-row__map {
  position: relative;
  height: 180px;
  background: #eef4f8;
  border-radius: 8px;
}

.solution-row__map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(75, 172, 198, 0.2);
}

.solution-row__threats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.solution-row__threat-bar {
  position: relative;
}

.solution-row__threat-bar span {
  display: block;
  height: 24px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  border-radius: 4px;
}

.solution-row__threat-bar small {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 600;
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages__header {
  margin-bottom: 48px;
}

.advantages__title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.advantages__sub {
  color: var(--blue);
  font-size: 1.05rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.advantage {
  background: #ffffff;
  border: 1px solid var(--gray-light);
  padding: 32px 28px;
  border-radius: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.advantage:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(27, 45, 91, 0.10);
}

.advantage__icon {
  margin-bottom: 20px;
  opacity: 0.85;
}

.advantage__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.advantage__text {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ============================================
   STATS SECTION
   ============================================ */
.section--stats {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.section--stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--blue) 100%);
}

.section--stats-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 2px solid rgba(75, 172, 198, 0.15);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.section--stats-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: 10%;
  width: 400px;
  height: 800px;
  border: 2px solid rgba(75, 172, 198, 0.1);
  transform: rotate(30deg);
}

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

.stat__number {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--blue-light);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat__label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  font-weight: 600;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.section--testimonial {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, #1a4a5b 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section--testimonial::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 600px;
  border: 2px solid rgba(75, 172, 198, 0.1);
  transform: rotate(20deg);
}

.testimonial-block {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.testimonial-block__quote {
  margin-bottom: 24px;
}

.testimonial-block__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-block__text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.testimonial-block__author {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
}

.testimonial-block__author strong {
  color: var(--white);
}

.testimonial-block__role {
  display: block;
  font-size: 0.85rem;
  margin-top: 2px;
}

.testimonial-block__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

/* Light variant (white background) */
.testimonial-block--light .testimonial-block__text {
  color: var(--navy);
}

.testimonial-block--light .testimonial-block__author {
  color: var(--gray);
}

.testimonial-block--light .testimonial-block__author strong {
  color: var(--navy);
}

.testimonial-block--light .testimonial-block__role {
  color: var(--gray-light);
}

/* Card variant */
.testimonial-block--card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 48px 56px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}

.testimonial-block--card .testimonial-block__stars {
  justify-content: center;
}

.testimonial-block--card .testimonial-block__text {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-style: italic;
  line-height: 1.8;
}

.testimonial-block--card .testimonial-block__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
}

@media (max-width: 640px) {
  .testimonial-block--card {
    padding: 32px 24px;
  }
}

/* ============================================
   BLOG CARDS
   ============================================ */
.section__header-row {
  margin-bottom: 32px;
}

.section__header-line {
  width: 60px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.blog-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card__image {
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__image--1 {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.blog-card__image--2 {
  background: linear-gradient(135deg, #1a3b5b, var(--navy));
}

.blog-card__image--3 {
  background: linear-gradient(135deg, var(--teal), #1a4a5b);
}

.blog-card__image-content {
  text-align: center;
  color: var(--white);
  padding: 24px;
}

.blog-card__logo {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.7;
  display: block;
  margin-bottom: 12px;
}

.blog-card__title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--white);
}

.blog-card__badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 0.06em;
}

.blog-card__date-big {
  display: block;
  margin-top: 8px;
  color: var(--blue-light);
  font-size: 0.95rem;
  font-weight: 600;
}

.blog-card__certs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-card__certs span {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.blog-card__meta {
  padding: 12px 0;
  font-size: 0.8125rem;
  color: var(--gray);
  font-weight: 500;
}

.blog-nav {
  display: flex;
  gap: 12px;
}

.blog-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  background: transparent;
  color: var(--gray);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.blog-nav__btn:hover {
  border-color: var(--black);
  color: var(--black);
}

/* ============================================
   FOOTER — WHITE background
   ============================================ */
.footer {
  background: var(--white);
  padding: 0 0 40px;
}

.footer__accent-line {
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  margin-bottom: 48px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 32px;
}

.footer__divider {
  height: 1px;
  background: #eee;
  margin-bottom: 32px;
}

.footer__columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col--address {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  font-style: normal;
}
.footer__col--address address {
  font-style: normal;
}

.footer__col--address strong {
  color: var(--black);
  font-weight: 700;
}

.footer__col--address p {
  margin: 0;
}

.footer__link {
  color: var(--gray);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--black);
}

.footer__bottom {
  font-size: 0.8125rem;
  color: var(--gray);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  /* Show hamburger */
  .hamburger { display: flex; }

  /* Push hamburger to far right */
  .header__inner {
    justify-content: space-between;
  }

  /* Hide desktop nav actions */
  .header__actions { display: none; }

  /* ---- Full-screen mobile nav ---- */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 50;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Reduce top clearance when topbar is hidden */
  .header--stuck .nav {
    padding-top: 64px;
  }

  /* Hamburger + logo above the nav overlay */
  .hamburger { z-index: 60; }
  .logo { z-index: 60; }

  /* Nav list — simple flat links, no dropdowns */
  .nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

  .nav__item {
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav__item:last-child { border-bottom: none; }

  .nav__link {
    font-size: 1.3rem;
    padding: 20px 12px;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    width: 100%;
    letter-spacing: 0.02em;
  }

  .nav__link:hover,
  .nav__item--has-dropdown:hover > .nav__link {
    color: var(--blue-light);
  }

  /* Chevron — show & rotate on open */
  .nav__chevron {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 6px;
  }
  .nav__item--has-dropdown.open > .nav__link .nav__chevron {
    transform: rotate(180deg);
  }

  /* ---- Accordion-style dropdowns on mobile ---- */
  .dropdown {
    position: static !important;
    transform: none !important;
    left: auto !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    width: 100% !important;
    max-height: 0;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: max-height 0.35s ease;
  }

  .nav__item--has-dropdown.open > .dropdown {
    max-height: 600px;
  }

  /* Reset mega dropdown columns to single column */
  .dropdown__columns {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .dropdown__col {
    padding: 0;
    border: none !important;
  }

  .dropdown__heading {
    color: var(--blue-light) !important;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 20px 20px 8px;
    margin: 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dropdown__col:first-child .dropdown__heading {
    border-top: none;
  }

  /* Dropdown items — simple centered text links */
  .dropdown__item {
    display: block !important;
    padding: 10px 20px;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.95rem;
    background: none !important;
    text-align: center;
  }
  .dropdown__item:hover {
    color: var(--white) !important;
  }

  /* Hide icons and descriptions on mobile */
  .dropdown__item-icon { display: none !important; }
  .dropdown__item-desc { display: none !important; }
  .dropdown__item-title {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
  }
  .dropdown__item:hover .dropdown__item-title {
    color: var(--white) !important;
  }

  /* Simple dropdown links (Company) — centered like Services */
  .dropdown--simple {
    min-width: 0 !important;
  }

  .dropdown--simple .dropdown__panel {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 0 !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    min-width: 0 !important;
  }

  .dropdown--simple .dropdown__link {
    display: block !important;
    padding: 10px 20px !important;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    text-align: center !important;
    width: 100%;
    background: none !important;
    border-radius: 0 !important;
  }
  .dropdown--simple .dropdown__link:hover {
    color: var(--white) !important;
    background: none !important;
  }

  /* ---- Mobile language selector ---- */
  .mobile-lang {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 28px 0 12px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-lang__option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .mobile-lang__option:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
  }

  .mobile-lang__option--active {
    color: var(--white);
    background: rgba(59,130,246,0.15);
    border-color: var(--blue);
  }

  .mobile-lang__flag {
    font-size: 1.1rem;
  }

  /* ---- Page layout mobile ---- */
  .solution-row { grid-template-columns: 1fr; gap: 32px; }
  .solution-row--reverse { direction: ltr; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .blog-grid { grid-template-columns: 1fr; }

  .footer__top { flex-direction: column; gap: 24px; }
  .footer__columns { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .solution-row { padding: 40px 0; }
  .advantages-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer__columns { grid-template-columns: 1fr; }
  .hero__logos-inner { gap: 24px; }

  .dashboard-showcase__screen { flex-direction: column; }
  .dashboard-showcase__sidebar { width: 100%; padding: 12px 0; }
  .dashboard-showcase__sidebar-item { display: inline-block; padding: 6px 12px; }
  .dashboard-showcase__grid { grid-template-columns: 1fr; }
}

@media (min-width: 1440px) {
  .header__layer {
    left: 12px;
    right: 12px;
  }
}

/* ============================================
   PRODUCT PAGE COMPONENTS
   ============================================ */

/* Product hero — shorter than landing hero */
.hero--product {
  min-height: 560px;
  overflow: visible;
}
.hero--product .hero__content {
  padding-top: 120px;
}

/* Filled primary button */
.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 32px;
  border-radius: 50px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(75, 172, 198, 0.3);
}

/* ---- Two-Column Product Intro ---- */
.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-intro__heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}
.product-intro__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
}
.product-intro__highlights {
  margin-top: 28px;
  background: linear-gradient(135deg, #f6f8fc 0%, #eef2f9 100%);
  border: 1px solid rgba(0, 82, 204, 0.10);
  border-radius: 14px;
  padding: 28px 30px 24px;
}
.product-intro__highlights-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 16px;
}
.product-intro__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-intro__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.product-intro__list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 3px;
  background: rgba(0, 82, 204, 0.10);
  border-radius: 50%;
  color: var(--blue);
}
.product-intro__powered {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 82, 204, 0.08);
}
.product-intro__powered-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8993a4;
  white-space: nowrap;
}
.product-intro__powered-logo {
  height: 28px;
  width: auto;
}
.product-intro__cta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 82, 204, 0.08);
}

/* ---- Our Story (About page) ---- */
.story-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

/* Lead / conviction block */
.story-lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 72px;
  position: relative;
}
.story-lead__accent {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  margin: 0 auto 28px;
}
.story-lead__heading {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.story-lead__text {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}
.story-lead__text em {
  font-style: normal;
  color: var(--blue-light);
  font-weight: 600;
}

/* Story cards — 2×2 grid */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto 72px;
}
.story-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 36px 32px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.story-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(75,172,198,0.25);
  transform: translateY(-3px);
}
.story-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}
.story-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--blue-light);
}
.story-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.35;
}
.story-card__text {
  font-size: 0.925rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

/* Closing statement */
.story-closing {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.story-closing__line {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 32px;
  border-radius: 1px;
}
.story-closing__text {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.story-closing__text span {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15em;
  margin-top: 4px;
}

/* ---- Network Map (Our Network page) ---- */
.network-map {
  max-width: 860px;
  margin: 0 auto;
}
.network-map__subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray);
  margin-top: -20px;
  margin-bottom: 40px;
}
.network-map__svg {
  width: 100%;
  height: auto;
  display: block;
}
.network-map__country {
  fill: #eef1f6;
  stroke: #cdd4e0;
  stroke-width: 1.5;
}
.network-map__lines line {
  stroke: var(--blue);
  stroke-width: 1.2;
  stroke-dasharray: 6 4;
}
.network-map__dot-glow {
  fill: rgba(75,172,198,0.15);
  animation: mapPulse 3s ease-in-out infinite;
}
.network-map__dot {
  fill: var(--blue);
  stroke: var(--white);
  stroke-width: 1.5;
}
.network-map__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  fill: var(--navy);
  text-anchor: middle;
  pointer-events: none;
}
.network-map__label--right {
  text-anchor: start;
}
.network-map__poi:hover .network-map__dot-glow {
  fill: rgba(75,172,198,0.3);
}
.network-map__poi:hover .network-map__dot {
  fill: var(--navy);
}
@keyframes mapPulse {
  0%, 100% { opacity: 0.6; transform-origin: center; }
  50% { opacity: 1; }
}
.network-map__legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}
.network-map__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
}
.network-map__legend-dot {
  display: inline-block;
  border-radius: 50%;
  background: var(--blue);
}
.network-map__legend-dot--lg {
  width: 14px;
  height: 14px;
}
.network-map__legend-dot--md {
  width: 10px;
  height: 10px;
}
.network-map__legend-dot--sm {
  width: 7px;
  height: 7px;
}

/* PoP region listings */
/* ---- Light Gray Section ---- */
.section--light-gray {
  background: #f4f6f8;
}

/* ---- Network Architecture decorative shapes ---- */
.section--network-arch {
  background: linear-gradient(170deg, var(--navy-dark) 0%, var(--navy) 40%, #1a3b5b 70%, #1a4a5b 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--network-arch > .container {
  position: relative;
  z-index: 1;
}

.section--network-arch .section__title-center {
  color: #ffffff;
}

.section--network-arch .features-grid .feature-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.section--network-arch .features-grid .feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(75, 172, 198, 0.3);
}
.section--network-arch .feature-card__icon {
  color: var(--blue);
  background: rgba(75, 172, 198, 0.15);
}
.section--network-arch .feature-card__title {
  color: #ffffff;
}
.section--network-arch .feature-card__text {
  color: rgba(255, 255, 255, 0.75);
}

.section--network-arch::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border: 1.5px solid rgba(75, 172, 198, 0.15);
  border-radius: 50%;
}

.section--network-arch::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -40px;
  width: 360px;
  height: 720px;
  border: 1.5px solid rgba(75, 172, 198, 0.1);
  transform: rotate(-20deg);
  border-radius: 8px;
}

/* ---- POP Search ---- */
.pop-search {
  position: relative;
  max-width: 420px;
  margin: 0 auto 48px;
}
.pop-search__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
}
.pop-search__input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.pop-search__input::placeholder { color: var(--gray); }
.pop-search__input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(75,172,198,0.15);
}

/* ---- POP Directory Accordion ---- */
.pop-region {
  margin-bottom: 16px;
}
.pop-region:last-child {
  margin-bottom: 0;
}
.pop-region__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: 2px solid var(--gray-light);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s ease;
}
.pop-region__header:hover {
  border-bottom-color: var(--blue);
}
.pop-region.pop-region--open .pop-region__header {
  margin-bottom: 16px;
}
.pop-region__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.pop-region__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pop-region__count {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  background: rgba(75,172,198,0.1);
  border: 1px solid rgba(75,172,198,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pop-region__chevron {
  color: var(--gray);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.pop-region.pop-region--open .pop-region__chevron {
  transform: rotate(180deg);
}
.pop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.pop-region.pop-region--open .pop-grid {
  max-height: 800px;
}
.pop-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pop-item:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(75,172,198,0.1);
}
.pop-item__name {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 4px;
}
.pop-item__city {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
}

/* ---- Partner Page ---- */
.partner-category {
  margin-bottom: 24px;
}
.partner-category__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.partner-category__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}
.partner-category__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--blue);
}
.partner-category__title {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.partner-category__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.partner-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(27,45,91,0.08);
  transform: translateY(-3px);
}
.partner-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.partner-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.partner-card__name a {
  color: var(--navy);
  transition: color 0.2s ease;
}
.partner-card__name a:hover {
  color: var(--blue);
}
.partner-card__badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: rgba(75,172,198,0.1);
  border: 1px solid rgba(75,172,198,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.partner-card__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 20px;
}
.partner-card__stats {
  list-style: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0 0;
  border-top: 1px solid var(--gray-light);
}
.partner-card__stats li {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.4;
}
.partner-card__stats li strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

/* ---- Providers Bar Section ---- */
.providers-bar__label {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 32px;
}
/* Override inline padding-top:0 on the providers section */
.section:has(.providers-bar__label) {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

/* ---- Client Logo Bar ---- */
.logo-bar {
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 40px 0;
}
.logo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-bar__img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.35;
  transition: all 0.3s ease;
}
.logo-bar__item:hover .logo-bar__img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}
.logo-bar__img--tall {
  height: 48px;
  max-width: 60px;
}

/* ---- Vendor Gallery (3-col card grid) ---- */
.vendor-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

/* -- Card shell -- */
.vendor-gallery__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--gray-light);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 2px 12px rgba(27,45,91,0.05);
}
.vendor-gallery__card:hover {
  box-shadow: 0 20px 50px rgba(27, 45, 91, 0.14), 0 4px 14px rgba(75,172,198,0.08);
  transform: translateY(-7px);
  border-color: var(--blue);
}

/* -- Header zone (logo background) -- */
.vendor-gallery__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px 28px;
  background: linear-gradient(160deg, #f5f7fa 0%, #eef1f6 100%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.vendor-gallery__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.vendor-gallery__card:hover .vendor-gallery__header::after {
  transform: scaleX(1);
}
/* Cybersecurity header tint */
.vendor-gallery__header--security {
  background: linear-gradient(160deg, #fdf5f5 0%, #f8eeee 100%);
}
.vendor-gallery__header--security::after {
  background: linear-gradient(90deg, #e04040, #c02020);
}
/* Cloud header tint */
.vendor-gallery__header--cloud {
  background: linear-gradient(160deg, #f0f6ff 0%, #e8f0fc 100%);
}
.vendor-gallery__header--cloud::after {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
}

/* -- Logo -- */
.vendor-gallery__logo {
  height: 48px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.9;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}
.vendor-gallery__card:hover .vendor-gallery__logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.07);
}

/* -- Body (text content) -- */
.vendor-gallery__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 26px 26px;
  flex-grow: 1;
}
.vendor-gallery__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.vendor-gallery__about {
  font-size: 0.8rem;
  color: #4a5568;
  text-align: center;
  line-height: 1.65;
  margin-bottom: 14px;
}
.vendor-gallery__desc {
  font-size: 0.73rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  flex-grow: 1;
}

/* -- Tag pills -- */
.vendor-gallery__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: rgba(75,172,198,0.07);
  border: 1px solid rgba(75,172,198,0.16);
  border-radius: 100px;
  padding: 5px 16px;
  transition: all 0.35s ease;
}
.vendor-gallery__card:hover .vendor-gallery__tag {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(75,172,198,0.3);
}
/* Security tag variant */
.vendor-gallery__tag--security {
  color: #c02020;
  background: rgba(224,64,64,0.06);
  border-color: rgba(224,64,64,0.16);
}
.vendor-gallery__card:hover .vendor-gallery__tag--security {
  background: linear-gradient(135deg, #e04040, #c02020);
  box-shadow: 0 4px 14px rgba(224,64,64,0.3);
}
/* Cloud tag variant */
.vendor-gallery__tag--cloud {
  color: #2563eb;
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.16);
}
.vendor-gallery__card:hover .vendor-gallery__tag--cloud {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 4px 14px rgba(59,130,246,0.3);
}

/* -- Responsive -- */
@media (max-width: 768px) {
  .vendor-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .vendor-gallery__header { padding: 28px 20px 22px; }
  .vendor-gallery__body { padding: 18px 20px 22px; }
}
@media (max-width: 480px) {
  .vendor-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 420px;
  }
}

/* ---- Stats Grid — 3 Column Variant ---- */
.stats-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

/* ---- Features Grid (3x2) ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  margin-top: 48px;
}
.feature-card {
  text-align: left;
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--navy);
}
.feature-card__icon svg {
  width: 36px;
  height: 36px;
}
.feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.feature-card__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ---- Product Deep-Dive Card ---- */
.product-deepdive {
  max-width: 1000px;
  margin: 0 auto;
}
.product-deepdive__card {
  background: #f4f6f8;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}
.product-deepdive__card h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 12px;
  color: var(--black);
}
.product-deepdive__card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ---- Benefits Grid (2x2) ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.benefit-card {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 32px;
}
.benefit-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(75,172,198,0.1), rgba(59,140,110,0.1));
  border-radius: 12px;
  color: var(--blue);
}
.benefit-card__icon svg {
  width: 28px;
  height: 28px;
}
.benefit-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.benefit-card__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ---- Certifications Bar ---- */
.certs-bar {
  text-align: center;
  padding: 16px 0;
}
.certs-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.certs-bar__item {
  padding: 8px 20px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* ---- Product CTA Section ---- */
.product-cta {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.product-cta__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.product-cta__title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.product-cta__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 32px;
}
.product-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Product CTA with inline form ---- */
.product-cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-cta-form__info {
  padding-top: 24px;
}
.product-cta-form__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.product-cta-form__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}
.product-cta-form__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-cta-form__trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.product-cta-form__trust li svg {
  flex-shrink: 0;
  color: var(--blue-light);
}
.product-cta-form__card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.product-cta-form__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.product-cta-form__card-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.product-cta-form__card .form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.product-cta-form__card .form__group {
  margin-bottom: 16px;
}
.product-cta-form__card .form__textarea {
  min-height: 80px;
}
.product-cta-form__card .form__submit {
  margin-top: 4px;
}
@media (max-width: 1024px) {
  .product-cta-form { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .product-cta-form__card { padding: 24px; }
  .product-cta-form__card .form__row { grid-template-columns: 1fr; }
}

/* ---- Section title center (ensure exists globally) ---- */
.section__title-center {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
}

.section__title-center.section__title-center--light {
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.section__title-center--large {
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 48px !important;
}

/* ============================================
   PRODUCT PAGE — VISUAL ENHANCEMENTS
   ============================================ */

/* ---- Animated Hero Background ---- */
.hero--product .hero__bg {
  background: linear-gradient(170deg, #070d1c 0%, var(--navy-dark) 25%, var(--navy) 45%, #153045 70%, #0f2e3d 100%);
  overflow: hidden;
}

.hero--product .hero__bg::before {
  height: 48vh;
  background: linear-gradient(to bottom, transparent, rgba(75, 172, 198, 0.12));
}

/* Animated glow orb behind hero */
.hero--product .hero__bg::after {
  top: 10%;
  right: -8%;
  width: 600px;
  height: 600px;
  border: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 172, 198, 0.12) 0%, rgba(75, 172, 198, 0.04) 40%, transparent 70%);
  animation: heroOrb 8s ease-in-out infinite alternate;
}

@keyframes heroOrb {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(-40px, 30px) scale(1.15); opacity: 1; }
}

/* Second floating orb */
.hero--product::before {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 158, 60, 0.1) 0%, rgba(59, 140, 110, 0.05) 40%, transparent 70%);
  z-index: 1;
  animation: heroOrb2 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.2); }
}

/* Decorative grid lines on hero */
.hero--product::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(75, 172, 198, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 172, 198, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent);
  -webkit-mask: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent);
  pointer-events: none;
}

/* Hero eyebrow pill badge */
.hero--product .hero__eyebrow {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(75, 172, 198, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  backdrop-filter: blur(4px);
  background: rgba(75, 172, 198, 0.06);
  margin-bottom: 20px;
}

/* Hero headline — gradient text accent */
.hero .text-accent {
  background: linear-gradient(135deg, var(--blue-light), var(--teal-light), var(--green-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Enhanced Primary Button with glow ---- */
.hero--product .btn--primary {
  padding: 14px 36px;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(75, 172, 198, 0.3), 0 0 60px rgba(75, 172, 198, 0.1);
  position: relative;
}
.hero--product .btn--primary:hover {
  box-shadow: 0 0 30px rgba(75, 172, 198, 0.5), 0 0 80px rgba(75, 172, 198, 0.15);
  transform: translateY(-2px);
}

/* ---- Animated Dashboard Sparklines ---- */
@keyframes sparklinePulse {
  0% { opacity: 0.12; }
  50% { opacity: 0.25; }
  100% { opacity: 0.12; }
}

.hero--product ~ .section--dark-gradient .dashboard-showcase__sparkline,
.product-deepdive .dashboard-showcase__sparkline {
  animation: sparklinePulse 3s ease-in-out infinite;
}

/* Dashboard card hover lift */
.dashboard-showcase__card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.dashboard-showcase__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Dashboard value — larger, bolder */
.hero--product ~ .section--dark-gradient .dashboard-showcase__card-value,
.product-deepdive .dashboard-showcase__card-value {
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Pulsing Network Map Dots ---- */
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(75, 172, 198, 0.2); transform: scale(1); }
  50% { box-shadow: 0 0 0 8px rgba(75, 172, 198, 0.08), 0 0 16px rgba(75, 172, 198, 0.15); transform: scale(1.15); }
}

.hero--product ~ * .solution-row__map-dot {
  animation: dotPulse 3s ease-in-out infinite;
}
.hero--product ~ * .solution-row__map-dot:nth-child(2) { animation-delay: 0.3s; }
.hero--product ~ * .solution-row__map-dot:nth-child(3) { animation-delay: 0.6s; }
.hero--product ~ * .solution-row__map-dot:nth-child(4) { animation-delay: 0.9s; }
.hero--product ~ * .solution-row__map-dot:nth-child(5) { animation-delay: 1.2s; }
.hero--product ~ * .solution-row__map-dot:nth-child(6) { animation-delay: 1.5s; }
.hero--product ~ * .solution-row__map-dot:nth-child(7) { animation-delay: 1.8s; }
.hero--product ~ * .solution-row__map-dot:nth-child(8) { animation-delay: 2.1s; }
.hero--product ~ * .solution-row__map-dot:nth-child(9) { animation-delay: 2.4s; }
.hero--product ~ * .solution-row__map-dot:nth-child(10) { animation-delay: 2.7s; }

/* ---- Animated Threat/Progress Bars ---- */
@keyframes barGrow {
  from { width: 0; }
}

.hero--product ~ * .solution-row__threat-bar span {
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--teal-light));
  animation: barGrow 1.5s ease-out forwards;
}

/* ---- Enhanced Feature Cards ---- */
.features-grid .feature-card {
  padding: 28px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.35s ease;
  position: relative;
}
.features-grid .feature-card:hover {
  background: rgba(75, 172, 198, 0.03);
  border-color: rgba(75, 172, 198, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 45, 91, 0.06);
}

.features-grid .feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(75, 172, 198, 0.08), rgba(59, 140, 110, 0.06));
  padding: 12px;
  transition: all 0.35s ease;
}
.features-grid .feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, rgba(75, 172, 198, 0.15), rgba(59, 140, 110, 0.1));
  transform: scale(1.05);
}

/* ---- Feature Cards with card borders (like homepage advantages) ---- */
.features-grid--cards .feature-card {
  background: #ffffff;
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.features-grid--cards .feature-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(27, 45, 91, 0.10);
}
.features-grid--cards .feature-card__title {
  color: var(--navy);
}

/* ---- Feature Cards on dark backgrounds ---- */
.section--dark-gradient .features-grid .feature-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px;
}
.section--dark-gradient .features-grid .feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(75, 172, 198, 0.3);
}
.section--dark-gradient .feature-card__icon {
  color: var(--blue);
  background: rgba(75, 172, 198, 0.15);
}
.section--dark-gradient .feature-card__title {
  color: #ffffff;
}
.section--dark-gradient .feature-card__text {
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Enhanced Benefit Cards — gradient border glow ---- */
.benefits-grid .benefit-card {
  background: linear-gradient(145deg, #fafbfd, #f0f3f8);
  border: 1px solid rgba(75, 172, 198, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.benefits-grid .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--green-brand));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.benefits-grid .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 45, 91, 0.08);
  border-color: rgba(75, 172, 198, 0.1);
}
.benefits-grid .benefit-card:hover::before {
  opacity: 1;
}

.benefits-grid .benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  transition: all 0.35s ease;
}
.benefits-grid .benefit-card:hover .benefit-card__icon {
  background: linear-gradient(135deg, rgba(75, 172, 198, 0.18), rgba(59, 140, 110, 0.12));
  transform: scale(1.08);
}

/* ---- Enhanced Deep-Dive Card ---- */
.product-deepdive__card {
  background: linear-gradient(145deg, #f6f8fb, #edf1f6);
  border: 1px solid rgba(75, 172, 198, 0.06);
  position: relative;
  overflow: hidden;
}
.product-deepdive__card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 172, 198, 0.06), transparent 70%);
  pointer-events: none;
}

.product-deepdive__card h2 {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Certifications — hover glow ---- */
.certs-bar__item {
  transition: all 0.25s ease;
  cursor: default;
}
.certs-bar__item:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 12px rgba(75, 172, 198, 0.12);
  transform: translateY(-1px);
}

/* ---- Enhanced Stats Section on Product Page ---- */
.hero--product ~ .section--stats .stat__number {
  background: linear-gradient(135deg, var(--blue-light), var(--teal-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Enhanced Product CTA — glow background ---- */
.product-cta {
  position: relative;
  overflow: hidden;
}
.product-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 172, 198, 0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: heroOrb 6s ease-in-out infinite alternate;
}

.product-cta .btn--primary {
  box-shadow: 0 0 20px rgba(75, 172, 198, 0.3), 0 0 60px rgba(75, 172, 198, 0.08);
}
.product-cta .btn--primary:hover {
  box-shadow: 0 0 30px rgba(75, 172, 198, 0.5), 0 0 80px rgba(75, 172, 198, 0.15);
}

/* ---- Enhanced Intro Heading — decorative accent line ---- */
.product-intro__heading {
  position: relative;
}
.product-intro__heading::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ---- Logo bar subtle hover ---- */
/* (hover now handled via .logo-bar__img styles above) */

/* ---- Solution row frame glow on product page ---- */
.hero--product ~ * .solution-row__frame {
  transition: all 0.4s ease;
}
.hero--product ~ * .solution-row__frame:hover {
  box-shadow: 0 20px 60px rgba(27, 45, 91, 0.1), 0 0 0 1px rgba(75, 172, 198, 0.08);
  transform: translateY(-4px);
}

/* ---- Smooth section dividers ---- */
.hero--product ~ .section--white + .section--white {
  border-top: none;
}

/* ---- Animated stat counter placeholder (JS-driven) ---- */
.stat__number[data-count] {
  transition: all 0.3s ease;
}

/* ---- Product Page Responsive ---- */
@media (max-width: 1024px) {
  .product-intro { grid-template-columns: 1fr; gap: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid--3col { grid-template-columns: repeat(3, 1fr); }
  .story-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .pop-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid--3col { grid-template-columns: 1fr; }
  .product-deepdive__card { padding: 24px; }
  .hero--product { min-height: auto; padding: 100px 20px 48px; }
  .hero--product .hero__content { padding-top: 0; }
  .product-cta__actions { flex-direction: column; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { padding: 24px 20px; }
  .partner-card__stats { gap: 12px; }
  .pop-grid { grid-template-columns: repeat(2, 1fr); }
  .pop-region__header { flex-wrap: wrap; gap: 8px; }
  .network-map__legend { gap: 16px; flex-wrap: wrap; }
  .network-map__label { font-size: 8px; }
  .story-section { padding-top: 56px; padding-bottom: 56px; }
  .story-lead { margin-bottom: 48px; }
  .story-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .story-card { padding: 28px 24px; }
  .story-card__icon { width: 36px; height: 36px; margin-bottom: 16px; }
  .story-closing__text { font-size: 1.05rem; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.section__title-left {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ---------- Form ---------- */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__group {
  margin-bottom: 20px;
}
.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 6px;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: var(--navy);
  background: #f8f9fc;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(75, 172, 198, 0.15);
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: #a0a4ab;
}
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23717680' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form__textarea {
  min-height: 160px;
  resize: vertical;
}
.form__submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.95rem;
}
.form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Inline field errors */
.form__error {
  display: none;
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 4px;
}
.form__error.is-visible {
  display: block;
}
.form__input.is-invalid,
.form__select.is-invalid,
.form__textarea.is-invalid {
  border-color: #d32f2f;
}

/* Server error banner */
.form__server-error {
  display: none;
  background: #fdecea;
  color: #611a15;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-top: 12px;
}
.form__server-error.is-visible {
  display: block;
}

/* Loading spinner */
.form__spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: formSpin 0.6s linear infinite;
}
@keyframes formSpin {
  to { transform: rotate(360deg); }
}

/* Form success state */
.form__success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form__success.is-visible {
  display: block;
}
.form__success h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 16px 0 8px;
}
.form__success p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ---------- Contact Info ---------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  padding: 28px 24px;
}
.contact-info__header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.contact-info__header p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info__divider {
  height: 1px;
  background: var(--gray-light);
  margin: 0;
  border: none;
}
.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(75, 172, 198, 0.1);
  border-radius: 10px;
}
.contact-info__item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-info__item a {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.9rem;
}
.contact-info__item a:hover {
  text-decoration: underline;
}
.contact-info__item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ---------- Support notice ---------- */
.contact-info__support {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  padding: 28px 24px;
  margin: 32px 0;
}
.contact-info__support-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.contact-info__support-header svg {
  flex-shrink: 0;
}
.contact-info__support-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.contact-info__support p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 20px;
}
.contact-info__support-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info__support-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--transition);
  text-align: center;
  box-sizing: border-box;
}
.contact-info__support-actions .support-btn-primary {
  background: var(--blue);
  color: var(--white);
}
.contact-info__support-actions .support-btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(75, 172, 198, 0.3);
}
.contact-info__support-actions .support-btn-outline {
  border: 1.5px solid var(--gray-light);
  color: var(--navy);
  background: transparent;
}
.contact-info__support-actions .support-btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(75, 172, 198, 0.04);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
@media (max-width: 640px) {
  .form__row {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    gap: 40px;
  }
}

/* ============================================
   LEGAL / PRIVACY POLICY PAGES
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--gray);
}

.legal-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 20px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 32px 0 12px;
}

.legal-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin: 24px 0 8px;
}

.legal-content p {
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(59, 130, 246, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s ease;
}

.legal-content a:hover {
  text-decoration-color: var(--blue);
}

.legal-content hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 48px 0;
}

.legal-address {
  background: #f8fafc;
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  margin: 16px 0 24px;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-address strong {
  color: var(--navy);
}

.legal-address a {
  color: var(--blue);
}

@media (max-width: 640px) {
  .legal-content h2 {
    font-size: 1.35rem;
    margin: 36px 0 16px;
  }
  .legal-content h3 {
    font-size: 1.05rem;
  }
  .legal-content hr {
    margin: 36px 0;
  }
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.sitemap__group {
  min-width: 0;
}

.sitemap__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}

.sitemap__heading svg {
  flex-shrink: 0;
  color: var(--blue);
}

.sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sitemap__list li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.sitemap__list li:last-child {
  border-bottom: none;
}

.sitemap__list a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitemap__list a:hover {
  color: var(--blue);
}

.sitemap__desc {
  display: block;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 2px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .sitemap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ============================================
   CYBER INTRO — Managed Firewall Two-Column
   ============================================ */

/* — Section Background — */
.section--cyber-intro {
  position: relative;
  background: var(--white);
  padding: 80px 0;
}

.section--cyber-intro__grid {
  display: none;
}

/* — Two-Column Grid — */
.cyber-intro {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}

/* — Left Column — */
.cyber-intro__left {
  display: flex;
  flex-direction: column;
}

.cyber-intro__title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}

.cyber-intro__subtitle {
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--blue);
  margin-bottom: 24px;
}

.cyber-intro__body {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 32px;
}

.cyber-intro__values {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cyber-intro__value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.cyber-intro__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(75, 172, 198, 0.08);
  border: 1px solid rgba(75, 172, 198, 0.15);
  flex-shrink: 0;
}

.cyber-intro__value-icon svg {
  color: var(--blue);
}

/* ============================================
   PROCESS / WORKFLOW STEPS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Connector line between circles */
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal-light), var(--green-light));
  border-radius: 2px;
  opacity: 0.25;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

/* Chevron arrow between steps (except last) */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 38px;
  right: -6px;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid var(--blue);
  border-right: 2.5px solid var(--blue);
  transform: rotate(45deg);
  opacity: 0.3;
  z-index: 2;
}

/* Icon circle */
.process-step__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(27, 45, 91, 0.15), 0 0 0 4px rgba(75, 172, 198, 0.08);
}

.process-step__icon svg {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
}

/* Pulsing ring on hover */
.process-step:hover .process-step__icon {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 32px rgba(75, 172, 198, 0.25), 0 0 0 6px rgba(75, 172, 198, 0.12);
  transform: translateY(-4px);
}

.process-step:hover .process-step__icon svg {
  color: #ffffff;
  transform: scale(1.1);
}

/* Step label (Step 1, Step 2, etc.) */
.process-step__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-top: 16px;
  margin-bottom: 4px;
}

.process-step__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.process-step__desc {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--gray);
  max-width: 180px;
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }
  .process-steps::before { display: none; }
  .process-step:not(:last-child)::after { display: none; }
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px 0;
  }
  .process-step__icon {
    width: 72px;
    height: 72px;
  }
  .process-step__icon svg {
    width: 26px;
    height: 26px;
  }
}

/* — Right Column: Card — */
.cyber-intro__card {
  background: #f8fafb;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 4px 24px rgba(27, 45, 91, 0.06);
}

.cyber-intro__card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.cyber-intro__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.cyber-intro__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
}

.cyber-intro__card-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

.cyber-intro__card-divider {
  height: 1px;
  background: #e8edf2;
  margin: 18px 0;
}

.cyber-intro__card-powered {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.cyber-intro__card-powered-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.cyber-intro__card-powered-logo {
  height: 18px;
  width: auto;
  opacity: 0.45;
}

.cyber-intro__card .btn--primary {
  width: 100%;
  justify-content: center;
  padding: 13px 28px;
  font-size: 0.9rem;
}

/* — Responsive — */
@media (max-width: 1024px) {
  .cyber-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cyber-intro__left {
    text-align: center;
    align-items: center;
  }

  .cyber-intro__body {
    text-align: left;
  }

  .cyber-intro__values {
    justify-content: center;
  }

  .cyber-intro__card {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section--cyber-intro {
    padding: 56px 0;
  }

  .cyber-intro__values {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .cyber-intro__card {
    padding: 24px 20px 22px;
  }
}
