/* ─── Dabouq Group — Design System v2 ─── */
:root {
  --navy: #1a2b4a;
  --navy-dark: #0f1c33;
  --navy-light: #2a3f66;
  --grey: #8a9199;
  --grey-light: #c4c9d0;
  --grey-bg: #f4f5f7;
  --white: #ffffff;
  --cream: #fafbfc;
  --border: #e8eaed;
  --shadow: 0 4px 24px rgba(26, 43, 74, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 43, 74, 0.12);
  --shadow-xl: 0 40px 80px rgba(26, 43, 74, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }
html.loading { overflow: hidden; }

.scroll-mt-32 { scroll-margin-top: 8rem; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  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");
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: rgba(26, 43, 74, 0.15); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Preloader ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  height: 64px;
  width: auto;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: var(--navy);
  width: 0;
  animation: preloaderLoad 1.2s ease forwards;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.97); }
}

@keyframes preloaderLoad {
  to { width: 100%; }
}

/* ─── Scroll Progress ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--navy);
  z-index: 10001;
  width: 0;
  transition: width 0.1s linear;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 2px; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.site-header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  box-shadow: 0 1px 12px rgba(26, 43, 74, 0.06);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 56px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  transition: transform var(--transition), opacity var(--transition);
}
.logo-dark { display: block; }
.logo-light { display: none; }
.site-header:not(.scrolled) .logo-dark { display: none; }
.site-header:not(.scrolled) .logo-light { display: block; }
.logo-img:hover { transform: scale(1.02); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey);
  transition: color var(--transition);
  position: relative;
}

.site-header:not(.scrolled) .nav-links a:not(.btn-nav) {
  color: rgba(255, 255, 255, 0.75);
}

.site-header:not(.scrolled) .nav-links a:not(.btn-nav):hover,
.site-header:not(.scrolled) .nav-links a:not(.btn-nav).active {
  color: var(--white);
}

.site-header:not(.scrolled) .nav-links a:not(.btn-nav)::after {
  background: var(--white);
}

.site-header:not(.scrolled) .btn-nav {
  background: var(--white);
  color: var(--navy) !important;
}

.site-header:not(.scrolled) .btn-nav:hover {
  background: var(--grey-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.site-header:not(.scrolled) .menu-toggle {
  color: var(--white);
}

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--navy);
  transition: width var(--transition);
}

.nav-links a:not(.btn-nav):hover::after,
.nav-links a:not(.btn-nav).active::after { width: 100%; }

.site-header.scrolled .nav-links a:not(.btn-nav):hover,
.site-header.scrolled .nav-links a:not(.btn-nav).active { color: var(--navy); }

.btn-nav {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}

.btn-nav:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 43, 74, 0.25);
}

.btn-nav::after { display: none !important; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }

.mobile-close {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  transition: all var(--transition);
}

.mobile-close:hover { border-color: var(--navy); color: var(--navy); }

/* ─── Cinematic Hero ─── */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-dark);
}

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

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 28, 51, 0.95) 0%,
    rgba(15, 28, 51, 0.6) 40%,
    rgba(15, 28, 51, 0.3) 100%
  );
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.15); }
}

.hero-cinematic .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 6rem;
  padding-top: 10rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--grey-light);
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroLineUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .line:nth-child(1) span { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.65s; }

.hero-title .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
  color: transparent;
}

@keyframes heroLineUp {
  to { transform: translateY(0); }
}

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

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1s forwards;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--grey-light);
  max-width: 480px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--navy);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.btn-primary.dark,
.sector-detail .btn-primary,
.thankyou-card .btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary.dark:hover,
.sector-detail .btn-primary:hover,
.thankyou-card .btn-primary:hover {
  background: var(--navy-dark);
  box-shadow: var(--shadow-lg);
}

.btn-primary svg { transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  transition: all var(--transition);
}

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

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

.btn-outline.light:hover { border-color: var(--navy); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.4s forwards;
}

.scroll-hint .mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-hint .mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ─── Ecosystem Cards ─── */
.ecosystem {
  padding: 7rem 0;
  background: var(--white);
  position: relative;
}

.ecosystem-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.eco-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.eco-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.eco-card:hover img { transform: scale(1.08); }

.eco-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,28,51,0.92) 0%, transparent 55%);
}

.eco-card .number {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  letter-spacing: -0.04em;
}

.eco-card .content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  color: var(--white);
}

.eco-card .tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 0.5rem;
}

.eco-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.eco-card p { font-size: 0.85rem; color: var(--grey-light); }

.eco-card .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.eco-card:hover .link-arrow { opacity: 1; transform: translateY(0); }

/* ─── About ─── */
.about-section {
  padding: 7rem 0;
  background: var(--cream);
  scroll-margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(26, 43, 74, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.about-hero-text .section-title {
  margin-bottom: 0;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--grey);
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 520px;
}

.about-hero-panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-hero-panel::before {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -25%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.about-panel-num {
  display: block;
  font-size: clamp(3.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  position: relative;
}

.about-panel-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin: 0.75rem 0 1rem;
  position: relative;
}

.about-hero-panel p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  position: relative;
}

.about-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 43, 74, 0.15);
}

.about-card-watermark {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(26, 43, 74, 0.04);
  pointer-events: none;
}

.about-card-icon {
  width: 44px;
  height: 44px;
  background: var(--grey-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  position: relative;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
  position: relative;
}

.about-card--featured {
  grid-row: span 2;
  background: var(--navy);
  border-color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
}

.about-card--featured:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow-xl);
}

.about-card--featured .about-card-watermark {
  color: rgba(255, 255, 255, 0.06);
  font-size: 8rem;
  top: -0.5rem;
  right: 0.5rem;
}

.about-card--featured .about-card-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.about-card--featured h3,
.about-card--featured p {
  color: var(--white);
}

.about-card--featured p {
  color: rgba(255, 255, 255, 0.7);
}

.about-card-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  position: relative;
}

.about-card-tags span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.6rem;
  background: var(--grey-bg);
  border-radius: 6px;
  color: var(--navy);
}

.about-card--values {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  align-items: center;
}

.about-card--values:hover {
  transform: none;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-value-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--grey-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
}

.about-value strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.about-value span {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.4;
}

/* ─── Stats Band ─── */
.stats-band {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.counter {
  display: inline-block;
  min-width: 1.2ch;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.stat-item.counting .counter {
  transform: scale(1.04);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

.stat-item.counted .counter {
  animation: counterPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes counterPop {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ─── Section Common ─── */
.section { padding: 7rem 0; }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 540px;
  line-height: 1.7;
}

/* ─── Partners ─── */
.partners-section {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.partners-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.partners-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.partners-heading { text-align: center; flex-shrink: 0; }

.partners-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.35rem;
}

.partners-sub {
  font-size: 0.95rem;
  color: var(--navy-light);
  font-weight: 500;
}

.partners-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-marquee {
  display: flex;
  width: max-content;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 1.25rem;
  animation: partnersScroll 50s linear infinite;
}

.partner-slot {
  flex-shrink: 0;
  width: 170px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.4s ease;
}

.partner-slot:hover {
  background: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.partner-slot img {
  max-height: 46px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.partner-slot:hover img { opacity: 1; }

.partner-slot .logo-gs { max-height: 52px; }
.partner-slot .logo-sev { max-height: 38px; }

@keyframes partnersScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ─── Philosophy ─── */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philosophy-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.philosophy-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.philosophy-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(26, 43, 74, 0.08);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

/* ─── CTA Banner (legacy — use footer-cta) ─── */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 2rem 0;
  max-width: calc(1280px - 4rem);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.cta-banner p { color: var(--grey-light); margin-top: 0.5rem; font-size: 1.05rem; }

/* ─── Footer + Map ─── */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 0 0 2rem;
  margin-top: 4rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: 0 -12px 48px rgba(26, 43, 74, 0.1);
}

.footer-cta {
  background: var(--navy);
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.footer-cta-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
}

.footer-cta-text p {
  color: var(--grey-light);
  margin-top: 0.5rem;
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.6;
}

.footer-cta .btn-primary {
  flex-shrink: 0;
  background: var(--white);
  color: var(--navy);
}

.footer-cta .btn-primary:hover {
  background: var(--grey-bg);
}

.footer-map {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.footer-map #regional-map {
  width: 100%;
  height: 100%;
  cursor: default;
}

.footer-map-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, var(--navy-dark));
  pointer-events: none;
  z-index: 1000;
}

.footer-map .leaflet-control-zoom {
  display: none;
}

.footer-map .leaflet-control-attribution {
  font-size: 9px;
  opacity: 0.35;
  color: rgba(255, 255, 255, 0.6) !important;
  background: transparent !important;
}

.footer-map .leaflet-control-attribution a {
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-body {
  padding-top: 2.5rem;
}

.site-footer--compact .footer-body {
  padding-top: 2rem;
}

.site-footer--compact .footer-bottom {
  border-top: none;
  padding-top: 0;
}

.leaflet-div-icon {
  background: transparent !important;
  border: none !important;
}

.map-marker {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.map-marker-hq {
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.map-tooltip {
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 0.35rem 0.65rem !important;
  font-family: var(--font) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  box-shadow: var(--shadow) !important;
}

.map-tooltip::before {
  border-top-color: var(--navy) !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

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

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

.footer-bottom p { font-size: 0.8rem; color: var(--grey); }

.social-links { display: flex; gap: 1rem; }

.social-links a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ─── Inner Pages ─── */
.page-hero {
  padding: 10rem 0 4rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.page-hero h1 .accent { color: var(--grey); font-weight: 300; }

.sector-detail { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.sector-detail:last-child { border-bottom: none; }

.sector-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sector-detail-grid.reverse .sector-detail-text { order: 2; }
.sector-detail-grid.reverse .sector-detail-img { order: 1; }

.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}

.sector-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--navy);
}

.sector-detail h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.sector-detail p {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.feature-list { list-style: none; margin-bottom: 2rem; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--navy-light);
}

.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}

.sector-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sector-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sector-detail-img:hover img { transform: scale(1.03); }

.btn-disabled {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  cursor: not-allowed;
  background: var(--grey-bg);
}

/* ─── Forms ─── */
.form-page { padding: 8rem 0 5rem; min-height: 100vh; }

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.form-info h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.form-info p {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--navy-light);
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.75rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--cream);
  display: block;
}

.upload-zone:hover {
  border-color: var(--navy);
  background: rgba(26, 43, 74, 0.03);
}

.upload-zone i { font-size: 1.5rem; color: var(--grey); margin-bottom: 0.75rem; }
.upload-zone p { font-size: 0.9rem; color: var(--navy-light); font-weight: 500; }
.upload-zone span { font-size: 0.75rem; color: var(--grey); }

.upload-success { display: none; }
.upload-success.show { display: block; }
.upload-content.hide { display: none; }

/* ─── Thank You ─── */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--cream);
}

.thankyou-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.thankyou-icon {
  width: 80px; height: 80px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--white);
}

.thankyou-card h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.thankyou-card p {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.progress-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 2px;
  animation: progress 5s linear forwards;
}

@keyframes progress { from { width: 0; } to { width: 100%; } }

.redirect-text {
  font-size: 0.7rem;
  color: var(--grey);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about-hero { grid-template-columns: 1fr; gap: 2rem; }
  .about-bento { grid-template-columns: 1fr 1fr; }
  .about-card--featured { grid-row: span 1; grid-column: span 2; min-height: auto; }
  .about-card--values { grid-column: span 2; grid-template-columns: 1fr; gap: 1.25rem; }
  .philosophy-grid,
  .sector-detail-grid,
  .form-layout,
  .ecosystem-grid { grid-template-columns: 1fr; }

  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-card:last-child { grid-column: span 2; aspect-ratio: 2/1; }

  .sector-detail-grid.reverse .sector-detail-text,
  .sector-detail-grid.reverse .sector-detail-img { order: unset; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-text p { max-width: none; }
  .footer-map { height: 175px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav-desktop { display: none !important; }
  .menu-toggle { display: flex; }

  .hero-cinematic .container { padding-bottom: 5rem; padding-top: 8rem; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .scroll-hint { display: none; }

  .ecosystem-grid { grid-template-columns: 1fr; }
  .eco-card:last-child { grid-column: span 1; aspect-ratio: 3/4; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { margin-top: 2.5rem; border-radius: 20px 20px 0 0; }
  .footer-cta { padding: 2.5rem 0 2rem; }
  .footer-cta-inner { gap: 1.5rem; }
  .footer-cta .btn-primary { width: 100%; justify-content: center; }
  .about-bento { grid-template-columns: 1fr; }
  .about-card--featured,
  .about-card--values { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-map { height: 150px; }
  .footer-map-fade { height: 60px; }
  .footer-body { padding-top: 1.75rem; }
  .site-footer { padding-bottom: 1.5rem; }
  .logo-img { height: 44px; max-width: 200px; }
  .partner-slot { width: 150px; height: 68px; }
  .partner-slot img { max-height: 40px; }
  .section, .ecosystem, .about-section { padding: 4rem 0; }
}
