/* ══════════════════════════════════════════════════════════════════
   AXIA CONSEIL — axiaconseil.sn
   Design: Luxury-Editorial · Dark Navy base · Gold accents
   Typography: Cormorant (display) + DM Sans (body) + Bebas Neue (impact)
   Status: Production-ready for Hostinger deployment
══════════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette */
  --navy:    #26215C;
  --navy-d:  #18143A;
  --navy-x:  #0D0A20;
  --navy-l:  #322868;
  --gold:    #EF9F27;
  --gold-d:  #BA7517;
  --gold-l:  #FAEEDA;
  --gold-xl: #FFFCF0;
  --purp:    #AFA9EC;
  --purp-d:  #534AB7;
  --purp-l:  #EEEDFE;
  --teal:    #1D9E75;
  --teal-d:  #0F6E56;
  --teal-l:  #E1F5EE;
  --white:   #FFFFFF;
  --off:     #FAF8F3;
  --cream:   #F3F1E8;
  --gray:    #888780;
  --gray-l:  #EDECE8;

  /* Typography */
  --f-display:  'Cormorant', Georgia, serif;
  --f-body:     'DM Sans', system-ui, sans-serif;
  --f-impact:   'Bebas Neue', Impact, sans-serif;
  --f-serif:    'Libre Baskerville', Georgia, serif;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --sharp:       cubic-bezier(0.77, 0, 0.175, 1);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--navy-x);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--navy-x); }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy-x); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }



/* ── PROGRESS BAR ──────────────────────────────────────────── */
#progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9990;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.1s;
}

/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 6%;
  transition: background 0.6s var(--ease-out), backdrop-filter 0.6s,
              border-color 0.6s, height 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(13, 10, 32, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(239, 159, 39, 0.15);
  height: 64px;
}

.nav-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-brand-logo {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden;
  background: rgba(255,255,255,0.05);
  transition: transform 0.3s var(--spring);
}
.nav-brand-logo:hover { transform: scale(1.08) rotate(-3deg); }
.nav-brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand-text { line-height: 1; }
.nav-brand-name {
  font-family: var(--f-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.3px;
}
.nav-brand-name em { color: var(--gold); font-style: normal; }
.nav-brand-tagline {
  font-family: var(--f-body); font-size: 0.6rem;
  color: var(--purp); letter-spacing: 2px;
  text-transform: uppercase; margin-top: 2px;
}

.nav-links {
  display: flex; gap: 36px; list-style: none; align-items: center;
}
.nav-links a {
  font-family: var(--f-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); position: relative;
  transition: color 0.3s; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-x) !important;
  padding: 10px 22px; border-radius: 40px;
  font-size: 0.78rem !important; font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s var(--ease-out) !important;
  border: none;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--white); color: var(--navy-d) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239,159,39,0.4);
}

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: grid;
  grid-template-rows: 1fr;
  position: relative; overflow: hidden;
  padding: 0 6%;
  align-items: center;
}

/* Multi-layer background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(83,74,183,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 15% 70%, rgba(29,158,117,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(239,159,39,0.06) 0%, transparent 50%),
    linear-gradient(150deg, var(--navy-x) 0%, #110e2a 40%, #08061a 100%);
}
.hero-noise {
  position: absolute; inset: 0;
  opacity: 0.03; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(239,159,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239,159,39,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 75%);
}

/* Hero vision artwork — vraie photographie d'horizon, lever de soleil */
.hero-bg-image {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 78%;
  pointer-events: none;
  background-image: url("image/hero.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  opacity: 0.62;
  mask-image: linear-gradient(95deg, transparent 0%, rgba(0,0,0,0.15) 18%, rgba(0,0,0,0.55) 38%, #000 62%, #000 100%);
  -webkit-mask-image: linear-gradient(95deg, transparent 0%, rgba(0,0,0,0.15) 18%, rgba(0,0,0,0.55) 38%, #000 62%, #000 100%);
  filter: saturate(1.1) contrast(1.05);
  animation: heroBgFloat 22s ease-in-out infinite;
  will-change: transform;
  transform: translate3d(0,0,0) scale(1.04);
}
/* Color overlay above photo — keep brand navy temperature, leave warm sunrise on right */
.hero-bg-image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 40%, rgba(239,159,39,0.18) 0%, transparent 55%),
    linear-gradient(95deg, rgba(13,10,32,0.55) 0%, rgba(24,20,58,0.25) 35%, rgba(38,33,92,0.05) 70%, rgba(239,159,39,0.04) 100%);
  pointer-events: none;
}
@keyframes heroBgFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.04); }
  50% { transform: translate3d(-14px, -10px, 0) scale(1.06); }
}
@media (max-width: 900px) {
  .hero-bg-image { width: 100%; opacity: 0.38; }
}

/* Animated sun rays sweeping across hero (subtle conic) */
.hero-rays {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: conic-gradient(from 200deg at 90% 35%,
    transparent 0deg,
    rgba(239,159,39,0.08) 25deg,
    transparent 60deg,
    rgba(239,159,39,0.05) 100deg,
    transparent 140deg,
    rgba(239,159,39,0.06) 200deg,
    transparent 240deg,
    rgba(239,159,39,0.04) 300deg,
    transparent 360deg);
  mask-image: radial-gradient(ellipse 80% 70% at 90% 35%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 90% 35%, #000 0%, transparent 70%);
  animation: raysSpin 70s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.7;
}
@keyframes raysSpin { to { transform: rotate(360deg); } }

/* Sun glow orb (pulsing) */
.hero-sun {
  position: absolute; right: 8%; top: 25%;
  width: 280px; height: 280px; z-index: 1; pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.45) 0%, rgba(239,159,39,0.15) 35%, rgba(239,159,39,0) 65%);
  filter: blur(20px);
  animation: sunPulse 6s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}
@media (max-width: 900px) {
  .hero-sun { width: 180px; height: 180px; right: -20px; top: 12%; }
}

/* Floating glowing orbs across the page (drift loop) */
.float-orb {
  position: fixed; border-radius: 50%; pointer-events: none;
  filter: blur(60px); opacity: 0.45; z-index: 0;
  mix-blend-mode: screen;
}
.float-orb.o1 { width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(239,159,39,0.35), transparent 70%);
  top: 18%; left: -100px; animation: orbDrift1 28s ease-in-out infinite; }
.float-orb.o2 { width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(83,74,183,0.4), transparent 70%);
  top: 55%; right: -140px; animation: orbDrift2 36s ease-in-out infinite; }
.float-orb.o3 { width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(29,158,117,0.32), transparent 70%);
  bottom: -100px; left: 35%; animation: orbDrift3 32s ease-in-out infinite; }
@keyframes orbDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(120px, -60px) scale(1.1); }
  66% { transform: translate(60px, 80px) scale(0.95); }
}
@keyframes orbDrift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-100px, 60px) scale(1.12); }
}
@keyframes orbDrift3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(80px, -90px) scale(1.08); }
}

/* Scroll progress bar at top */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), #FFD27A, var(--gold));
  background-size: 200% 100%;
  z-index: 9999; pointer-events: none;
  box-shadow: 0 0 12px rgba(239,159,39,0.6);
  animation: progressShimmer 3s linear infinite;
  transition: width 0.05s linear;
}
@keyframes progressShimmer {
  0% { background-position: 0 0; }
  100% { background-position: -200% 0; }
}

/* Eyebrow shimmer (continuous) */
.hero-eyebrow {
  background: linear-gradient(90deg, var(--gold) 0%, #FFD27A 35%, var(--gold) 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 0.8s 0.2s var(--ease-out) forwards, eyebrowShimmer 4s linear infinite 1s;
}
@keyframes eyebrowShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Stats glow pulse on viewport entry */
.hstat-num {
  position: relative;
  background: linear-gradient(135deg, var(--gold) 0%, #FFD27A 50%, var(--gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: numShine 5s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(239,159,39,0.25));
}
@keyframes numShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* 3D tilt-ready service cards */
.service-card {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s, border-color 0.4s;
  will-change: transform;
}
.service-card.tilt-ready { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0); }
.service-card .service-icon, .service-card h3, .service-card p {
  transform: translateZ(20px); transition: transform 0.4s;
}

/* Reveal-on-scroll stagger */
.reveal-item {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

/* Section transitions — soft top/bottom fade between sections */
section { position: relative; }

/* ── APP-STYLE PAGE TRANSITIONS ───────────────────────── */
html.page-entering body {
  opacity: 0;
  transform: translateY(10px) scale(0.997);
  filter: blur(4px);
}
body {
  transition:
    opacity 0.28s cubic-bezier(.2,.8,.2,1),
    transform 0.3s cubic-bezier(.2,.8,.2,1),
    filter 0.28s cubic-bezier(.2,.8,.2,1);
}
html.page-leaving body {
  opacity: 0.25;
  transform: translateY(-4px) scale(0.995);
  filter: blur(3px);
  pointer-events: none;
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html.page-entering body, html.page-leaving body { opacity: 1; transform: none; filter: none; }
}
/* View Transitions API (Chrome/Edge) — smooth cross-page morph */
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: vt-fade-out 0.45s cubic-bezier(.2,.8,.2,1) both;
}
::view-transition-new(root) {
  animation: vt-fade-in 0.55s 0.1s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes vt-fade-out {
  to { opacity: 0; transform: scale(0.985) translateY(-8px); filter: blur(6px); }
}
@keyframes vt-fade-in {
  from { opacity: 0; transform: scale(1.01) translateY(10px); filter: blur(6px); }
}

/* ── CLICKABLE SERVICE CARDS (pôle links) ─────────────── */
.svc-card.svc-link-wrap {
  display: flex; flex-direction: column;
  cursor: pointer; text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.5s, border-color 0.4s, background 0.4s;
}
.svc-card.svc-link-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -24px rgba(239,159,39,0.35),
              0 0 0 1px rgba(239,159,39,0.35),
              inset 0 1px 0 rgba(255,255,255,0.08);
}
.svc-card.svc-link-wrap:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 4px;
}
.svc-card.svc-link-wrap:active { transform: translateY(-3px) scale(0.995); }

/* Diagonal shine sweep on hover */
.svc-shine {
  position: absolute; top: -60%; left: -40%;
  width: 40%; height: 220%;
  background: linear-gradient(100deg, transparent 35%, rgba(239,159,39,0.22) 50%, transparent 65%);
  transform: skewX(-20deg);
  transition: left 0.9s cubic-bezier(.2,.8,.2,1);
  pointer-events: none; z-index: 1;
}
.svc-card.svc-link-wrap:hover .svc-shine { left: 130%; }

/* Inner content bumps on hover */
.svc-card.svc-link-wrap > * { position: relative; z-index: 2; transition: transform 0.45s cubic-bezier(.2,.8,.2,1); }
.svc-card.svc-link-wrap:hover .svc-icon { transform: scale(1.08) rotate(-4deg); }
.svc-card.svc-link-wrap:hover .svc-badge { transform: translateX(2px); }

/* CTA pill at bottom */
.svc-cta {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(239,159,39,0.12);
  border: 1px solid rgba(239,159,39,0.35);
  color: var(--gold);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
}
.svc-card.svc-link-wrap:hover .svc-cta {
  background: var(--gold); color: var(--navy-x);
  padding-right: 22px;
  box-shadow: 0 10px 28px -8px rgba(239,159,39,0.55);
}
.svc-arr { transition: transform 0.35s cubic-bezier(.2,.8,.2,1); display: inline-block; }
.svc-card.svc-link-wrap:hover .svc-arr { transform: translate(3px, -3px) rotate(8deg); }

/* Pôle-specific accent border on hover */
.svc-s1.svc-link-wrap:hover { background: linear-gradient(155deg, rgba(239,159,39,0.06), transparent 70%); }
.svc-s2.svc-link-wrap:hover { background: linear-gradient(155deg, rgba(175,169,236,0.06), transparent 70%); }
.svc-s3.svc-link-wrap:hover { background: linear-gradient(155deg, rgba(29,158,117,0.06), transparent 70%); }
.svc-s4.svc-link-wrap:hover { background: linear-gradient(155deg, rgba(83,74,183,0.06), transparent 70%); }

/* Button shimmer (CTAs) */
.btn-hero-primary, .form-submit, .cta-btn {
  position: relative; overflow: hidden;
}
.btn-hero-primary::before, .form-submit::before, .cta-btn::before {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.btn-hero-primary:hover::before, .form-submit:hover::before, .cta-btn:hover::before {
  left: 130%;
}

/* Canvas for particles */
#hero-canvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}

/* Decorative rings */
.hero-ring {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
}
.ring-1 {
  width: 700px; height: 700px; right: -180px; top: -100px;
  border: 1px solid rgba(239,159,39,0.06);
  animation: ringRotate 80s linear infinite;
}
.ring-2 {
  width: 500px; height: 500px; right: 0px; top: 50px;
  border: 1px solid rgba(175,169,236,0.08);
  animation: ringRotate 55s linear infinite reverse;
}
.ring-3 {
  width: 280px; height: 280px; right: 120px; top: 180px;
  border: 1px solid rgba(29,158,117,0.1);
  animation: ringRotate 35s linear infinite;
}
.ring-4 {
  width: 120px; height: 120px; right: 240px; top: 250px;
  border: 1px solid rgba(239,159,39,0.15);
  animation: ringRotate 20s linear infinite reverse;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }

/* Gold vertical accent */
.hero-accent-line {
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 3px; z-index: 2;
  background: linear-gradient(180deg,
    transparent 0%, var(--gold) 25%, var(--teal) 75%, transparent 100%);
}

/* Content */
.hero-inner {
  position: relative; z-index: 10;
  padding-top: 80px; padding-bottom: 80px;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  font-family: var(--f-body); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2.5s infinite;
}
.hero-eyebrow-line {
  width: 40px; height: 1px; background: var(--gold);
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,159,39,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(239,159,39,0); }
}

.hero-headline {
  font-family: var(--f-impact);
  font-size: clamp(5rem, 11vw, 11rem);
  line-height: 0.88; letter-spacing: 3px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s 0.4s var(--ease-out) forwards;
}
.hero-headline .line-solid { color: var(--white); display: block; }
.hero-headline .line-outline {
  display: block;
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(239,159,39,0.2));
}
.hero-headline .line-gold { color: var(--gold); display: block; }

.hero-subline {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic; font-weight: 300;
  color: var(--purp); line-height: 1.4;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.9s 0.6s var(--ease-out) forwards;
}

.hero-desc {
  font-size: 1rem; font-weight: 300; line-height: 1.95;
  color: rgba(255,255,255,0.55); max-width: 520px;
  margin-bottom: 48px;
  opacity: 0; animation: fadeUp 0.9s 0.8s var(--ease-out) forwards;
}
.hero-desc strong { color: var(--gold); font-weight: 500; }

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 1s var(--ease-out) forwards;
}

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy-x);
  padding: 17px 36px; border-radius: 4px;
  font-family: var(--f-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border: none; position: relative; overflow: hidden;
  transition: all 0.35s var(--ease-out);
}
.btn-hero-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.55s;
}
.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(239,159,39,0.4);
}
.btn-hero-primary:hover::before { left: 100%; }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white); padding: 17px 36px; border-radius: 4px;
  font-family: var(--f-body); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.35s var(--ease-out);
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(239,159,39,0.08); transform: translateY(-4px);
}
.btn-arr { transition: transform 0.3s; }
.btn-hero-primary:hover .btn-arr,
.btn-hero-ghost:hover .btn-arr { transform: translateX(5px); }

/* Stats floating panel */
.hero-stats {
  position: absolute; right: 6%; bottom: 14%;
  z-index: 10;
  opacity: 0; animation: fadeLeft 1s 1.2s var(--ease-out) forwards;
}
.hero-stats-card {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(239,159,39,0.2);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.hstat {
  padding: 24px 20px;
  background: rgba(255,255,255,0.05);
  text-align: center;
  transition: background 0.3s;
}
.hstat:hover { background: rgba(255,255,255,0.08); }
.hstat-num {
  font-family: var(--f-impact);
  font-size: 2.6rem; color: var(--gold);
  line-height: 1; display: block; margin-bottom: 4px;
}
.hstat:nth-child(2) .hstat-num { color: var(--purp); }
.hstat:nth-child(3) .hstat-num { color: var(--teal); }
.hstat-label {
  font-size: 0.65rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 6%; z-index: 10;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.8s 1.5s var(--ease-out) forwards;
}
.scroll-track {
  width: 1px; height: 52px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.scroll-label {
  font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); writing-mode: vertical-rl;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── MARQUEE ────────────────────────────────────────────────── */
.marquee-section {
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-d));
  padding: 14px 0; overflow: hidden; position: relative; z-index: 5;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 18px; padding: 0 36px;
  font-family: var(--f-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy-x); white-space: nowrap;
}
.marquee-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--navy-x); opacity: 0.4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION COMMONS ────────────────────────────────────────── */
section { position: relative; overflow: hidden; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 6%; }
.section-pad { padding: 130px 0; }
.section-pad-sm { padding: 90px 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 18px;
}
.section-tag::before {
  content: ''; display: block; width: 32px; height: 1px;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 600; line-height: 1.08; margin-bottom: 22px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

/* ── ABOUT ──────────────────────────────────────────────────── */
#about { background: var(--white); }

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

.about-tag { color: var(--gold-d); }
.about-tag::before { background: var(--gold-d); }
.about-h2 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: var(--navy-x);
}
.about-h2 em { color: var(--gold-d); font-style: normal; }
.about-h2 .stroke {
  -webkit-text-stroke: 2px var(--gold-d); color: transparent;
}

.about-body {
  font-size: 1.02rem; line-height: 1.9;
  color: var(--gray); margin-bottom: 24px;
}
.about-body + .about-body { margin-top: -8px; }

.about-quote-block {
  margin: 36px 0;
  padding: 26px 32px;
  background: var(--off);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  position: relative;
}
.about-quote-mark {
  position: absolute; top: -14px; left: 24px;
  font-family: var(--f-display); font-size: 5rem;
  color: var(--gold); opacity: 0.15; line-height: 1;
}
.about-quote-text {
  font-family: var(--f-serif);
  font-size: 1.08rem; font-style: italic;
  color: var(--navy); line-height: 1.7; margin-bottom: 12px;
}
.about-quote-by {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-d);
}

.about-values {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px;
}
.value-pill {
  padding: 8px 18px;
  background: var(--purp-l); border: 1px solid var(--purp-d);
  border-radius: 40px; font-size: 0.78rem;
  font-weight: 600; color: var(--purp-d);
}

/* Stats mosaic right */
.about-mosaic {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(38,33,92,0.12);
}
.mosaic-cell {
  padding: 44px 32px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}
.mc-navy-d { background: var(--navy-x); }
.mc-navy   { background: var(--navy-d); }
.mc-navy-l { background: var(--navy); }
.mc-purp   { background: var(--purp-d); }
.mosaic-cell::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.mosaic-cell:hover::after { transform: scaleX(1); }
.mosaic-num {
  font-family: var(--f-impact);
  font-size: 4rem; line-height: 1; display: block; margin-bottom: 8px;
}
.mc-navy-d .mosaic-num { color: var(--gold); }
.mc-navy   .mosaic-num { color: var(--purp); }
.mc-navy-l .mosaic-num { color: var(--teal); }
.mc-purp   .mosaic-num { color: var(--gold); }
.mosaic-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.4;
}
.mosaic-sub {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  margin-top: 6px;
}

/* DG Badge */
.dg-badge {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--navy-d), var(--navy));
  border: 1px solid rgba(239,159,39,0.2);
  border-radius: 12px; margin-top: 20px;
}
.dg-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--purp-d));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-impact); font-size: 1.4rem; color: var(--gold);
  border: 2px solid rgba(239,159,39,0.3);
}
.dg-info-name {
  font-family: var(--f-display); font-size: 1.1rem;
  font-weight: 700; color: var(--white);
}
.dg-info-role {
  font-size: 0.75rem; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 3px;
}
.dg-info-exp {
  font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 4px;
}

/* ── SERVICES ───────────────────────────────────────────────── */
#services { background: var(--cream); }
.services-tag { color: var(--gold-d); }
.services-tag::before { background: var(--gold-d); }
.services-h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--navy-x);
}
.services-h2 em { color: var(--gold-d); font-style: normal; }
.services-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 72px;
}
.services-body {
  font-size: 1rem; line-height: 1.9; color: var(--gray);
}

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}

.svc-card {
  background: var(--white); border-radius: 18px;
  padding: 48px 40px; position: relative; overflow: hidden;
  transition: all 0.55s var(--ease-out); cursor: pointer;
  box-shadow: 0 4px 30px rgba(38,33,92,0.08);
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--navy-x);
  transform: translateY(102%);
  transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
  z-index: 0;
}
.svc-card:hover { transform: translateY(-10px); box-shadow: 0 32px 80px rgba(38,33,92,0.18); }
.svc-card:hover::before { transform: translateY(0); }
.svc-card > * { position: relative; z-index: 1; }

.svc-badge {
  position: absolute; top: 36px; right: 36px; z-index: 1;
  font-family: var(--f-impact); font-size: 5.5rem;
  line-height: 1; opacity: 0.04; color: var(--navy-x);
  transition: color 0.55s;
}
.svc-card:hover .svc-badge { opacity: 0.04; color: var(--white); }

.svc-icon {
  width: 62px; height: 62px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 26px;
  transition: transform 0.5s var(--spring);
}
.svc-card:hover .svc-icon { transform: rotate(-8deg) scale(1.1); }
.svc-i1 { background: rgba(38,33,92,0.08); }
.svc-i2 { background: rgba(83,74,183,0.1); }
.svc-i3 { background: rgba(29,158,117,0.1); }
.svc-i4 { background: rgba(239,159,39,0.1); }

.svc-name {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 700;
  color: var(--navy-x); margin-bottom: 8px; transition: color 0.5s;
}
.svc-card:hover .svc-name { color: var(--gold); }

.svc-sub {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 18px; transition: color 0.5s;
}
.svc-s1 .svc-sub { color: var(--navy); }
.svc-s2 .svc-sub { color: var(--purp-d); }
.svc-s3 .svc-sub { color: var(--teal-d); }
.svc-s4 .svc-sub { color: var(--gold-d); }
.svc-card:hover .svc-sub { color: var(--purp); }

.svc-desc {
  font-size: 0.92rem; line-height: 1.8;
  color: var(--gray); margin-bottom: 24px; transition: color 0.5s;
}
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.62); }

.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.svc-tag {
  padding: 4px 12px; border-radius: 4px;
  background: var(--gray-l); font-size: 0.72rem;
  font-weight: 600; color: var(--navy);
  transition: all 0.5s;
}
.svc-card:hover .svc-tag {
  background: rgba(239,159,39,0.15); color: var(--gold);
}

.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--navy-x); transition: all 0.5s;
}
.svc-card:hover .svc-link { color: var(--gold); gap: 14px; }

/* ── NUMBERS BAND ───────────────────────────────────────────── */
#numbers {
  background: var(--gold);
  padding: 80px 0;
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.nblock {
  padding: 40px 36px;
  border-right: 1px solid rgba(13,10,32,0.15);
  transition: background 0.3s; cursor: default;
}
.nblock:last-child { border-right: none; }
.nblock:hover { background: rgba(13,10,32,0.06); }
.n-big {
  font-family: var(--f-impact); font-size: 4.5rem;
  color: var(--navy-x); line-height: 1; display: block; margin-bottom: 8px;
}
.n-label {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy-x); opacity: 0.6;
}
.n-sub { font-size: 0.78rem; color: var(--navy-x); opacity: 0.38; margin-top: 5px; }

/* ── EXPERTISE ──────────────────────────────────────────────── */
#expertise {
  background: var(--navy-x);
}
.expertise-tag { color: var(--gold); }
.expertise-tag::before { background: var(--gold); }
.expertise-h2 { color: var(--white); font-size: clamp(2.2rem, 3.5vw, 3.2rem); }
.expertise-h2 em { color: var(--gold); font-style: normal; }

.expertise-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: start;
}

/* Methodology steps */
.steps-wrap { position: relative; }
.steps-spine {
  position: absolute; left: 27px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--teal), transparent);
  z-index: 0;
}
.step {
  display: flex; gap: 28px; padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.step:last-child { border-bottom: none; }
.step:hover .step-content { transform: translateX(6px); }

.step-dot {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 1.3rem; font-weight: 700;
  position: relative; z-index: 2;
  transition: transform 0.4s var(--spring);
}
.step:hover .step-dot { transform: scale(1.12); }
.sd-1 { background: var(--navy-d); border: 2px solid var(--gold); color: var(--gold); }
.sd-2 { background: var(--navy-d); border: 2px solid var(--purp); color: var(--purp); }
.sd-3 { background: var(--navy-d); border: 2px solid var(--teal); color: var(--teal); }
.sd-4 { background: var(--navy-d); border: 2px solid var(--gold); color: var(--gold); }
.sd-5 { background: var(--gold); border: 2px solid var(--gold); color: var(--navy-x); }

.step-content { transition: transform 0.35s var(--ease-out); }
.step-title {
  font-family: var(--f-display); font-size: 1.18rem; font-weight: 600;
  color: var(--white); margin-bottom: 7px;
}
.step-desc {
  font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.5);
}
.step-pill {
  display: inline-block; margin-top: 8px; padding: 3px 10px;
  border-radius: 4px; font-size: 0.65rem; font-weight: 600; letter-spacing: 1px;
}
.p-gold { background: rgba(239,159,39,0.12); color: var(--gold); }
.p-purp { background: rgba(83,74,183,0.15); color: var(--purp); }
.p-teal { background: rgba(29,158,117,0.12); color: var(--teal); }

/* Commitments card */
.commit-card {
  background: linear-gradient(135deg, var(--navy-d), #1a1640);
  border: 1px solid rgba(239,159,39,0.18);
  border-radius: 20px; padding: 48px;
  position: relative; overflow: hidden;
}
.commit-card::before {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.07), transparent 70%);
}
.commit-title {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 600;
  color: var(--gold); margin-bottom: 24px;
}
.commit-list { list-style: none; }
.commit-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6;
}
.commit-list li:last-child { border-bottom: none; }
.c-ico { color: var(--teal); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }

/* Visual data charts */
.charts-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 80px;
}
.chart-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 32px;
  transition: all 0.4s;
}
.chart-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(239,159,39,0.25);
  transform: translateY(-5px);
}
.chart-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}

/* ── PARTNERS ───────────────────────────────────────────────── */
#partners { background: var(--white); }
.partners-tag { color: var(--gold-d); }
.partners-tag::before { background: var(--gold-d); }
.partners-h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); color: var(--navy-x); }
.partners-h2 em { color: var(--gold-d); font-style: normal; }
.partners-desc { font-size: 1rem; color: var(--gray); margin-bottom: 56px; max-width: 540px; }

.partners-logos {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px;
}
.plogo {
  background: var(--off); border: 1px solid var(--gray-l);
  border-radius: 10px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-body); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.5px; color: var(--navy); text-align: center;
  padding: 0 10px; cursor: default;
  transition: all 0.35s var(--ease-out);
}
.plogo:hover {
  background: var(--navy-x); color: var(--gold);
  border-color: var(--navy-x); transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(38,33,92,0.15);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials { background: var(--off); }
.testis-tag { color: var(--gold-d); }
.testis-tag::before { background: var(--gold-d); }
.testis-h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); color: var(--navy-x); }
.testis-h2 em { color: var(--gold-d); font-style: normal; }

.testis-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.tcard {
  background: var(--white); border-radius: 18px; padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-out); position: relative; overflow: hidden;
}
.tcard:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(38,33,92,0.1);
}
.tcard::before {
  content: 'C'; position: absolute; top: -12px; left: 24px;
  font-family: var(--f-display); font-size: 9rem;
  color: var(--gold); opacity: 0.08; line-height: 1; pointer-events: none;
}
.tcard-result {
  display: inline-block; padding: 4px 13px; border-radius: 4px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--teal-l); color: var(--teal-d); margin-bottom: 18px;
}
.tcard-text {
  font-family: var(--f-serif); font-size: 0.98rem;
  font-style: italic; line-height: 1.8; color: var(--navy); margin-bottom: 26px;
}
.tcard-meta { border-top: 1px solid var(--gray-l); padding-top: 18px; }
.tcard-name { font-weight: 700; font-size: 0.9rem; color: var(--navy-x); }
.tcard-role { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }

/* ── CTA BAND ───────────────────────────────────────────────── */
#cta-band {
  background: linear-gradient(135deg, var(--navy-d), var(--navy));
  position: relative; overflow: hidden;
}
#cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(239,159,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239,159,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-layout {
  display: grid; grid-template-columns: 1fr auto;
  gap: 80px; align-items: center;
  padding: 100px 0; position: relative; z-index: 1;
}
.cta-h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 600;
  color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.cta-h2 em { color: var(--gold); font-style: normal; }
.cta-body { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 460px; }
.cta-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.cta-phone {
  font-family: var(--f-impact); font-size: 2.2rem;
  color: var(--gold); letter-spacing: 1px;
  transition: opacity 0.3s;
}
.cta-phone:hover { opacity: 0.75; }
.cta-note { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-align: right; }

/* ── CONTACT ────────────────────────────────────────────────── */
#contact { background: var(--navy-x); }
.contact-tag { color: var(--gold); }
.contact-tag::before { background: var(--gold); }
.contact-h2 { color: var(--white); font-size: clamp(2rem, 3.5vw, 3rem); }
.contact-h2 em { color: var(--gold); font-style: normal; }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; margin-top: 60px;
}

.contact-info h3 {
  font-family: var(--f-display); font-size: 1.8rem; font-weight: 600;
  color: var(--white); margin-bottom: 16px;
}
.contact-info p {
  font-size: 0.95rem; color: rgba(255,255,255,0.5);
  line-height: 1.85; margin-bottom: 44px;
}

.contact-items { display: flex; flex-direction: column; gap: 14px; }
.citem {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; transition: all 0.3s;
}
.citem:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(239,159,39,0.2);
  transform: translateX(5px);
}
.citem-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(239,159,39,0.1); border: 1px solid rgba(239,159,39,0.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.citem-lbl {
  font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3px;
}
.citem-val { font-size: 0.92rem; color: var(--white); font-weight: 500; }

/* Contact form */
.contact-form-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px; padding: 48px;
}
.form-title {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 600;
  color: var(--white); margin-bottom: 5px;
}
.form-subtitle { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 34px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.63rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--purp); margin-bottom: 8px;
}
.form-control {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 9px;
  padding: 13px 16px; color: var(--white);
  font-family: var(--f-body); font-size: 0.9rem;
  outline: none; transition: all 0.3s;
}
.form-control:focus {
  border-color: var(--gold);
  background: rgba(239,159,39,0.05);
  box-shadow: 0 0 0 3px rgba(239,159,39,0.09);
}
.form-control::placeholder { color: rgba(255,255,255,0.22); }
select.form-control { background: rgba(20,16,50,0.95); cursor: pointer; }
select.form-control option { background: var(--navy-x); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--navy-x);
  border: none; padding: 16px; border-radius: 9px;
  font-family: var(--f-body); font-size: 0.9rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; margin-top: 6px;
}
.form-submit:hover {
  background: var(--gold-d);
  transform: translateY(-2px); box-shadow: 0 10px 30px rgba(239,159,39,0.35);
}
.form-disclaimer {
  font-size: 0.73rem; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 12px;
}

/* ── FILE UPLOAD (custom, brand-aligned, drag-and-drop) ────── */
.form-file {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(239,159,39,0.35);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out, cubic-bezier(.2,.8,.2,1));
  position: relative; overflow: hidden;
}
.form-file::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(239,159,39,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.form-file:hover {
  border-color: var(--gold);
  background: rgba(239,159,39,0.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px -10px rgba(239,159,39,0.4);
}
.form-file:hover::before { opacity: 1; }
.form-file.is-drag {
  border-color: var(--gold);
  background: rgba(239,159,39,0.1);
  box-shadow: 0 0 0 3px rgba(239,159,39,0.12);
}
.form-file.has-file {
  border-style: solid;
  border-color: rgba(29,158,117,0.55);
  background: rgba(29,158,117,0.06);
}
.form-file-icon {
  width: 44px; height: 44px; flex: 0 0 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(239,159,39,0.18), rgba(239,159,39,0.05));
  color: var(--gold); border-radius: 10px;
  border: 1px solid rgba(239,159,39,0.25);
  transition: all 0.35s;
}
.form-file:hover .form-file-icon {
  transform: rotate(-12deg) scale(1.05);
  background: linear-gradient(135deg, rgba(239,159,39,0.35), rgba(239,159,39,0.12));
}
.form-file.has-file .form-file-icon {
  background: linear-gradient(135deg, rgba(29,158,117,0.3), rgba(29,158,117,0.08));
  border-color: rgba(29,158,117,0.55);
  color: #4ED1A1;
}
.form-file-body {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 3px;
  position: relative; z-index: 1;
}
.form-file-title {
  font-family: var(--f-body); font-size: 0.86rem; font-weight: 600;
  color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.form-file-meta {
  font-size: 0.72rem; color: rgba(255,255,255,0.45);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.form-file-cta {
  flex: 0 0 auto;
  background: var(--gold); color: var(--navy-x);
  padding: 9px 18px; border-radius: 8px;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1.4px; text-transform: uppercase;
  transition: all 0.3s;
  position: relative; z-index: 1;
}
.form-file:hover .form-file-cta {
  background: var(--gold-d, #BA7517);
  transform: translateX(2px);
  box-shadow: 0 6px 18px -6px rgba(239,159,39,0.55);
}
.form-file.has-file .form-file-cta {
  background: rgba(29,158,117,0.85); color: #fff;
}
.form-file.has-file .form-file-cta::after { content: ' ✓'; }
@media (max-width: 600px) {
  .form-file { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
  .form-file-icon { margin: 0 auto; }
  .form-file-body { align-items: center; }
}

/* ── HEADLINE TEXT-REVEAL (sophistication polish) ─────────── */
.hero-headline .line-solid,
.hero-headline .line-outline,
.hero-headline .line-gold {
  position: relative;
  background-clip: text; -webkit-background-clip: text;
}
.hero-headline .line-solid::after,
.hero-headline .line-outline::after,
.hero-headline .line-gold::after {
  content: '';
  position: absolute; left: 0; bottom: 0.06em;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 1.6s 0.6s cubic-bezier(.2,.8,.2,1);
}
.hero-headline.is-revealed .line-gold::after { width: 60%; }

/* Premium service-card lift on hover (subtle 3D tilt-ready) */
.service-card { transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s; }
.service-card:hover {
  box-shadow: 0 30px 60px -20px rgba(38,33,92,0.18), 0 0 0 1px rgba(239,159,39,0.18);
}

/* Gold cursor follower (desktop only, very subtle) */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); pointer-events: none;
  z-index: 9999; opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, width 0.25s, height 0.25s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(239,159,39,0.5);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.18s ease-out, width 0.25s, height 0.25s;
  opacity: 0;
}
.cursor-dot.is-active, .cursor-ring.is-active { opacity: 1; }
.cursor-ring.is-hover { width: 56px; height: 56px; border-color: var(--gold); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--navy-x);
  border-top: 1px solid rgba(239,159,39,0.12);
}
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px; padding: 80px 0 50px;
}
.footer-brand { }
.footer-brand-logo {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.footer-brand-logo img { width: 44px; height: 44px; border-radius: 6px; }
.footer-brand-name {
  font-family: var(--f-display); font-size: 1.3rem; font-weight: 700; color: var(--white);
}
.footer-brand-name em { color: var(--gold); font-style: normal; }
.footer-tagline {
  font-family: var(--f-display); font-style: italic;
  font-size: 0.9rem; color: var(--gold); margin-bottom: 14px;
}
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.8; }
.footer-legal {
  margin-top: 16px; font-size: 0.63rem; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.28); line-height: 1.9;
}
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--purp); margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contacts { display: flex; flex-direction: column; gap: 11px; }
.footer-contact {
  display: flex; align-items: center; gap: 11px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.footer-contact .ico { color: var(--gold); font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer-slogan {
  font-family: var(--f-display); font-style: italic;
  font-size: 0.88rem; color: var(--gold);
}

/* ── BACK TO TOP ────────────────────────────────────────────── */
#axia-btt {
  position: fixed; bottom: 94px; right: 26px;
  width: 50px; height: 50px; background: var(--gold);
  color: var(--navy-x); border: none; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; z-index: 9994;
  opacity: 0; pointer-events: none;
  transition: all 0.4s var(--spring);
  box-shadow: 0 4px 20px rgba(239,159,39,0.35);
  display: flex; align-items: center; justify-content: center;
}
#axia-btt.is-visible { opacity: 1; pointer-events: auto; }
#axia-btt:hover { transform: translateY(-5px) scale(1.08); }
#axia-btt svg { width: 22px; height: 22px; }
@media (max-width: 600px) {
  #axia-btt { font-size: 0; bottom: 80px; right: 20px; width: 44px; height: 44px; font-size: 1rem; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-layout, .contact-layout, .expertise-layout,
  .services-intro-grid, .cta-layout { grid-template-columns: 1fr; gap: 50px; }
  .hero-stats { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .charts-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .container { padding: 0 4%; }
  .section-pad { padding: 80px 0; }
  .hero-headline { font-size: 4.5rem; }
  .services-grid, .testis-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .partners-logos { grid-template-columns: repeat(4, 1fr); }
  .about-mosaic { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .cta-layout { grid-template-columns: 1fr; }
  .cta-right { align-items: flex-start; }
}

/* ── MOBILE NAV TOGGLE ──────────────────────────────────────── */
.nav-mobile-btn {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.4rem; cursor: pointer;
}
@media (max-width: 768px) {
  .nav-mobile-btn { display: flex; }
}

/* ── PRELOADER ──────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; background: var(--navy-x);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.7s, visibility 0.7s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-logo {
  display: flex; align-items: center; gap: 14px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.preloader-bar {
  width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 1px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%; background: var(--gold);
  animation: preloaderLoad 2s var(--ease-out) forwards;
}
@keyframes preloaderLoad {
  from { width: 0; }
  to { width: 100%; }
}
.preloader-text {
  font-family: var(--f-display); font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,0.4);
}

/* ══ ENHANCEMENTS — Édition 2026 ══════════════════════════════ */

/* ══ POLE OVERLAY — in-place SPA-style pole loading ══════════ */
#axia-pole-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(13,10,32,0);
  pointer-events: none;
  transition: background 0.35s cubic-bezier(.2,.8,.2,1);
}
#axia-pole-overlay.is-open {
  background: rgba(13,10,32,0.6);
  pointer-events: auto;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#axia-pole-overlay iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; background: #0D0A20;
  opacity: 0; transform: scale(0.985) translateY(16px);
  transition:
    opacity 0.38s cubic-bezier(.2,.8,.2,1),
    transform 0.42s cubic-bezier(.2,.8,.2,1);
}
#axia-pole-overlay.is-open iframe { opacity: 1; transform: none; }
body.axia-pole-open { overflow: hidden; }

/* WhatsApp floating button */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 9995;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 38px rgba(37,211,102,0.45),
              0 0 0 0 rgba(37,211,102,0.55);
  cursor: pointer; transition: transform 0.35s var(--spring), box-shadow 0.4s;
  animation: waPulse 2.6s infinite;
}
.wa-fab:hover { transform: scale(1.1) rotate(-6deg); }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }
.wa-fab::after {
  content: 'Discutons'; position: absolute; right: 70px; top: 50%;
  transform: translateY(-50%) translateX(8px); white-space: nowrap;
  background: #18143A; color: #fff; padding: 9px 14px; border-radius: 8px;
  font-family: var(--f-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.4px; opacity: 0; pointer-events: none;
  transition: all 0.3s var(--ease-out);
  border: 1px solid rgba(239,159,39,0.25);
}
.wa-fab:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 14px 38px rgba(37,211,102,0.45),
                         0 0 0 0 rgba(37,211,102,0.55); }
  50%      { box-shadow: 0 14px 38px rgba(37,211,102,0.45),
                         0 0 0 18px rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .wa-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-fab svg { width: 26px; height: 26px; }
  .wa-fab::after { display: none; }
}

/* Animated gold underline on nav links */
.nav-links a { position: relative; }
.nav-links a::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-d));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:hover::before { transform: scaleX(1); transform-origin: left; }

/* Refined card 3D tilt on hover for service / pillar cards */
.service-card, .pillar-card, .stat-card, .value-card {
  will-change: transform;
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              border-color 0.4s;
}

/* Magnetic CTA shimmer */
.btn-primary, .form-submit, .cta-btn, .hero-cta {
  position: relative; overflow: hidden;
}
.btn-primary::after, .form-submit::after, .cta-btn::after, .hero-cta::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.7s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::after, .form-submit:hover::after,
.cta-btn:hover::after, .hero-cta:hover::after { left: 100%; }

/* Subtle scroll-reveal stagger refinement */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* Mobile menu — slide-in panel */
@media (max-width: 920px) {
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(13,10,32,0.98);
    backdrop-filter: blur(28px) saturate(180%);
    padding: 40px 8% 60px;
    gap: 26px; z-index: 999;
    border-top: 1px solid rgba(239,159,39,0.18);
    animation: mobileSlideIn 0.35s var(--ease-out);
  }
  .nav-links.mobile-open a {
    font-size: 1.15rem; font-weight: 500;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}
@keyframes mobileSlideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Print friendly */
@media print {
  nav, .wa-fab, .cursor-dot, .cursor-circle, #progress, #preloader { display: none !important; }
  body { background: #fff; color: #000; cursor: auto; }
}

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