/* ============================================
   VENICE ENTERPRISES — MASTER STYLESHEET
   Design: White + Light Blue + Black Text
   Style: Executive, Industrial, Premium
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
  /* Colors */
  --white: #ffffff;
  --off-white: #f8fafb;
  --light-blue-bg: #eef4f8;
  --light-blue: #3b8fc2;
  --blue: #1a6fa0;
  --blue-dark: #14527a;
  --navy: #0d2137;
  --black: #111111;
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-muted: #6b7280;
  --border-light: #e2e8f0;
  --border-blue: #b8d4e8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-pad: 96px;
  --section-pad-mobile: 56px;
  --container-width: 1200px;
  --container-narrow: 880px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

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

ul, ol {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--light-blue);
  display: inline-block;
  margin-bottom: 12px;
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-pad) 0;
}

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

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

.section--blue-light {
  background: var(--light-blue-bg);
}

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

.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy p,
.section--navy .lead,
.section--navy .label {
  color: var(--white);
}

.section--navy p {
  color: rgba(255,255,255,0.8);
}

.section--navy .label {
  color: var(--border-blue);
}

.section-header {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Also support BEM modifier variant */
.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
}

/* --- GRID SYSTEM --- */
.grid {
  display: grid;
  gap: 32px;
}

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

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

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

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

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

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

@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--duration) var(--ease);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo span {
  color: var(--light-blue);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text-primary);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: width var(--duration) var(--ease);
}

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

/* --- DROPDOWN NAVIGATION (Desktop) --- */
.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__item--dropdown {
  cursor: pointer;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  transition: color var(--duration) var(--ease);
  position: relative;
  text-decoration: none;
}

.nav__dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: width var(--duration) var(--ease);
}

.nav__item--dropdown:hover .nav__dropdown-trigger::after {
  width: 100%;
}

.nav__item--dropdown:hover .nav__dropdown-trigger,
.nav__item--dropdown:focus-within .nav__dropdown-trigger {
  color: var(--text-primary);
}

.nav__dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform var(--duration) var(--ease);
  flex-shrink: 0;
  color: var(--text-muted);
}

.nav__item--dropdown:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid var(--border-light);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: 100;
  pointer-events: none;
}

/* Small bridge element to prevent gap between trigger and dropdown */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

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

.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
  white-space: nowrap;
}

/* Override the underline effect from .nav__links a::after */
.nav__dropdown a::after {
  display: none !important;
}

.nav__dropdown a:hover {
  background: var(--light-blue-bg);
  color: var(--light-blue);
}

.nav__cta {
  margin-left: 8px;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

.nav__toggle svg {
  width: 24px;
  height: 24px;
}

/* --- MOBILE NAV --- */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 32px 24px;
  z-index: 999;
  overflow-y: auto;
}

.nav__mobile.open {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: fadeIn 0.25s var(--ease);
}

.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}

.nav__mobile a:last-of-type {
  border-bottom: none;
}

.nav__mobile .btn {
  margin-top: 24px;
  text-align: center;
}

/* --- MOBILE DROPDOWN GROUPS --- */
.nav__mobile-group {
  border-bottom: 1px solid var(--border-light);
}

.nav__mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  font-family: var(--font-body);
  text-align: left;
}

.nav__mobile-trigger svg {
  transition: transform 0.3s var(--ease);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
}

.nav__mobile-group.open .nav__mobile-trigger svg {
  transform: rotate(180deg);
}

.nav__mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.nav__mobile-group.open .nav__mobile-sub {
  max-height: 300px;
}

.nav__mobile-sub a {
  padding: 10px 0 10px 20px;
  font-size: 0.9375rem;
  border-bottom: none;
  color: var(--text-secondary);
  display: block;
  text-decoration: none;
}

.nav__mobile-sub a:hover {
  color: var(--light-blue);
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: block;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--light-blue);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}

.btn--secondary:hover {
  border-color: var(--light-blue);
  color: var(--light-blue);
  transform: translateY(-1px);
}

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

.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

.btn--lg {
  padding: 16px 36px;
  font-size: 0.9375rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

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

/* Pulse CTA button */
.btn--pulse {
  animation: pulse 2s infinite;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 140px 0 96px;
  background: linear-gradient(135deg, var(--navy) 0%, #163a5c 50%, var(--blue-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(59,143,194,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(59,143,194,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,143,194,0.3), transparent);
}

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

.hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--light-blue);
  margin-bottom: 20px;
  display: inline-block;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
}

.hero__sub {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero .btn-group {
  margin-top: 8px;
}

/* Geometric accent */
.hero__accent {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(59,143,194,0.12);
  border-radius: 50%;
  z-index: 1;
}

.hero__accent::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  border: 1px solid rgba(59,143,194,0.08);
  border-radius: 50%;
}

/* --- HERO WITH BACKGROUND IMAGE --- */
.hero--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Override the default ::before gradient with image overlay */
.hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,33,55,0.88) 0%, rgba(20,82,122,0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero--image .hero__content {
  position: relative;
  z-index: 2;
}

/* Parallax hero */
.parallax-hero {
  will-change: transform;
}

/* --- PAGE HERO (Interior pages) --- */
.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(135deg, var(--navy) 0%, #163a5c 100%);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,143,194,0.3), transparent);
}

.page-hero .label {
  color: var(--light-blue);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  max-width: 640px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  font-size: 1.0625rem;
}

/* --- PAGE HERO WITH BACKGROUND IMAGE --- */
.page-hero--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,33,55,0.9) 0%, rgba(20,82,122,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.page-hero--image .container {
  position: relative;
  z-index: 2;
}

/* --- CARDS --- */
.card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px;
  border: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
  position: relative;
}

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

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--light-blue-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--light-blue);
}

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

.card h3 {
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--light-blue);
}

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

/* Card variants */
.card--flat {
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.card--flat:hover {
  box-shadow: none;
  transform: none;
}

.card--bordered-top {
  border-top: 3px solid var(--light-blue);
}

/* --- IMAGE CARDS (for industry cards with overlay) --- */
.card--image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  padding: 32px;
  border-radius: 10px;
}

.card--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,33,55,0.2) 0%, rgba(13,33,55,0.85) 70%);
  z-index: 1;
  transition: background 0.3s var(--ease);
  border-radius: 10px;
}

.card--image:hover::before {
  background: linear-gradient(180deg, rgba(13,33,55,0.3) 0%, rgba(13,33,55,0.92) 70%);
}

.card--image > * {
  position: relative;
  z-index: 2;
}

.card--image h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.card--image p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
}

.card--image .card__link {
  color: var(--border-blue);
}

.card--image .card__link:hover {
  color: var(--white);
}

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

.card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s var(--ease);
  border-radius: 10px;
}

.card--image:hover img {
  transform: scale(1.05);
}

/* --- CHART CONTAINERS --- */
.chart-container {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.chart-container h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.chart-container canvas {
  max-height: 350px;
}

.chart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .chart-row {
    grid-template-columns: 1fr;
  }
}

/* --- STATS / METRICS --- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
}

.stat-strip__item {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}

.stat-strip__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--light-blue);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-strip__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

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

/* --- TRUST STRIP --- */
.trust-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
}

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

.trust-strip__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}

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

.trust-strip__logos span {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 0.02em;
}

/* --- FEATURE BLOCKS --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-row--reverse {
  direction: rtl;
}

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

.feature-row__content {
  max-width: 520px;
}

/* Updated to properly display actual images */
.feature-row__image {
  border-radius: 12px;
  overflow: hidden;
  border: none;
  aspect-ratio: 4/3;
  position: relative;
}

.feature-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s var(--ease);
  display: block;
}

.feature-row__image:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-row--reverse {
    direction: ltr;
  }
}

/* --- LISTS --- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--light-blue-bg);
  border-radius: 50%;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233b8fc2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 7px;
  bottom: 0;
  width: 2px;
  background: var(--border-blue);
}

.timeline__item {
  position: relative;
  padding-bottom: 36px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--light-blue);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--light-blue);
}

.timeline__year {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--light-blue);
  margin-bottom: 4px;
}

.timeline__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- ACCORDION --- */
.accordion__item {
  border-bottom: 1px solid var(--border-light);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--duration) var(--ease);
}

.accordion__trigger:hover {
  color: var(--light-blue);
}

.accordion__trigger svg {
  width: 20px;
  height: 20px;
  transition: transform var(--duration) var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--text-muted);
}

.accordion__item.open .accordion__trigger svg {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.accordion__content__inner {
  padding-bottom: 20px;
}

.accordion__content__inner p {
  font-size: 0.9375rem;
}

/* --- CTA BANNER --- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,143,194,0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

.cta-banner p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.0625rem;
}

.cta-banner .btn-group {
  justify-content: center;
}

/* --- FORMS --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(59,143,194,0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

.form-group .error-msg {
  font-size: 0.75rem;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- FOOTER --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
}

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

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
}

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

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  padding: 5px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--duration) var(--ease);
  text-decoration: none;
}

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

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

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

.footer__bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.footer__bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

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

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- DIVIDER --- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--light-blue);
  border-radius: 2px;
  margin: 20px 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  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; }

/* --- STAGGERED CARD ANIMATIONS --- */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* --- PROGRESS BARS (Capability Metrics) --- */
.progress-bar {
  height: 8px;
  background: var(--light-blue-bg);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--light-blue), var(--blue));
  border-radius: 4px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.progress-bar__fill.animated {
  width: var(--progress);
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--light-blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration) var(--ease);
  z-index: 50;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --- UTILITY CLASSES --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }
  .hero {
    min-height: auto;
    padding: 120px 0 72px;
  }
  .hero__accent {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: var(--section-pad-mobile) 0;
  }
  .hero {
    padding: 110px 0 56px;
  }
  .page-hero {
    padding: 110px 0 48px;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .card {
    padding: 28px;
  }
  .cta-banner {
    padding: 56px 0;
  }
}

/* --- KEYFRAMES --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(59,143,194,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(59,143,194,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,143,194,0); }
}

/* Floating animation for accent elements */
.float-anim {
  animation: float 4s ease-in-out infinite;
}
