/* ============================================
   NORDIQ TEK APS — Design System
   Emerald & Burgundy Theme
   ============================================ */

:root {
  --emerald-50: #ecfdf5;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;

  --burgundy-300: #e8a0b0;
  --burgundy-400: #c44569;
  --burgundy-500: #9b2335;
  --burgundy-600: #722f37;
  --burgundy-700: #5c1a33;
  --burgundy-800: #3d0f1e;

  --bg-primary: #0a0e14;
  --bg-secondary: #111820;
  --bg-card: #151d28;
  --bg-elevated: #1a2433;

  --text-primary: #f0f4f8;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border-subtle: rgba(16, 185, 129, 0.12);
  --border-accent: rgba(155, 35, 53, 0.25);

  --gradient-hero: linear-gradient(135deg, var(--emerald-800) 0%, var(--burgundy-800) 50%, var(--bg-primary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--emerald-500), var(--burgundy-500));
  --gradient-text: linear-gradient(135deg, var(--emerald-400), var(--burgundy-300));

  --shadow-glow-emerald: 0 0 40px rgba(16, 185, 129, 0.15);
  --shadow-glow-burgundy: 0 0 40px rgba(155, 35, 53, 0.15);

  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-height: 88px;
  --container-max: 1200px;
  --section-padding: clamp(4rem, 8vw, 7rem);

  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  position: relative;
}

/* Ambient page texture */
.page-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(16, 185, 129, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(155, 35, 53, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Utility */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-400);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

.section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

.section-deco {
  position: absolute;
  top: clamp(2rem, 5vw, 4rem);
  right: clamp(1rem, 4vw, 3rem);
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 11rem);
  font-weight: 800;
  line-height: 1;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section-deco--emerald {
  color: var(--emerald-500);
}

.section-deco--burgundy {
  color: var(--burgundy-500);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 600px;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

body.preloader-active {
  overflow: hidden;
}

body.preloader-active .page-content {
  opacity: 0;
}

body.is-page-ready .page-content {
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030508;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.is-exiting {
  opacity: 0;
  pointer-events: none;
}

.preloader.is-exiting .preloader-panel {
  opacity: 0;
  transform: translateY(-20px) scale(0.97);
  filter: blur(4px);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.35s ease;
}

.preloader.is-exiting .preloader-scene {
  opacity: 0;
  transform: scale(1.04);
  filter: blur(8px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.preloader-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), filter 1s ease;
  will-change: transform;
}

.preloader-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.preloader-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  mix-blend-mode: screen;
  animation: preloaderAurora 8s ease-in-out infinite;
  will-change: transform, opacity;
}

.preloader-aurora--1 {
  width: 55vw;
  height: 55vw;
  max-width: 500px;
  max-height: 500px;
  top: 10%;
  left: 15%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.5), transparent 70%);
}

.preloader-aurora--2 {
  width: 45vw;
  height: 45vw;
  max-width: 420px;
  max-height: 420px;
  bottom: 5%;
  right: 10%;
  background: radial-gradient(circle, rgba(155, 35, 53, 0.45), transparent 70%);
  animation-delay: -4s;
  animation-direction: reverse;
}

.preloader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.preloader-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 50%, transparent 0%, rgba(3, 5, 8, 0.4) 50%, rgba(3, 5, 8, 0.95) 100%);
}

.preloader-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.preloader-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem 2rem;
  background: rgba(8, 12, 18, 0.42);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(16, 185, 129, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(32px) scale(0.94);
  animation: preloaderPanelIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
  will-change: transform;
}

.preloader-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), transparent 40%, transparent 60%, rgba(155, 35, 53, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.preloader-emblem {
  position: relative;
  width: 140px;
  height: 140px;
}

.preloader-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.preloader-svg-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 2;
}

.preloader-svg-progress {
  fill: none;
  stroke: url(#preloaderGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 389.56;
  stroke-dashoffset: 389.56;
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.5));
  transition: stroke-dashoffset 0.1s linear;
}

.preloader-emblem-glow {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12), rgba(155, 35, 53, 0.08), transparent 70%);
  animation: preloaderGlowPulse 3s ease-in-out infinite;
}

.preloader-emblem-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloaderIconFloat 4s ease-in-out infinite;
}

.preloader-emblem-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(16, 185, 129, 0.35));
}

.preloader-info {
  text-align: center;
  width: min(260px, 70vw);
}

.preloader-brand {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  opacity: 0;
  animation: preloaderFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.preloader-counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: preloaderFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.preloader-counter-value {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 0%, var(--emerald-300) 50%, var(--burgundy-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.preloader-counter-value.is-ticking {
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.15);
}

.preloader-counter-unit {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.preloader-bar-track {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
  opacity: 0;
  animation: preloaderFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--emerald-500), var(--burgundy-500));
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
  transition: width 0.08s linear;
}

.preloader-bar-shine {
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: preloaderBarShine 2s ease-in-out infinite;
}

.preloader-status {
  margin: 0;
  min-height: 1.2em;
  opacity: 0;
  animation: preloaderFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.preloader-status-text {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-status-text.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

@keyframes preloaderAurora {
  0%, 100% { opacity: 0.38; }
  50% { opacity: 0.58; }
}

@keyframes preloaderPanelIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes preloaderFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes preloaderIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes preloaderBarShine {
  0% { left: -30%; }
  100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-bg-img,
  .preloader-aurora,
  .preloader-emblem-glow,
  .preloader-emblem-icon,
  .preloader-bar-shine,
  .preloader-panel {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .preloader-bar-fill {
    width: 100% !important;
  }
}

/* ============================================
   Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}

.header-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-600) 0%, var(--emerald-400) 35%, var(--burgundy-500) 70%, var(--burgundy-700) 100%);
  opacity: 0.85;
}

.header-inner {
  background: rgba(8, 12, 18, 0.82);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-base);
  pointer-events: auto;
}

.header.scrolled .header-inner {
  background: rgba(6, 10, 15, 0.96);
  border-bottom-color: rgba(155, 35, 53, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--nav-height);
  min-height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
  padding-right: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo:hover {
  opacity: 0.88;
}

.nav-logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  transition: color var(--transition-fast);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-400), var(--burgundy-400));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--emerald-300);
}

.nav-link.active::after {
  transform: scaleX(1);
  background: var(--emerald-400);
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid rgba(155, 35, 53, 0.45);
  border-radius: 4px;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(155, 35, 53, 0.18));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.nav-cta span,
.nav-cta svg {
  position: relative;
  z-index: 1;
}

.nav-cta:hover {
  border-color: var(--burgundy-400);
  color: white;
  box-shadow: 0 0 24px rgba(155, 35, 53, 0.2);
}

.nav-cta:hover::before {
  opacity: 1;
}

.nav-cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav-cta:hover svg {
  transform: translateX(3px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.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);
}

/* Mobile Nav */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 15, 0.98);
  backdrop-filter: blur(28px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu .nav-link {
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: 0.01em;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-menu .nav-link::after {
  display: none;
}

.mobile-menu .nav-link.active {
  color: var(--emerald-400);
  padding-left: 1rem;
  border-left: 3px solid var(--emerald-500);
}

.mobile-nav-cta {
  align-self: center;
  font-size: 0.9rem;
  padding: 0.875rem 2rem;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 1.5rem);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg-primary) 0%, rgba(10, 14, 20, 0.7) 50%, rgba(10, 14, 20, 0.4) 100%),
    linear-gradient(to top, var(--bg-primary) 0%, transparent 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  pointer-events: none;
}

.hero-glow--emerald {
  top: 10%;
  right: 10%;
  background: var(--emerald-600);
}

.hero-glow--burgundy {
  bottom: 20%;
  left: 5%;
  background: var(--burgundy-600);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--emerald-300);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-400);
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  color: white;
  background: var(--gradient-accent);
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4), 0 0 24px rgba(155, 35, 53, 0.15);
}

.btn-outline {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(155, 35, 53, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(155, 35, 53, 0.12);
  border-color: var(--burgundy-400);
  box-shadow: 0 0 24px rgba(155, 35, 53, 0.1);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--emerald-400);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s forwards;
  opacity: 0;
  cursor: pointer;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--emerald-500), transparent);
  animation: scrollLine 2s ease infinite;
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald-500), var(--burgundy-500), transparent);
  opacity: 0.3;
}

.about::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--burgundy-700);
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.about .container,
.approach .container {
  position: relative;
  z-index: 1;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.about-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro .section-desc {
  margin-bottom: 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.about-highlight {
  padding: 1.35rem;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.9), rgba(15, 20, 28, 0.95));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all var(--transition-base);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.about-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.about-highlight:hover {
  border-color: rgba(16, 185, 129, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.about-highlight:hover::before {
  opacity: 1;
}

.about-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--emerald-400);
}

.about-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.about-highlight h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.about-highlight p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-content .section-desc {
  margin-bottom: 2rem;
}

.about-visual {
  position: relative;
  display: flex;
  min-height: 100%;
}

.about-visual-card {
  position: relative;
  flex: 1;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  min-height: 380px;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, transparent 50%, rgba(155, 35, 53, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-visual:hover .about-visual-card img {
  transform: scale(1.03);
}

.about-floating-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  padding: 0.875rem 1.125rem;
  background: rgba(10, 14, 20, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-floating-badge svg {
  width: 24px;
  height: 24px;
  color: var(--emerald-400);
}

.about-floating-badge span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   Approach Section
   ============================================ */
.approach {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--emerald-700);
  filter: blur(140px);
  opacity: 0.07;
  pointer-events: none;
}

.approach-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.approach-header .section-desc {
  margin: 0 auto;
}

/* ============================================
   Split Layout (image + content columns)
   ============================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
}

.split-layout--reverse {
  grid-template-columns: 1fr 1fr;
}

.split-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  align-self: stretch;
  display: flex;
  min-height: 0;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}

.split-media:hover img {
  transform: scale(1.02);
}

.approach-layout {
  margin-top: 0;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.approach-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(21, 29, 40, 0.8), rgba(15, 20, 28, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all var(--transition-base);
  cursor: default;
  position: relative;
  backdrop-filter: blur(8px);
}

.approach-step:hover {
  border-color: rgba(155, 35, 53, 0.35);
  box-shadow: var(--shadow-glow-burgundy);
  transform: translateX(6px);
}

.approach-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(155, 35, 53, 0.2), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(155, 35, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--burgundy-300);
  position: relative;
  z-index: 1;
}

.approach-step h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.approach-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   Technology Section
   ============================================ */
.technology {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.technology::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--emerald-700);
  filter: blur(150px);
  opacity: 0.1;
  pointer-events: none;
}

.tech-grid {
  align-items: stretch;
}

.tech-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tech-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.tech-card {
  padding: 1.5rem;
  background: linear-gradient(160deg, rgba(21, 29, 40, 0.85), rgba(12, 17, 24, 0.95));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all var(--transition-base);
  cursor: default;
  position: relative;
}

.tech-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: 1px;
}

.tech-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.tech-card:hover::after {
  opacity: 0.6;
}

.tech-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--emerald-400);
}

.tech-card-icon svg {
  width: 22px;
  height: 22px;
}

.tech-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tech-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   Ecosystem Section
   ============================================ */
.ecosystem {
  padding: var(--section-padding) 0;
}

.ecosystem-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  border: 1px solid var(--border-subtle);
}

.ecosystem-banner img {
  width: 100%;
  height: clamp(200px, 30vw, 360px);
  object-fit: cover;
}

.ecosystem-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 14, 20, 0.85) 0%, rgba(10, 14, 20, 0.4) 100%);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.ecosystem-banner-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  max-width: 500px;
}

.ecosystem-banner-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
}

.ecosystem-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ecosystem-pillar {
  padding: 2.25rem 2rem;
  background: linear-gradient(180deg, rgba(21, 29, 40, 0.7), rgba(15, 20, 28, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  text-align: center;
  transition: all var(--transition-base);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.ecosystem-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: 0 0 4px 4px;
}

.ecosystem-pillar:hover {
  border-color: rgba(155, 35, 53, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ecosystem-pillar:hover::before {
  opacity: 0.8;
}

.ecosystem-pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 14px;
  background: rgba(155, 35, 53, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy-300);
}

.ecosystem-pillar-icon svg {
  width: 26px;
  height: 26px;
}

.ecosystem-pillar h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.ecosystem-pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   Values Section
   ============================================ */
.values {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.values-layout > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-left: 3px solid transparent;
  transition: border-color var(--transition-base), background var(--transition-base);
  border-radius: 0 12px 12px 0;
  cursor: default;
}

.value-item:hover {
  border-left-color: var(--emerald-500);
  background: rgba(16, 185, 129, 0.04);
}

.value-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--emerald-400);
}

.value-item-icon svg {
  width: 100%;
  height: 100%;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   Contact CTA
   ============================================ */
.contact-cta {
  padding: var(--section-padding) 0;
  position: relative;
}

.contact-cta-box {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.9), rgba(12, 17, 24, 0.95));
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 28px;
  text-align: center;
  overflow: hidden;
}

.contact-cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(155, 35, 53, 0.2), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta-box .section-title {
  margin-bottom: 1rem;
}

.contact-cta-box .section-desc {
  margin: 0 auto 2rem;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9375rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--emerald-300);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.contact-email:hover {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.35);
}

.contact-email svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   Legal Pages
   ============================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 3rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.page-hero-glow--emerald {
  width: 400px;
  height: 400px;
  top: -10%;
  left: -5%;
  background: rgba(16, 185, 129, 0.12);
}

.page-hero-glow--burgundy {
  width: 350px;
  height: 350px;
  bottom: -20%;
  right: -5%;
  background: rgba(155, 35, 53, 0.1);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--emerald-300) 50%, var(--burgundy-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
}

.legal-content {
  padding: 0 0 var(--section-padding);
}

.legal-content-box {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.7), rgba(12, 17, 24, 0.85));
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.legal-content-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent 40%, rgba(155, 35, 53, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.legal-block + .legal-block {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.legal-block p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.legal-block li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.625rem;
}

.legal-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-500), var(--burgundy-500));
}

.legal-block a {
  color: var(--emerald-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.legal-block a:hover {
  color: var(--emerald-300);
}

.legal-contact-card {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 16px;
}

.legal-contact-card p {
  margin-bottom: 0.35rem;
}

.legal-contact-card p:last-child {
  margin-bottom: 0;
}

/* ============================================
   FAQ Page
   ============================================ */
.faq-section {
  padding: 0 0 var(--section-padding);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.7), rgba(12, 17, 24, 0.85));
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), transparent 50%, rgba(155, 35, 53, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.faq-item.is-open,
.faq-item:hover {
  border-color: rgba(16, 185, 129, 0.2);
}

.faq-item.is-open::after {
  opacity: 1;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--emerald-300);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--emerald-400);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: var(--burgundy-400);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer-inner a {
  color: var(--emerald-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.faq-answer-inner a:hover {
  color: var(--emerald-300);
}

.faq-cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.faq-cta-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
  padding: 0 0 clamp(2rem, 4vw, 3rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.7), rgba(12, 17, 24, 0.85));
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 18px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-400);
  margin-bottom: 0.75rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--emerald-400);
  transition: color var(--transition-fast);
}

.contact-info-card a:hover {
  color: var(--emerald-300);
}

.contact-form-box {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.7), rgba(12, 17, 24, 0.85));
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.contact-form-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent 40%, rgba(155, 35, 53, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact-form-intro {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-label span {
  color: var(--burgundy-400);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: rgba(8, 12, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--emerald-500);
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.form-checkbox a {
  color: var(--emerald-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox a:hover {
  color: var(--emerald-300);
}

.form-submit {
  align-self: flex-start;
  border: none;
  font-family: var(--font-body);
}

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: rgba(155, 35, 53, 0.5);
  box-shadow: 0 0 0 3px rgba(155, 35, 53, 0.12);
}

.form-checkbox.is-invalid span {
  color: var(--burgundy-300);
}

/* Form Modal */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 10500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.form-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 2.25rem 2rem 2rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.95), rgba(12, 17, 24, 0.98));
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 24px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-modal.is-visible .form-modal-dialog {
  transform: translateY(0) scale(1);
}

.form-modal-dialog::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), transparent 45%, rgba(155, 35, 53, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.form-modal-close:hover {
  color: var(--text-primary);
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.08);
}

.form-modal-close svg {
  width: 18px;
  height: 18px;
}

.form-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.form-modal-icon svg {
  width: 32px;
  height: 32px;
}

.form-modal-icon--success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--emerald-400);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.15);
}

.form-modal-icon--error {
  background: rgba(155, 35, 53, 0.12);
  border: 1px solid rgba(155, 35, 53, 0.25);
  color: var(--burgundy-400);
  box-shadow: 0 0 24px rgba(155, 35, 53, 0.15);
}

.form-modal-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.form-modal-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.form-modal-intro {
  margin-bottom: 0.875rem;
  text-align: center;
}

.form-modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  margin: 0;
  padding: 0;
}

.form-modal-list li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.form-modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--burgundy-400);
}

.form-modal--error .form-modal-dialog {
  width: min(480px, 100%);
  border-color: rgba(155, 35, 53, 0.2);
}

.form-modal-btn {
  min-width: 140px;
  border: none;
  font-family: var(--font-body);
}

.form-modal--error .form-modal-btn {
  background: linear-gradient(135deg, var(--burgundy-600), var(--burgundy-500));
  box-shadow: 0 4px 24px rgba(155, 35, 53, 0.3);
}

.contact-map-section {
  padding: 0 0 var(--section-padding);
}

.contact-map-header {
  margin-bottom: 1.5rem;
}

.contact-map-header .section-title {
  margin-bottom: 0.5rem;
}

.contact-map-header .section-desc {
  margin: 0;
}

.contact-map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.12);
  background: rgba(12, 17, 24, 0.8);
  aspect-ratio: 16 / 7;
  min-height: 320px;
}

.contact-map-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent 50%, rgba(155, 35, 53, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05) brightness(0.85);
}

/* ============================================
   Insights Page
   ============================================ */
.insights-hero {
  position: relative;
  min-height: clamp(420px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + 3rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.insights-hero-bg {
  position: absolute;
  inset: 0;
}

.insights-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 5, 8, 0.95) 0%, rgba(3, 5, 8, 0.5) 45%, rgba(3, 5, 8, 0.75) 100%),
    linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(155, 35, 53, 0.06));
}

.insights-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.insights-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.insights-hero-title span {
  background: linear-gradient(135deg, var(--emerald-300), var(--text-primary), var(--burgundy-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.insights-hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 540px;
}

.insights-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.insights-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.insights-hero-meta-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-400);
}

.insights-hero-meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.insights-spectrum {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.insights-spectrum-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.insights-tag {
  padding: 0.5rem 1.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.insights-tag:hover {
  color: var(--emerald-300);
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
}

.insights-featured {
  padding: var(--section-padding) 0;
}

.insights-featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.insights-featured-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.insights-featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.insights-featured-visual:hover img {
  transform: scale(1.04);
}

.insights-featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.4rem 0.875rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-300);
  background: rgba(3, 5, 8, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
}

.insights-featured-content .section-title {
  margin-bottom: 1rem;
}

.insights-featured-excerpt {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.insights-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald-400);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.insights-read-link:hover {
  color: var(--emerald-300);
  gap: 0.75rem;
}

.insights-read-link svg {
  width: 16px;
  height: 16px;
}

.insights-articles {
  padding: 0 0 var(--section-padding);
}

.insights-articles-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.insights-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.insights-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(21, 29, 40, 0.8), rgba(12, 17, 24, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-fast), box-shadow var(--transition-base);
}

.insights-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(16, 185, 129, 0.06);
}

.insights-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.insights-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insights-card:hover .insights-card-img img {
  transform: scale(1.06);
}

.insights-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insights-card-topic {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy-400);
  margin-bottom: 0.625rem;
}

.insights-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.insights-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.insights-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.25rem;
}

.insights-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.insights-card-btn {
  flex-shrink: 0;
  padding: 0.45rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.insights-card-btn:hover {
  color: var(--text-primary);
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.35);
}

.insights-radar {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.03), transparent);
}

.insights-radar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.insights-radar-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

.insights-radar-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-radar-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  pointer-events: none;
}

.insights-signals {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.insights-signal-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(12, 17, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: border-color var(--transition-fast);
}

.insights-signal-item:hover {
  border-color: rgba(155, 35, 53, 0.2);
}

.insights-signal-num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--burgundy-400);
  opacity: 0.6;
}

.insights-signal-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.insights-signal-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.insights-voices {
  padding: 0 0 var(--section-padding);
}

.insights-voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.insights-voice {
  position: relative;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.7), rgba(12, 17, 24, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}

.insights-voice::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--emerald-500);
  opacity: 0.15;
}

.insights-voice blockquote {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.insights-voice cite {
  font-size: 0.8125rem;
  font-weight: 600;
  font-style: normal;
  color: var(--emerald-400);
  letter-spacing: 0.04em;
}

.insights-editorial {
  padding: 0 0 var(--section-padding);
}

.insights-editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.insights-editorial-img {
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
}

.insights-editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-editorial-panel {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.8), rgba(12, 17, 24, 0.9));
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insights-editorial-panel .section-title {
  margin-bottom: 1.25rem;
}

.insights-editorial-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.insights-editorial-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}

.insights-editorial-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-500), var(--burgundy-500));
}

.insights-cta {
  padding: 0 0 var(--section-padding);
}

.insights-cta-box {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.85), rgba(12, 17, 24, 0.95));
  border: 1px solid rgba(155, 35, 53, 0.15);
  border-radius: 28px;
  overflow: hidden;
}

.insights-cta-box::before {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 35, 53, 0.1), transparent 70%);
  pointer-events: none;
}

.insights-cta-box .section-title {
  margin-bottom: 0.75rem;
}

.insights-cta-box .section-desc {
  margin: 0 auto 1.75rem;
  max-width: 480px;
}

/* ============================================
   Technology Page
   ============================================ */
.techpg-hero {
  position: relative;
  min-height: clamp(420px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + 3rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.techpg-hero-bg {
  position: absolute;
  inset: 0;
}

.techpg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.techpg-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 5, 8, 0.96) 0%, rgba(3, 5, 8, 0.45) 50%, rgba(3, 5, 8, 0.7) 100%),
    linear-gradient(225deg, rgba(16, 185, 129, 0.07), rgba(155, 35, 53, 0.05));
}

.techpg-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.techpg-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.techpg-hero-title span {
  background: linear-gradient(135deg, var(--emerald-300), var(--text-primary), var(--burgundy-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.techpg-hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 560px;
}

.techpg-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.techpg-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.techpg-stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-400);
}

.techpg-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.techpg-stack {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.techpg-stack-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.techpg-pill {
  padding: 0.5rem 1.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(155, 35, 53, 0.06);
  border: 1px solid rgba(155, 35, 53, 0.12);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.techpg-pill:hover {
  color: var(--burgundy-300);
  border-color: rgba(155, 35, 53, 0.3);
  background: rgba(155, 35, 53, 0.1);
}

.techpg-foundation {
  padding: var(--section-padding) 0;
}

.techpg-foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.techpg-foundation-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.techpg-foundation-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.techpg-foundation-visual:hover img {
  transform: scale(1.04);
}

.techpg-foundation-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.techpg-point {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(12, 17, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: border-color var(--transition-fast);
}

.techpg-point:hover {
  border-color: rgba(16, 185, 129, 0.2);
}

.techpg-point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  color: var(--emerald-400);
}

.techpg-point-icon svg {
  width: 20px;
  height: 20px;
}

.techpg-point h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.techpg-point p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.techpg-capabilities {
  padding: 0 0 var(--section-padding);
}

.techpg-capabilities-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.techpg-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.techpg-cap-card {
  padding: 1.75rem;
  background: linear-gradient(160deg, rgba(21, 29, 40, 0.8), rgba(12, 17, 24, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: transform var(--transition-base), border-color var(--transition-fast), box-shadow var(--transition-base);
}

.techpg-cap-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.techpg-cap-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(155, 35, 53, 0.08));
  border-radius: 14px;
  color: var(--emerald-400);
}

.techpg-cap-icon svg {
  width: 24px;
  height: 24px;
}

.techpg-cap-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.techpg-cap-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.techpg-pipeline {
  padding: 0 0 var(--section-padding);
}

.techpg-pipeline-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  max-width: 100%;
  min-width: 0;
}

.techpg-pipeline-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.techpg-pipeline-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(90deg, rgba(3, 5, 8, 0.92) 0%, rgba(3, 5, 8, 0.6) 55%, transparent 100%);
  box-sizing: border-box;
}

.techpg-pipeline-content {
  max-width: min(520px, 100%);
  min-width: 0;
}

.techpg-pipeline-content .section-title,
.techpg-pipeline-content .section-desc {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.techpg-pipeline-content .section-title {
  margin-bottom: 1rem;
}

.techpg-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.techpg-flow-step {
  padding: 0.4rem 0.875rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-300);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  min-width: 0;
}

.techpg-flow-arrow {
  color: var(--burgundy-400);
  font-size: 0.75rem;
  align-self: center;
  opacity: 0.6;
}

.techpg-matrix {
  padding: 0 0 var(--section-padding);
}

.techpg-matrix-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.techpg-matrix-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 520px;
}

.techpg-matrix-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.techpg-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.techpg-metric {
  padding: 1.25rem;
  background: rgba(12, 17, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  text-align: center;
}

.techpg-metric-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--emerald-400), var(--burgundy-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.techpg-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.techpg-governance {
  padding: 0 0 var(--section-padding);
}

.techpg-gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.techpg-gov-card {
  padding: 2rem 1.75rem;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.7), rgba(12, 17, 24, 0.85));
  border: 1px solid rgba(155, 35, 53, 0.1);
  border-radius: 20px;
  text-align: center;
  transition: border-color var(--transition-fast), transform var(--transition-base);
}

.techpg-gov-card:hover {
  border-color: rgba(155, 35, 53, 0.25);
  transform: translateY(-4px);
}

.techpg-gov-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(155, 35, 53, 0.1);
  border-radius: 50%;
  color: var(--burgundy-400);
}

.techpg-gov-icon svg {
  width: 24px;
  height: 24px;
}

.techpg-gov-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.techpg-gov-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.techpg-cta {
  padding: 0 0 var(--section-padding);
}

.techpg-cta-box {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.85), rgba(12, 17, 24, 0.95));
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 28px;
  overflow: hidden;
}

.techpg-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 70%);
  pointer-events: none;
}

.techpg-cta-box .section-title {
  margin-bottom: 0.75rem;
}

.techpg-cta-box .section-desc {
  margin: 0 auto 1.75rem;
  max-width: 500px;
}

/* ============================================
   Process Page
   ============================================ */
.procpg-hero {
  position: relative;
  min-height: clamp(420px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + 3rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.procpg-hero-bg {
  position: absolute;
  inset: 0;
}

.procpg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.procpg-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 5, 8, 0.96) 0%, rgba(3, 5, 8, 0.45) 50%, rgba(3, 5, 8, 0.7) 100%),
    linear-gradient(135deg, rgba(155, 35, 53, 0.06), rgba(16, 185, 129, 0.07));
}

.procpg-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.procpg-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.procpg-hero-title span {
  background: linear-gradient(135deg, var(--burgundy-300), var(--text-primary), var(--emerald-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.procpg-hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 560px;
}

.procpg-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.procpg-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.procpg-meta-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy-400);
}

.procpg-meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.procpg-ribbon {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.procpg-ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.procpg-chip {
  padding: 0.5rem 1.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.14);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.procpg-chip:hover {
  color: var(--emerald-300);
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
}

.procpg-timeline {
  padding: var(--section-padding) 0;
}

.procpg-timeline-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.procpg-timeline-header .section-desc {
  margin: 0 auto;
}

.procpg-timeline-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.procpg-timeline-track::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--emerald-500), var(--burgundy-500));
  opacity: 0.35;
}

.procpg-phase {
  display: flex;
  gap: 1.75rem;
  padding: 1.75rem 0;
  min-width: 0;
}

.procpg-phase-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.25);
  position: relative;
  z-index: 1;
}

.procpg-phase-num {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--emerald-400);
}

.procpg-phase-body {
  flex: 1;
  min-width: 0;
  padding: 1.25rem 1.5rem;
  background: rgba(21, 29, 40, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: border-color var(--transition-fast);
}

.procpg-phase:hover .procpg-phase-body {
  border-color: rgba(16, 185, 129, 0.2);
}

.procpg-phase-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.procpg-phase-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-400);
}

.procpg-phase-duration {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  background: rgba(155, 35, 53, 0.08);
  border-radius: 100px;
}

.procpg-phase-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.procpg-phase-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.procpg-collab {
  padding: 0 0 var(--section-padding);
}

.procpg-collab-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.procpg-collab-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.procpg-collab-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.procpg-collab-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.procpg-collab-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.procpg-collab-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(155, 35, 53, 0.1);
  border: 1px solid rgba(155, 35, 53, 0.15);
  color: var(--burgundy-400);
}

.procpg-collab-icon svg {
  width: 22px;
  height: 22px;
}

.procpg-collab-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.procpg-collab-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.procpg-ledger {
  padding: 0 0 var(--section-padding);
}

.procpg-ledger-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.procpg-ledger-header .section-desc {
  margin: 0 auto;
}

.procpg-ledger-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.procpg-ledger-card {
  padding: 1.5rem 1.25rem;
  background: linear-gradient(160deg, rgba(21, 29, 40, 0.7), rgba(12, 17, 24, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.procpg-ledger-card:hover {
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

.procpg-ledger-phase {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy-400);
  margin-bottom: 0.75rem;
}

.procpg-ledger-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.procpg-ledger-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.procpg-ledger-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.procpg-ledger-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--emerald-500);
}

.procpg-gates {
  padding: 0 0 var(--section-padding);
}

.procpg-gates-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.procpg-gates-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.procpg-gates-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.procpg-gates-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.procpg-gate {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem 1.25rem;
  background: rgba(21, 29, 40, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: border-color var(--transition-fast);
}

.procpg-gate:hover {
  border-color: rgba(155, 35, 53, 0.25);
}

.procpg-gate-badge {
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy-300);
  background: rgba(155, 35, 53, 0.12);
  border: 1px solid rgba(155, 35, 53, 0.2);
  border-radius: 8px;
}

.procpg-gate h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.procpg-gate p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.procpg-handoff {
  padding: 0 0 var(--section-padding);
}

.procpg-handoff-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}

.procpg-handoff-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.procpg-handoff-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(90deg, rgba(3, 5, 8, 0.93) 0%, rgba(3, 5, 8, 0.55) 55%, rgba(3, 5, 8, 0.2) 100%);
  box-sizing: border-box;
  min-height: 300px;
}

.procpg-handoff-content {
  max-width: min(560px, 100%);
  min-width: 0;
}

.procpg-handoff-content .section-title,
.procpg-handoff-content .section-desc {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.procpg-handoff-content .section-title {
  margin-bottom: 1rem;
}

.procpg-handoff-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.75rem;
}

.procpg-handoff-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.procpg-handoff-value {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--emerald-400);
}

.procpg-handoff-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.procpg-cta {
  padding: 0 0 var(--section-padding);
}

.procpg-cta-box {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.85), rgba(12, 17, 24, 0.95));
  border: 1px solid rgba(155, 35, 53, 0.12);
  border-radius: 28px;
  overflow: hidden;
}

.procpg-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 35, 53, 0.08), transparent 70%);
  pointer-events: none;
}

.procpg-cta-box .section-title {
  margin-bottom: 0.75rem;
}

.procpg-cta-box .section-desc {
  margin: 0 auto 1.75rem;
  max-width: 500px;
}

/* ============================================
   Vision Page
   ============================================ */
.vispg-hero {
  position: relative;
  min-height: clamp(420px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + 3rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.vispg-hero-bg {
  position: absolute;
  inset: 0;
}

.vispg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vispg-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 5, 8, 0.96) 0%, rgba(3, 5, 8, 0.45) 50%, rgba(3, 5, 8, 0.7) 100%),
    linear-gradient(225deg, rgba(16, 185, 129, 0.08), rgba(155, 35, 53, 0.06));
}

.vispg-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.vispg-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.vispg-hero-title span {
  background: linear-gradient(135deg, var(--emerald-300), var(--text-primary), var(--burgundy-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vispg-hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 580px;
}

.vispg-hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.vispg-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.vispg-pillar-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-400);
}

.vispg-pillar-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.vispg-convictions {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vispg-convictions-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.vispg-conviction {
  padding: 0.5rem 1.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(155, 35, 53, 0.06);
  border: 1px solid rgba(155, 35, 53, 0.14);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.vispg-conviction:hover {
  color: var(--burgundy-300);
  border-color: rgba(155, 35, 53, 0.3);
  background: rgba(155, 35, 53, 0.1);
}

.vispg-northstar {
  padding: var(--section-padding) 0;
}

.vispg-northstar-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.vispg-northstar-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.vispg-northstar-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vispg-manifesto {
  margin: 1.75rem 0;
  padding: 1.5rem 1.75rem;
  background: rgba(16, 185, 129, 0.05);
  border-left: 3px solid var(--emerald-500);
  border-radius: 0 12px 12px 0;
}

.vispg-manifesto p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
}

.vispg-manifesto-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vispg-manifesto-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.vispg-manifesto-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy-500);
}

.vispg-principles {
  padding: 0 0 var(--section-padding);
}

.vispg-principles-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.vispg-principles-header .section-desc {
  margin: 0 auto;
}

.vispg-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.vispg-principle-card {
  padding: 2rem 1.75rem;
  background: linear-gradient(160deg, rgba(21, 29, 40, 0.6), rgba(12, 17, 24, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.vispg-principle-card:hover {
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-3px);
}

.vispg-principle-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--emerald-400);
  margin-bottom: 1.25rem;
}

.vispg-principle-icon svg {
  width: 24px;
  height: 24px;
}

.vispg-principle-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.vispg-principle-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.vispg-outlook {
  padding: 0 0 var(--section-padding);
}

.vispg-outlook-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.vispg-outlook-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.vispg-outlook-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vispg-outlook-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.vispg-outlook-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(21, 29, 40, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: border-color var(--transition-fast);
}

.vispg-outlook-item:hover {
  border-color: rgba(155, 35, 53, 0.2);
}

.vispg-outlook-year {
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--burgundy-300);
  background: rgba(155, 35, 53, 0.1);
  border: 1px solid rgba(155, 35, 53, 0.18);
  border-radius: 8px;
  white-space: nowrap;
}

.vispg-outlook-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.vispg-outlook-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.vispg-charter {
  padding: 0 0 var(--section-padding);
}

.vispg-charter-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.vispg-charter-header .section-desc {
  margin: 0 auto;
}

.vispg-charter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.vispg-charter-item {
  padding: 1.5rem 1.25rem;
  background: rgba(21, 29, 40, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: border-color var(--transition-fast);
}

.vispg-charter-item:hover {
  border-color: rgba(16, 185, 129, 0.18);
}

.vispg-charter-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--emerald-400);
  margin-bottom: 0.75rem;
}

.vispg-charter-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.vispg-charter-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.vispg-origins {
  padding: 0 0 var(--section-padding);
}

.vispg-origins-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  max-width: 100%;
  min-width: 0;
}

.vispg-origins-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vispg-origins-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(90deg, rgba(3, 5, 8, 0.93) 0%, rgba(3, 5, 8, 0.55) 55%, transparent 100%);
  box-sizing: border-box;
}

.vispg-origins-content {
  max-width: min(540px, 100%);
  min-width: 0;
}

.vispg-origins-content .section-title,
.vispg-origins-content .section-desc {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.vispg-origins-content .section-title {
  margin-bottom: 1rem;
}

.vispg-origins-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.75rem;
}

.vispg-origins-fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.vispg-origins-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--burgundy-400);
}

.vispg-origins-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.vispg-cta {
  padding: 0 0 var(--section-padding);
}

.vispg-cta-box {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.85), rgba(12, 17, 24, 0.95));
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 28px;
  overflow: hidden;
}

.vispg-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 70%);
  pointer-events: none;
}

.vispg-cta-box .section-title {
  margin-bottom: 0.75rem;
}

.vispg-cta-box .section-desc {
  margin: 0 auto 1.75rem;
  max-width: 500px;
}

/* ============================================
   Services Page
   ============================================ */
.srvpg-hero {
  position: relative;
  min-height: clamp(380px, 50vh, 500px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + 3rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.srvpg-hero-bg {
  position: absolute;
  inset: 0;
}

.srvpg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.srvpg-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 5, 8, 0.96) 0%, rgba(3, 5, 8, 0.5) 50%, rgba(3, 5, 8, 0.75) 100%),
    linear-gradient(225deg, rgba(16, 185, 129, 0.07), rgba(155, 35, 53, 0.06));
}

.srvpg-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.srvpg-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.srvpg-hero-title span {
  background: linear-gradient(135deg, var(--emerald-300), var(--text-primary), var(--burgundy-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.srvpg-hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

.srvpg-services {
  padding: var(--section-padding) 0;
}

.srvpg-services-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.srvpg-services-header .section-desc {
  margin: 0 auto;
}

.srvpg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.srvpg-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(21, 29, 40, 0.65), rgba(12, 17, 24, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.srvpg-card:hover {
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.srvpg-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.srvpg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.srvpg-card:hover .srvpg-card-img img {
  transform: scale(1.04);
}

.srvpg-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.75rem;
}

.srvpg-card-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 100px;
  margin-bottom: 0.875rem;
}

.srvpg-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.625rem;
}

.srvpg-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.srvpg-card-btn {
  align-self: flex-start;
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
}

/* Service Modal */
.srvpg-modal {
  position: fixed;
  inset: 0;
  z-index: 10600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.srvpg-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.srvpg-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.srvpg-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  max-height: min(90dvh, 720px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.97), rgba(12, 17, 24, 0.99));
  border: 1px solid rgba(16, 185, 129, 0.14);
  border-radius: 24px;
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.srvpg-modal.is-visible .srvpg-modal-dialog {
  transform: translateY(0) scale(1);
}

.srvpg-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 5, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.srvpg-modal-close:hover {
  color: var(--text-primary);
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
}

.srvpg-modal-close svg {
  width: 20px;
  height: 20px;
}

.srvpg-modal-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  flex: 1;
  min-height: 0;
  max-height: min(90dvh, 720px);
}

.srvpg-modal-visual {
  overflow: hidden;
  min-height: 280px;
  flex-shrink: 0;
}

.srvpg-modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.srvpg-modal-body {
  padding: 2rem 2rem 2rem 1.75rem;
  overflow-y: auto;
  min-height: 0;
  max-height: min(90dvh, 720px);
  -webkit-overflow-scrolling: touch;
}

.srvpg-modal-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy-300);
  background: rgba(155, 35, 53, 0.1);
  border: 1px solid rgba(155, 35, 53, 0.18);
  border-radius: 100px;
  margin-bottom: 0.875rem;
}

.srvpg-modal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.srvpg-modal-desc {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.srvpg-modal-desc p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.srvpg-modal-desc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.srvpg-modal-desc li {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 1.125rem;
  position: relative;
}

.srvpg-modal-desc li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--emerald-500);
}

.srvpg-modal-cta {
  font-size: 0.875rem;
}

/* Insights Article Modal (shared layout with service modal) */
.inspg-modal {
  position: fixed;
  inset: 0;
  z-index: 10600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.inspg-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.inspg-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.inspg-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  max-height: min(90dvh, 720px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(21, 29, 40, 0.97), rgba(12, 17, 24, 0.99));
  border: 1px solid rgba(155, 35, 53, 0.14);
  border-radius: 24px;
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.inspg-modal.is-visible .inspg-modal-dialog {
  transform: translateY(0) scale(1);
}

.inspg-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 5, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.inspg-modal-close:hover {
  color: var(--text-primary);
  border-color: rgba(155, 35, 53, 0.3);
  background: rgba(155, 35, 53, 0.1);
}

.inspg-modal-close svg {
  width: 20px;
  height: 20px;
}

.inspg-modal-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  flex: 1;
  min-height: 0;
  max-height: min(90dvh, 720px);
}

.inspg-modal-visual {
  overflow: hidden;
  min-height: 280px;
  flex-shrink: 0;
}

.inspg-modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.inspg-modal-body {
  padding: 2rem 2rem 2rem 1.75rem;
  overflow-y: auto;
  min-height: 0;
  max-height: min(90dvh, 720px);
  -webkit-overflow-scrolling: touch;
}

.inspg-modal-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy-300);
  background: rgba(155, 35, 53, 0.1);
  border: 1px solid rgba(155, 35, 53, 0.18);
  border-radius: 100px;
  margin-bottom: 0.875rem;
}

.inspg-modal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.inspg-modal-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.inspg-modal-desc {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.inspg-modal-desc p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.inspg-modal-cta {
  font-size: 0.875rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: clamp(3rem, 5vw, 4rem) 0 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity var(--transition-fast);
  cursor: pointer;
}

.footer-brand-logo:hover {
  opacity: 0.88;
}

.footer-logo-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
}

.footer-section-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-400);
  margin-bottom: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--burgundy-300);
}

.footer-contact-item a {
  transition: color var(--transition-fast);
  cursor: pointer;
}

.footer-contact-item a:hover {
  color: var(--emerald-400);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-hours-row span:first-child {
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  cursor: pointer;
}

.footer-legal a:hover {
  color: var(--emerald-400);
}

.footer-legal-sep {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1;
}

/* ============================================
   Scroll to Top
   ============================================ */
.scroll-top {
  position: fixed;
  right: clamp(1.25rem, 3vw, 2rem);
  bottom: clamp(1.25rem, 3vw, 2rem);
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(12, 17, 24, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--emerald-400);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  border-color: var(--burgundy-400);
  color: var(--text-primary);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(16, 185, 129, 0.15),
    0 0 20px rgba(155, 35, 53, 0.1);
}

.scroll-top:active {
  transform: translateY(0) scale(0.95);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  transition: transform var(--transition-fast);
}

.scroll-top:hover svg {
  transform: translateY(-2px);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--emerald-400);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
  }

  .scroll-top.visible {
    transform: none;
  }
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  padding: clamp(1rem, 3vw, 1.5rem);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-slow);
}

.cookie-banner.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 1.5rem) clamp(1.25rem, 4vw, 2rem);
  background: rgba(8, 12, 18, 0.94);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  box-shadow:
    0 -8px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(155, 35, 53, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.cookie-banner-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-500), var(--burgundy-500));
  opacity: 0.7;
}

.cookie-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(155, 35, 53, 0.12));
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-400);
}

.cookie-banner-icon svg {
  width: 24px;
  height: 24px;
}

.cookie-banner-content {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.cookie-banner-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.cookie-banner-text a {
  color: var(--emerald-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.cookie-banner-text a:hover {
  color: var(--emerald-300);
}

.cookie-banner-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-btn--primary {
  color: white;
  background: var(--gradient-accent);
  border: none;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.cookie-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(16, 185, 129, 0.35);
}

.cookie-btn--outline {
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn--outline:hover {
  color: var(--text-primary);
  border-color: var(--burgundy-400);
  background: rgba(155, 35, 53, 0.1);
}

body.cookie-visible .scroll-top {
  bottom: calc(clamp(1.25rem, 3vw, 2rem) + 120px);
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    border-radius: 16px 16px 0 0;
  }

  .cookie-banner-icon {
    align-self: center;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
  }

  body.cookie-visible .scroll-top {
    bottom: calc(220px + 1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
  }

  .cookie-banner.visible {
    transform: none;
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1200px) {
  .nav-link {
    font-size: 0.72rem;
    padding: 0.5rem 0.6rem;
  }

  .nav-link::after {
    left: 0.6rem;
    right: 0.6rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }

  .nav-logo {
    border-right: none;
    padding-right: 0;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-visual-card {
    min-height: 420px;
    max-height: 520px;
  }

  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .split-layout,
  .split-layout--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-media {
    min-height: 420px;
    max-height: 520px;
  }

  .split-media img {
    min-height: 420px;
  }

  .approach-image {
    order: -1;
  }

  .insights-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-featured-grid,
  .insights-radar-grid,
  .insights-editorial-grid {
    grid-template-columns: 1fr;
  }

  .insights-featured-visual {
    order: -1;
  }

  .techpg-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .techpg-foundation-grid,
  .techpg-matrix-grid {
    grid-template-columns: 1fr;
  }

  .techpg-foundation-visual {
    order: -1;
  }

  .techpg-gov-grid {
    grid-template-columns: 1fr;
  }

  .techpg-pipeline-banner {
    aspect-ratio: unset;
    min-height: unset;
    display: flex;
    flex-direction: column;
  }

  .techpg-pipeline-banner img {
    position: static;
    width: 100%;
    height: 200px;
    flex-shrink: 0;
  }

  .techpg-pipeline-overlay {
    position: static;
    inset: unset;
    width: 100%;
    max-width: 100%;
    padding: 1.75rem 1.25rem;
    background: rgba(3, 5, 8, 0.95);
    align-items: stretch;
    box-sizing: border-box;
  }

  .techpg-pipeline-content {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }

  .techpg-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    justify-content: stretch;
  }

  .techpg-flow-arrow {
    display: none;
  }

  .techpg-flow-step {
    font-size: 0.6rem;
    padding: 0.4rem 0.35rem;
    text-align: center;
  }

  .procpg-ledger-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .procpg-collab-grid,
  .procpg-gates-layout {
    grid-template-columns: 1fr;
  }

  .procpg-collab-visual {
    order: -1;
  }

  .procpg-handoff-banner {
    display: flex;
    flex-direction: column;
  }

  .procpg-handoff-banner img {
    position: static;
    inset: unset;
    width: 100%;
    height: 240px;
    flex-shrink: 0;
  }

  .procpg-handoff-overlay {
    position: static;
    inset: unset;
    width: 100%;
    max-width: 100%;
    min-height: unset;
    padding: 2rem 1.5rem 2.25rem;
    background: rgba(3, 5, 8, 0.95);
    align-items: stretch;
    box-sizing: border-box;
  }

  .procpg-handoff-content {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }

  .vispg-northstar-grid,
  .vispg-outlook-layout {
    grid-template-columns: 1fr;
  }

  .vispg-northstar-visual {
    order: -1;
  }

  .vispg-charter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vispg-origins-banner {
    aspect-ratio: unset;
    min-height: unset;
    display: flex;
    flex-direction: column;
  }

  .vispg-origins-banner img {
    position: static;
    width: 100%;
    height: 200px;
    flex-shrink: 0;
  }

  .vispg-origins-overlay {
    position: static;
    inset: unset;
    width: 100%;
    max-width: 100%;
    padding: 1.75rem 1.25rem;
    background: rgba(3, 5, 8, 0.95);
    align-items: stretch;
    box-sizing: border-box;
  }

  .vispg-origins-content {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }

  .srvpg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srvpg-modal-layout {
    grid-template-columns: 1fr;
    flex: 1;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .srvpg-modal-visual {
    max-height: 200px;
    min-height: unset;
  }

  .srvpg-modal-visual img {
    min-height: 200px;
    max-height: 200px;
  }

  .srvpg-modal-body {
    overflow-y: visible;
    max-height: none;
  }

  .inspg-modal-layout {
    grid-template-columns: 1fr;
    flex: 1;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .inspg-modal-visual {
    max-height: 200px;
    min-height: unset;
  }

  .inspg-modal-visual img {
    min-height: 200px;
    max-height: 200px;
  }

  .inspg-modal-body {
    overflow-y: visible;
    max-height: none;
  }

  .tech-visual {
    order: -1;
  }

  .values-image {
    order: -1;
  }

  .ecosystem-pillars {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-logo-img {
    height: 48px;
    max-width: 155px;
  }

  .footer-logo-img {
    height: 60px;
    max-width: 175px;
  }

  /* Hero stats */
  .hero {
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem 2.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-stat {
    text-align: center;
  }

  /* Section headers */
  .about-intro,
  .approach-header,
  .tech-content,
  .values-layout > div:last-child {
    align-items: center;
    text-align: center;
  }

  .about-intro .section-label,
  .approach-header .section-label,
  .tech-content > .section-label,
  .values-layout > div:last-child > .section-label {
    align-self: center;
  }

  .about-intro .section-title,
  .approach-header .section-title,
  .tech-content > .section-title,
  .values-layout > div:last-child > .section-title {
    text-align: center;
    width: 100%;
  }

  .about-intro .section-desc,
  .approach-header .section-desc,
  .tech-content > .section-desc,
  .values-layout > div:last-child > .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .tech-cards,
  .values-list {
    text-align: left;
    width: 100%;
    align-self: stretch;
  }

  /* Ecosystem banner */
  .ecosystem-banner-overlay {
    justify-content: center;
    text-align: center;
  }

  .ecosystem-banner-text h3,
  .ecosystem-banner-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-email {
    width: 100%;
    justify-content: center;
  }

  .contact-cta {
    padding-bottom: calc(var(--section-padding) + 1.5rem);
  }

  /* Footer */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand-logo {
    display: flex;
    justify-content: center;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-contact,
  .footer-hours-section {
    text-align: center;
  }

  .footer-section-title {
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-hours {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .tech-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }

  /* Legal pages */
  .page-hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .page-hero-content .section-label {
    align-self: center;
  }

  .page-hero-desc {
    margin: 0 auto;
  }

  .legal-content-box {
    padding: 1.75rem 1.5rem;
  }

  .faq-question {
    padding: 1.125rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq-answer-inner p {
    padding: 0 1.25rem 1.125rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-wrapper {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
  }

  .contact-map-header {
    text-align: center;
  }

  .contact-map-header .section-desc {
    margin: 0 auto;
  }

  /* Insights page */
  .insights-hero-content,
  .insights-featured-content,
  .insights-radar-content,
  .insights-editorial-panel,
  .insights-articles-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .insights-hero-content .section-label,
  .insights-featured-content .section-label,
  .insights-radar-content .section-label,
  .insights-editorial-panel .section-label,
  .insights-articles-header .section-label,
  .insights-cta-box .section-label {
    align-self: center;
  }

  .insights-featured-content .section-title,
  .insights-radar-content .section-title,
  .insights-editorial-panel .section-title,
  .insights-articles-header .section-title,
  .insights-cta-box .section-title {
    text-align: center;
    width: 100%;
  }

  .insights-hero-desc,
  .insights-featured-content .section-desc,
  .insights-radar-content .section-desc,
  .insights-editorial-panel .section-desc,
  .insights-articles-header .section-desc,
  .insights-cta-box .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .insights-hero-content {
    margin: 0 auto;
  }

  .insights-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .insights-hero-meta {
    justify-content: center;
  }

  .insights-featured-excerpt {
    text-align: center;
  }

  .insights-read-link {
    align-self: center;
  }

  .insights-editorial-panel .btn {
    align-self: center;
  }

  .insights-signals,
  .insights-editorial-list {
    text-align: left;
    align-self: stretch;
    width: 100%;
  }

  .insights-featured-grid,
  .insights-radar-grid,
  .insights-editorial-grid,
  .insights-voices-grid {
    grid-template-columns: 1fr;
  }

  .insights-articles-grid {
    grid-template-columns: 1fr;
  }

  .insights-featured-visual {
    order: -1;
  }

  .insights-editorial-img {
    min-height: 280px;
  }

  .insights-radar-visual {
    max-width: 100%;
  }

  /* Technology page */
  .techpg-hero-content,
  .techpg-foundation-content,
  .techpg-capabilities-header,
  .techpg-matrix-content,
  .techpg-governance-header,
  .techpg-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .techpg-hero-content .section-label,
  .techpg-foundation-content .section-label,
  .techpg-capabilities-header .section-label,
  .techpg-matrix-content .section-label,
  .techpg-governance-header .section-label,
  .techpg-cta-box .section-label,
  .techpg-pipeline-content .section-label {
    align-self: center;
  }

  .techpg-foundation-content .section-title,
  .techpg-capabilities-header .section-title,
  .techpg-matrix-content .section-title,
  .techpg-governance-header .section-title,
  .techpg-cta-box .section-title,
  .techpg-pipeline-content .section-title {
    text-align: center;
    width: 100%;
  }

  .techpg-hero-desc,
  .techpg-foundation-content .section-desc,
  .techpg-capabilities-header .section-desc,
  .techpg-matrix-content .section-desc,
  .techpg-governance-header .section-desc,
  .techpg-cta-box .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .techpg-hero-content {
    margin: 0 auto;
  }

  .techpg-hero-stats {
    justify-content: center;
  }

  .techpg-foundation-points,
  .techpg-metrics {
    text-align: left;
    align-self: stretch;
    width: 100%;
  }

  .techpg-cap-grid {
    grid-template-columns: 1fr;
  }

  .techpg-foundation-grid,
  .techpg-matrix-grid {
    grid-template-columns: 1fr;
  }

  .techpg-foundation-visual {
    order: -1;
  }

  .techpg-pipeline-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .techpg-pipeline-content .section-title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
  }

  .techpg-pipeline-content .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .techpg-gov-grid {
    grid-template-columns: 1fr;
  }

  .techpg-matrix-visual {
    max-height: none;
  }

  /* Process page */
  .procpg-hero-content,
  .procpg-collab-content,
  .procpg-ledger-header,
  .procpg-gates-content,
  .procpg-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .procpg-hero-content .section-label,
  .procpg-collab-content .section-label,
  .procpg-ledger-header .section-label,
  .procpg-gates-content .section-label,
  .procpg-handoff-content .section-label,
  .procpg-cta-box .section-label {
    align-self: center;
  }

  .procpg-collab-content .section-title,
  .procpg-ledger-header .section-title,
  .procpg-gates-content .section-title,
  .procpg-handoff-content .section-title,
  .procpg-cta-box .section-title {
    text-align: center;
    width: 100%;
  }

  .procpg-hero-desc,
  .procpg-collab-content .section-desc,
  .procpg-ledger-header .section-desc,
  .procpg-gates-content .section-desc,
  .procpg-handoff-content .section-desc,
  .procpg-cta-box .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .procpg-hero-content {
    margin: 0 auto;
  }

  .procpg-hero-meta,
  .procpg-handoff-stats {
    justify-content: center;
  }

  .procpg-timeline-header {
    text-align: center;
  }

  .procpg-timeline-header .section-label {
    align-self: center;
  }

  .procpg-timeline-header .section-title {
    text-align: center;
    width: 100%;
  }

  .procpg-collab-list,
  .procpg-gates-list {
    text-align: left;
    align-self: stretch;
    width: 100%;
  }

  .procpg-ledger-grid {
    grid-template-columns: 1fr;
  }

  .procpg-gates-visual {
    order: -1;
  }

  .procpg-handoff-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .procpg-handoff-content .section-title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
  }

  .procpg-handoff-content .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .procpg-handoff-overlay {
    padding: 1.75rem 1.25rem 2rem;
  }

  .procpg-handoff-banner img {
    height: 220px;
  }

  .procpg-handoff-stats {
    gap: 1.25rem 1.5rem;
    justify-content: center;
  }

  .procpg-phase {
    gap: 1rem;
  }

  .procpg-timeline-track::before {
    left: 19px;
  }

  .procpg-phase-marker {
    width: 40px;
    height: 40px;
  }

  .procpg-phase-num {
    font-size: 0.875rem;
  }

  /* Vision page */
  .vispg-hero-content,
  .vispg-northstar-content,
  .vispg-principles-header,
  .vispg-outlook-content,
  .vispg-charter-header,
  .vispg-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vispg-hero-content .section-label,
  .vispg-northstar-content .section-label,
  .vispg-principles-header .section-label,
  .vispg-outlook-content .section-label,
  .vispg-charter-header .section-label,
  .vispg-origins-content .section-label,
  .vispg-cta-box .section-label {
    align-self: center;
  }

  .vispg-northstar-content .section-title,
  .vispg-principles-header .section-title,
  .vispg-outlook-content .section-title,
  .vispg-charter-header .section-title,
  .vispg-origins-content .section-title,
  .vispg-cta-box .section-title {
    text-align: center;
    width: 100%;
  }

  .vispg-hero-desc,
  .vispg-northstar-content .section-desc,
  .vispg-principles-header .section-desc,
  .vispg-outlook-content .section-desc,
  .vispg-charter-header .section-desc,
  .vispg-origins-content .section-desc,
  .vispg-cta-box .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .vispg-hero-content {
    margin: 0 auto;
  }

  .vispg-hero-pillars,
  .vispg-origins-facts {
    justify-content: center;
  }

  .vispg-manifesto,
  .vispg-manifesto-points,
  .vispg-outlook-list,
  .vispg-principles-grid {
    text-align: left;
    align-self: stretch;
    width: 100%;
  }

  .vispg-principles-grid {
    grid-template-columns: 1fr;
  }

  .vispg-charter-grid {
    grid-template-columns: 1fr;
  }

  .vispg-outlook-visual {
    order: -1;
  }

  .vispg-outlook-item {
    flex-direction: column;
    gap: 0.75rem;
  }

  .vispg-origins-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .vispg-origins-content .section-title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
  }

  .vispg-origins-content .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  /* Services page */
  .srvpg-hero-content,
  .srvpg-services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .srvpg-hero-content .section-label,
  .srvpg-services-header .section-label {
    align-self: center;
  }

  .srvpg-services-header .section-title {
    text-align: center;
    width: 100%;
  }

  .srvpg-hero-desc,
  .srvpg-services-header .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .srvpg-hero-content {
    margin: 0 auto;
  }

  .srvpg-grid {
    grid-template-columns: 1fr;
  }

  .srvpg-card-btn {
    width: 100%;
    justify-content: center;
  }

  .srvpg-modal {
    padding: 0.75rem;
    align-items: center;
  }

  .srvpg-modal-dialog {
    max-height: 94dvh;
    border-radius: 20px;
  }

  .srvpg-modal-layout {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .srvpg-modal-body {
    padding: 1.25rem 1.125rem 1.5rem;
    overflow-y: visible;
    max-height: none;
  }

  .srvpg-modal-title {
    padding-right: 1.5rem;
  }

  .srvpg-modal-cta {
    width: 100%;
    justify-content: center;
  }

  .insights-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .insights-card-btn {
    width: 100%;
    text-align: center;
  }

  .inspg-modal {
    padding: 0.75rem;
    align-items: center;
  }

  .inspg-modal-dialog {
    max-height: 94dvh;
    border-radius: 20px;
  }

  .inspg-modal-layout {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .inspg-modal-body {
    padding: 1.25rem 1.125rem 1.5rem;
    overflow-y: visible;
    max-height: none;
  }

  .inspg-modal-title {
    padding-right: 1.5rem;
  }

  .inspg-modal-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-email {
    width: 100%;
    justify-content: center;
  }

  .contact-cta {
    padding-bottom: calc(var(--section-padding) + 1.5rem);
  }

  .techpg-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .procpg-ledger-grid {
    grid-template-columns: 1fr;
  }
}
