/* ========================================
   MAPS — Corporate Cloud-Native Platform
   style.css — Global Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=Space+Mono:wght@400;700&display=swap');

/* ── CSS Variables ── */
:root {
  --blue-deep:    #0A1628;
  --blue-mid:     #0D2B55;
  --blue-corp:    #0F4C9A;
  --blue-bright:  #1A6FC4;
  --cyan:         #00C2D9;
  --cyan-light:   #7FECF5;
  --silver:       #E8EDF5;
  --silver-dark:  #C5CFDF;
  --white:        #FFFFFF;
  --text-main:    #0A1628;
  --text-body:    #2C3E5B;
  --text-muted:   #6B7C99;

  --font-main:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-sm:    0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:    0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:    0 24px 64px rgba(10,22,40,0.18);
  --shadow-glow:  0 0 40px rgba(0,194,217,0.25);

  --nav-h:        72px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--blue-deep);
  color: var(--white);
}

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

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

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section--dark .section-subtitle,
.section--blue .section-subtitle {
  color: rgba(255,255,255,0.65);
}

/* ══════════════════════════════════════════
   NAVBAR — maps-navbar classes
   ══════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

/* maps-navbar: same background as hero section */
.maps-navbar {
  background: var(--blue-deep);
}

.nav.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.maps-navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* maps-navbar-logo */
.nav__logo,
.maps-navbar-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo span,
.maps-navbar-logo span {
  color: var(--cyan);
}

.maps-navbar-logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter var(--transition), transform var(--transition);
}

.maps-navbar-logo:hover .maps-navbar-logo-icon {
  filter: drop-shadow(0 0 8px rgba(0,194,217,0.55));
  transform: scale(1.08);
}

.maps-navbar-logo-icon svg,
.maps-navbar-logo-icon .maps-icon {
  width: 100%;
  height: 100%;
  display: block;
}

/* maps-navbar-menu */
.nav__links,
.maps-navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a,
.maps-navbar-menu a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__links a:hover,
.maps-navbar-menu a:hover,
.nav__links a.active,
.maps-navbar-menu a.maps-active-link {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* maps-navbar-cta */
.nav__cta,
.maps-navbar-cta {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-corp)) !important;
  border: 1px solid rgba(0,194,217,0.3) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  transition: all var(--transition) !important;
}

.nav__cta:hover,
.maps-navbar-cta:hover {
  background: linear-gradient(135deg, var(--blue-corp), var(--blue-bright)) !important;
  border-color: rgba(0,194,217,0.6) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,194,217,0.2);
}

.nav__hamburger,
.maps-navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__hamburger span,
.maps-navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--cyan);
  color: var(--blue-deep);
}

.btn--primary:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* Hero-specific: Learn More button = white bg + dark text (matches image) */
.maps-hero-buttons .btn--outline {
  background: var(--white);
  color: var(--blue-deep);
  border-color: var(--white);
  font-weight: 600;
}

.maps-hero-buttons .btn--outline:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* Hero Contact Sales = solid blue (matches image) */
.maps-hero-buttons .btn--primary {
  background: var(--blue-corp);
  color: var(--white);
  border: none;
}

.maps-hero-buttons .btn--primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,76,154,0.4);
}

.btn--outline-dark {
  background: transparent;
  color: var(--blue-corp);
  border-color: var(--blue-corp);
}

.btn--outline-dark:hover {
  background: var(--blue-corp);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,22,40,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.card--dark:hover {
  background: rgba(255,255,255,0.08);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(0,194,217,0.12);
  color: var(--cyan);
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.card--dark .card__title {
  color: var(--white);
}

.card__body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

.card--dark .card__body {
  color: rgba(255,255,255,0.65);
}

/* ── Grid Layouts ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* maps-scroll-animate */
.maps-scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.maps-scroll-animate.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   HERO — maps-hero classes
   ══════════════════════════════════════════ */

.hero,
.maps-hero {
  min-height: 100vh;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,194,217,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(15,76,154,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* maps-hero-container */
.maps-hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}

/* maps-hero-left */
.hero__content,
.maps-hero-left {
  color: var(--white);
}

/* maps-hero-title */
.hero__title,
.maps-hero-title {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 20px;
}

/* maps-hero-highlight */
.maps-hero-highlight {
  color: var(--cyan);
  position: relative;
}

.maps-hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  border-radius: 2px;
}

/* maps-hero-description */
.hero__desc,
.maps-hero-description {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

/* maps-hero-buttons */
.hero__actions,
.maps-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   HERO DIAGRAM — maps-hero-diagram
   Diamond layout matching reference design
   ══════════════════════════════════════════ */

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* maps-hero-diagram — flex column layout */
.maps-hero-diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 460px;
  min-height: 500px;
  padding: 10px 0;
}

/* SVG dashed lines — absolute overlay */
.maps-diagram-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Animated dashed lines — march downward */
.maps-dash-line {
  stroke-dasharray: 7, 5;
  animation: dashMarch 1.6s linear infinite;
}

.maps-dash-line--1 { animation-delay: 0s; }
.maps-dash-line--2 { animation-delay: 0.27s; }
.maps-dash-line--3 { animation-delay: 0.54s; }
.maps-dash-line--4 { animation-delay: 0.81s; }
.maps-dash-line--5 { animation-delay: 1.08s; }
.maps-dash-line--6 { animation-delay: 1.35s; }

@keyframes dashMarch {
  from { stroke-dashoffset: 24; }
  to   { stroke-dashoffset: 0; }
}

/* Each node wrapper */
.maps-diagram-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  cursor: default;
}

/* Middle row of 3 nodes */
.maps-diagram-middle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 10px;
  position: relative;
  z-index: 1;
  margin: 16px 0;
}

/* ── Circle variants ── */

/* Large circle (top, center, bottom) */
.maps-diagram-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 60, 130, 0.55);
  border: 1.5px solid rgba(120, 160, 255, 0.45);
  box-shadow: 0 0 0 8px rgba(30, 60, 130, 0.2),
              inset 0 0 20px rgba(0, 100, 200, 0.15);
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}

.maps-diagram-circle svg {
  display: block;
}

.maps-diagram-node:hover .maps-diagram-circle {
  border-color: rgba(0,194,217,0.7);
  box-shadow: 0 0 0 10px rgba(0,194,217,0.08),
              0 0 30px rgba(0,194,217,0.2);
  background: rgba(15, 50, 120, 0.7);
}

/* Large circle size */
.maps-circle-lg {
  width: 90px;
  height: 90px;
}

.maps-circle-lg svg {
  width: 32px;
  height: 32px;
}

/* Medium circle size */
.maps-circle-md {
  width: 76px;
  height: 76px;
}

.maps-circle-md svg {
  width: 26px;
  height: 26px;
}

/* ── Label badges ── */
.maps-diagram-label {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: rgba(10, 20, 50, 0.85);
  border: 1px solid rgba(100,140,255,0.2);
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
}

/* ══════════════════════════════════════════
   INTRODUCTION — maps-introduction classes
   ══════════════════════════════════════════ */

.maps-introduction {
  background: #F0F2F5;
  text-align: center;
  padding: 80px 0 48px;
}

/* Section that wraps the req/sol cards — also grey background */
.maps-introduction + section,
section.maps-reqs-section {
  background: #F0F2F5;
  padding-top: 0;
  padding-bottom: 80px;
}

/* maps-introduction-label */
.maps-introduction-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* maps-introduction-title */
.maps-introduction-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* maps-introduction-subtitle */
.maps-introduction-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   REQUIREMENT vs SOLUTION — maps-card classes
   ══════════════════════════════════════════ */

/* maps-req-sol-grid: 3-column layout */
.maps-req-sol-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 0;
}

.maps-card-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 28px;
  line-height: 1.4;
}

/* maps-card */
.maps-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,22,40,0.06);
}

/* maps-requirement-card */
.maps-requirement-card {
  border-top: 3px solid var(--blue-corp);
}

/* maps-solution-card */
.maps-solution-card {
  border-top: 3px solid var(--cyan);
}

/* maps-card-item */
.maps-card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.maps-card-item:last-of-type {
  margin-bottom: 28px;
}

/* maps-card-icon */
.maps-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15,76,154,0.08);
  border: 1px solid rgba(15,76,154,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-corp);
  flex-shrink: 0;
}

.maps-card-icon svg {
  width: 18px;
  height: 18px;
}

/* maps-card-icon--cyan variant for solution card */
.maps-card-icon--cyan {
  background: rgba(0,194,217,0.1);
  border-color: rgba(0,194,217,0.25);
  color: var(--cyan);
}

/* maps-card-text */
.maps-card-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.maps-card-text p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* maps-flow-arrow */
.maps-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.maps-flow-arrow-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-corp), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 0 24px rgba(0,194,217,0.3);
}

.maps-flow-arrow-inner svg {
  width: 22px;
  height: 22px;
}

/* maps-explore-button */
.maps-explore-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-corp);
  border: 1.5px solid var(--blue-corp);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  margin-top: 4px;
}

.maps-explore-button:hover {
  background: var(--blue-corp);
  color: var(--white);
  transform: translateX(4px);
}

/* ══════════════════════════════════════════
   FEATURE CARDS — maps-feature classes
   ══════════════════════════════════════════ */

/* maps-feature-section */
.maps-feature-section {
  background: var(--white);
}

/* maps-feature-grid: 3 columns */
.maps-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* maps-feature-card */
.maps-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,22,40,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.maps-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* maps-feature-icon */
.maps-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(0,194,217,0.12);
  color: var(--cyan);
}

.maps-feature-icon svg {
  width: 24px;
  height: 24px;
}

/* maps-feature-title */
.maps-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

/* maps-feature-description */
.maps-feature-description {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   CTA — maps-cta classes
   ══════════════════════════════════════════ */

/* maps-cta */
.cta,
.maps-cta {
  padding: 120px 0;
  background: var(--blue-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before,
.maps-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,217,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* maps-cta-title */
.cta__title,
.maps-cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.2;
}

/* maps-cta-description */
.cta__desc,
.maps-cta-description {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* maps-cta-buttons — restore outline for dark bg */
.maps-cta .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.maps-cta .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* maps-cta-buttons */
.cta__actions,
.maps-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── What is Maps ── */
.what__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 64px;
}

.what__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.what__arrow-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
}

.what__arrow-icon {
  font-size: 24px;
  color: var(--cyan);
}

.what__col-title {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 24px;
}

.what__item {
  margin-bottom: 24px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--cyan);
  background: rgba(0,194,217,0.04);
}

.what__item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--blue-deep);
}

.what__item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.what__solution {
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
}

.what__solution li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.5;
}

.what__solution li::before {
  content: '→';
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Hearing Points ── */
.hearing {
  padding: 100px 0;
  background: var(--silver);
}

.hearing__center {
  position: relative;
  max-width: 900px;
  margin: 64px auto 0;
}

.hearing__user {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-corp), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-glow);
}

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

.hearing__bubble {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 14px;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,22,40,0.06);
  position: relative;
  line-height: 1.5;
  transition: all var(--transition);
}

.hearing__bubble:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(0,194,217,0.3);
}

.hearing__bubble::before {
  content: '"';
  font-size: 32px;
  color: var(--cyan);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, serif;
}

.hearing__response {
  margin-top: 48px;
  background: var(--blue-deep);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
}

.hearing__response-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hearing__tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hearing__tag {
  padding: 10px 20px;
  background: rgba(0,194,217,0.12);
  border: 1px solid rgba(0,194,217,0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cyan-light);
}

/* ══════════════════════════════════════════
   FOOTER — maps-footer classes
   ══════════════════════════════════════════ */

.footer,
.maps-footer {
  background: #06101E;
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.6);
}

/* maps-footer-grid: 4 columns */
.footer__top,
.maps-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer__logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer__logo span { color: var(--cyan); }

.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

/* maps-footer-column */
.maps-footer-column { }

.footer__col h4,
.maps-footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.footer__col li,
.maps-footer-column li {
  margin-bottom: 12px;
}

.footer__col a,
.maps-footer-column a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__col a:hover,
.maps-footer-column a:hover { color: var(--cyan); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}

.footer__contact-item span:first-child {
  color: var(--cyan);
  flex-shrink: 0;
}

/* maps-footer-bottom */
.footer__bottom,
.maps-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__bottom-links a:hover { color: var(--white); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--blue-deep);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,194,217,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: var(--cyan); }

/* ── Comparison ── */
.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

/* ── Results ── */
.results-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
  border: 1px solid rgba(10,22,40,0.08);
}

.results-table thead tr {
  background: var(--blue-deep);
  color: var(--white);
}

.results-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 16px 24px;
  text-align: left;
  font-weight: 400;
}

.results-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-body);
  vertical-align: top;
  border-bottom: 1px solid rgba(10,22,40,0.06);
  line-height: 1.6;
}

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

.results-table tbody tr:nth-child(even) td {
  background: rgba(232,237,245,0.4);
}

.results-table td:first-child {
  font-weight: 600;
  color: var(--text-main);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .maps-footer-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__inner { gap: 48px; }
  .maps-hero-diagram { width: 340px; height: 340px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }

  /* Navbar mobile - Right Side Slide-In Logic */

  /* 1. Hide the menu links by default (off-canvas to the RIGHT) */
  .nav__links,
  .maps-navbar-menu { 
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0; /* Changed from left: 0 to right: 0 */
    bottom: 0;
    width: 300px; /* Width of the sidebar */
    height: 100vh; /* Full height */
    background: rgba(10,22,40,0.98);
    padding: 90px 24px 20px; /* Top padding clears the fixed navbar */
    gap: 8px;
    z-index: 998; /* High z-index */
    
    transform: translateX(100%); /* Hidden to the right */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* 2. Open State: Slide in from right */
  .nav.nav__mobile-open .nav__links,
  .nav.nav__mobile-open .maps-navbar-menu {
    transform: translateX(0); /* Slides into view */
  }

  /* 3. Menu Link Styling (Increased Font Size) */
  .nav__links a,
  .maps-navbar-menu a {
    font-size: 18px; /* Increased from default 14px */
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* 4. Hamburger Icon Styling */
  .nav__hamburger,
  .maps-navbar-toggle { 
    display: flex; 
    z-index: 999; /* Ensure button is above the menu overlay */
  }

  /* Hero Mobile Layout FIX */
  .hero__inner {
    grid-template-columns: 1fr; 
    gap: 48px; 
    display: flex; 
    flex-direction: column;
  }
  
  .hero__content {
    order: 1; /* Text first */
  }
  
  .hero__visual {
    display: flex; /* SHOW the diagram */
    justify-content: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 60px; /* Margin bottom requested */
    order: 2; /* Diagram second */
  }

  .maps-hero-diagram {
    width: 100%;
    max-width: 340px;
    min-height: auto;
    height: auto;
    padding: 0;
    transform: scale(1);
  }

  .maps-diagram-lines {
    width: 100%;
    height: 100%;
  }

  .maps-circle-lg {
    width: 80px;
    height: 80px;
  }

  .maps-circle-lg svg {
    width: 28px;
    height: 28px;
  }

  .maps-circle-md {
    width: 68px;
    height: 68px;
  }

  .maps-circle-md svg {
    width: 24px;
    height: 24px;
  }

  /* Req/Sol grid */
  .maps-req-sol-grid {
    grid-template-columns: 1fr;
  }
  .maps-flow-arrow { transform: rotate(90deg); }

  /* Feature grid */
  .maps-feature-grid { grid-template-columns: 1fr; }

  /* Hearing */
  .hearing__bubbles { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer__top,
  .maps-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom,
  .maps-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__bottom-links { justify-content: center; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .what__grid { grid-template-columns: 1fr; }
  .what__arrow { display: none; }
  .comparison__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .maps-hero-headline {
    font-size: 26px; /* Fixed size for small devices */
    line-height: 1.25;
  }
  .hearing__bubbles { grid-template-columns: 1fr; }
  .hero__actions,
  .maps-hero-buttons { flex-direction: column; }
  .cta__actions,
  .maps-cta-buttons { flex-direction: column; align-items: center; }
  .maps-feature-grid { grid-template-columns: 1fr; }
}

/* ========================================
   MAPS Overview Page — overview.css
   Unique classes: maps-header, maps-hero-overview,
   maps-platform-intro, maps-capabilities
   ======================================== */

/* ══════════════════════════════════════════
   1. NAVIGATION HEADER — maps-header
   ══════════════════════════════════════════ */

.maps-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: var(--blue-deep);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.maps-header.maps-header--scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.maps-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.maps-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.maps-logo:hover { opacity: 0.85; }

.maps-logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.maps-logo:hover .maps-logo-icon {
  filter: drop-shadow(0 0 8px rgba(0,194,217,0.55));
  transform: scale(1.06);
}

.maps-logo-icon svg { width: 100%; height: 100%; display: block; }

.maps-logo-dot { color: var(--cyan); }

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

.maps-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}

.maps-nav-item a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.maps-nav-item a:hover,
.maps-nav-item a.maps-nav-active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ── Hero image ── */
.maps-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  cursor: zoom-in;
  display: block;
  transition: transform 0.2s ease;
}
.maps-hero-img:hover {
  transform: scale(1.02);
}

.ov-hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 16px;
  background: rgba(13,43,85,0.85);
  border: 1px solid rgba(0,194,217,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(160,200,255,0.7);
  font-size: 13px;
}

/* ── Image modal ── */
/* ── Image modal (hide navbar) ── */
.img-modal-overlay.open ~ * nav,
.img-modal-overlay.open ~ nav,
body.modal-open nav,
body.modal-open header {
  z-index: 0 !important;
}

body.modal-open {
  overflow: hidden;
}

/* ── Image modal — full cover ── */
.img-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2147483647;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  /* solid black background on the element itself */
  background: #000;
}
/* extra solid layer via pseudo-element — belt AND suspenders */
.img-modal-overlay::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: -1;
}
.img-modal-overlay.open {
  display: flex;
}
.img-modal-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(255,255,255,0.1);
  object-fit: contain;
  cursor: default;
}
.img-modal-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.img-modal-close:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.08);
}
.img-modal-close svg { pointer-events: none; }

body.modal-open { overflow: hidden; }

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Capabilities image card ── */
.maps-capabilities-img-card {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.maps-capabilities-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  cursor: zoom-in;
  display: block;
  transition: transform 0.2s ease;
}

.maps-capabilities-img:hover {
  transform: scale(1.02);
}

/* CTA */
.maps-nav-cta { flex-shrink: 0; }

.maps-cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-corp));
  border: 1px solid rgba(0,194,217,0.3);
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.maps-cta-btn:hover {
  background: linear-gradient(135deg, var(--blue-corp), var(--blue-bright));
  border-color: rgba(0,194,217,0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,194,217,0.2);
}

/* Hamburger */
.maps-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}

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

/* ══════════════════════════════════════════
   2. HERO OVERVIEW — maps-hero-overview
   ══════════════════════════════════════════ */

.maps-hero-overview {
  min-height: 100vh;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.maps-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.maps-hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(0,194,217,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(15,76,154,0.35) 0%, transparent 60%);
  pointer-events: none;
}

.maps-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.maps-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left text */
.maps-hero-text { color: var(--white); }

.maps-hero-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.maps-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.maps-hero-description {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.maps-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue-corp);
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
}

.maps-hero-button:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,76,154,0.4);
}

/* Right visual */
.maps-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.maps-hero-diagram-card {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,194,217,0.15);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}

.maps-hero-diagram {
  width: 100%;
  height: auto;
  display: block;
}

/* Animated connector lines in hero SVG */
.ov-conn-line {
  animation: ovConnMarch 2s linear infinite;
}

@keyframes ovConnMarch {
  from { stroke-dashoffset: 18; }
  to   { stroke-dashoffset: 0; }
}

/* ══════════════════════════════════════════
   3. PLATFORM INTRODUCTION — maps-platform-intro
   ══════════════════════════════════════════ */

.maps-platform-intro {
  background: var(--white);
  padding: 100px 0;
}

.maps-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Row 1: Header */
.maps-intro-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.maps-intro-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.maps-intro-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.maps-intro-description {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Row 2: Features + Video */
.maps-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Feature cards — 2-column inner grid */
.maps-intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.maps-feature-card-ov {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(10,22,40,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.maps-feature-card-ov:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.12);
  border-color: rgba(0,194,217,0.25);
}

.maps-feature-icon-ov {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,194,217,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.maps-feature-icon-ov svg { width: 20px; height: 20px; }

.maps-feature-content-ov { }

.maps-feature-title-ov {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.maps-feature-text-ov {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
}

/* ════════════════════════════
   VIDEO PLAYER
   ════════════════════════════ */
.maps-intro-video {
  width: 100%;
}

.maps-video-container {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1f3e 0%, #0a1628 100%);
  cursor: pointer;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
}

.maps-video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ── Centre overlay ── */
.maps-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.25s;
  border-radius: 14px;
  z-index: 2;
}
.maps-video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Blue solid play button (matches screenshot) */
.maps-video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: #2f6bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(47,107,255,0.5);
}
.maps-video-play-btn:hover {
  background: #1a55e0;
  transform: scale(1.08);
}

/* Meta text below play button */
.maps-video-meta {
  display: flex;
  align-items: center;
  gap: 0;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  letter-spacing: 0.01em;
}
.maps-video-label {
  color: rgba(255,255,255,0.65);
}
.maps-video-duration {
  color: rgba(255,255,255,0.65);
}
.maps-video-duration::before {
  content: ' · ';
}

/* ── Bottom control bar ── */
.maps-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  border-radius: 0 0 14px 14px;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 3;
}
.maps-video-container:hover .maps-video-controls,
.maps-video-container.paused .maps-video-controls {
  opacity: 1;
}

.mvc-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
  transition: background 0.12s;
}
.mvc-btn:hover {
  background: rgba(255,255,255,0.15);
}

.mvc-time {
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-family: monospace;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 72px;
}

/* ── Progress bar ── */
.mvc-progress-wrap {
  flex: 1;
  position: relative;
  height: 16px;
  display: flex;
  align-items: center;
}
.mvc-progress-bg {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  overflow: hidden;
  pointer-events: none;
}
.mvc-progress-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.1s linear;
}
.mvc-progress-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

/* ── Three-dot dropdown menu ── */
.mvc-more-wrap {
  position: relative;
}
.mvc-more-menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  min-width: 190px;
  overflow: hidden;
  z-index: 200;
}
.mvc-more-menu.open {
  display: block;
}
.mvc-more-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: none;
  font-size: 14px;
  color: #1f2937;
  cursor: pointer;
  text-align: left;
  transition: background 0.12s;
  white-space: nowrap;
}
.mvc-more-item:hover {
  background: #f3f4f6;
}
.mvc-more-item svg {
  flex-shrink: 0;
  color: #6b7280;
}

/* ══════════════════════════════════════════
   4. CAPABILITIES — maps-capabilities
   ══════════════════════════════════════════ */

   /* ── DevOps pipeline image ── */
.maps-devops-pipeline-wrapper {
  width: 100%;
}

.maps-devops-pipeline-img-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  line-height: 0;
}

.maps-devops-pipeline-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.maps-devops-pipeline-img:hover {
  transform: scale(1.01);
}

.maps-capabilities {
  background: #F0F2F5;
  padding: 100px 0;
}

.maps-capabilities-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.maps-capabilities-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.maps-capabilities-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.maps-capabilities-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.maps-capabilities-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Main layout */
.maps-capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Diagram */
.maps-capabilities-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
}

.maps-platform-diagram {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(10,22,40,0.15));
}

/* Capability cards — 2x3 grid */
.maps-capabilities-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.maps-capability-card {
  background: var(--white);
  border-radius: 14px;
  padding: 20px 20px;
  box-shadow: 0 4px 16px rgba(10,22,40,0.07);
  border: 1px solid rgba(10,22,40,0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.maps-capability-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10,22,40,0.12);
  border-color: rgba(0,194,217,0.2);
}

.maps-capability-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,194,217,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.maps-capability-icon svg { width: 18px; height: 18px; }

.maps-capability-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 5px;
  line-height: 1.3;
}

.maps-capability-description {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .maps-hero-grid { gap: 48px; }
  .maps-capabilities-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .maps-nav-container { padding: 0 20px; }

  .maps-navigation { display: none; }
  .maps-nav-cta { display: none; }
  .maps-nav-hamburger { display: flex; }

  .maps-header.maps-nav-open .maps-navigation {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    padding: 20px;
    justify-content: center;
  }

  .maps-header.maps-nav-open .maps-nav-list {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .maps-header.maps-nav-open .maps-nav-item a {
    display: block;
    padding: 12px 16px;
  }

  .maps-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .maps-hero-visual { display: none; }
  .maps-hero-container { padding: 40px 20px; }

  .maps-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .maps-intro-features { grid-template-columns: 1fr; }
  .maps-intro-container { padding: 0 20px; }

  .maps-capabilities-grid { grid-template-columns: 1fr; }
  .maps-capabilities-diagram { display: none; }
  .maps-capabilities-container { padding: 0 20px; }

  .maps-platform-intro { padding: 72px 0; }
  .maps-capabilities { padding: 72px 0; }
}

@media (max-width: 480px) {
  .maps-capabilities-cards { grid-template-columns: 1fr; }
  .maps-intro-features { grid-template-columns: 1fr; }
  .maps-hero-button { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   5. DEVOPS LIFECYCLE — maps-devops-lifecycle-section
   ══════════════════════════════════════════ */

.maps-devops-lifecycle-section {
  background: var(--blue-deep);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.maps-devops-lifecycle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.maps-devops-lifecycle-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* Header */
.maps-devops-lifecycle-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.maps-devops-lifecycle-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.maps-devops-lifecycle-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.maps-devops-lifecycle-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* Pipeline wrapper */
.maps-devops-pipeline-wrapper {
  margin-bottom: 64px;
}

.maps-devops-pipeline-container {
  background: rgba(13,43,85,0.6);
  border: 1px solid rgba(0,194,217,0.2);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

/* Pipeline header bar */
.maps-devops-pipeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(0,194,217,0.15);
}

.maps-devops-pipeline-header-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.maps-devops-pipeline-header-label svg {
  width: 14px;
  height: 14px;
}

.maps-devops-pipeline-header-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--cyan);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Pipeline stage grid: 6 columns */
.maps-devops-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}

/* Connecting arrow between cards */
.maps-devops-pipeline-grid .maps-devops-stage-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(0,194,217,0.4), transparent);
}

.maps-devops-stage-card {
  padding: 28px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-right: 1px solid rgba(0,194,217,0.1);
  position: relative;
  transition: background 0.3s ease;
}

.maps-devops-stage-card:last-child {
  border-right: none;
}

.maps-devops-stage-card:hover {
  background: rgba(0,194,217,0.06);
}

.maps-devops-stage-number {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(0,194,217,0.5);
  letter-spacing: 0.1em;
}

.maps-devops-stage-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,194,217,0.12);
  border: 1px solid rgba(0,194,217,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin: 4px 0;
  transition: all 0.3s ease;
}

.maps-devops-stage-card:hover .maps-devops-stage-icon {
  background: rgba(0,194,217,0.2);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,194,217,0.2);
}

.maps-devops-stage-icon svg { width: 22px; height: 22px; }

.maps-devops-stage-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.maps-devops-stage-description {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  min-height: 32px;
}

.maps-devops-stage-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.maps-devops-stage-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.2);
  border-radius: 100px;
  color: rgba(0,194,217,0.85);
  white-space: nowrap;
}

/* Pipeline footer */
.maps-devops-pipeline-footer {
  padding: 16px 24px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(0,194,217,0.1);
}

.maps-devops-pipeline-features {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.maps-devops-pipeline-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.maps-devops-pipeline-feature svg {
  width: 13px;
  height: 13px;
  color: var(--cyan);
  opacity: 0.7;
}

/* Step cards: 4-column grid */
.maps-devops-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.maps-devops-step-card {
  background: rgba(13,43,85,0.5);
  border: 1px solid rgba(0,194,217,0.12);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.maps-devops-step-card:hover {
  background: rgba(0,194,217,0.08);
  border-color: rgba(0,194,217,0.3);
  transform: translateY(-3px);
}

.maps-devops-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,194,217,0.12);
  border: 1px solid rgba(0,194,217,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.maps-devops-step-icon svg { width: 18px; height: 18px; }

.maps-devops-step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(0,194,217,0.6);
  letter-spacing: 0.1em;
}

.maps-devops-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.maps-devops-step-description {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   6. PLATFORM COMPONENTS — maps-platform-components-section
   ══════════════════════════════════════════ */

.maps-platform-components-section {
  background: var(--white);
  padding: 100px 0;
}

.maps-platform-components-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.maps-platform-components-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.maps-platform-components-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.maps-platform-components-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.maps-platform-components-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Row 1: App cards side by side */
.maps-platform-components-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* Shared app card base */
.maps-platform-customer-app,
.maps-platform-common-app {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(10,22,40,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maps-platform-customer-app:hover,
.maps-platform-common-app:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10,22,40,0.12);
}

.maps-platform-customer-app {
  border-top: 3px solid var(--blue-corp);
}

.maps-platform-common-app {
  border-top: 3px solid var(--cyan);
}

.maps-platform-app-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15,76,154,0.1);
  border: 1px solid rgba(15,76,154,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-corp);
  margin-bottom: 20px;
}

.maps-platform-app-icon--cyan {
  background: rgba(0,194,217,0.1);
  border-color: rgba(0,194,217,0.2);
  color: var(--cyan);
}

.maps-platform-app-icon svg { width: 24px; height: 24px; }

.maps-platform-app-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.maps-platform-app-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.maps-platform-app-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.maps-platform-app-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.maps-platform-app-list li svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Row 2: Multi-Tenant Platform */
.maps-platform-multitenant {
  background: #F5F7FA;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
}

.maps-platform-multitenant-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.maps-platform-multitenant-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(47,107,255,0.08);
  border-color: rgba(47,107,255,0.2);
  color: #2F6BFF;
}

.maps-platform-multitenant-icon svg { width: 22px; height: 22px; }

.maps-platform-multitenant-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  color: #1F2937;
}

.maps-platform-multitenant-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Architecture overview image ── */
.ov-arch-img-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.08);
  box-shadow: 0 8px 40px rgba(10,22,40,0.1);
  line-height: 0;
}

.ov-arch-overview-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.ov-arch-overview-img:hover {
  transform: scale(1.01);
}

/* 4-column feature grid */
.maps-platform-multitenant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.maps-platform-multitenant-item {
  background: #ffffff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.maps-platform-multitenant-item:hover {
  background: #EFF6FF;
  border-color: rgba(47,107,255,0.25);
}

.maps-platform-multitenant-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47,107,255,0.08);
  color: #2F6BFF;
}

.maps-platform-multitenant-item-icon svg { width: 18px; height: 18px; }

.maps-platform-multitenant-item-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1F2937;
}

/* Row 3: Maps Team */
.maps-platform-team {
  background: #F0F2F5;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(10,22,40,0.07);
}

.maps-platform-team-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.maps-platform-team-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(15,76,154,0.1);
  border: 1px solid rgba(15,76,154,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-corp);
  flex-shrink: 0;
}

.maps-platform-team-icon svg { width: 22px; height: 22px; }

.maps-platform-team-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.maps-platform-team-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.maps-platform-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.maps-platform-team-card {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(10,22,40,0.08);
  transition: all 0.3s ease;
}

.maps-platform-dev-team {
  background: var(--white);
  border-left: 3px solid var(--blue-corp);
}

.maps-platform-ops-team {
  background: var(--white);
  border-left: 3px solid var(--cyan);
}

.maps-platform-team-card:hover {
  box-shadow: 0 8px 24px rgba(10,22,40,0.1);
  transform: translateY(-2px);
}

.maps-platform-team-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(15,76,154,0.08);
  border: 1px solid rgba(15,76,154,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-corp);
}

.maps-platform-ops-team .maps-platform-team-card-icon {
  background: rgba(0,194,217,0.1);
  border-color: rgba(0,194,217,0.2);
  color: var(--cyan);
}

.maps-platform-team-card-icon svg { width: 20px; height: 20px; }

.maps-platform-team-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}

.maps-platform-team-card-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.maps-platform-team-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.maps-platform-team-badges span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(15,76,154,0.08);
  color: var(--blue-corp);
  border: 1px solid rgba(15,76,154,0.15);
}

.maps-platform-ops-team .maps-platform-team-badges span {
  background: rgba(0,194,217,0.1);
  color: #007a8a;
  border-color: rgba(0,194,217,0.25);
}

/* ══════════════════════════════════════════
   RESPONSIVE — new sections
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .maps-devops-pipeline-grid { grid-template-columns: repeat(3, 1fr); }
  .maps-devops-step-grid { grid-template-columns: repeat(2, 1fr); }
  .maps-platform-multitenant-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .maps-devops-lifecycle-container,
  .maps-platform-components-container { padding: 0 20px; }

  .maps-devops-pipeline-grid { grid-template-columns: repeat(2, 1fr); }
  .maps-devops-step-grid { grid-template-columns: repeat(2, 1fr); }
  .maps-platform-components-grid { grid-template-columns: 1fr; }
  .maps-platform-multitenant-grid { grid-template-columns: repeat(2, 1fr); }
  .maps-platform-team-grid { grid-template-columns: 1fr; }
  .maps-devops-lifecycle-section { padding: 72px 0; }
  .maps-platform-components-section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .maps-devops-pipeline-grid { grid-template-columns: 1fr 1fr; }
  .maps-devops-step-grid { grid-template-columns: 1fr; }
  .maps-platform-multitenant-grid { grid-template-columns: 1fr; }
  .maps-devops-pipeline-features { gap: 14px; }
}

/* ══════════════════════════════════════════
   7. APPLICATIONS SECTION — maps-applications-section
   ══════════════════════════════════════════ */

.maps-applications-section {
  background: var(--silver);
  padding: 80px 0;
}

.maps-applications-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Base card shell (shared by all 4) ── */
.maps-application-card-customer,
.maps-application-card-common,
.maps-application-card-multitenant,
.maps-application-card-team {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(10,22,40,0.07);
  border: 1px solid rgba(10,22,40,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maps-application-card-customer:hover,
.maps-application-card-common:hover,
.maps-application-card-multitenant:hover,
.maps-application-card-team:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(10,22,40,0.11);
}

/* Individual accent borders */
.maps-application-card-customer { border-left: 4px solid var(--blue-corp); }
.maps-application-card-common   { border-left: 4px solid var(--cyan); }
.maps-application-card-multitenant { border-left: 4px solid var(--blue-bright); }
.maps-application-card-team     { border-left: 4px solid var(--blue-deep); }

/* ── Card header ── */
.maps-application-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}

/* Number badge */
.maps-application-card-number {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15,76,154,0.1);
  border: 1px solid rgba(15,76,154,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-corp);
  flex-shrink: 0;
}

.maps-application-card-number--blue {
  background: rgba(26,111,196,0.1);
  border-color: rgba(26,111,196,0.2);
  color: var(--blue-bright);
}

.maps-application-card-number--dark {
  background: rgba(10,22,40,0.08);
  border-color: rgba(10,22,40,0.15);
  color: var(--blue-deep);
}

/* Title group */
.maps-application-card-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.maps-application-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0;
}

.maps-application-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── Card body ── */
.maps-application-card-body {
  padding: 20px 28px 28px;
}

/* Inner list container */
.maps-application-list {
  list-style: none;
  padding: 16px 20px;
  margin: 0;
  background: var(--silver);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.maps-application-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

/* SVG bullet dots */
.maps-app-bullet {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  color: var(--cyan);
}

.maps-app-bullet--blue {
  color: var(--blue-bright);
}

.maps-app-bullet--dark {
  color: var(--blue-corp);
}

/* ── Card 4 Team grid ── */
.maps-application-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.maps-application-team-col {
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.maps-application-team-dev {
  background: rgba(15,76,154,0.05);
  border: 1px solid rgba(15,76,154,0.12);
}

.maps-application-team-ops {
  background: rgba(0,194,217,0.05);
  border: 1px solid rgba(0,194,217,0.15);
}

.maps-application-team-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(10,22,40,0.07);
}

.maps-application-team-col-header svg {
  width: 15px;
  height: 15px;
  color: var(--blue-corp);
}

.maps-application-team-ops .maps-application-team-col-header svg {
  color: var(--cyan);
}

/* Override list bg inside team cols */
.maps-application-team-col .maps-application-list {
  background: transparent;
  padding: 0;
  gap: 10px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .maps-applications-container { padding: 0 20px; gap: 24px; }
  .maps-application-card-header { padding: 20px; gap: 14px; }
  .maps-application-card-body { padding: 16px 20px 20px; }
  .maps-applications-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .maps-application-team-grid { grid-template-columns: 1fr; }
  .maps-application-card-title { font-size: 15px; }
  .maps-application-card-number { width: 34px; height: 34px; font-size: 12px; }
}

/* ══════════════════════════════════════════
   8. ARCHITECTURE SECTIONS — ov-arch-*
   ══════════════════════════════════════════ */

/* Hero diagram wrapper */
.ov-arch-hero-wrapper {
  background: #F0F2F5;
  padding: 80px 0 60px;
  border-top: 1px solid rgba(10,22,40,0.07);
}

.ov-arch-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.ov-arch-hero-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.ov-arch-hero-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.ov-arch-hero-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ov-arch-diagram-container {
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(10,22,40,0.08);
  box-shadow: 0 8px 40px rgba(10,22,40,0.1);
  overflow: hidden;
  margin-top: 8px;
}

.ov-arch-overview-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Timeline wrapper */
.ov-arch-timeline-wrapper {
  display: grid;
  grid-template-columns: 64px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px 80px;
  gap: 0 28px;
  align-items: stretch;
}

/* Left: line + nodes */
.ov-arch-timeline-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ov-arch-timeline-line {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 2px;
  background: rgba(10,22,40,0.1);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Shared node style */
.ov-arch-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-corp);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(15,76,154,0.15);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ov-arch-node-1 { margin-top: 32px; }
.ov-arch-node-2 { margin-top: auto; }
.ov-arch-node-3 { margin-top: auto; }
.ov-arch-node-4 { margin-top: auto; margin-bottom: 32px; }

.ov-arch-node.ov-arch-node-active {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(0,194,217,0.2), 0 4px 16px rgba(15,76,154,0.35);
  background: var(--cyan);
  color: var(--blue-deep);
}

/* Right: content sections */
.ov-arch-timeline-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Shared section card */
.ov-arch-section-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(10,22,40,0.07);
  box-shadow: 0 4px 20px rgba(10,22,40,0.08);
  padding: 28px 28px 32px;
  transition: box-shadow 0.3s ease;
}

.ov-arch-section-card:hover {
  box-shadow: 0 8px 36px rgba(10,22,40,0.12);
}

/* Section header */
.ov-arch-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ov-arch-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(15,76,154,0.1);
  color: var(--blue-corp);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.ov-arch-step-badge--light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.ov-arch-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.015em;
}

.ov-arch-title-white { color: var(--white); }

.ov-arch-section-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 680px;
}

.ov-arch-desc-light { color: rgba(255,255,255,0.6); }

/* ── 01 Customer grid ── */
.ov-arch-customer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.ov-arch-customer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 10px;
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 8px rgba(10,22,40,0.05);
}

.ov-arch-customer-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10,22,40,0.1);
  border-color: rgba(0,194,217,0.3);
}

.ov-arch-item-icon {
  width: 28px;
  height: 28px;
  color: var(--blue-corp);
  flex-shrink: 0;
}

/* ── 02 Services grid ── */
.ov-arch-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ov-arch-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  background: #F8FAFF;
  border: 1px solid rgba(10,22,40,0.07);
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
  cursor: default;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.ov-arch-service-item:hover {
  transform: translateY(-2px);
  border-color: var(--blue-corp);
  background: rgba(15,76,154,0.05);
}

/* ── 03 Infra card ── */
.ov-arch-infra-card {
  background: var(--white);
  border-color: rgba(10,22,40,0.07);
}

.ov-arch-infra-card:hover {
  box-shadow: 0 8px 40px rgba(10,22,40,0.1);
}

.ov-arch-infra-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ov-arch-infra-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 8px;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  background: #F8FAFF;
  border: 1px solid rgba(10,22,40,0.07);
  color: var(--text-body);
}

.ov-arch-infra-item:hover {
  transform: translateY(-2px);
  background: rgba(15,76,154,0.05);
  border-color: var(--blue-corp);
}

.ov-arch-infra-icon {
  width: 26px;
  height: 26px;
  color: var(--blue-corp);
}

/* ── 04 DevOps pipeline ── */
.ov-arch-devops-pipeline {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ov-arch-devops-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 12px;
  min-width: 100px;
  text-align: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  background: #F8FAFF;
  border: 1px solid rgba(10,22,40,0.07);
  color: var(--text-body);
}

.ov-arch-devops-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(234,88,12,0.14);
}

.ov-arch-devops-icon {
  width: 26px;
  height: 26px;
  color: var(--blue-corp)
}

.ov-arch-devops-label {
  font-size: 13px;
  font-weight: 700;
  color: #1F2937;;
}

.ov-arch-devops-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #2F6BFF, #60A5FA);
  min-width: 20px;
  position: relative;
  /* push connector outside the box edges */
  margin: 0 4px;
  z-index: 0;
}

.ov-arch-devops-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #60A5FA;
}

/* ── Architecture GIF card ── */
.arch-gif-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(47,107,255,0.2);
  box-shadow:
    0 0 40px rgba(47,107,255,0.12),
    0 16px 48px rgba(0,0,0,0.18);
  background: #0B1E3C;
  line-height: 0;
  /* match the sticky positioning of the original right column */
  position: sticky;
  top: 100px;
}

.arch-gif-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  cursor: zoom-in;
  /* GIFs shouldn't scale on hover — animation is the interaction */
  transition: opacity 0.2s ease;
}

.arch-gif-img:hover {
  opacity: 0.92;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ov-arch-customer-grid { grid-template-columns: repeat(3, 1fr); }
  .ov-arch-services-grid  { grid-template-columns: repeat(3, 1fr); }
  .ov-arch-infra-grid     { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .ov-arch-hero-wrapper { padding: 56px 0 40px; }
  .ov-arch-hero-inner   { padding: 0 20px; }

  .ov-arch-timeline-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 20px 60px;
  }
  .ov-arch-timeline-left  { display: none; }
  .ov-arch-timeline-right { gap: 24px; }

  .ov-arch-customer-grid { grid-template-columns: repeat(2, 1fr); }
  .ov-arch-services-grid  { grid-template-columns: repeat(2, 1fr); }
  .ov-arch-infra-grid     { grid-template-columns: repeat(2, 1fr); }

  .ov-arch-devops-pipeline { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .ov-arch-devops-connector { display: none; }

  .ov-arch-section-card { padding: 20px; }
}

@media (max-width: 480px) {
  .ov-arch-customer-grid { grid-template-columns: 1fr 1fr; }
  .ov-arch-services-grid  { grid-template-columns: 1fr 1fr; }
  .ov-arch-infra-grid     { grid-template-columns: 1fr 1fr; }
  .ov-arch-section-title  { font-size: 17px; }
}

/* ══════════════════════════════════════════
   SECTION 05+06 — PLATFORM CAPABILITIES + VALUE PILLARS
   maps-capabilities-main-wrapper
   ══════════════════════════════════════════ */

.maps-capabilities-main-wrapper {
  background: #F5F7FB;
  padding: 80px 0;
  border-top: 1px solid rgba(10,22,40,0.06);
}

.maps-capabilities-inner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Centered section heading */
.maps-capabilities-section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.maps-capabilities-section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.maps-capabilities-section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Two-column grid — align tops */
.maps-capabilities-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Left column ── */
.maps-capabilities-left-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Platform Layers sub-section */
.platform-layers-container-wrapper { }

.platform-layers-label-row {
  margin-bottom: 20px;
}

.platform-layers-heading-title {
  font-size: 16px;
  font-weight: 700;
  color: #2F6BFF;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  display: inline-block;
}

.platform-layers-heading-underline {
  width: 36px;
  height: 2px;
  background: #2F6BFF;
  border-radius: 2px;
}

.platform-layer-card-block {
  margin-bottom: 12px;
  /* ensure always visible regardless of reveal state */
  opacity: 1 !important;
  transform: none;
}

.platform-layer-card-block:last-child { margin-bottom: 0; }

.platform-layer-card-inner {
  background: var(--white);
  border-left: 4px solid #2F6BFF;
  border-radius: 0 12px 12px 0;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(10,22,40,0.06);
  border-top: 1px solid rgba(10,22,40,0.06);
  border-right: 1px solid rgba(10,22,40,0.06);
  border-bottom: 1px solid rgba(10,22,40,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-left-color 0.25s ease;
  display: block;
}

.platform-layer-card-inner:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(10,22,40,0.1);
  border-left-color: #1A57F0;
}

.platform-layer-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  display: block;
}

.platform-layer-card-description {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: block;
}

/* Value Pillars sub-section (inside left column) */
.value-pillars-left-block { }

.value-pillars-label-row {
  margin-bottom: 20px;
}

/* ── Right column diagram ── */
.maps-capabilities-right-column {
  position: sticky;
  top: 100px;
}

.architecture-diagram-visual-container { }

.architecture-diagram-frame-box {
  background: #0B1E3C;
  border-radius: 20px;
  padding: 28px 24px 20px;
  border: 1px solid rgba(47,107,255,0.3);
  box-shadow: 0 0 40px rgba(47,107,255,0.12), 0 16px 48px rgba(0,0,0,0.3);
}

.architecture-diagram-inner-display {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Side labels */
.arch-diagram-left-labels,
.arch-diagram-right-labels {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-shrink: 0;
}

.arch-diagram-side-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  background: rgba(47,107,255,0.1);
  border: 1px solid rgba(47,107,255,0.2);
  border-radius: 6px;
  text-align: center;
}

.arch-diagram-side-label--right {
  background: rgba(0,194,217,0.08);
  border-color: rgba(0,194,217,0.2);
  color: rgba(127,236,245,0.8);
}

/* SVG wrapper */
.arch-diagram-svg-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-diagram-svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}

/* Rotating ring animations */
.arch-ring-outer {
  transform-origin: 140px 140px;
  animation: archRingRotate 12s linear infinite;
}

.arch-ring-inner {
  transform-origin: 140px 140px;
  animation: archRingRotate 8s linear infinite reverse;
}

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

/* Caption */
.architecture-diagram-caption-text {
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(47,107,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

/* ══════════════════════════════════════════
   VALUE PILLARS — inside left column
   ══════════════════════════════════════════ */

/* No standalone wrapper needed — lives inside maps-capabilities-left-column */
.value-pillars-section-wrapper { display: none; } /* hide old standalone if any remnant */
.value-pillars-inner-container { }

/* Title row */
.value-pillars-heading-title {
  font-size: 16px;
  font-weight: 700;
  color: #2F6BFF;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  display: inline-block;
}

.value-pillars-title-underline {
  width: 36px;
  height: 2px;
  background: #2F6BFF;
  border-radius: 2px;
}

/* 2x2 grid */
.value-pillars-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Card base */
.value-pillar-feature-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.07);
  border-radius: 12px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(10,22,40,0.05);
  cursor: default;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  animation: vpCardIn 0.5s ease forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.vp-card-velocity    { animation-delay: 0.05s; }
.vp-card-flexibility { animation-delay: 0.15s; }
.vp-card-security    { animation-delay: 0.25s; }
.vp-card-resilience  { animation-delay: 0.35s; }

@keyframes vpCardIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Hover lift */
.value-pillar-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(10,22,40,0.1);
  border-color: rgba(47,107,255,0.2);
  background: #F8FAFF;
}

/* Icon container */
.value-pillar-icon-container {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(47,107,255,0.07);
  border: 1px solid rgba(47,107,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.value-pillar-feature-card:hover .value-pillar-icon-container {
  background: rgba(47,107,255,0.14);
  border-color: rgba(47,107,255,0.28);
}

/* Font Awesome icon */
.value-pillar-fa-icon {
  font-size: 26px;
  color: #6B8FBF;
  transition: color 0.25s ease, transform 0.25s ease;
}

.value-pillar-feature-card:hover .value-pillar-fa-icon {
  color: #2F6BFF;
  transform: scale(1.1);
}

/* Label */
.value-pillar-label-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

/* ══════════════════════════════════════════
   SECTION 07 — PLATFORM DOCUMENTATION
   platform-documentation-section-wrapper
   ══════════════════════════════════════════ */

.platform-documentation-section-wrapper {
  background: #F5F7FB;
  padding: 80px 0;
  border-top: 1px solid rgba(10,22,40,0.06);
}

.platform-documentation-inner-container {
  max-width: 1200px;  /* match maps-capabilities-container */
  margin: 0 auto;
  padding: 0 32px;    /* match maps-capabilities-container */
  text-align: center;
}

.documentation-badge-container {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.platform-documentation-main-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.platform-documentation-description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.documentation-download-card-wrapper {
  max-width: 100%;    /* was 800px — now full width of the container */
  margin: 0 auto;
}

.documentation-download-card-inner {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  box-shadow: 0 8px 32px rgba(10,22,40,0.09);
  text-align: left;
  transition: box-shadow 0.25s ease;
}

.documentation-download-card-inner:hover {
  box-shadow: 0 16px 48px rgba(10,22,40,0.13);
}

.documentation-icon-container {
  width: 72px;
  height: 80px;
  background: rgba(47,107,255,0.08);
  border: 1px solid rgba(47,107,255,0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}

.documentation-file-icon {
  width: 28px;
  height: 28px;
  color: #2F6BFF;
}

.documentation-file-type-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  background: #2F6BFF;
  padding: 2px 6px;
  border-radius: 4px;
}

.documentation-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.documentation-doc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.documentation-doc-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.documentation-download-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, #2F6BFF, #4A7DFF);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 4px;
  transition: all 0.25s ease;
}

.documentation-download-button:hover {
  background: linear-gradient(135deg, #1A57F0, #2F6BFF);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47,107,255,0.35);
}

/* ══════════════════════════════════════════
   SECTION 08 — CALL TO ACTION
   cta-business-transform-section-wrapper
   ══════════════════════════════════════════ */

.cta-business-transform-section-wrapper {
  background: linear-gradient(135deg, #142B55, #1F3C75);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-business-transform-section-wrapper::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,107,255,0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-business-transform-inner-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.cta-small-badge-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(127,236,245,0.9);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cta-main-heading-text {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-description-text {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.cta-contact-button-primary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, #2F6BFF, #4A7DFF);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cta-contact-button-primary:hover {
  background: linear-gradient(135deg, #1A57F0, #2F6BFF);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47,107,255,0.4);
}

.cta-benefits-button-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cta-benefits-button-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .maps-capabilities-grid-layout { gap: 36px; }
  .value-pillars-grid-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .maps-capabilities-inner-container,
  .value-pillars-inner-container,
  .platform-documentation-inner-container,
  .cta-business-transform-inner-container { padding: 0 20px; }

  .maps-capabilities-grid-layout { grid-template-columns: 1fr; gap: 40px; }
  .value-pillars-grid-container { grid-template-columns: repeat(2, 1fr); }
  .documentation-download-card-inner { flex-direction: column; align-items: center; text-align: center; }
  .documentation-text-content { align-items: center; }
  .documentation-download-button { align-self: center; }
  .arch-diagram-left-labels,
  .arch-diagram-right-labels { display: none; }
  .maps-capabilities-main-wrapper,
  .value-pillars-section-wrapper,
  .platform-documentation-section-wrapper,
  .cta-business-transform-section-wrapper { padding: 60px 0; }
}

@media (max-width: 480px) {
  .value-pillars-grid-container { grid-template-columns: 1fr; }
  .cta-buttons-group-container { flex-direction: column; align-items: center; }
  .cta-main-heading-text { font-size: 28px; }
}


/* =========================================
   Maps Benefits Page — benefits.css
   Link after style.css in HTML <head>:
     <link rel="stylesheet" href="style.css" />
     <link rel="stylesheet" href="benefits.css" />
   ========================================= */

/* ── Header / Navigation ── */
.header-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: var(--blue-deep);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-container.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-logo span { color: var(--cyan); }

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-item a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-item a:hover,
.nav-item a.nav-active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta { flex-shrink: 0; }

.btn-contact-sales {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, #0D2B55, #0F4C9A);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-contact-sales:hover {
  background: linear-gradient(135deg, #0F4C9A, #1A6FC4);
  border-color: rgba(0,194,217,0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,194,217,0.2);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

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

/* ── Hero Section — updated to match overview hero style ── */
.hero-benefits-section {
  min-height: 60vh;
  /* Match overview: var(--blue-deep) solid with radial/grid overlays */
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Grid overlay — same as overview hero */
.hero-benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial glow overlays — match overview hero bg */
.hero-benefits-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,194,217,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(15,76,154,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* Badge — matches maps-hero-label style */
.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* Title — white, same weight as overview */
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* Highlighted span — cyan, matches maps-hero-highlight */
.hero-title span {
  color: var(--cyan);
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  border-radius: 2px;
}

/* Description — same muted white as overview */
.hero-description {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Benefits Cards Section ── */
.benefits-section {
  background: #F5F7FA;
  padding: 100px 0;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.benefit-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(10,22,40,0.08);
  border: 1px solid rgba(10,22,40,0.06);
  border-top: 4px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10,22,40,0.14);
}

.benefit-card:hover::before { opacity: 1; }

/* Flexibility — Blue */
.card-flexibility { border-top-color: #3B82F6; }
.card-flexibility::before { background: linear-gradient(135deg, rgba(59,130,246,0.03) 0%, transparent 60%); }
.card-flexibility .card-icon { background: rgba(59,130,246,0.1); color: #3B82F6; }
.card-flexibility .card-list li::before { background: #3B82F6; }

/* Quickness — Orange */
.card-quickness { border-top-color: #F59E0B; }
.card-quickness::before { background: linear-gradient(135deg, rgba(245,158,11,0.03) 0%, transparent 60%); }
.card-quickness .card-icon { background: rgba(245,158,11,0.1); color: #F59E0B; }
.card-quickness .card-list li::before { background: #F59E0B; }

/* Safety — Green */
.card-safety { border-top-color: #10B981; }
.card-safety::before { background: linear-gradient(135deg, rgba(16,185,129,0.03) 0%, transparent 60%); }
.card-safety .card-icon { background: rgba(16,185,129,0.1); color: #10B981; }
.card-safety .card-list li::before { background: #10B981; }

.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg { width: 26px; height: 26px; }

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.card-subtitle {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 16px;
}

.card-description {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
}

.card-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Value Proposition Section ── */
.value-proposition-section {
  background: var(--white);
  padding: 100px 0;
}

.value-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.value-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.value-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #1F2937;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.value-subtitle {
  font-size: 17px;
  color: #6B7280;
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

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

.value-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.1);
  border-color: rgba(47,107,255,0.2);
}

.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(47,107,255,0.08);
  border: 1px solid rgba(47,107,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: #2F6BFF;
}

.value-icon svg { width: 22px; height: 22px; }

.value-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.value-card-description {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.65;
}

/* ── CTA Comparison Section ── */
.comparison-cta-section {
  background: linear-gradient(160deg, #0A1628 0%, #0D2B55 60%, #142B55 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.comparison-cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,107,255,0.09) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.comparison-cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(127,236,245,0.9);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
}

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

.btn-view-comparison {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, #2F6BFF, #4A7DFF);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-view-comparison:hover {
  background: linear-gradient(135deg, #1A57F0, #2F6BFF);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47,107,255,0.4);
}

.btn-contact-sales-outline {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-contact-sales-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ── Footer Section ── */
.footer-section {
  background: #06101E;
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.6);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-brand-logo span { color: var(--cyan); }

.footer-brand-description {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links-platform h4,
.footer-links-resources h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.footer-links-platform ul,
.footer-links-resources ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-platform a,
.footer-links-resources a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links-platform a:hover,
.footer-links-resources a:hover { color: var(--cyan); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item .contact-icon {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover { color: var(--white); }

/* ── Scroll Reveal ── */
.bp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.bp-reveal.bp-revealed {
  opacity: 1;
  transform: translateY(0);
}

.bp-delay-1 { transition-delay: 0.1s; }
.bp-delay-2 { transition-delay: 0.2s; }
.bp-delay-3 { transition-delay: 0.3s; }
.bp-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */

@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-columns-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .header-container.nav-open .nav-menu {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    padding: 20px;
    flex-direction: column;
  }

  .header-container.nav-open .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .header-container.nav-open .nav-item a {
    display: block;
    padding: 12px 16px;
  }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-columns-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-benefits-section { padding: 120px 0 80px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .benefits-section,
  .value-proposition-section { padding: 72px 0; }
  .comparison-cta-section { padding: 80px 0; }
}

/* =========================================
   Maps Customer Page — customer.css
   All classes prefixed with cust- to avoid
   collisions with style.css, benefits.css,
   and comparison.css
   ========================================= */

/* ══════════════════════════════════════════
   HERO CUSTOMER SECTION
   ══════════════════════════════════════════ */

.hero-customer-section {
  min-height: 52vh;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Grid overlay */
.hero-customer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial glow overlays — match comparison hero bg */
.hero-customer-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,194,217,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(15,76,154,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero-customer-container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cust-hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.cust-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cust-hero-title span { color: var(--cyan); }

.cust-hero-description {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   TRACK RECORD SECTION
   ══════════════════════════════════════════ */

.track-record-section {
  background: #F5F7FA;
  padding: 100px 0;
}

.track-record-table {
  width: 100%;
}

.track-record-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.cust-section-badge {
  display: table;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cust-section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1F2937;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 36px;
  text-align: center;
}

/* Highlight Card */
.track-record-highlight {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.track-highlight-card {
  background: linear-gradient(135deg, #2F6BFF 0%, #1A3A7A 100%);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 12px 40px rgba(47,107,255,0.25);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;           /* ← fills the full container width */
  box-sizing: border-box;
}

.track-highlight-card::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  top: -100px; right: -100px;
  pointer-events: none;
}

.highlight-description {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  max-width: 780px;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Services Table */

.services-table-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(10,22,40,0.08);
  border: 1px solid rgba(10,22,40,0.06);
  overflow: hidden;
}

.cust-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.cust-table-head-row {
  background: #0A1628;
}

.cust-th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 16px 20px;
  text-align: left;
  font-weight: 400;
  white-space: nowrap;
}

.cust-th-no    { width: 60px; }
.cust-th-service { width: 200px; }
.cust-th-value { width: auto; }
.cust-th-features { width: 300px; }

/* Table rows */
.service-row {
  border-bottom: 1px solid rgba(10,22,40,0.06);
  transition: background 0.2s ease;
  cursor: default;
}

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

.service-row:nth-child(even) td {
  background: rgba(245,247,250,0.6);
}

.service-row:hover td {
  background: rgba(47,107,255,0.04) !important;
}

.service-number {
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #2F6BFF;
  letter-spacing: 0.05em;
  vertical-align: top;
}

.service-name {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #1F2937;
  vertical-align: top;
  line-height: 1.5;
}

.service-value {
  padding: 18px 20px;
  font-size: 14px;
  color: #6B7280;
  vertical-align: top;
  line-height: 1.65;
}

.service-features {
  padding: 18px 20px;
  vertical-align: top;
}

/* Feature pills */
.feature-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #2F6BFF;
  background: rgba(47,107,255,0.08);
  border: 1px solid rgba(47,107,255,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin: 2px 4px 2px 0;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.feature-tag:hover {
  background: rgba(47,107,255,0.14);
  border-color: rgba(47,107,255,0.4);
}

/* ══════════════════════════════════════════
   IMPLEMENTATION SECTION
   ══════════════════════════════════════════ */

.implementation-section {
  background: var(--white);
  padding: 100px 0;
}

.implementation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.implementation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 8px;
}

/* ── Case Card ── */
.case-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,22,40,0.09);
  border: 1px solid rgba(10,22,40,0.07);
  margin-bottom: 32px;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,22,40,0.13);
}

/* Case Header */
.case-header {
  padding: 36px 40px 28px;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}

.case-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.08);
  border: 1px solid rgba(0,194,217,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.case-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #1F2937;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 12px;
}

.case-description {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.75;
  max-width: 780px;
}

/* Case Diagram */
.case-diagram {
  padding: 32px 40px;
  background: #F8FAFF;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}

/* ── Blue gradient card header ── */
.impl-card-header {
  background: linear-gradient(135deg, #1a3a8f 0%, #2f6bff 100%);
  padding: 22px 28px 20px;
}
.impl-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.impl-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.impl-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}
 
/* ── Diagram outer bg ── */
.impl-diagram-area {
  background: #e3ecf9;
  padding: 24px 20px;
  overflow-x: auto;
}
 
/* ── Light blue diagram container ── */
.impl-d-outer {
  background: #eef4fd;
  border-radius: 16px;
  border: 1.5px solid #c5d9f5;
  padding: 20px 16px;
}
 
/* ════════════════════════════
   NUMBER BADGE (bigger)
   ════════════════════════════ */
.impl-nbadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.impl-nbadge--1 { background: #2563eb; }
.impl-nbadge--2 { background: #0891b2; }
.impl-nbadge--3 { background: #0d9488; }
.impl-nbadge--4 { background: #059669; }
.impl-nbadge--5 { background: #7c3aed; }
.impl-nbadge--6 { background: #d97706; }
.impl-nbadge--7 { background: #dc2626; }
.impl-nbadge--A { background: #374151; font-size: 10px; }
 
/* ════════════════════════════
   ACTOR BOXES
   ════════════════════════════ */
.impl-actor-box {
  background: #fff;
  border: 1.5px solid #c5d9f5;
  border-radius: 12px;
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.impl-actor-title {
  font-size: 11px;
  font-weight: 700;
  color: #1a3a8f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}
.impl-actor-sub {
  font-size: 9px;
  color: #6b7280;
  line-height: 1.3;
}
.impl-actor-sub--blue {
  font-size: 9px;
  color: #2563eb;
  font-weight: 600;
  line-height: 1.3;
}
.impl-actor-icon-row {
  display: flex;
  gap: 3px;
  justify-content: center;
  color: #6b7280;
}
.impl-actor-icon-row--blue { color: #2563eb; }
 
/* ════════════════════════════════════════
   DIAGRAM 1 LAYOUT
   columns: left-actors | vert-arrows | center | right-actors
   ════════════════════════════════════════ */
.impl-d1-layout {
  display: grid;
  grid-template-columns: 90px 56px 1fr 52px 92px;
  gap: 0;
  align-items: stretch;
  min-width: 680px;
}
 
/* ── Left actors column ── */
.impl-d1-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  gap: 0;
}
 
/* ── Vertical arrows column: two parallel dashed lines ── */
.impl-d1-vert {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  padding: 0 4px;
  position: relative;
}
 
/* Each vertical arrow lane */
.impl-vert-lane {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  min-height: 80px;
}
 
/* The dashed vertical line */
.impl-vert-line {
  flex: 1;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #3b82f6 0px, #3b82f6 6px,
    transparent 6px, transparent 11px
  );
  border-radius: 1px;
  margin: 4px 0;
}
 
/* Arrowhead at top/bottom */
.impl-vert-tip-up {
  font-size: 14px;
  color: #2563eb;
  line-height: 1;
}
.impl-vert-tip-down {
  font-size: 14px;
  color: #2563eb;
  line-height: 1;
}
 
/* Number badge on vertical arrow — centered on the line */
.impl-vert-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}
 
/* ── Center column: h-arrows-left + platform + h-arrows-right ── */
.impl-d1-center {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 0;
  align-items: stretch;
}
 
/* Horizontal arrow columns */
.impl-h-col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 0;
  padding: 20px 0;
}
 
/* Single horizontal arrow row */
.impl-h-arrow-row {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0;
}
 
.impl-h-line {
  flex: 1;
  height: 2px;
  border-radius: 1px;
}
 
.impl-h-line--blue   { background: repeating-linear-gradient(to right, #2563eb 0,#2563eb 6px,transparent 6px,transparent 11px); }
.impl-h-line--teal   { background: repeating-linear-gradient(to right, #0d9488 0,#0d9488 6px,transparent 6px,transparent 11px); }
.impl-h-line--green  { background: repeating-linear-gradient(to right, #059669 0,#059669 6px,transparent 6px,transparent 11px); }
.impl-h-line--purple { background: repeating-linear-gradient(to right, #7c3aed 0,#7c3aed 6px,transparent 6px,transparent 11px); }
.impl-h-line--amber  { background: repeating-linear-gradient(to right, #d97706 0,#d97706 6px,transparent 6px,transparent 11px); }
.impl-h-line--gray   { background: repeating-linear-gradient(to right, #374151 0,#374151 6px,transparent 6px,transparent 11px); }
 
.impl-h-tip-r { font-size: 12px; line-height: 1; flex-shrink: 0; }
.impl-h-tip-l { font-size: 12px; line-height: 1; flex-shrink: 0; }
.impl-h-tip-r--blue   { color: #2563eb; }
.impl-h-tip-r--teal   { color: #0d9488; }
.impl-h-tip-l--blue   { color: #2563eb; }
.impl-h-tip-l--amber  { color: #d97706; }
.impl-h-tip-l--green  { color: #059669; }
.impl-h-tip-l--gray   { color: #374151; }
.impl-h-tip-r--purple { color: #7c3aed; }
 
/* Number badge on horizontal arrow */
.impl-h-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
 
/* ════════════════════════
   PLATFORM CARD
   ════════════════════════ */
.impl-platform-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,22,40,0.16);
}
.impl-platform-hdr {
  background: #1e3a8a;
  padding: 12px 16px 8px;
  text-align: center;
}
.impl-platform-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.impl-platform-sub {
  font-size: 10px;
  color: rgba(127,236,245,0.85);
  margin-top: 3px;
}
.impl-platform-body {
  background: #dbeafe;
  padding: 12px;
}
.impl-two-pane {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.impl-pane {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid #bfdbfe;
}
.impl-pane-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
}
.impl-screen-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.impl-screen-item {
  font-size: 10px;
  color: #374151;
  padding: 5px 8px;
  background: #f8faff;
  border: 1px solid #e5eaf5;
  border-radius: 5px;
  line-height: 1.3;
}
.impl-admin-pane {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.impl-admin-search, .impl-admin-output {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: #374151;
  padding: 6px 10px;
  background: #f8faff;
  border: 1px solid #e5eaf5;
  border-radius: 6px;
}
.impl-admin-dots {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  letter-spacing: 3px;
}
.impl-db-row {
  margin-top: 4px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  gap: 10px;
}
.impl-db-icon { color: #2563eb; flex-shrink: 0; }
.impl-db-name { font-size: 11px; font-weight: 700; color: #1e3a8a; }
.impl-db-sub  { font-size: 9px; color: #6b7280; }
 
/* ── Right actors column (D1) ── */
.impl-d1-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 4px 0;
  gap: 12px;
}
 
/* ════════════════════════════════════════
   DIAGRAM 2 LAYOUT
   ════════════════════════════════════════ */
.impl-d2-layout {
  display: grid;
  grid-template-columns: 100px 48px 1fr 48px 104px;
  gap: 0;
  align-items: stretch;
  min-width: 640px;
}
 
.impl-d2-left, .impl-d2-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}
 
.impl-d2-h-col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 0;
  gap: 0;
}
 
/* ════════════════════════
   PORTAL PLATFORM CARD
   ════════════════════════ */
.impl-portal-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,22,40,0.14);
}
.impl-portal-hdr {
  background: #2f6bff;
  padding: 12px 16px 8px;
  text-align: center;
}
.impl-portal-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.impl-portal-sub {
  font-size: 10px;
  color: rgba(200,230,255,0.9);
  margin-top: 3px;
}
.impl-portal-body {
  background: #eff6ff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.impl-portal-section {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid #bfdbfe;
}
.impl-portal-section-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 12px;
  text-align: center;
}
.impl-portal-tiles {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.impl-portal-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 80px;
}
.impl-tile-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.impl-tile-icon--blue { background: rgba(37,99,235,0.09); color: #2563eb; }
.impl-tile-icon--saas { background: rgba(5,150,105,0.09); color: #059669; }
.impl-tile-name {
  font-size: 10.5px;
  font-weight: 600;
  color: #374151;
  text-align: center;
  line-height: 1.3;
}
.impl-tile-sub {
  font-size: 8.5px;
  color: #6b7280;
  text-align: center;
  line-height: 1.3;
  margin-top: -3px;
}
 
/* External system sub items */
.impl-ext-items {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
  width: 100%;
}
.impl-ext-item {
  font-size: 9px;
  color: #4b5563;
  text-align: center;
  padding: 2px 4px;
  border-bottom: 1px solid #f3f4f6;
  line-height: 1.4;
}
.impl-ext-item:last-child { border-bottom: none; }
 
/* ════════════════════
   LEGEND
   ════════════════════ */
.impl-legend {
  background: #fff;
  border-top: 1px solid rgba(10,22,40,0.06);
  padding: 14px 24px 16px;
}
.impl-legend-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 10px;
}
.impl-legend-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  justify-content: center;
}
.impl-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: #374151;
  line-height: 1.3;
}
 
/* ── Responsive ── */
@media (max-width: 820px) {
  .impl-d1-layout { min-width: 600px; }
  .impl-d2-layout { min-width: 560px; }
}
@media (max-width: 560px) {
  .impl-diagram-area { padding: 12px 8px; }
  .impl-two-pane { grid-template-columns: 1fr; }
  .impl-legend-grid { gap: 5px 16px; }
}
 
/* ══════════════════════════════════════════════════
   FIX 1 — D1 vertical arrow column:
   Make arrows ① and ⑦ centered between the two
   actor boxes by removing the spacers and letting
   the two lanes share equal height.
   The badge sits at the absolute vertical midpoint
   of the entire vert column (unchanged behaviour).
   ══════════════════════════════════════════════════ */
.impl-d1-vert {
  /* already position:relative from original CSS */
  align-items: center; /* vertically center the lane group */
}
 
/* ══════════════════════════════════════════════════
   FIX 2 — D2 right-side arrow col:
   Arrow ③ back-and-forth (two lines).
   We keep the original .impl-h-arrow-row pattern
   and add a helper wrapper that stacks two thin
   arrow rows with a shared badge.
   ══════════════════════════════════════════════════ */
.impl-h-arrow-bidir {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 0;
}
.impl-h-arrow-bidir .impl-h-arrow-row {
  padding: 0; /* tighter spacing inside the bidir block */
}
/* badge sits in the middle of the two rows */
.impl-h-bidir-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* Shared diagram layout */
.system-diagram,
.portal-diagram {
  display: grid;
  grid-template-columns: 120px 1fr 140px;
  gap: 20px;
  align-items: center;
  min-height: 280px;
}

/* Actor */
.cust-diagram-actor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.cust-actor-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}

.cust-actor-icon svg { width: 22px; height: 22px; }

.cust-actor-icon--user {
  background: rgba(47,107,255,0.1);
  border: 1px solid rgba(47,107,255,0.2);
  color: #2F6BFF;
}

.cust-actor-icon--corp {
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.2);
  color: var(--cyan);
}

.cust-actor-icon--ctc {
  background: rgba(10,22,40,0.08);
  border: 1px solid rgba(10,22,40,0.15);
  color: #1F2937;
}

.cust-actor-icon--resident {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  color: #10B981;
}

.cust-actor-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #6B7280;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Connection line */
.diagram-center,
.portal-center {
  display: flex;
  align-items: center;
  gap: 0;
}

.cust-conn-line--left,
.cust-conn-line--right {
  display: flex;
  align-items: center;
  gap: 0;
  width: 32px;
  flex-shrink: 0;
}

.cust-conn-dash {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #2F6BFF 0px, #2F6BFF 6px,
    transparent 6px, transparent 12px
  );
}

.cust-conn-arrow {
  width: 14px; height: 10px;
  color: #2F6BFF;
  flex-shrink: 0;
}

.cust-conn-arrow--left {
  color: #2F6BFF;
}

/* Main system card */
.system-main-card {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,22,40,0.1);
  border: 1px solid rgba(10,22,40,0.08);
}

.cust-system-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0A1628;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cust-system-header svg { color: var(--cyan); flex-shrink: 0; }

.cust-system-section {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cust-system-section:last-child { border-bottom: none; }

.cust-system-section--blue  { background: rgba(47,107,255,0.07); }
.cust-system-section--mid   { background: rgba(0,194,217,0.06); }
.cust-system-section--dark  { background: rgba(10,22,40,0.05); }
.cust-system-section--saas  { background: rgba(16,185,129,0.06); }

.cust-system-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 8px;
}

.cust-system-blocks {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cust-sys-block {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(47,107,255,0.1);
  color: #2F6BFF;
  border: 1px solid rgba(47,107,255,0.2);
  white-space: nowrap;
}

.cust-sys-block--db {
  background: rgba(10,22,40,0.08);
  color: #1F2937;
  border-color: rgba(10,22,40,0.15);
}

.cust-sys-block--saas {
  background: rgba(16,185,129,0.1);
  color: #059669;
  border-color: rgba(16,185,129,0.25);
}

/* Left/right actor columns */
.diagram-left,
.portal-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.diagram-right,
.portal-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Case Legend */
.case-legend {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 40px;
  background: var(--white);
}

.cust-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
}

.cust-legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cust-legend-dot--blue  { background: rgba(47,107,255,0.7); }
.cust-legend-dot--mid   { background: rgba(0,194,217,0.7); }
.cust-legend-dot--dark  { background: rgba(10,22,40,0.5); }
.cust-legend-dot--saas  { background: rgba(16,185,129,0.7); }

.cust-legend-line {
  width: 24px; height: 2px;
  background: repeating-linear-gradient(
    90deg, #2F6BFF 0px, #2F6BFF 5px, transparent 5px, transparent 9px
  );
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */

.cta-section {
  background: linear-gradient(160deg, #0A1628 0%, #0D2B55 60%, #142B55 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,217,0.08) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
}

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

.btn-contact {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, #2F6BFF, #4A7DFF);
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-contact:hover {
  background: linear-gradient(135deg, #1A57F0, #2F6BFF);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47,107,255,0.4);
}

.btn-consultation {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-consultation:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   SCROLL REVEAL — cust-reveal
   ══════════════════════════════════════════ */

.cust-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.cust-reveal.cust-revealed {
  opacity: 1;
  transform: translateY(0);
}

.cust-delay-1 { transition-delay: 0.1s; }
.cust-delay-2 { transition-delay: 0.2s; }
.cust-delay-3 { transition-delay: 0.3s; }
.cust-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .system-diagram,
  .portal-diagram {
    grid-template-columns: 100px 1fr 120px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .track-record-section,
  .implementation-section {
    padding: 72px 0;
  }

  .track-record-container,
  .implementation-container {
    padding: 0 20px;
  }

  .track-highlight-card {
    padding: 28px 24px;
  }

  .case-header {
    padding: 24px 24px 20px;
  }

  .case-diagram {
    padding: 24px;
  }

  /* Diagram stacks vertically on mobile */
  .system-diagram,
  .portal-diagram {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
  }

  .diagram-left,
  .diagram-right,
  .portal-left,
  .portal-right {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .diagram-center,
  .portal-center {
    flex-direction: column;
    gap: 12px;
  }

  .cust-conn-line--left,
  .cust-conn-line--right {
    transform: rotate(90deg);
    width: 24px;
    align-self: center;
  }

  .case-legend {
    padding: 16px 24px;
    gap: 16px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-container {
    padding: 0 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-customer-section {
    padding: 120px 20px 80px;
  }
}

@media (max-width: 480px) {
  .cust-system-blocks {
    flex-direction: column;
  }

  .cust-sys-block {
    text-align: center;
    white-space: normal;
  }
}

/* ══════════════════════════════════════════
   NAVBAR SCROLL — customer page
   (style.css handles base nav, this adds scroll)
   ══════════════════════════════════════════ */

.nav.scrolled {
  background: rgba(10,22,40,0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}

/* ══════════════════════════════════════════
   FOOTER — customer page
   Matches classes used in customer.html
   ══════════════════════════════════════════ */

.footer-section {
  background: #06101E;
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.6);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-brand-logo span { color: var(--cyan); }

.footer-brand-description {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links-platform h4,
.footer-links-resources h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.footer-links-platform ul,
.footer-links-resources ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-platform a,
.footer-links-resources a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-platform a:hover,
.footer-links-resources a:hover { color: var(--cyan); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item .contact-icon {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   RESPONSIVE — footer
   ══════════════════════════════════════════ */

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

@media (max-width: 768px) {
  .footer-columns-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-bottom-links { justify-content: center; }
  .footer-container { padding: 0 20px; }
}

/* ══════════════════════════════════════════
   NAVBAR — customer page
   header-container / nav-wrapper / cust-nav-item
   ══════════════════════════════════════════ */

.header-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: var(--blue-deep);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-container.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-logo span { color: var(--cyan); }

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}

.cust-nav-item a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
}

.cust-nav-item a:hover,
.cust-nav-item a.nav-active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta { flex-shrink: 0; }

.btn-contact-sales {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, #0D2B55, #0F4C9A);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-contact-sales:hover {
  background: linear-gradient(135deg, #0F4C9A, #1A6FC4);
  border-color: rgba(0,194,217,0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,194,217,0.2);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}

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

/* Mobile nav open state */
.header-container.nav-open .nav-menu {
  display: flex;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,22,40,0.98);
  padding: 20px;
  flex-direction: column;
  z-index: 999;
}

.header-container.nav-open .nav-list {
  flex-direction: column;
  width: 100%;
  gap: 4px;
}

.header-container.nav-open .cust-nav-item a {
  display: block;
  padding: 12px 16px;
}

/* Responsive navbar */
@media (max-width: 768px) {
  .nav-menu  { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }
  .nav-wrapper { padding: 0 20px; }
}

/* =========================================
   Maps Comparison Page — comparison.css
   Link after style.css in HTML <head>:
     <link rel="stylesheet" href="style.css" />
     <link rel="stylesheet" href="comparison.css" />
   No class names collide with style.css or benefits.css
   ========================================= */

/* ══════════════════════════════════════════
   HERO COMPARISON SECTION
   ══════════════════════════════════════════ */

.hero-comparison-section {
  min-height: 52vh;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Grid overlay */
.hero-comparison-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial glow overlays — match comparison hero bg */
.hero-comparison-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,194,217,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(15,76,154,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero-comparison-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span { color: var(--cyan); }

.hero-description {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   ARCHITECTURE COMPARISON SECTION
   ══════════════════════════════════════════ */

.architecture-comparison-section {
  background: #F5F7FA;
  padding: 100px 0;
}

.architecture-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.architecture-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1F2937;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: center;
}

.architecture-subtitle {
  font-size: 17px;
  color: #6B7280;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ── Architecture Card Base ── */
.architecture-card {
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 6px 32px rgba(10,22,40,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Maps card — blue */
.maps-card {
  background: #2C4DA3;
  border: 1px solid rgba(255,255,255,0.12);
}

/* In-house card — dark */
.inhouse-card {
  background: #2A3443;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Card Header */
.arch-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.arch-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.arch-icon--blue {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.arch-icon--dark {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.arch-icon svg { width: 20px; height: 20px; }

.arch-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.arch-title--light {
  color: rgba(255,255,255,0.85);
}

.arch-description {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 20px;
}

.arch-description--light {
  color: rgba(255,255,255,0.55);
}

/* Layer Label */
.arch-layer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  font-weight: 700;
}

.arch-layer-label--light {
  color: rgba(255,255,255,0.6);
}

.arch-layer-label--muted {
  color: rgba(255,255,255,0.4);
}

/* Company Grid */
.arch-company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.company-block {
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}

.company-block--blue {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
}

.company-block--dark {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}

.company-block-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.company-block-app {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
}

/* DB row */
.arch-db-row {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.arch-db-tag {
  font-size: 10px;
  font-family: var(--font-mono);
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0,194,217,0.15);
  border: 1px solid rgba(0,194,217,0.3);
  color: var(--cyan);
  letter-spacing: 0.04em;
}

.arch-db-tag--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}

/* Layers */
.arch-layer {
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}

.arch-layer--shared {
  background: rgba(0,194,217,0.12);
  border: 1px solid rgba(0,194,217,0.25);
}

.arch-layer--cicd {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.arch-layer--separate {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 10px;
}

.arch-layer-blocks {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.arch-layer-blocks--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.arch-block {
  font-size: 10px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  white-space: nowrap;
}

.arch-block--dark {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.08);
}

/* Team Section */
.arch-team-section {
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.arch-team-section--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}

.arch-team-block {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
}

.arch-team-block--dark {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.07);
  justify-content: center;
  font-size: 10px;
}

/* Efficiency Section */
.arch-efficiency-section {
  border-radius: 10px;
  padding: 14px;
  margin-top: 10px;
}

.arch-efficiency-section--positive {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
}

.arch-efficiency-section--negative {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
}

.arch-efficiency-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
}

.arch-efficiency-row + .arch-efficiency-row {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.arch-efficiency-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.arch-efficiency-label--light {
  color: rgba(255,255,255,0.55);
}

.arch-efficiency-value {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.arch-efficiency-value--green { color: #34D399; }
.arch-efficiency-value--red   { color: #FC8181; }

/* ══════════════════════════════════════════
   VALUE HIGHLIGHT SECTION
   ══════════════════════════════════════════ */

.value-highlight-section {
  background: #F5F7FA;
  padding: 80px 32px;
}

.value-highlight-container {
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1A3A7A 0%, #2F6BFF 60%, #1E50CC 100%);
  border-radius: 28px;
  padding: 60px 56px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(47,107,255,0.3);
  position: relative;
  overflow: hidden;
}

/* Decorative rings */
.value-highlight-container::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.value-highlight-container::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.value-highlight-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.value-highlight-description {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.value-tags-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.value-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 100px;
  cursor: default;
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s ease, box-shadow 0.25s ease;
}

.value-tag svg { flex-shrink: 0; color: rgba(255,255,255,0.9); }

/* ══════════════════════════════════════════
   CTA RESULTS SECTION
   ══════════════════════════════════════════ */

.cta-results-section {
  background: linear-gradient(160deg, #0A1628 0%, #0D2B55 60%, #142B55 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-results-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,107,255,0.09) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-results-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-results-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(127,236,245,0.9);
  background: rgba(0,194,217,0.1);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
}

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

.btn-view-customer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, #2F6BFF, #4A7DFF);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-view-customer:hover {
  background: linear-gradient(135deg, #1A57F0, #2F6BFF);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47,107,255,0.4);
}

.cp-btn-contact-sales-outline {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cp-btn-contact-sales-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   FOOTER (reuses benefits.css footer classes)
   — no duplication needed if benefits.css loads
   — these are fallback declarations
   ══════════════════════════════════════════ */

.footer-section {
  background: #06101E;
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.6);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-brand-logo span { color: var(--cyan); }

.footer-brand-description {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links-platform h4,
.footer-links-resources h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.footer-links-platform ul,
.footer-links-resources ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-platform a,
.footer-links-resources a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links-platform a:hover,
.footer-links-resources a:hover { color: var(--cyan); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item .contact-icon {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   SCROLL REVEAL — cp-reveal
   ══════════════════════════════════════════ */

.cp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.cp-reveal.cp-revealed {
  opacity: 1;
  transform: translateY(0);
}

.cp-delay-1 { transition-delay: 0.1s; }
.cp-delay-2 { transition-delay: 0.2s; }
.cp-delay-3 { transition-delay: 0.3s; }
.cp-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .architecture-grid {
    grid-template-columns: 1fr;
  }

  .value-tags-grid {
    /* stays flex-wrap, auto reflows */
  }

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

/* Mobile */
@media (max-width: 768px) {
  .architecture-comparison-section {
    padding: 72px 0;
  }

  .architecture-container {
    padding: 0 20px;
  }

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

  .value-highlight-container {
    padding: 40px 28px;
  }

  .value-highlight-section {
    padding: 60px 20px;
  }

  .cta-results-section {
    padding: 80px 0;
  }

  .cta-results-container {
    padding: 0 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .arch-layer-blocks--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-comparison-section {
    padding: 120px 20px 80px;
  }

  .arch-company-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .arch-layer-blocks--3col {
    grid-template-columns: 1fr;
  }

  .value-tags-grid {
    gap: 8px;
  }
}

/* ══════════════════════════════════════════
   NAVBAR — comparison page
   header-container / nav-wrapper / cp-nav-item
   ══════════════════════════════════════════ */

.header-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: var(--blue-deep);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-container.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-logo span { color: var(--cyan); }

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}

.cp-nav-item a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
}

.cp-nav-item a:hover,
.cp-nav-item a.nav-active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta { flex-shrink: 0; }

.btn-contact-sales {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, #0D2B55, #0F4C9A);
  border: 1px solid rgba(0,194,217,0.3);
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-contact-sales:hover {
  background: linear-gradient(135deg, #0F4C9A, #1A6FC4);
  border-color: rgba(0,194,217,0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,194,217,0.2);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}

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

/* Mobile nav open state */
.header-container.nav-open .nav-menu {
  display: flex;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,22,40,0.98);
  padding: 20px;
  flex-direction: column;
  z-index: 999;
}

.header-container.nav-open .nav-list {
  flex-direction: column;
  width: 100%;
  gap: 4px;
}

.header-container.nav-open .cp-nav-item a {
  display: block;
  padding: 12px 16px;
}

@media (max-width: 768px) {
  .nav-menu     { display: none; }
  .nav-cta      { display: none; }
  .nav-hamburger { display: flex; }
  .nav-wrapper  { padding: 0 20px; }
}

