/* ============================================
   STRIDE INTERMODAL — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;900&family=Space+Mono:wght@400;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:       #040E1C;
  --navy-mid:   #040E1C;
  --steel:      #0b2031;
  --steel-light:#153A52;
  --gold:       #C8A24A;
  --gold-dim:   rgba(200, 162, 74, 0.15);
  --gold-glow:  rgba(200, 162, 74, 0.3);
  --amber:      #D4AF37;
  --amber-dim:  rgba(212, 175, 55, 0.12);
  --white:      #FFFFFF;
  --white-dim:  rgba(255, 255, 255, 0.7);
  --white-ghost:rgba(255, 255, 255, 0.08);
  --border:         rgba(200, 162, 74, 0.12);
  --border-strong:  rgba(200, 162, 74, 0.2);
  --gold-soft:      rgba(200, 162, 74, 0.92);
  --gray-light:     #D8D8D8;
  --gray-muted:     #A7A7A7;
  --font-display:'Bebas Neue', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-mono:   'Space Mono', monospace;
}

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

html { scroll-behavior: smooth; }

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

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Noise Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.15;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 90px;
    padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:var(--navy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 162, 74, 0.12);
  transition: all 0.3s ease;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
   height: 60px;
    width: auto;
    display: block;
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.03);
}

.nav.scrolled {
  height: 60px;
  background: var(--navy);
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 34px;
  }
}


.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), rgba(200, 162, 74, 0.85));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 0 20px var(--gold-glow);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--white);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  border-radius: 10px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  padding: 12px 28px !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  letter-spacing: 1px !important;
  box-shadow: 0 2px 10px rgba(200, 162, 74, 0.15);
  transition: all 0.25s ease !important;
}

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

.nav-cta:hover {
  background: var(--gold-soft) !important;
  box-shadow: 0 4px 12px rgba(200, 162, 74, 0.2) !important;
  transform: translateY(-1px);
}

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

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

/* ============================================
   HERO (index.html)
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 60px;
}

/* Animated grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,162,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,162,74,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  from { transform: translateY(0); }
  to   { transform: translateY(60px); }
}

/* Radial glow */
.hero-glow {
  position: absolute;
  top: 20%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(200,162,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-amber {
  position: absolute;
  bottom: 10%; right: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,162,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Moving train ticker */
.ticker-track {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  overflow: hidden;
  height: 60px;
  border-top: 1px solid var(--border);
  background: rgba(200, 162, 74, 0.03);
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  height: 100%;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-segment {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.ticker-car {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 4px;
}

.ticker-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 2px;
  padding: 0 40px;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title .line-cyan { color: var(--gold); display: block; }
.hero-title .line-outline {
  -webkit-text-stroke: 2px rgba(240,244,255,0.3);
  color: transparent;
  display: block;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn-primary {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(200, 162, 74, 0.15);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 162, 74, 0.2);
}

.btn-outline {
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  border: 1px solid rgba(200, 162, 74, 0.3);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 162, 74, 0.08);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 2px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.0s forwards;
  flex-wrap: wrap;
}

.stat-card {
  padding: 16px 24px;
  background: transparent;
  border: 1px solid rgba(200, 162, 74, 0.15);
  backdrop-filter: none;
  text-align: center;
}

.stat-card:first-child { border-radius: 8px 0 0 8px; }
.stat-card:last-child  { border-radius: 0 8px 8px 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  display: none;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  font-family: var(--font-mono);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
  padding: 80px 0;
  position: relative;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 400;
}

.section-title span { color: var(--gold); }

.section-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 560px;
  line-height: 1.8;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,162,74,0.1), transparent);
}

/* ============================================
   WHAT WE DO (Homepage)
   ============================================ */
.what-we-do {
  background: var(--navy-mid);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.mode-card {
  background: transparent;
  border: 1px solid rgba(200, 162, 74, 0.15);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}

.mode-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 0px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mode-card:hover::before { transform: scaleX(1); }

.mode-card:hover {
  background: rgba(200, 162, 74, 0.03);
  border-color: rgba(200, 162, 74, 0.3);
  transform: translateY(-2px);
}

.mode-number {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: rgba(200,162,74,0.06);
  position: absolute;
  top: 16px; right: 16px;
  letter-spacing: -2px;
  transition: color 0.4s ease;
}

.mode-card:hover .mode-number {
  color: rgba(200,162,74,0.15);
}

.mode-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mode-icon svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.mode-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
}

.mode-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   NETWORK SECTION
   ============================================ */
.network-section {
  background: var(--navy);
  overflow: hidden;
}

.network-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.network-visual {
  position: relative;
  height: 480px;
}

.network-map {
  width: 100%;
  height: 100%;
  position: relative;
  background: rgba(15, 46, 71, 0.4);
  border: 1px solid rgba(200, 162, 74, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.network-map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(200,162,74,0.07) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(212,175,55,0.05) 0%, transparent 50%);
}

/* Pulsing nodes */
.node {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  transform: translate(-50%, -50%);
}

.node::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.4;
  animation: nodePulse 2s ease-out infinite;
}

.node.amber {
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
}

.node.amber::after {
  border-color: var(--amber);
}

@keyframes nodePulse {
  0%   { transform: scale(1);   opacity: 0.4; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* Connection lines SVG */
.connections-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.network-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid rgba(200, 162, 74, 0.1);
  border-radius: 0;
  background: transparent;
  transition: all 0.25s ease;
}

.network-item:hover {
  border-color: rgba(200, 162, 74, 0.2);
  background: rgba(200, 162, 74, 0.04);
}

.network-item-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(200, 162, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.network-item-icon svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.network-item-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}

.network-item-desc {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-section {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(200, 162, 74, 0.08);
  border-bottom: 1px solid rgba(200, 162, 74, 0.08);
  background: transparent;
}

.marquee-inner {
  display: flex;
  animation: marquee 20s linear infinite;
}

.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white-dim);
  white-space: nowrap;
}

.marquee-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.marquee-item.highlight {
  color: var(--gold);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   WHY STRIDE
   ============================================ */
.why-stride {
  background: var(--navy-mid);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.feature-card {
  padding: 40px 32px;
  background: transparent;
  border: 1px solid rgba(200, 162, 74, 0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(200,162,74,0.02);
  border-color: rgba(200,162,74,0.2);
}

.feature-card:hover .feature-number {
  color: rgba(200,162,74,0.18);
}

.feature-number {
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(240,244,255,0.04);
  letter-spacing: -2px;
  transition: color 0.3s;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--white-dim);
}

.feature-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 100px;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,162,74,0.04) 0%, transparent 70%);
}

.cta-band .section-title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
}

.cta-band .section-lead {
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(200, 162, 74, 0.12);
  padding: 60px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(200, 162, 74, 0.1);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--white-dim);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding-top: 64px;
  padding-bottom: 0;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,162,74,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,162,74,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero-glow {
  position: absolute;
  bottom: -200px; left: 40%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(200,162,74,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 52px 0 40px;
}

.page-hero-content .section-tag {
  margin-bottom: 10px;
}

.page-hero-content .section-title {
  font-size: clamp(44px, 7vw, 80px);
  margin-bottom: 14px;
}

.page-hero-content .section-lead {
  font-size: 16px;
  max-width: 640px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--white-dim);
  margin-bottom: 20px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-intro {
  background: var(--navy-mid);
  padding: 80px 0;
}

.service-block {
  padding: 72px 0;
  position: relative;
}

.service-block:nth-child(even) {
  background: transparent;
}

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.service-block:nth-child(even) .service-block-inner {
  direction: rtl;
}

.service-block:nth-child(even) .service-content {
  direction: ltr;
}

.service-block:nth-child(even) .service-visual {
  direction: ltr;
}

.service-content .section-tag { margin-bottom: 12px; }
.service-content .section-title { font-size: clamp(32px, 4vw, 52px); margin-bottom: 20px; }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.service-feature::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(200,162,74,0.1);
  border: 1px solid rgba(200,162,74,0.3);
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%23C8A24A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.service-visual {
  position: relative;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(13, 38, 60, 0.24);
  border: 1px solid rgba(200, 162, 74, 0.1);
}

.service-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-illustration {
  width: 100%;
  height: 100%;
}

/* ── Animated service illustrations ── */
.illus-bg {
  fill: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  background: var(--navy);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual-stack {
  position: relative;
  height: 440px;
}

.about-card-main {
  position: absolute;
  left: 0; top: 0;
  width: 75%;
  height: 80%;
  background: rgba(15, 46, 71, 0.3);
  border: 1px solid rgba(200, 162, 74, 0.12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-accent {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  height: 45%;
  background: rgba(13, 38, 71, 0.5);
  border: 1px solid rgba(200, 162, 74, 0.12);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-card-accent .stat-num {
  font-size: 52px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.value-card {
  padding: 32px 28px;
  background: transparent;
  border: 1px solid rgba(200, 162, 74, 0.12);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(200,162,74,0.02);
  border-color: rgba(200,162,74,0.2);
  transform: translateY(-1px);
}

.value-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(200, 162, 74, 0.2);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 400;
}

.value-desc {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.7;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.team-card {
  background: transparent;
  border: 1px solid rgba(200, 162, 74, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: rgba(200, 162, 74, 0.2);
}

.team-photo {
  height: 220px;
  background: rgba(15, 46, 71, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-placeholder {
  
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-info {
  padding: 16px 16px;
}

.team-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border: none;
  border-bottom: 1px solid rgba(200, 162, 74, 0.1);
  border-radius: 0;
  background: transparent;
  transition: all 0.25s ease;
}

.contact-detail:hover {
  border-color: rgba(200, 162, 74, 0.2);
  background: rgba(200, 162, 74, 0.04);
}

.contact-detail-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(200, 162, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-mono);
  margin-bottom: 6px;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.contact-detail-sub {
  font-size: 12px;
  color: var(--white-dim);
  margin-top: 2px;
}

/* Contact Form */
.contact-form-wrap {
  background: transparent;
  border: 1px solid rgba(200, 162, 74, 0.15);
  border-radius: 12px;
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--white-dim);
  margin-bottom: 36px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  font-family: var(--font-mono);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200, 162, 74, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-body);
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(200,162,74,0.05);
  box-shadow: 0 0 0 2px rgba(200,162,74,0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(240,244,255,0.25);
}

.form-select option {
  background: var(--navy-mid);
  color: var(--white);
}

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

.form-submit {
  width: 100%;
  padding: 12px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(200, 162, 74, 0.15);
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

.form-submit:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 162, 74, 0.2);
}

/* ============================================
   FLOATING PARTICLES (js-generated)
   ============================================ */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float linear infinite;
}

@keyframes float {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-100vh) translateX(var(--drift)) scale(0); opacity: 0; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.1s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.2s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.3s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.4s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay:0.5s; }

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.count-up { transition: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .mode-grid { grid-template-columns: repeat(2, 1fr); }
  .network-inner { grid-template-columns: 1fr; }
  .network-visual { height: 320px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-block:nth-child(even) .service-block-inner { direction: ltr; }
  .service-visual { height: 280px; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-visual-stack { height: 360px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 40px 20px 40px; }
  .hero-stats {
    position: static;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.8s both;
  }

  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .mode-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .about-visual-stack { display: none; }

  .contact-form-wrap { padding: 28px 20px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }

  .page-hero-content .section-title { font-size: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}