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

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

:root {
  --deep-navy: #0a0e1a;
  --navy-mid: #111827;
  --gold: #d4a853;
  --gold-light: #f0d48a;
  --gold-glow: rgba(212, 168, 83, 0.4);
  --amber: #f59e0b;
  --blue-accent: #3b82f6;
  --text-primary: #f1f5f9;
  --text-secondary: rgba(241, 245, 249, 0.7);
  --glass-bg: rgba(17, 24, 39, 0.6);
  --glass-border: rgba(212, 168, 83, 0.15);
  --brand-yellow: #F0B90B;
}

html { scroll-behavior: smooth; }

body {
  background: var(--deep-navy);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 16px 0;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
  transition: all 0.3s ease;
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(10, 14, 26, 0.85);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
}
.nav-container {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
}
.logo img { height: 40px; }
.logo-light { display: none; }
.logo-dark { display: inline-block; }
.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-secondary);
  position: relative; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transition: width 0.3s;
}
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.menu-toggle {
  display: none; background: none; border: none;
  color: var(--text-primary); font-size: 1.5rem; cursor: pointer;
}
.theme-toggle {
  background: transparent; border: none; color: var(--text-primary);
  cursor: pointer; padding: 5px; margin-left: 10px;
}

/* ── Hero Section ── */
.svc-hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(59,130,246,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(212,168,83,0.06) 0%, transparent 50%),
              var(--deep-navy);
}
.svc-hero canvas { position: absolute; inset: 0; z-index: 1; }
.svc-hero-content {
  position: relative; z-index: 5; max-width: 800px; padding: 0 1.5rem;
  animation: heroFadeUp 1.2s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.svc-badge {
  display: inline-block; padding: 6px 18px;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gold);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 50px; margin-bottom: 1.5rem;
  background: rgba(212,168,83,0.06);
}
.svc-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 1.2rem;
}
.svc-hero h1 .text-brand {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.svc-hero p {
  font-size: 0.95rem; color: rgba(255,255,255,0.8);
  max-width: 600px; margin: 0 auto; line-height: 1.6;
}

/* ── Particles ── */
.particles { position: absolute; inset: 0; overflow: hidden; z-index: 2; pointer-events: none; }
.particle {
  position: absolute; width: 3px; height: 3px;
  background: var(--gold); border-radius: 50%; opacity: 0;
  animation: particleDrift 8s infinite ease-in-out;
}
@keyframes particleDrift {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.7; }
  80% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1.5); }
}

/* ── Ambient Glow ── */
.ambient-glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.12; z-index: 0; pointer-events: none;
  animation: glowDrift 14s infinite alternate ease-in-out;
}
@keyframes glowDrift {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(30px,-25px) scale(1.15); }
}

/* ── Section Wrapper ── */
.svc-section {
  position: relative; padding: 6rem 1.5rem; overflow: hidden;
}
.svc-section .container {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
}
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc {
  font-size: 1rem; color: var(--text-secondary);
  max-width: 700px; line-height: 1.7; margin-bottom: 2.5rem;
}

/* ── Glass Cards ── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 2rem;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s, border-color 0.4s, box-shadow 0.4s;
}
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,83,0.35);
  box-shadow: 0 12px 40px rgba(212,168,83,0.1);
}

/* ── Slideshow Section ── */
.svc-slideshow-section {
  position: relative; padding: 5rem 1.5rem 4rem; overflow: hidden;
}
.svc-slideshow-section .container {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
}
.text-brand-inline {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Slideshow Header ── */
.slideshow-header {
  text-align: center; margin-bottom: 3rem; position: relative;
}
.slide-counter {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: 'Playfair Display', serif; margin-top: 1rem;
}
.slide-counter-current {
  font-size: 2.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: all 0.3s ease;
}
.slide-counter-sep {
  font-size: 1.2rem; color: rgba(255,255,255,0.2); margin: 0 2px;
}
.slide-counter-total {
  font-size: 1rem; color: var(--text-secondary); font-weight: 400;
}

/* ── Slideshow Viewport ── */
.slideshow-viewport {
  overflow: hidden; border-radius: 20px; position: relative;
}
.slideshow-track {
  position: relative; min-height: 380px;
}

/* ── Individual Slides ── */
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
.slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

.slide-inner {
  height: 100%;
  padding: 2.5rem 3rem;
}

/* ── Slide Content Grid ── */
.slide-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 320px;
}
.slide-content-grid--wide {
  grid-template-columns: 1.4fr 1fr;
}

/* ── Slide Number ── */
.slide-number {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(212,168,83,0.05));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.5rem;
}

/* ── Slide Title ── */
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem; line-height: 1.2;
}
.slide-title--lg { font-size: 2.2rem; }

/* ── Slide Subtitle ── */
.slide-subtitle {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* ── Slide Description ── */
.slide-desc {
  color: var(--text-secondary);
  font-size: 0.95rem; line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ── Slide Badges ── */
.slide-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 0.5rem;
}

/* ── Mini Badges ── */
.mini-badge {
  background: rgba(212,168,83,0.08); padding: 6px 14px;
  border-radius: 6px; font-size: 0.75rem; color: var(--gold-light);
  border: 1px solid rgba(212,168,83,0.15);
  transition: background 0.3s, border-color 0.3s;
}
.mini-badge:hover {
  background: rgba(212,168,83,0.15);
  border-color: rgba(212,168,83,0.3);
}

/* ── Slide Features ── */
.slide-features {
  display: flex; flex-direction: column; gap: 8px; margin-top: 0.5rem;
}
.slide-feature-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-secondary);
  padding: 6px 0;
  transition: color 0.3s;
}
.slide-feature-item:hover { color: var(--text-primary); }
.slide-feature-icon {
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}

/* ── Slide Visuals ── */
.slide-visual {
  display: flex; align-items: center; justify-content: center;
}
.slide-icon-block {
  width: 200px; height: 200px;
  background: rgba(212,168,83,0.03);
  border: 1px solid rgba(212,168,83,0.08);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.slide.active .slide-icon-block {
  animation: iconPulse 3s ease-in-out infinite alternate;
}
@keyframes iconPulse {
  from { border-color: rgba(212,168,83,0.08); box-shadow: 0 0 0 rgba(212,168,83,0); }
  to { border-color: rgba(212,168,83,0.2); box-shadow: 0 0 40px rgba(212,168,83,0.05); }
}
.slide-svg-icon {
  width: 100%; height: 100%;
}

/* ── Stat Bars ── */
.stat-block {
  background: rgba(0,0,0,0.3); padding: 1.5rem;
  border-radius: 12px; border: 1px solid rgba(212,168,83,0.08);
}
.stat-label {
  display: flex; justify-content: space-between;
  font-size: 0.65rem; color: var(--gold); text-transform: uppercase;
  font-weight: 700; letter-spacing: 1.5px;
}
.stat-bar {
  height: 6px; background: rgba(255,255,255,0.08);
  border-radius: 3px; margin: 10px 0 5px; overflow: hidden;
}
.stat-bar-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transition: width 1.5s ease;
}
.stat-note {
  font-size: 0.65rem; color: rgba(255,255,255,0.35);
  font-style: italic; margin-top: 12px;
}

/* ── Explore link ── */
.explore-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
  color: var(--gold); text-transform: uppercase;
  transition: gap 0.3s;
}
.explore-link:hover { gap: 12px; color: var(--gold-light); }

/* ── Dashboard image ── */
.dash-img {
  width: 100%; border-radius: 12px; opacity: 0.75;
  mix-blend-mode: screen;
}

/* ── Slideshow Controls ── */
.slideshow-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2rem;
}

/* ── Navigation Arrows ── */
.slide-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.2);
  background: rgba(17,24,39,0.6);
  backdrop-filter: blur(12px);
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.slide-arrow:hover {
  border-color: var(--gold);
  background: rgba(212,168,83,0.1);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(212,168,83,0.15);
}
.slide-arrow:active { transform: scale(0.95); }

/* ── Dot Indicators ── */
.slideshow-dots {
  display: flex; gap: 8px; align-items: center;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%; border: none;
  background: rgba(212,168,83,0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.dot:hover { background: rgba(212,168,83,0.4); }
.dot.active {
  width: 32px; border-radius: 5px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  box-shadow: 0 0 12px rgba(212,168,83,0.3);
}

/* ── Progress Bar ── */
.slideshow-progress {
  width: 100%; height: 3px; margin-top: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 3px; overflow: hidden;
}
.slideshow-progress-fill {
  height: 100%; width: 16.66%;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(212,168,83,0.3);
}

/* ── CTA Section ── */
.svc-cta {
  position: relative; padding: 6rem 1.5rem; overflow: hidden;
  background: linear-gradient(135deg, rgba(0,34,68,0.6), rgba(10,14,26,0.9));
}
.svc-cta .container { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  color: #fff; margin-bottom: 1rem;
}
.cta-title .text-brand {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-desc {
  color: rgba(255,255,255,0.7); margin-bottom: 2rem;
  font-size: 1rem; line-height: 1.7;
}
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--deep-navy); border: none; border-radius: 6px;
  padding: 12px 28px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
  font-family: 'Inter', sans-serif;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--gold-glow); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 6px;
  padding: 12px 28px; font-weight: 500; font-size: 0.95rem;
  cursor: pointer; transition: border-color 0.3s, color 0.3s;
  font-family: 'Inter', sans-serif;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Sticky CTA ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212,168,83,0.1);
  padding: 10px 0; z-index: 90;
  display: flex; justify-content: center; align-items: center; gap: 2rem;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { font-weight: 500; font-size: 0.9rem; color: var(--text-secondary); }
.sticky-cta .btn-gold { padding: 8px 20px; font-size: 0.85rem; }

/* ── Footer ── */
.footer {
  background: rgba(10, 14, 26, 0.95);
  border-top: 1px solid rgba(212,168,83,0.08);
  color: #fff; padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
  max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 1.5rem;
}
.footer-col h4 {
  font-size: 0.8rem; color: var(--gold); text-transform: uppercase;
  margin-bottom: 1rem; letter-spacing: 0.05em;
}
.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  margin-bottom: 8px; display: block; transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-form { display: flex; margin-top: 0.5rem; }
.footer-form input {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 15px; color: #fff; border-radius: 6px 0 0 6px; outline: none; width: 100%;
  font-family: 'Inter', sans-serif;
}
.footer-form button,
.footer-form a.subscribe-btn {
  background: var(--gold); border: none; padding: 10px 15px;
  color: var(--deep-navy); border-radius: 0 6px 6px 0; cursor: pointer;
  font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
}

/* ── Reveal Animation ── */
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; top: 60px; left: -100%; width: 100%;
    height: calc(100vh - 60px); background: var(--deep-navy);
    flex-direction: column; padding: 2rem;
    transition: left 0.3s ease;
  }
  .nav-links.mobile-open { left: 0; }
  .slide-content-grid,
  .slide-content-grid--wide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .slide-inner { padding: 1.5rem; }
  .slide-number { font-size: 2.5rem; }
  .slide-title { font-size: 1.4rem; }
  .slide-title--lg { font-size: 1.6rem; }
  .slide-icon-block { width: 140px; height: 140px; padding: 1.2rem; }
  .slide-arrow { width: 40px; height: 40px; }
  .svc-slideshow-section { padding: 3rem 1rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-cta { flex-direction: column; padding: 12px 1rem; gap: 8px; text-align: center; }
}

/* ══════════════════════════════════════════
   SHARED COMPONENTS — Used across all pages
   ══════════════════════════════════════════ */

/* ── Content Section ── */
.content-section {
  position: relative; padding: 6rem 1.5rem; overflow: hidden;
}
.content-section .container {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
}
.section-desc {
  font-size: 1rem; color: var(--text-secondary);
  max-width: 700px; line-height: 1.7; margin-bottom: 2.5rem;
}

/* ── Grid Layouts ── */
.grid-2 {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
.grid-3 {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.grid-4 {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Numbered Glass Card ── */
.numbered-card {
  position: relative; padding-top: 3.5rem;
}
.numbered-card .card-number {
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, rgba(212,168,83,0.12), rgba(212,168,83,0.04));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.numbered-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.numbered-card p {
  color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7;
}

/* ── Comparison Cards ── */
.compare-card {
  padding: 2.5rem;
}
.compare-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  padding-bottom: 1.2rem; margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--glass-border);
}
.compare-card.compare-highlight {
  background: linear-gradient(135deg, rgba(212,168,83,0.06), var(--glass-bg));
  border-color: rgba(212,168,83,0.3);
}
.compare-card.compare-highlight h3 { color: var(--gold-light); }
.compare-card.compare-muted h3 { color: var(--text-secondary); }
.compare-item { margin-bottom: 1.5rem; }
.compare-item h4 {
  font-size: 0.95rem; font-weight: 600; color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.compare-item p {
  color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7;
}
.compare-img {
  width: 100%; border-radius: 8px; margin-top: 1.5rem; opacity: 0.7;
}
.compare-img.muted { filter: grayscale(100%); opacity: 0.3; }

/* ── Timeline / Pipeline ── */
.timeline { padding-left: 0; }
.timeline-item {
  position: relative; padding-left: 2rem; margin-bottom: 2rem;
  border-left: 2px solid rgba(212,168,83,0.15);
}
.timeline-item::before {
  content: ''; position: absolute; left: -6px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--text-secondary);
  border: 2px solid var(--deep-navy);
}
.timeline-item.active { border-left-color: var(--gold); }
.timeline-item.active::before {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212,168,83,0.5);
}
.timeline-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.timeline-item p {
  color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7;
}

/* ── Bento Grid ── */
.bento-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-span-2 { grid-column: span 2; }
}
.bento-card {
  position: relative; overflow: hidden;
}
.bento-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.bento-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.bento-card.bento-highlight::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.bento-card.bento-dark {
  background: linear-gradient(145deg, rgba(17,24,39,0.8), rgba(10,14,26,0.9));
}
.bento-overlay-card {
  position: relative;
  background-size: cover; background-position: center;
}
.bento-overlay-card .bento-overlay-inner {
  position: relative; z-index: 1;
}
.bento-overlay-card::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,14,26,0.85); border-radius: 16px;
}

/* ── Node / Location Cards ── */
.node-card-cin {
  border-radius: 16px; overflow: hidden; position: relative; height: 320px;
  border: 1px solid var(--glass-border);
  transition: transform 0.3s, border-color 0.4s;
}
.node-card-cin:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,83,0.35);
}
.node-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(1); transition: filter 0.5s, transform 0.5s;
}
.node-card-cin:hover .node-card-img {
  filter: grayscale(0); transform: scale(1.05);
}
.node-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,1) 0%, rgba(10,14,26,0) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.node-card-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem;
}
.node-card-overlay .node-sub {
  font-size: 0.7rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem;
}
.node-card-overlay p {
  color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.6;
}

/* ── Team Cards ── */
.team-grid-cin {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-items: center;
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  max-width: 320px;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,168,83,0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}
.team-photo-cin {
  width: 100%;
  height: 180px;
  background: var(--glass-bg);
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  margin: 0 0 1rem;
  overflow: hidden;
  display: block;
  padding: 0;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.team-photo-cin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.4s ease;
}
.team-photo-cin:hover img {
  transform: scale(1.03);
}
.team-photo-cin:hover {
  border-color: rgba(212,168,83,0.3);
  box-shadow: 0 8px 30px rgba(212,168,83,0.08);
}

/* ── Image Lightbox / Modal ── */
.image-lightbox {
  position: fixed; inset: 0; display: none; align-items: center; justify-content: center;
  background: rgba(7,12,24,0.85); z-index: 10000; padding: 2rem;
}
.image-lightbox.open { display: flex; }
.image-lightbox .lightbox-inner {
  max-width: 1000px; width: min(95%, 1000px); position: relative; text-align: center;
}
.image-lightbox .lightbox-img {
  width: 100%; height: auto; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  max-height: calc(100vh - 160px); object-fit: contain;
}
.image-lightbox .lightbox-close {
  position: absolute; top: -12px; right: -12px; width: 44px; height: 44px;
  border-radius: 50%; border: none; background: rgba(255,255,255,0.06); color: #fff;
  font-size: 1.1rem; cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.image-lightbox .lightbox-caption {
  margin-top: 0.75rem; color: var(--text-secondary); font-size: 0.95rem;
}

@media (max-width: 480px) {
  .image-lightbox .lightbox-close { width: 36px; height: 36px; top: -8px; right: -8px; }
}
.team-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.35rem;
}
.team-role-cin {
  font-size: 0.75rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* ── Project Cards ── */
.project-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 768px) {
  .project-grid { grid-template-columns: 1fr 1fr; }
}
.project-card-cin {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s, border-color 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.project-card-cin:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,83,0.35);
  box-shadow: 0 12px 40px rgba(212,168,83,0.1);
}
.project-card-img {
  height: 220px; background-size: cover; background-position: center;
  position: relative;
}
.project-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.9), transparent);
}
.project-card-body {
  padding: 2rem; flex: 1; display: flex; flex-direction: column;
}
.project-sector-cin {
  font-size: 0.7rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.75rem;
}
.project-title-cin {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--gold-light);
  margin-bottom: 0.75rem; line-height: 1.3;
}
.project-desc-cin {
  color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7;
  margin-bottom: 1.5rem; flex: 1;
}
.project-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  padding-bottom: 1.5rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}
.project-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.project-stat-label {
  font-size: 0.65rem; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.2rem;
}

/* ── Blog Cards ── */
.blog-grid-cin {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .blog-grid-cin { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid-cin { grid-template-columns: repeat(3, 1fr); } }
.blog-card-cin {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s, border-color 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.blog-card-cin:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,83,0.35);
  box-shadow: 0 12px 40px rgba(212,168,83,0.1);
}
.blog-card-img {
  height: 200px; background-size: cover; background-position: center;
  border-bottom: 1px solid var(--glass-border);
  filter: grayscale(0.8); transition: filter 0.4s;
}
.blog-card-cin:hover .blog-card-img { filter: grayscale(0.3); }
.blog-card-body {
  padding: 1.5rem; flex: 1; display: flex; flex-direction: column;
}
.blog-meta-cin {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; color: var(--text-secondary); margin-bottom: 0.75rem;
}
.blog-meta-cin .blog-cat { color: var(--gold); font-weight: 600; }
.blog-title-cin {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 0.6rem; line-height: 1.3;
}
.blog-excerpt-cin {
  color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7;
  margin-bottom: 1rem; flex: 1;
}
.read-more-cin {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  color: var(--gold); text-transform: uppercase;
  transition: gap 0.3s;
}
.read-more-cin:hover { gap: 12px; color: var(--gold-light); }

/* ── Featured Post ── */
.featured-post-cin {
  display: grid; grid-template-columns: 1fr;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s, border-color 0.4s;
}
@media (min-width: 768px) {
  .featured-post-cin { grid-template-columns: 1fr 1fr; }
}
.featured-post-cin:hover {
  border-color: rgba(212,168,83,0.35);
}
.featured-img-cin {
  min-height: 300px; background-size: cover; background-position: center;
}
.featured-body-cin {
  padding: 2.5rem; display: flex; flex-direction: column; justify-content: center;
}
.featured-body-cin h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--gold-light);
  margin: 1rem 0; line-height: 1.3;
}
.featured-body-cin p {
  color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem;
}

/* ── Sector / Industry Boxes ── */
.sector-card {
  padding: 2rem;
}
.sector-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.sector-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600; color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.sector-card p {
  color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7;
}
.sector-card.sector-gold {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-color: transparent;
}
.sector-card.sector-gold h3,
.sector-card.sector-gold h4,
.sector-card.sector-gold p,
.sector-card.sector-gold span,
.sector-card.sector-gold div { color: var(--deep-navy); -webkit-text-fill-color: var(--deep-navy); }

/* ── Large Stat Display ── */
.stat-display {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-display-label {
  font-size: 0.65rem; color: var(--gold); text-transform: uppercase;
  letter-spacing: 2px; font-weight: 600; margin-top: 0.5rem;
}

/* ── Pillar Card ── */
.pillar-card {
  padding: 2.5rem;
}
.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.pillar-card p {
  color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7;
}
.country-tag {
  display: inline-block;
  background: rgba(212,168,83,0.06); padding: 6px 12px;
  border-radius: 6px; font-size: 0.8rem; font-weight: 700;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
}

/* ── CTA Box (card style) ── */
.cta-box {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 4rem 2.5rem;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  text-align: center;
}
.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700;
  color: #fff; margin-bottom: 1.5rem;
}

/* ── Contact Modal ── */
.contact-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 12, 24, 0.78);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.contact-modal.open {
  opacity: 1;
  visibility: visible;
}
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 24, 0.65);
}
.contact-modal-panel {
  position: relative;
  width: min(760px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: rgba(14, 20, 40, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  z-index: 1;
}
.contact-modal-panel::-webkit-scrollbar {
  width: 10px;
}
.contact-modal-panel::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 83, 0.35);
  border-radius: 999px;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.modal-close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.14);
}
.modal-header {
  text-align: left;
  margin-bottom: 1.5rem;
}
.contact-modal-panel .svc-badge {
  display: inline-block;
  margin-bottom: 1rem;
}
.contact-modal-panel h2 {
  margin: 0 0 0.75rem;
}
.contact-modal-panel p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  line-height: 1.75;
}
.contact-form-status {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.contact-form-status.show { display: block; }
.contact-form-status.success { background: rgba(34,197,94,0.14); color: #22c55e; border: 1px solid rgba(34,197,94,0.18); }
.contact-form-status.error { background: rgba(239,68,68,0.08); color: #ef4444; border: 1px solid rgba(239,68,68,0.14); }
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.contact-form-group label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--gold);
}
.phone-input-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0.85rem;
}
.phone-input-row select,
.phone-input-row input {
  width: 100%;
}
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: rgba(212, 168, 83, 0.5);
  box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.12);
}
.contact-form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-modal-panel .btn-gold {
  width: 100%;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-modal-panel {
    padding: 1.5rem;
  }
}

/* ── Section heading helper ── */
.section-center { text-align: center; margin-bottom: 3rem; }
.section-right { text-align: right; margin-bottom: 2rem; }
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}

/* ── Subscription form (blog) ── */
.subscribe-form {
  display: flex; max-width: 400px; margin: 0 auto; height: 50px;
}
.subscribe-form input {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 18px; color: #fff; border-radius: 8px 0 0 8px;
  outline: none; width: 100%; font-family: 'Inter', sans-serif; font-size: 0.95rem;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.4); }
.subscribe-form button,
.subscribe-form a.subscribe-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border: none; padding: 10px 24px; color: var(--deep-navy);
  border-radius: 0 8px 8px 0; cursor: pointer; font-weight: 700;
  font-family: 'Inter', sans-serif; white-space: nowrap;
  text-decoration: none;
  transition: box-shadow 0.3s;
}
.subscribe-form button:hover,
.subscribe-form a.subscribe-btn:hover { box-shadow: 0 4px 20px var(--gold-glow); }

/* ── Responsive: Shared components ── */
@media (max-width: 768px) {
  .content-section { padding: 3rem 1rem; }
  .grid-2 { gap: 1.5rem; }
  .bento-grid { gap: 1rem; }
  .bento-span-2 { grid-column: auto; }
  .team-grid-cin { gap: 1rem; }
  .project-grid { gap: 1.5rem; }
  .node-card-cin { height: 250px; }
  .pillar-card { padding: 1.5rem; }
  .featured-body-cin { padding: 1.5rem; }
  .featured-body-cin h3 { font-size: 1.3rem; }
}
