/* =============================================
   LITTLE SWIFT — Premium Corporate Website
   Inspired by: Stitch design reference
   Fonts: Playfair Display + Manrope
   Palette: Midnight Navy + Champagne Gold
   ============================================= */

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

:root {
  --navy:       #0B1B32;
  --navy-mid:   #0F2040;
  --navy-light: #152B4D;
  --navy-card:  #1C2E4A;
  --gold:       #C9A24D;
  --gold-light: #E2BF78;
  --gold-dark:  #A8873A;
  --white:      #FFFFFF;
  --off-white:  #F7F9F8;
  --pearl:      #f9fbfa;
  --charcoal:   #141A1F;
  --slate:      #5C6B73;
  --text:       #1C2526;
  --text-mid:   #4a5568;
  --text-light: rgba(255,255,255,0.65);
  --text-muted: rgba(255,255,255,0.4);
  --border-dark: rgba(255,255,255,0.08);
  --border-gold: rgba(201,162,77,0.2);
  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
  --t:          all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-serif: 'Playfair Display', serif;
  --font-sans:  'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* =============================================
   SPLASH SCREEN
   ============================================= */

.splash {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.splash__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.splash__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  animation: splashFade 0.8s ease 0.2s both;
}

.splash__bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  animation: splashFade 0.5s ease 0.4s both;
}

.splash__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: splashLoad 1.2s cubic-bezier(0.4,0,0.2,1) 0.5s both;
}

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

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

.no-splash .splash { display: none; }

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--t);
}

.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 80px;
  gap: 40px;
}

/* Dark nav (over hero) */
.nav .nav__brand { color: var(--white); }
.nav .nav__link { color: var(--text-light); }
.nav .nav__burger span { background: var(--white); }

/* Light nav (inner pages) */
.nav--light { background: rgba(249,251,250,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.nav--light .nav__brand--dark { color: var(--navy); }
.nav--light .nav__link--dark { color: var(--slate); }
.nav--light .nav__link--dark:hover { color: var(--navy); }
.nav--light .nav__burger--dark span { background: var(--navy); }

.nav.scrolled {
  background: rgba(11, 27, 50, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}

.nav.scrolled .nav__brand { color: var(--white); }
.nav.scrolled .nav__link { color: var(--text-light); }
.nav.scrolled .nav__link:hover { color: var(--white); }

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: var(--t);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
}

.nav__link {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: var(--t);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--t);
}

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__link.active { color: var(--gold) !important; }

.nav__cta { margin-left: 8px; flex-shrink: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  border-radius: 2px;
  transition: var(--t);
}

/* =============================================
   MOBILE OVERLAY
   ============================================= */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--t);
}

.mobile-close:hover { opacity: 1; }

.mobile-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-links a {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: var(--t);
  letter-spacing: -0.02em;
}

.mobile-links a:hover { color: var(--gold); }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}

.btn--lg { padding: 14px 28px; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; padding: 16px; }

.btn--gold {
  background: var(--gold);
  color: #1a1000;
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,162,77,0.35);
}

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }

/* =============================================
   SECTION COMMON
   ============================================= */

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.section-sub {
  max-width: 380px;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.75;
  padding-bottom: 6px;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 0% 0%, #152B4D 0px, transparent 55%),
    radial-gradient(at 100% 0%, #2C4A70 0px, transparent 55%),
    radial-gradient(at 100% 100%, #0B1B32 0px, transparent 55%),
    radial-gradient(at 0% 100%, #0B1B32 0px, transparent 55%);
  animation: meshMove 20s ease infinite alternate;
  background-size: 200% 200%;
}

@keyframes meshMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.4;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,77,0.1);
  border: 1px solid rgba(201,162,77,0.25);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
  animation: heroFade 0.7s ease 1.8s both;
}

.hero__dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

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

.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  animation: heroFade 0.7s ease 2s both;
}

.hero__gold {
  color: var(--gold);
  font-style: italic;
}

.hero__sub {
  max-width: 540px;
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 44px;
  font-weight: 300;
  animation: heroFade 0.7s ease 2.15s both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFade 0.7s ease 2.3s both;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroFade 0.7s ease 2.6s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,162,77,0.8), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

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

/* =============================================
   CREDIBILITY STRIP
   ============================================= */

.credibility {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.credibility__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.credibility__item {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credibility__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

.credibility__value {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.credibility__value em {
  color: var(--gold);
  font-style: normal;
}

.credibility__note {
  font-size: 0.78rem;
  color: var(--slate);
  font-weight: 400;
  margin-top: 2px;
}

.credibility__divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.08);
}

/* =============================================
   CLIENT PORTFOLIO
   ============================================= */

.clients {
  padding: 110px 0;
  background: var(--pearl);
}

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

.client-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t);
  box-shadow: var(--shadow);
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.client-card__visual {
  height: 210px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-card__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}

.client-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.client-card__icon {
  width: 90px; height: 90px;
  opacity: 0.55;
  transition: var(--t);
}

.client-card:hover .client-card__icon {
  opacity: 0.85;
  transform: scale(1.08);
}

.client-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.client-card__name {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.client-card__sector {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-card__body {
  padding: 22px 22px 24px;
}

.client-card__body h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.client-card__body p {
  font-size: 0.83rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 14px;
}

.client-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: rgba(201,162,77,0.1);
  border: 1px solid rgba(201,162,77,0.25);
  padding: 4px 10px;
  border-radius: 100px;
}

/* =============================================
   SERVICES PREVIEW (HOME)
   ============================================= */

.services-preview {
  padding: 110px 0;
  background: var(--white);
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-preview-card {
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  background: var(--pearl);
}

.service-preview-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t);
}

.service-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
  background: var(--white);
}

.service-preview-card:hover::after { transform: scaleX(1); }

.service-preview-card__icon {
  width: 44px; height: 44px;
  background: rgba(201,162,77,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-preview-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
}

.service-preview-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-preview-card p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
}

.services-preview__cta {
  text-align: center;
}

/* =============================================
   WHY LITTLE SWIFT
   ============================================= */

.why {
  padding: 110px 0;
  position: relative;
  background: var(--navy);
}

.why__heading { color: var(--white); }
.why .section-heading { color: var(--white); }

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why__body {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 20px 0 36px;
  font-weight: 300;
}

.why__pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why__pillar {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.why__pillar:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.why__pillar-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 28px;
  line-height: 1.5;
  font-style: italic;
}

.why__pillar strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.why__pillar p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-weight: 300;
}

.why__card {
  border: 1px solid rgba(201,162,77,0.2);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.why__card-inner {
  padding: 40px;
}

.why__card-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
}

.why__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.why__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why__metric-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.why__metric-value em {
  font-style: normal;
  color: var(--gold);
  font-size: 1.4rem;
}

.why__metric-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.why__card-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.why__card-group-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.why__card-group-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  font-style: italic;
}

/* =============================================
   LEADERSHIP QUOTE
   ============================================= */

.quote-section {
  padding: 110px 0;
  background: var(--charcoal);
}

.quote-block {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
  display: block;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 40px;
}

.quote-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.quote-attr__line {
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.quote-attr__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-attr__title {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-top: 2px;
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
  padding: 100px 0;
  background: var(--navy-mid);
}

.cta-section--light {
  background: var(--pearl);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.cta-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-block .section-tag { margin-bottom: 20px; }

.cta-block__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-block__heading--dark { color: var(--navy); }

.cta-block__sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-block__sub--dark { color: var(--slate); }

.cta-block__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  padding: 140px 0 80px;
  background: var(--navy);
}

.page-hero--light {
  background: var(--pearl);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 130px 0 60px;
}

.page-hero__inner {
  max-width: 700px;
}

.page-hero--light .section-tag { color: var(--gold); }

.page-hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}

.page-hero--light .page-hero__heading { color: var(--navy); }

.page-hero__sub {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
}

/* =============================================
   SERVICES DETAIL PAGE
   ============================================= */

.services-detail {
  padding: 80px 0 100px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  overflow: hidden;
  transition: var(--t);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.service-detail-card__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-detail-card__num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
  min-width: 44px;
  line-height: 1.2;
  opacity: 0.7;
}

.service-detail-card__icon {
  width: 48px; height: 48px;
  background: rgba(201,162,77,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
}

.service-detail-card__header h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-detail-card__sub {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
  font-weight: 400;
}

.service-detail-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-detail-card__scope {
  padding: 32px 36px;
  border-right: 1px solid rgba(0,0,0,0.06);
}

.service-detail-card__client {
  padding: 32px 36px;
}

.service-detail-card__scope h4,
.service-detail-card__client h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 16px;
}

.service-detail-card__scope ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail-card__scope ul li {
  font-size: 0.87rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.service-detail-card__scope ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.service-detail-card__client-badge {
  background: rgba(11,27,50,0.04);
  border: 1px solid rgba(11,27,50,0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.service-detail-card__client-badge span {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-detail-card__client-badge p {
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.55;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-story {
  padding: 90px 0;
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-story__left p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 400;
}

.about-story__left .section-heading {
  margin: 16px 0 24px;
}

.about-milestones {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.milestone {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.milestone:first-child { padding-top: 0; }
.milestone:last-child { border-bottom: none; }

.milestone--current .milestone__year { color: var(--gold); }
.milestone--current .milestone__content strong { color: var(--navy); }

.milestone__year {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate);
  min-width: 52px;
  font-style: italic;
  padding-top: 2px;
}

.milestone__content strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.milestone__content p {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.6;
}

.governance { padding: 90px 0; background: var(--pearl); }

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

.governance-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--t);
}

.governance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.governance-card__icon {
  width: 48px; height: 48px;
  background: rgba(201,162,77,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.governance-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
}

.governance-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.governance-card p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
}

.leadership { padding: 90px 0; }

.leadership__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.leadership__left p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.8;
  margin: 16px 0;
}

.leader-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.leader-card__avatar {
  width: 80px; height: 80px;
  flex-shrink: 0;
  background: var(--pearl);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-gold);
  overflow: hidden;
}

.leader-card__avatar svg {
  width: 80px; height: 80px;
}

.leader-card__info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.leader-card__info span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.leader-card__info p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-section { padding: 80px 0; }

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info__block {
  margin-bottom: 36px;
}

.contact-info__block h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info__block p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.75;
}

.contact-info__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info__icon {
  width: 40px; height: 40px;
  background: rgba(201,162,77,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
}

.contact-info__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: var(--t);
}

.contact-info__value:hover { color: var(--gold); }

.contact-info__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-cred {
  background: var(--pearl);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
}

.contact-cred__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.contact-cred__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--pearl);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: var(--t);
  outline: none;
  resize: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,0.3); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,77,0.08);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate);
  margin-top: -4px;
}

.map-section {
  padding: 0 0 100px;
}

.map-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.map-section__header h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.map-section__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--t);
}

.map-section__link:hover { color: var(--gold); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--navy);
  padding: 70px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--t);
}

.footer__col a:hover { color: var(--gold); }

.footer__col span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
    flex-wrap: wrap;
  gap: 8px;
padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .clients__grid,
  .services-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .credibility__grid { grid-template-columns: 1fr 1fr; }
  .credibility__divider:nth-child(4) { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .why__inner,
  .about-story__inner,
  .leadership__inner,
  .contact-section__inner { grid-template-columns: 1fr; gap: 50px; }
  .service-detail-card__body { grid-template-columns: 1fr; }
  .service-detail-card__scope { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .clients__grid,
  .services-preview__grid,
  .governance__grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-sub { max-width: 100%; }
  .hero { padding: 100px 20px 70px; }
  .credibility__grid { grid-template-columns: 1fr 1fr; }
  .credibility__divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-card__header { flex-wrap: wrap; }
    .why__metrics { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__heading { font-size: 2.6rem; }
  .hero__actions { flex-direction: column; }
  .credibility__grid { grid-template-columns: 1fr; }
  .contact-info__credentials { grid-template-columns: 1fr; }
  .cta-block__actions { flex-direction: column; align-items: center; }
  .why__metrics { grid-template-columns: 1fr; gap: 16px; }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .credibility__item {
    padding: 22px 20px;
  }

}


/* =============================================
   LOGO INTEGRATION (UPDATED)
   ============================================= */

/* Replace lightning mark in nav with the brand logo */
.nav__logo{
  height: 28px;
  width: auto;
  margin-right: 10px;
  filter: drop-shadow(0 0 6px rgba(226,191,120,0.35));
}

/* Splash logo */
.splash__logo-img{
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(226,191,120,0.35));
}

/* Replace hero lighting (mesh/grain) with a floating emblem */
.hero{
  background: radial-gradient(
    circle at left center,
    #152B4D 0%,
    #0B0F14 55%,
    #000000 100%
  );
}

/* Ensure emblem positions correctly */
.hero__content{
  position: relative;
}

.hero__emblem{
  position: absolute;
  right: 6%;
  top: 35%;
  height: 140px;
  width: auto;
  opacity: 0.85;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(226,191,120,0.45));
}

@media (max-width: 900px){
  .hero__emblem{
    right: 4%;
    top: 28%;
    height: 110px;
    opacity: 0.75;
  }
}

@media (max-width: 640px){
  .hero__emblem{
    display: none;
  }
}


/* === HERO CONTRAST FIX === */
.hero,
.hero * {
  color: #F5F7FA !important;
}

.hero__sub,
.hero p {
  color: rgba(245,247,250,0.85) !important;
}

.hero__badge,
.section-tag {
  background: rgba(226,191,120,0.12);
  color: #E2BF78 !important;
  border-color: rgba(226,191,120,0.35);
}

/* Ensure text never inherits dark navy */
.hero__content {
  position: relative;
  z-index: 3;
}

/* === VALUE PROPOSITION TEXT VISIBILITY FIX === */
/* Targets the section containing Risk‑First Execution content */

.why,
.why * {
  color: #F5F7FA;
}

.why p {
  color: rgba(245,247,250,0.85);
}

/* === MOBILE NAV POLISH === */
.mobile-overlay .btn {
  margin-top: 18px;
}



.service-outcome {
  font-size: 0.88rem;
  font-weight: 600;
  color: #A8873A;
  font-style: italic;
  margin-top: 10px;
  line-height: 1.5;
}




.hero__positioning {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: heroFade 0.7s ease 1.9s both;
}




.about-story__philosophy {
  font-size: 0.95rem;
  color: #0B1B32;
  font-style: italic;
  font-weight: 500;
  border-left: 3px solid #C9A24D;
  padding-left: 18px;
  margin-top: 8px;
  line-height: 1.75;
}

/* PAGE TRANSITIONS */
body {
  animation: pageFadeIn 0.28s ease both;
}

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

.page-fade-out {
  animation: pageFadeOut 0.28s ease forwards !important;
}

@keyframes pageFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}


/* CLIENT CARD CASCADE */
.client-card.reveal {
  transform: translateY(40px) scale(0.97);
}

.client-card.reveal.visible {
  transform: translateY(0) scale(1);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* CURSOR GLOW */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,162,77,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.3s ease;
  will-change: transform;
}

@media (max-width: 768px) {
  .cursor-glow { display: none; }
}









/* === WHATSAPP / iOS MOBILE OVERLAY ULTRA FIX (PREMIUM DRAWER) === */
.mobile-overlay{
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 99999;

  /* Backdrop */
  background: rgba(8, 16, 28, 0.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  transform: translateZ(0);
}

/* Right drawer panel */
.mobile-overlay::before{
  content:"";
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: radial-gradient(900px 600px at 30% 10%, rgba(201,162,77,0.10), transparent 55%),
              rgba(8, 16, 28, 0.92);
  border-left: 1px solid rgba(255,255,255,0.10);
  box-shadow: -18px 0 60px rgba(0,0,0,0.45);

  transform: translateX(22px);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.mobile-overlay.open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-overlay.open::before{
  transform: translateX(0);
}

/* Close button (inside the drawer) */
.mobile-close{
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  opacity: 0.92;
  z-index: 100000;

  transform: translateX(22px);
}

.mobile-overlay.open .mobile-close{
  transform: translateX(0);
}

.mobile-close:hover{
  transform: translateX(0) translateY(-1px);
  background: rgba(255,255,255,0.10);
}

/* Menu list container (drawer content) */
.mobile-links{
  list-style: none;
  position: absolute;
  top: 92px;
  right: 22px;
  width: min(320px, 82vw);
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  z-index: 100000;

  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.24s ease, transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.mobile-overlay.open .mobile-links{
  opacity: 1;
  transform: translateX(0);
}

.mobile-links li{
  opacity: 0;
  transform: translateY(12px);
}

.mobile-overlay.open .mobile-links li{
  animation: mobileDrawerItemIn 0.50s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-overlay.open .mobile-links li:nth-child(1){ animation-delay: 40ms; }
.mobile-overlay.open .mobile-links li:nth-child(2){ animation-delay: 110ms; }
.mobile-overlay.open .mobile-links li:nth-child(3){ animation-delay: 180ms; }
.mobile-overlay.open .mobile-links li:nth-child(4){ animation-delay: 250ms; }
.mobile-overlay.open .mobile-links li:nth-child(5){ animation-delay: 320ms; }

@keyframes mobileDrawerItemIn{
  to { opacity: 1; transform: translateY(0); }
}

.mobile-links a{
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 650;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  letter-spacing: -0.01em;
  padding: 10px 2px;
}

.mobile-links a:hover{
  color: var(--gold);
  transform: translateY(-1px);
}

/* CTA in menu */
.mobile-links a.btn{
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
}

/* Keep burger clickable above nav */
.nav__burger{
  position: relative;
  z-index: 100000;
}
