:root {
  --primary: #1488CA;
  --primary-dark: #026192;
  --primary-light: #68B8E4;
  --primary-glow: rgba(20, 136, 202, 0.4);
  --navy: #026192;
  --navy-light: #083651;
  --navy-lighter: #1488CA;
  --dark: #083651;
  --dark-surface: #083651;
  --dark-card: #0a4168;
  --white: #FFFFFF;
  --gray-50: #F7DECA;
  --gray-100: #E8D5C4;
  --gray-200: #B0BEC5;
  --gray-300: #8899A6;
  --gray-400: #6B8294;
  --gray-500: #506778;
  --gray-600: #3E5060;
  --gray-700: #2A3A48;
  --gray-800: #343333;
  --accent-cyan: #68B8E4;
  --accent-teal: #1488CA;
  --success: #34D399;
  --danger: #D46A41;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --container-wide: 1400px;
  --nav-h: 80px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --sh-sm: 0 1px 2px rgba(0,0,0,0.08);
  --sh-md: 0 4px 12px rgba(0,0,0,0.12);
  --sh-lg: 0 12px 28px rgba(0,0,0,0.15);
  --sh-xl: 0 24px 48px rgba(0,0,0,0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: clamp(2.75rem, 5.5vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

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

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

.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--gray-300);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(20, 136, 202, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(2, 97, 146, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-header .overline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-top: 16px;
}

.section-dark .section-header p {
  color: var(--gray-400);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--primary-glow);
  filter: brightness(1.1);
}

.btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

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

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

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

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
  border-radius: var(--r-lg);
}

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

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(8, 54, 81, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}

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

.nav-logo img {
  height: 32px;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--r-sm);
  transition: all var(--transition);
}

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

.nav-link.active {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.navbar.scrolled .nav-link {
  color: rgba(255,255,255,0.75);
}

.navbar.scrolled .nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.75);
}

.navbar:not(.scrolled) .nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  margin-left: 12px;
}

/* ========== DROPDOWN ========== */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 560px;
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  padding: 8px;
  backdrop-filter: blur(20px);
}

.dropdown-small {
  min-width: 200px;
}

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

.dropdown-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.dropdown-small .dropdown-content {
  grid-template-columns: 1fr;
}

.dropdown-section {
  padding: 16px;
}

.dropdown-section h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.dropdown-section a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  transition: all var(--transition);
}

.dropdown-section a:hover {
  background: rgba(255,255,255,0.05);
}

.dropdown-section a strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.dropdown-section a span {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.4;
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== NAV TOGGLE ========== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Aurora / light streaks effect — performant */
.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
}

/* Main streaks — bright, visible lines */
.hero-aurora::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 110%;
  height: 220%;
  background:
    linear-gradient(152deg, transparent 26%, rgba(104, 184, 228, 0.3) 32.5%, rgba(104, 184, 228, 0.04) 34%, transparent 36%),
    linear-gradient(146deg, transparent 30%, rgba(20, 136, 202, 0.25) 35.5%, rgba(20, 136, 202, 0.03) 37%, transparent 39%),
    linear-gradient(158deg, transparent 22%, rgba(2, 97, 146, 0.2) 27.5%, rgba(2, 97, 146, 0.03) 29%, transparent 31%),
    linear-gradient(143deg, transparent 34%, rgba(20, 136, 202, 0.15) 39%, rgba(20, 136, 202, 0.02) 40.5%, transparent 42%),
    linear-gradient(155deg, transparent 18%, rgba(104, 184, 228, 0.1) 23%, rgba(104, 184, 228, 0.01) 24.5%, transparent 26%);
  transform: rotate(-10deg) translateZ(0);
}

/* Secondary wash — broader color fill */
.hero-aurora::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background:
    linear-gradient(150deg, transparent 28%, rgba(20, 136, 202, 0.22) 34%, rgba(20, 136, 202, 0.03) 36%, transparent 38%),
    linear-gradient(140deg, transparent 18%, rgba(20, 136, 202, 0.14) 30%, rgba(2, 97, 146, 0.12) 36%, transparent 44%),
    linear-gradient(156deg, transparent 24%, rgba(104, 184, 228, 0.12) 29%, rgba(104, 184, 228, 0.02) 31%, transparent 33%);
  transform: rotate(-6deg) translateZ(0);
}

/* Glow — large soft radial gradients (no blur filter) */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 60% 25%, rgba(20, 136, 202, 0.2) 0%, rgba(2, 97, 146, 0.05) 50%, transparent 80%),
    radial-gradient(ellipse 50% 50% at 45% 65%, rgba(104, 184, 228, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 75% 50%, rgba(20, 136, 202, 0.08) 0%, transparent 60%);
}

/* Streaks div no longer needed */
.hero-streaks {
  display: none;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(48,137,200,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,212,255,0.3) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(48,137,200,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48,137,200,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, black 20%, transparent 80%);
}

.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  opacity: 0.04;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
}

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

.hero-layout {
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
}

.hero-content {
  width: 100%;
  padding: 60px 0;
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  background: rgba(48,137,200,0.12);
  border: 1px solid rgba(48,137,200,0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-cyan);
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
}

.hero-overline img {
  height: 26px;
  border-radius: 50%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  color: #111;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero h1 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  max-width: 680px;
  line-height: 1.08;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat .number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 6px;
}

/* Hero photo side */
.hero-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: cover;
  border-radius: var(--r-xl);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 54, 81, 0.9) 0%, rgba(2, 97, 146, 0.8) 100%);
}

/* ========== STATEMENTS ========== */
.statements {
  padding: 0;
}

.statement {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.statement:nth-child(odd) {
  background: var(--gray-50);
}

.statement:nth-child(even) {
  background: var(--white);
}

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

.statement:nth-child(even) .statement-grid {
  direction: rtl;
}

.statement:nth-child(even) .statement-grid > * {
  direction: ltr;
}

/* Immersive statement - full-bleed background */
.statement-immersive {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
}

.statement-immersive-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Combo variant - photo bg + floating dashboard */
.statement.statement-combo {
  background: var(--dark);
}

.statement-combo .statement-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement-combo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 54, 81, 0.97) 0%, rgba(8, 54, 81, 0.95) 35%, rgba(8, 54, 81, 0.9) 60%, rgba(8, 54, 81, 0.92) 100%);
}

.statement-combo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.statement-combo .statement-immersive-content {
  max-width: 560px;
}

.statement-combo h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.statement-combo p {
  color: var(--gray-300);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Floating dashboard panel */
.statement-combo-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.combo-dashboard {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-family: var(--font);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.combo-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.combo-dashboard-title {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.combo-dashboard-title i {
  color: var(--accent-cyan);
  font-size: 0.9rem;
}

.combo-dashboard-badge {
  background: rgba(52, 211, 153, 0.15);
  color: var(--success);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(52, 211, 153, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.combo-dashboard-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.combo-metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.combo-metric-row:first-child {
  padding-top: 0;
}

.combo-metric-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

.combo-metric-value {
  font-size: 0.875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.combo-metric-value.green { color: var(--success); }
.combo-metric-value.cyan { color: var(--accent-cyan); }

.combo-bar-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  margin-top: 6px;
  margin-bottom: 4px;
}

.combo-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.combo-bar-fill.green { background: linear-gradient(90deg, var(--success), #6ee7b7); }
.combo-bar-fill.cyan { background: linear-gradient(90deg, var(--primary), var(--accent-cyan)); }

.combo-dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.combo-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 500;
}

.combo-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(52, 211, 153, 0.6); }
  50% { box-shadow: 0 0 16px rgba(52, 211, 153, 0.9); }
}

.combo-region {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}

.combo-region i {
  font-size: 0.65rem;
}

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

@media (max-width: 768px) {
  .combo-dashboard {
    max-width: 100%;
  }

  .statement-combo::before {
    background: linear-gradient(180deg, rgba(8, 54, 81, 0.85) 0%, rgba(8, 54, 81, 0.9) 100%);
  }
}

/* Photo background variant */
.statement-photo-bg .statement-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 54, 81, 0.3) 0%, rgba(8, 54, 81, 0.75) 40%, rgba(8, 54, 81, 0.92) 65%, rgba(8, 54, 81, 0.96) 100%);
}

.statement-immersive-content {
  position: relative;
  z-index: 2;
}

.statement-content-right {
  max-width: 520px;
  margin-left: auto;
}

.statement-photo-bg h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.statement-photo-bg p {
  color: var(--gray-300);
  font-size: 1.125rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .statement-immersive {
    min-height: auto;
    padding: 80px 0;
  }

  .statement-dark-gradient .statement-bg-icon {
    width: 70%;
    opacity: 0.04;
    right: -15%;
  }

  .statement-content-right {
    margin-left: 0;
  }

  .statement-photo-bg::before {
    background: linear-gradient(180deg, rgba(8, 54, 81, 0.6) 0%, rgba(8, 54, 81, 0.92) 50%, rgba(8, 54, 81, 0.96) 100%);
  }
}

.statement-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.statement-content h2 {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.statement-content p {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.statement-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.statement-graphic {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%);
  border: 1px solid rgba(255,255,255,0.06);
}

.statement-graphic i {
  font-size: 5rem;
  color: rgba(255,255,255,0.15);
}

.statement-graphic.sweden-shield {
  background: linear-gradient(135deg, var(--dark) 0%, #083651 100%);
}

.statement-graphic.sweden-shield i {
  font-size: 7rem;
  color: #D46A41;
  opacity: 0.85;
  text-shadow: 0 4px 20px rgba(212, 106, 65, 0.3);
}

.statement-graphic.ai-brain {
  background: linear-gradient(135deg, #083651 0%, #026192 50%, #083651 100%);
}

.ai-chat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 70%;
  max-width: 280px;
}

.ai-chat-bubble {
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 0.875rem;
  font-family: var(--font);
  line-height: 1.5;
  max-width: 85%;
}

.ai-chat-bubble.user {
  background: rgba(20, 136, 202, 0.15);
  border: 1px solid rgba(20, 136, 202, 0.2);
  color: rgba(255, 255, 255, 0.7);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ai-chat-bubble.ai {
  background: rgba(20, 136, 202, 0.25);
  color: rgba(255, 255, 255, 0.9);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.ai-chat-bubble.ai .cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--accent-cyan);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

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

/* Integrations section */
.statement.statement-integrations {
  background: var(--dark);
}

.statement-integrations::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(20, 136, 202, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 30% 30%, rgba(2, 97, 146, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.statement-integrations h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.statement-integrations p {
  color: var(--gray-400);
  font-size: 1.125rem;
  line-height: 1.8;
}

.integrations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  transition: all var(--transition);
  cursor: default;
}

.integration-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.integration-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.integration-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.integration-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.integration-name {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

.integration-desc {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  margin-top: 2px;
}

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

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

.statement-graphic.collab-tools {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%);
}

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

.collab-app {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.collab-app:hover {
  transform: scale(1.08);
}

.collab-app img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.collab-label {
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  text-align: center;
  margin-top: 6px;
  font-family: var(--font);
}

.collab-app-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Edge immersive section */
.statement.statement-edge {
  background: var(--dark);
}

.statement-edge .statement-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement-edge::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 54, 81, 0.92) 0%, rgba(8, 54, 81, 0.78) 40%, rgba(8, 54, 81, 0.55) 70%, rgba(8, 54, 81, 0.65) 100%);
}

.statement-edge h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.statement-edge p {
  color: var(--gray-300);
  font-size: 1.125rem;
  line-height: 1.8;
}

.edge-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Edge terminal panel */
.edge-terminal-wrapper {
  display: flex;
  justify-content: center;
}

.edge-terminal {
  width: 100%;
  max-width: 420px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.edge-terminal-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.edge-terminal-dots {
  display: flex;
  gap: 6px;
}

.edge-terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.edge-terminal-dots span:nth-child(1) { background: #ff5f57; }
.edge-terminal-dots span:nth-child(2) { background: #febc2e; }
.edge-terminal-dots span:nth-child(3) { background: #28c840; }

.edge-terminal-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  flex: 1;
  text-align: center;
}

.edge-terminal-body {
  padding: 20px;
  font-size: 0.75rem;
  line-height: 2;
}

.edge-term-line {
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.edge-term-line.dim {
  color: rgba(255, 255, 255, 0.25);
}

.edge-term-prompt {
  color: var(--success);
  font-weight: 700;
}

.edge-term-cmd {
  color: var(--accent-cyan);
}

.edge-term-flag {
  color: rgba(255, 255, 255, 0.45);
}

.edge-term-check {
  color: var(--success);
  margin-right: 4px;
}

.edge-term-label {
  color: rgba(255, 255, 255, 0.35);
  display: inline-block;
  width: 90px;
}

.edge-term-val {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.edge-term-val.green { color: var(--success); }
.edge-term-val.red { color: var(--danger); }

.edge-term-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--success);
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

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

@media (max-width: 768px) {
  .edge-terminal {
    max-width: 100%;
  }

  .edge-terminal-body {
    overflow-x: auto;
  }

  .statement-edge::before {
    background: linear-gradient(180deg, rgba(8, 54, 81, 0.88) 0%, rgba(8, 54, 81, 0.92) 100%);
  }
}

.statement-graphic.edge-deploy {
  background: linear-gradient(135deg, var(--dark) 0%, #083651 100%);
}

.edge-panel {
  width: 75%;
  max-width: 300px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  overflow: hidden;
  font-family: var(--font);
  backdrop-filter: blur(8px);
}

.edge-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.edge-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.edge-panel-title img {
  height: 20px;
  border-radius: 3px;
}

.edge-panel-title span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
}

.edge-panel-wifi {
  color: rgba(212, 106, 65, 0.7);
}

.edge-panel-wifi i {
  font-size: 0.75rem;
}

.edge-panel-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.edge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--r-sm);
}

.edge-row-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.edge-row-value {
  font-size: 0.7rem;
  font-weight: 600;
}

.edge-row-value.green { color: var(--success); }
.edge-row-value.amber { color: #D46A41; }
.edge-row-value.red { color: var(--danger); }

.edge-status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
}

.edge-status-dot.green {
  background: var(--success);
  box-shadow: 0 0 8px rgba(212, 106, 65, 0.6);
}

.edge-status-dot.red {
  background: var(--danger);
}

/* Architecture immersive section */
.statement.statement-arch {
  background: var(--dark);
}

.statement-arch .statement-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement-arch::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 54, 81, 0.94) 0%, rgba(8, 54, 81, 0.85) 40%, rgba(8, 54, 81, 0.65) 70%, rgba(8, 54, 81, 0.75) 100%);
}

.statement-arch h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.statement-arch p {
  color: var(--gray-300);
  font-size: 1.125rem;
  line-height: 1.8;
}

.arch-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Architecture stack visual — 3D isometric slabs */
.arch-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  padding-top: 30px;
  padding-right: 30px;
}

.arch-layer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
}

.arch-layer:first-child {
  margin-top: 0;
}

/* Top face — parallelogram above front */
.arch-layer::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 28px;
  transform: skewX(-45deg);
  transform-origin: bottom left;
}

/* Right face — parallelogram to the right */
.arch-layer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 28px;
  height: 100%;
  transform: skewY(-45deg);
  transform-origin: bottom left;
}

/* Z-index: top layers in front */
.arch-layer:nth-child(1) { z-index: 5; }
.arch-layer:nth-child(2) { z-index: 4; }
.arch-layer:nth-child(3) { z-index: 3; }
.arch-layer:nth-child(4) { z-index: 2; }
.arch-layer:nth-child(5) { z-index: 1; }

/* Layer 1 — Light Blue */
.arch-layer:nth-child(1) {
  background: #68B8E4;
}
.arch-layer:nth-child(1)::before {
  background: #85c8ec;
}
.arch-layer:nth-child(1)::after {
  background: #4fa6d6;
}

/* Layer 2 — Medium Blue */
.arch-layer:nth-child(2) {
  background: #1488CA;
}
.arch-layer:nth-child(2)::before {
  background: #389dd5;
}
.arch-layer:nth-child(2)::after {
  background: #0e72ac;
}

/* Layer 3 — Deep Blue */
.arch-layer:nth-child(3) {
  background: #026192;
}
.arch-layer:nth-child(3)::before {
  background: #1478aa;
}
.arch-layer:nth-child(3)::after {
  background: #014e78;
}

/* Layer 4 — Dark Navy */
.arch-layer:nth-child(4) {
  background: #083651;
}
.arch-layer:nth-child(4)::before {
  background: #0e4a6a;
}
.arch-layer:nth-child(4)::after {
  background: #042640;
}

/* Layer 5 — Charcoal */
.arch-layer:nth-child(5) {
  background: #343333;
}
.arch-layer:nth-child(5)::before {
  background: #494747;
}
.arch-layer:nth-child(5)::after {
  background: #252424;
}

.arch-layer-check {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--success);
  position: relative;
  z-index: 2;
}

.arch-layer-info {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.arch-layer-label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.arch-layer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  margin-top: 2px;
}

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

  .arch-stack {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .statement-arch::before {
    background: linear-gradient(180deg, rgba(8, 54, 81, 0.9) 0%, rgba(8, 54, 81, 0.92) 100%);
  }
}

.statement-graphic.cni-telecom {
  background: linear-gradient(135deg, var(--dark) 0%, #083651 100%);
}

.cni-panel {
  width: 75%;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  overflow: hidden;
  font-family: var(--font);
  backdrop-filter: blur(8px);
}

.cni-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cni-panel-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cni-panel-title i {
  color: var(--accent-cyan);
  font-size: 0.75rem;
}

.cni-panel-badge {
  background: rgba(20, 136, 202, 0.15);
  color: var(--accent-cyan);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(20, 136, 202, 0.2);
}

.cni-panel-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cni-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cni-metric-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.cni-metric-value {
  font-size: 0.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.cni-metric-value.green { color: var(--success); }
.cni-metric-value.blue { color: var(--accent-cyan); }

.cni-bar-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  margin-top: 4px;
}

.cni-bar-fill {
  height: 100%;
  border-radius: 2px;
}

.cni-bar-fill.green { background: linear-gradient(90deg, var(--success), #6ee7b7); }
.cni-bar-fill.blue { background: linear-gradient(90deg, var(--primary), var(--accent-cyan)); }

.step-panel {
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  overflow: hidden;
  font-family: var(--font);
}

.step-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.step-panel-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-panel-title i {
  font-size: 0.75rem;
  color: var(--accent-cyan);
}

.step-panel-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--r-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
}

.step-check-row i {
  color: var(--success);
  font-size: 0.65rem;
}

.step-check-row.pending i {
  color: rgba(255, 255, 255, 0.15);
}

.step-terminal {
  padding: 16px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.65rem;
  line-height: 1.8;
}

.step-terminal-line {
  color: rgba(255, 255, 255, 0.3);
}

.step-terminal-line .cmd { color: var(--success); }
.step-terminal-line .flag { color: var(--accent-cyan); }
.step-terminal-line .success { color: var(--success); }

.step-terminal-cursor {
  display: inline-block;
  width: 6px;
  height: 12px;
  background: var(--success);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

.step-module {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--r-sm);
}

.step-module-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-module-icon i {
  font-size: 0.75rem;
  color: #fff;
}

.step-module-info { flex: 1; }

.step-module-name {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
}

.step-module-meta {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6rem;
  margin-top: 2px;
}

.step-maturity {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-maturity-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-maturity-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
}

.step-maturity-label span:first-child { color: rgba(255, 255, 255, 0.5); }
.step-maturity-label span:last-child { color: rgba(255, 255, 255, 0.7); font-weight: 600; }

.step-maturity-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
}

.step-maturity-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
}

.ps-graphic {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%);
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
}

.dockyards-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 12px 20px;
  margin-top: 24px;
}

.dockyards-badge img { height: 32px; }

.dockyards-badge span {
  color: var(--white);
  font-weight: 500;
  font-size: 0.875rem;
}

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(48,137,200,0.15), rgba(0,180,216,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--accent-cyan);
}

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

.feature-card p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Light section feature cards */
.section:not(.section-dark) .feature-card {
  background: var(--white);
  border-color: var(--gray-200);
}

.section:not(.section-dark) .feature-card:hover {
  box-shadow: var(--sh-xl);
}

.section:not(.section-dark) .feature-card h3 {
  color: var(--dark);
}

.section:not(.section-dark) .feature-card p {
  color: var(--gray-500);
}

.section:not(.section-dark) .feature-icon {
  color: var(--primary);
  background: rgba(48,137,200,0.1);
}

.section-dark .feature-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}

.section-dark .feature-card:hover {
  background: rgba(255,255,255,0.05);
}

.section-dark .feature-card h3 {
  color: var(--white);
}

.section-dark .feature-card p {
  color: var(--gray-400);
}

/* ========== COMPARISON TABLE ========== */
.comparison-wrapper {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison-table thead {
  background: var(--dark);
  color: var(--white);
}

.comparison-table th {
  padding: 16px 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.comparison-table th:first-child { text-align: left; }
.comparison-table th.highlight { background: var(--primary); }

.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
}

.comparison-table td.highlight { background: rgba(48,137,200,0.04); }
.comparison-table tbody tr:hover { background: var(--gray-50); }
.comparison-table .fa-check { color: var(--success); font-size: 1rem; }
.comparison-table .fa-xmark { color: var(--danger); font-size: 1rem; }

/* ========== EXPANDABLE CONTENT ========== */
.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.expandable-content.expanded {
  max-height: 600px;
}
.read-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  margin-top: 8px;
}
.read-more-btn:hover {
  text-decoration: underline;
}

/* ========== PLATFORM ========== */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.platform-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark), var(--dark-card));
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 400px;
  border: 1px solid rgba(255,255,255,0.06);
}

.platform-image img { max-height: 120px; }

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.platform-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.platform-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(48,137,200,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--primary);
}

.platform-feature h4 { margin-bottom: 4px; }
.platform-feature p { font-size: 0.9375rem; color: var(--gray-500); margin-bottom: 0; }

/* ========== CTA ========== */
.cta-section {
  background: var(--dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(48,137,200,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 30% 30%, rgba(0,180,216,0.06) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

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

.cta-content p {
  color: var(--gray-400);
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.cta-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-with-photo {
  background: none;
}

.cta-with-photo::before {
  background: linear-gradient(135deg, rgba(8, 54, 81, 0.92) 0%, rgba(2, 97, 146, 0.85) 100%);
  z-index: 1;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 1.125rem; color: var(--gray-500); margin-bottom: 40px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(48,137,200,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.125rem;
}

.contact-detail h4 { margin-bottom: 4px; }
.contact-detail p, .contact-detail a { color: var(--gray-500); font-size: 0.9375rem; margin-bottom: 0; }
.contact-detail a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 40px 0 40px;
  box-shadow: 0 4px 24px rgba(8, 54, 81, 0.08), 0 1px 3px rgba(8, 54, 81, 0.04);
  border: 1px solid rgba(8, 54, 81, 0.06);
  overflow: hidden;
}
.contact-form-card h3 {
  margin-bottom: 8px;
  color: var(--dark);
}
.contact-form-card > p {
  color: var(--gray-500);
  margin-bottom: 20px;
  font-size: 1rem;
}
/* Make HubSpot iframe fill the card and offset its internal padding */
.contact-form-card .hs-form-frame iframe {
  width: calc(100% + 80px) !important;
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: -150px;
}

/* HubSpot form overrides */
.contact-form-card .hs-form-frame input[type="text"],
.contact-form-card .hs-form-frame input[type="email"],
.contact-form-card .hs-form-frame input[type="tel"],
.contact-form-card .hs-form-frame input[type="number"],
.contact-form-card .hs-form-frame textarea,
.contact-form-card .hs-form-frame select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-700);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}
.contact-form-card .hs-form-frame input:focus,
.contact-form-card .hs-form-frame textarea:focus,
.contact-form-card .hs-form-frame select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 136, 202, 0.12);
}
.contact-form-card .hs-form-frame label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.contact-form-card .hs-form-frame input[type="submit"],
.contact-form-card .hs-form-frame button[type="submit"] {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  width: 100%;
  margin-top: 8px;
}
.contact-form-card .hs-form-frame input[type="submit"]:hover,
.contact-form-card .hs-form-frame button[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
/* Clip HubSpot iframe top to hide its internal title gap */
.contact-form-card .hs-form-frame {
  padding: 0;
  margin-top: -30px;
}
/* Hide card header after form submission */
.contact-form-card.form-submitted .contact-form-header {
  display: none;
}
.contact-form-card.form-submitted .hs-form-frame {
  margin-top: 0;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--gray-700);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(48,137,200,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ========== CULTURE GALLERY ========== */
.culture-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.culture-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

.culture-item.culture-large { grid-column: span 3; }

.culture-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.culture-item.culture-large img { max-height: 480px; }
.culture-item:not(.culture-large) img { aspect-ratio: 4 / 3; }
.culture-item:hover img { transform: scale(1.03); }

.culture-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item h3 { margin-bottom: 8px; }
.timeline-item p { color: var(--gray-500); }

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  transition: all var(--transition);
}

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

.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--gray-500); line-height: 1.7; }
.service-card .btn { margin-top: 20px; }

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 60%, rgba(20, 136, 202, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 20%, rgba(2, 97, 146, 0.05) 0%, transparent 50%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(48,137,200,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48,137,200,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero .overline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.page-hero h1 {
  color: var(--white);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  color: var(--gray-400);
  font-size: 1.25rem;
  max-width: 800px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}

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

.compliance-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

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

.compliance-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(48,137,200,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--primary);
}

.compliance-card h3 { margin-bottom: 12px; }
.compliance-card p { color: var(--gray-500); font-size: 0.9375rem; margin-bottom: 0; }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 80px 0 40px;
  position: relative;
}

.footer-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.06;
  pointer-events: none;
}

.footer-wave img {
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 28px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(48,137,200,0.1);
  border: 1px solid rgba(48,137,200,0.15);
  border-radius: 100px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent-cyan); }

.footer-contact a {
  display: block;
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--accent-cyan); }

.footer-address {
  font-size: 0.875rem;
  margin-top: 16px;
  line-height: 1.7;
}

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

.partner-logo {
  height: 24px;
  opacity: 0.4;
  transition: opacity var(--transition);
}

.partner-logo:hover { opacity: 0.7; }

.footer-partner-logos {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ========== FLAG ANIMATIONS ========== */
.flag-animation {
  display: flex;
  gap: 40px;
  align-items: center;
}

.flag-icon {
  width: 100px;
  height: 70px;
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.flag-sweden { background: #005BAA; }
.flag-sweden::before {
  content: '';
  position: absolute;
  top: 0;
  left: 35%;
  width: 12%;
  height: 100%;
  background: #FECC00;
}
.flag-sweden::after {
  content: '';
  position: absolute;
  top: 38%;
  left: 0;
  width: 100%;
  height: 14%;
  background: #FECC00;
}

.flag-eu {
  background: #003399;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flag-eu::before {
  content: '';
  width: 50px;
  height: 50px;
  border: 3px solid #FFCC00;
  border-radius: 50%;
}

.flag-arrow {
  color: rgba(255,255,255,0.4);
  font-size: 2rem;
}

.graphic-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
}

.graphic-icon-item {
  width: 80px;
  height: 80px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* ========== IMAGE COMPONENTS ========== */
.statement-photo {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statement-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.statement-photo:hover img { transform: scale(1.03); }

.people-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.people-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 54, 81, 0.88) 0%, rgba(2, 97, 146, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.people-banner-content {
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.people-banner-content h2 { color: var(--white); margin-bottom: 16px; }
.people-banner-content p { color: var(--gray-300); font-size: 1.125rem; }

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.image-text-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-xl);
}

.image-text-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-text-photo:hover img { transform: scale(1.03); }

.image-text-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 97, 146, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.quote-section {
  padding: 80px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.quote-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.quote-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--sh-lg);
  flex-shrink: 0;
}

.quote-avatar img { width: 100%; height: 100%; object-fit: cover; }

.quote-text {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--primary);
}

.quote-author {
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
}

.quote-role {
  color: var(--gray-500);
  font-weight: 400;
  font-size: 0.875rem;
}

.team-strip {
  display: flex;
  gap: 16px;
  overflow: hidden;
  padding: 60px 0;
}

.team-strip-item {
  flex: 1;
  min-width: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

.team-strip-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-strip-item:hover img { transform: scale(1.05); }

/* ========== RESPONSIVE: 1024px ========== */
@media (max-width: 1024px) {
  .features-grid,
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .statement:nth-child(even) .statement-grid {
    direction: ltr;
  }

  .statement-graphic {
    max-width: 100%;
    aspect-ratio: auto;
    min-height: 300px;
  }

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

  .hero-visual {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    display: none;
  }

  .hero-stats {
    gap: 32px;
  }

  .comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 800px;
  }

  .image-text-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quote-avatar { margin: 0 auto; }
  .quote-text { border-left: none; padding-left: 0; border-top: 3px solid var(--primary); padding-top: 24px; }

  .team-strip { flex-wrap: wrap; }
  .team-strip-item { flex: 1 1 calc(50% - 8px); }

  /* Mobile nav - show hamburger at 1024px */
  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  /* Hamburger to X animation */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Backdrop overlay behind mobile menu */
  .nav-menu::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: -1;
  }

  .nav-menu.active::before {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--dark-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,0.06);
    z-index: 1001;
  }

  .nav-menu.active {
    right: 0;
  }

  /* Prevent body scroll when menu is open */
  body.nav-open {
    overflow: hidden;
  }

  .nav-menu .nav-link {
    color: rgba(255,255,255,0.8) !important;
    padding: 14px 0;
    width: 100%;
    font-size: 1rem;
  }

  .nav-menu .nav-link:hover {
    color: var(--white) !important;
    background: transparent !important;
  }

  .nav-menu .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    border-bottom: none !important;
  }

  .nav-cta .btn {
    width: 100%;
    text-align: center;
  }

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

  .has-dropdown:hover .dropdown,
  .has-dropdown.active .dropdown {
    display: block;
  }

  .dropdown-content {
    grid-template-columns: 1fr;
  }

  .dropdown-section a strong {
    color: rgba(255,255,255,0.8);
  }

  .dropdown-section a span {
    color: rgba(255,255,255,0.4);
  }
}

/* ========== RESPONSIVE: 768px ========== */
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .features-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-form-card {
    padding: 24px 20px 0 20px;
  }

  .contact-form-card .hs-form-frame iframe {
    width: calc(100% + 40px) !important;
    margin-left: -20px;
    margin-right: -20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stat {
    flex: 1;
    min-width: 0;
    text-align: center;
  }

  .hero-stat .number {
    font-size: 1.35rem;
  }

  .hero-stat .label {
    font-size: 0.75rem;
  }

  .hero-content {
    padding: 40px 0;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .comparison-wrapper {
    margin: 0 -24px;
    border-radius: 0;
  }

  .flag-animation {
    flex-direction: column;
    gap: 20px;
  }

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

  .statement-immersive {
    min-height: auto;
    padding: 80px 0;
  }

  .statement-graphic {
    max-width: 100%;
    aspect-ratio: auto;
    min-height: 250px;
  }

  .edge-panel,
  .cni-panel,
  .step-panel {
    width: 90%;
    max-width: 100%;
  }

  .ai-chat { width: 85%; }

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

  .collab-app { width: 60px; height: 60px; }
  .collab-app img { width: 28px; height: 28px; }

  .ps-graphic { max-width: 100%; }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
  .page-hero p { font-size: 1rem; }
  .hero h1 { font-size: clamp(2rem, 6vw, 4rem); }
  .hero-description { font-size: 1rem; }
  .section-header { margin-bottom: 40px; }

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

  .culture-gallery { grid-template-columns: 1fr; }
  .culture-item.culture-large { grid-column: span 1; }
  .culture-item.culture-large img { max-height: 300px; }

  .people-banner { height: 300px; }
  .statement-photo { max-width: 100%; }
  .team-strip-item { flex: 1 1 100%; }
  .team-strip-item img { height: 220px; }

  /* Edge terminal responsive */
  .edge-terminal {
    max-width: 100%;
  }

  .edge-terminal-body {
    overflow-x: auto;
    font-size: 0.7rem;
  }

  .edge-term-line {
    white-space: nowrap;
  }

  /* Architecture stack responsive */
  .arch-stack {
    padding-right: 20px;
    padding-top: 20px;
  }

  .arch-layer {
    padding: 12px 16px;
  }

  .arch-layer::before {
    height: 20px;
  }

  .arch-layer::after {
    width: 20px;
  }

  /* Service card padding */
  .service-card {
    padding: 32px 24px;
  }

  /* Feature card padding */
  .feature-card {
    padding: 32px 24px;
  }

  /* Compliance card padding */
  .compliance-card {
    padding: 32px 24px;
  }
}

/* ========== RESPONSIVE: 480px ========== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat .number {
    font-size: 1.15rem;
  }

  .section {
    padding: 60px 0;
  }

  .statement {
    padding: 60px 0;
  }

  .statement-immersive {
    padding: 60px 0;
  }

  .nav-menu {
    width: 100%;
  }

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

  .page-hero {
    padding: 110px 0 48px;
  }
}
