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

:root {
  /* ── LIGHTENED BACKGROUND & INK ── */
  --ink:       #1f262f;
  --ink2:      #2a323d;
  --ink3:      #353d4a;
  --ink4:      #4a5368;

  /* ── ENHANCED GOLD PALETTE ── */
  --gold:      #d4b896;
  --gold-lt:   #e8d0a8;
  --gold-dk:   #a88557;
  --gold-glow: rgba(212,184,150,0.12);
  --gold-hover: #e4c8a0;

  /* ── ENHANCED RUST & ACCENT ── */
  --rust:      #c24b2a;
  --rust-lt:   rgba(194,75,42,0.08);
  --rust-bright: #d66644;

  /* ── REFINED NEUTRALS ── */
  --slate:     #2f3a4e;
  --cream:     #f5f0e8;
  --cream-lt:  #fcf9f4;
  --cream-dark: #ede8df;
  --mid:       #8a96a8;

  /* ── OPTIMIZED LINES & BORDERS ── */
  --line:      rgba(212,184,150,0.18);
  --line2:     rgba(212,184,150,0.08);
  --line-subtle: rgba(255,255,255,0.04);

  /* ── TEXT HIERARCHY ── */
  --text-dim:  rgba(245,240,232,0.55);
  --text-mid:  rgba(245,240,232,0.80);
  --text-bright: rgba(245,240,232,0.98);

  /* ── SPACING & RADIUS ── */
  --r:         4px;
  --r-lg:      10px;
  --r-xl:      12px;

  /* ── TYPOGRAPHY ── */
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-ui:      'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  cursor: default;
  will-change: auto;
  padding-top: 90px;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.05; }
.display { font-family: var(--font-display); letter-spacing: 0.06em; line-height: 0.95; }
.syne { font-family: var(--font-body); }

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

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.48s; }
.delay-7 { transition-delay: 0.56s; }
.delay-8 { transition-delay: 0.64s; }

/* ── PREMIUM EFFECTS ── */
/* Headings: solid color (no gradient text — banned anti-pattern) */
h2, h3 {
  color: var(--cream);
  font-weight: 700;
}

/* ── ENHANCED BUTTON STYLING ── */
button, .cta, [class*="btn"] {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
button:hover, .cta:hover, [class*="btn"]:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(212, 184, 150, 0.35),
              0 0 30px rgba(212, 184, 150, 0.2),
              inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ── GOLD BUTTON PREMIUM ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--ink);
  border: none;
  padding: 0.9rem 2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: var(--r-lg);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(212, 184, 150, 0.2);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold-lt));
  box-shadow: 0 16px 40px rgba(212, 184, 150, 0.35);
}

/* ── ENHANCED CARD STYLING ── */
.value-card, .scenario-card, .service-card {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--line-subtle);
  will-change: transform, box-shadow, border-color;
}
.value-card:hover, .scenario-card:hover, .service-card:hover {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(245,240,232,0.08);
  border: 1px solid var(--line);
  transform: translateY(-10px) perspective(1000px) rotateX(2deg);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15),
              0 12px 24px rgba(0,0,0,0.2),
              0 20px 50px rgba(0,0,0,0.25),
              inset 0 1px 0 rgba(255,255,255,0.15),
              0 0 40px rgba(212,184,150,0.15);
}

/* ══ COMPREHENSIVE ANIMATION SUITE ══ */

/* ── HERO ENTRANCE ANIMATIONS ── */
@keyframes heroH1Enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroH1Italic {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroImageScale {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-h1 {
  animation: heroH1Enter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform, opacity;
  letter-spacing: -0.025em;
}
.hero-h1 .italic {
  animation: heroH1Italic 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s forwards;
  opacity: 0;
  will-change: transform, opacity;
  font-style: italic;
}
.hero-eyebrow {
  animation: slideInDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-body {
  animation: slideInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s forwards;
  opacity: 0;
}
.hero-ctas {
  animation: slideInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.16s forwards;
  opacity: 0;
}
.hero-right {
  animation: heroImageScale 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
  opacity: 0;
}

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

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

/* Hero background glow pulse (subtle) */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(212,184,150,0.06), transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: heroGlowPulse 4s ease-in-out infinite;
  opacity: 0.3;
}

/* ── CARD STAGGERED REVEAL ANIMATIONS ── */
@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.service-card, .value-card, .scenario-card, .who-card, .diag-card, .gtsb-layer {
  animation: cardSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform, opacity;
  opacity: 0;
}

/* Stagger delays for cards */
.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.08s; }
.service-card:nth-child(3) { animation-delay: 0.16s; }

.who-card:nth-child(1) { animation-delay: 0s; }
.who-card:nth-child(2) { animation-delay: 0.08s; }
.who-card:nth-child(3) { animation-delay: 0.16s; }
.who-card:nth-child(4) { animation-delay: 0.24s; }

.gtsb-layer:nth-child(1) { animation-delay: 0s; }
.gtsb-layer:nth-child(2) { animation-delay: 0.12s; }
.gtsb-layer:nth-child(3) { animation-delay: 0.24s; }
.gtsb-layer:nth-child(4) { animation-delay: 0.36s; }
.gtsb-layer:nth-child(5) { animation-delay: 0.48s; }

/* ── CARD HOVER GRADIENT ACCENT ── */
@keyframes cardGoldSlide {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.service-card::before, .gtsb-layer::before {
  animation: cardGoldSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) paused;
}

.service-card:hover::before,
.gtsb-layer:hover::before {
  animation: cardGoldSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) running;
}

/* ── CARD NUMBER ROTATION ON HOVER ── */
@keyframes numberRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.service-num, .gtsb-layer-num, .diag-pct {
  transition: opacity 0.3s ease;
}

.service-card:hover .service-num,
.gtsb-layer:hover .gtsb-layer-num {
  animation: numberRotate 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── CARD TILT ON HOVER (3D) ── */
.service-card, .gtsb-layer, .value-card, .scenario-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-3deg) translateZ(10px);
}

/* ── GOLD DIVIDER & EYEBROW ANIMATION ── */
.section-divider, .eyebrow-line {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%);
  animation: goldSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform;
}
@keyframes goldSlide {
  from { transform: scaleX(0); transform-origin: left; opacity: 0; }
  to { transform: scaleX(1); transform-origin: left; opacity: 1; }
}

/* ── FLOATING & PARALLAX EFFECT ── */
.results-stat, .stat-number {
  animation: floatUp 3s ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ── COUNTER ANIMATION (0 → value) ── */
@keyframes counterCount {
  from { --value: 0; }
  to { --value: 1; }
}

.counter {
  animation: counterCount 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  counter-reset: count var(--start-value);
}

/* ── BUTTON PRIMARY PULSE ── */
@keyframes buttonPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.btn-gold, .nav-cta-btn {
  animation: buttonPulse 2.5s ease-in-out infinite;
}

/* ── BUTTON RIPPLE ON CLICK ── */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-gold::after, .nav-cta-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: none;
}

/* ── ARROW BOUNCE ON BUTTON HOVER ── */
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.btn-gold svg, .btn-outline svg {
  animation: arrowBounce 0.4s ease-out paused;
}

.btn-gold:hover svg, .btn-outline:hover svg {
  animation: arrowBounce 0.4s ease-out running;
}

/* ── INPUT FOCUS UNDERLINE SLIDE ── */
@keyframes inputFocusSlide {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  position: relative;
}

.field input::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  animation: inputFocusSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── VALIDATION SHAKE ── */
@keyframes validationShake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
  20%, 40%, 60%, 80% { transform: translateX(8px); }
}

.field input.error,
.field select.error,
.field textarea.error {
  animation: validationShake 0.4s ease-out;
}

/* ── SUCCESS CONFETTI ── */
@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(0) rotateZ(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(100px) rotateZ(360deg) scale(0);
  }
}

/* ── FORM PROGRESS BAR ── */
@keyframes progressFill {
  from { width: 0%; }
  to { width: 100%; }
}

.progress-bar {
  animation: progressFill 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ── NAVIGATION LOGO SPIN ── */
@keyframes logoSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(180deg); }
}

.nav-logo-mark:hover {
  animation: logoSpin 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── DROPDOWN SLIDE DOWN ── */
@keyframes dropdownSlide {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.dropdown-menu {
  animation: dropdownSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) paused;
}

.nav-item.open .dropdown-menu {
  animation: dropdownSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) running;
}

/* ── MOBILE MENU SLIDE IN ── */
@keyframes mobileMenuSlide {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.mobile-nav.open {
  animation: mobileMenuSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── SUBTLE GRADIENT SHIFT (background) ── */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

#gtsb, #results {
  background-size: 200% 200%;
  animation: gradientShift 8s ease-in-out infinite;
}


/* ── FADE IN ANIMATION FOR HERO ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#hero {
  opacity: 0;
}

/* ── CONFETTI FALL MOVEMENT ── */
@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotateZ(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(var(--ty, 100px)) translateX(var(--tx, 0)) rotateZ(360deg) scale(0);
  }
}

/* ── ACCESSIBILITY: PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  @keyframes * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ── OPTIMIZED SPACING & TYPOGRAPHY ── */
section { margin-bottom: 5.5rem !important; }
h1 {
  letter-spacing: -0.025em;
  font-size: 3.5rem;
  line-height: 1.12;
  font-weight: 600;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 2.8rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.015em;
}
h3 {
  font-size: 1.85rem;
  margin-bottom: 1.8rem;
  line-height: 1.18;
  font-weight: 600;
}
p {
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* Gold accent borders on key sections — removed side stripe (banned pattern) */
/* Use full border or background tint on hover instead */

/* ── ENHANCED NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 3.5rem;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-bottom: 1px solid transparent;
  background: rgba(5, 6, 8, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  will-change: background, border-color, box-shadow;
}
nav.scrolled {
  background: rgba(5, 6, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 1rem 3.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 1px 0 var(--line-subtle);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.nav-logo:hover {
  opacity: 0.85;
}
.nav-logo-mark {
  width: 2.4rem; height: 2.4rem;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-logo:hover .nav-logo-mark {
  transform: rotate(180deg);
}
.nav-logo-mark span {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--gold); letter-spacing: 0.05em;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .top {
  font-family: var(--font-display);
  font-size: 1rem; color: var(--dark-text); letter-spacing: 0.12em;
  line-height: 1;
}
.nav-logo-text .sub {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); opacity: 0.8;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(245, 240, 232, 0.7);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.nav-links a:hover {
  color: var(--cream);
  transition: color 0.2s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.75rem 1.6rem;
  border-radius: var(--r-lg); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none; cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(212, 184, 150, 0.2);
}
.nav-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.25), transparent 80%);
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(212, 184, 150, 0.35), 0 0 30px rgba(212, 184, 150, 0.2);
  letter-spacing: 0.16em;
}

/* ── PREMIUM IMAGE STYLING ── */
@keyframes imageHover {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.5s ease;
  will-change: transform, box-shadow;
}
img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2),
              0 24px 48px rgba(0, 0, 0, 0.3),
              0 0 32px rgba(212, 184, 150, 0.1);
}

/* Hero & section images */
.hero-right img,
section img[src*="training"],
section img[src*="coaching"],
section img[src*="strategy"],
section img[src*="hero"] {
  border-radius: var(--r-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
              0 0 1px rgba(212, 184, 150, 0.2);
  backdrop-filter: blur(0.5px);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5.5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  transition: all 0.3s;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px; background: var(--cream);
  border-radius: 2px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 490;
  background: var(--ink); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.mobile-nav.open {
  display: flex; opacity: 1; transform: translateY(0); pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-display); font-size: 2.8rem;
  letter-spacing: 0.08em; color: var(--cream);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mob-cta {
  background: var(--gold); color: var(--ink);
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.9rem 2.5rem; border-radius: 2px; margin-top: 1rem;
}

/* ── DROPDOWN MENU ── */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-text-mid);
  transition: color 0.2s;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
}
.nav-item-toggle:hover {
  color: var(--dark-text);
}
.nav-item-toggle::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-item-toggle:hover::after {
  transform: scaleX(1);
}
.dropdown-toggle-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-item.open .dropdown-toggle-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(12,15,21,0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--r);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 1000;
  margin-top: 0.5rem;
  list-style: none;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), 0 0 1px rgba(212,184,150,0.2);
  will-change: transform, opacity, visibility;
}
.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.dropdown-item {
  display: block;
  padding: 0.75rem 1.2rem;
  color: var(--text-mid);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.dropdown-item:last-child {
  border-bottom: none;
}
.dropdown-item:hover {
  background: rgba(201,169,110,0.08);
  color: var(--gold);
  padding-left: 1.5rem;
}

/* ── ENHANCED HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 85% at 72% 48%, rgba(212,184,150,0.08) 0%, transparent 72%),
    radial-gradient(ellipse 45% 65% at 18% 82%, rgba(194,75,42,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(26,32,48,0.6) 0%, transparent 75%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,184,150,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,184,150,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.7;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 4rem 8rem 5rem; position: relative; z-index: 2;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.hero-eyebrow-line { width: 2.5rem; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 700; line-height: 1.02;
  color: var(--dark-text); margin-bottom: 0.3rem;
}
.hero-h1 .italic { font-style: italic; color: var(--gold); }
.hero-h1-sub {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.8rem);
  letter-spacing: 0.06em; color: var(--cream);
  opacity: 0.12; line-height: 0.9; margin-bottom: 2rem;
  display: block;
}
.hero-body {
  font-size: 1rem; line-height: 1.75; color: var(--dark-text-mid);
  max-width: 44ch; margin-bottom: 3rem; font-weight: 400;
}
.hero-ctas { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 1rem 2rem; border-radius: 2px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--gold-lt); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.25);
}
.btn-gold svg { width: 14px; transition: transform 0.2s; }
.btn-gold:hover svg { transform: translateX(4px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(240,236,227,0.25); color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 1rem 2rem; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s; text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-right {
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-visual {
  position: relative; width: 380px; height: 380px;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.2);
  animation: slowSpin 40s linear infinite;
}
.hero-ring:nth-child(1) { inset: 0; animation-duration: 60s; }
.hero-ring:nth-child(2) { inset: 30px; animation-duration: 45s; animation-direction: reverse; border-color: rgba(200,169,110,0.12); }
.hero-ring:nth-child(3) { inset: 70px; animation-duration: 30s; border-color: rgba(200,169,110,0.08); }
.hero-ring:nth-child(4) { inset: 120px; border-color: rgba(200,169,110,0.15); animation-duration: 20s; animation-direction: reverse; }
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* Dots on rings */
.hero-ring::before {
  content: '';
  position: absolute; top: -3px; left: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); opacity: 0.6;
  transform: translateX(-50%);
}
.hero-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-center-k {
  font-family: var(--font-display);
  font-size: 5rem; color: var(--gold); letter-spacing: 0.1em;
  opacity: 0.9; line-height: 1;
}
.hero-center-sub {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); opacity: 0.5;
  margin-top: 0.2rem;
}
/* Floating labels around rings */
.ring-label {
  position: absolute; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); opacity: 0.5;
  white-space: nowrap;
}

/* Hero stat strip */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; z-index: 3;
  border-top: 1px solid var(--line);
  background: rgba(8,11,15,0.7); backdrop-filter: blur(12px);
}
.hero-stat { flex: 1; padding: 1.4rem 2rem; border-right: 1px solid var(--line); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--gold); letter-spacing: 0.05em; line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim); margin-top: 0.2rem;
}

/* ── COMMON SECTION STYLES ── */
.section-pad { padding: 7rem 5rem; }
.section-pad-sm { padding: 5rem 5rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.eyebrow-line { width: 1.8rem; height: 1px; background: var(--gold); }
.eyebrow-text {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow.rust .eyebrow-line { background: var(--rust); }
.eyebrow.rust .eyebrow-text { color: var(--rust); }

.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700; line-height: 1.05; color: var(--dark-text);
  margin-bottom: 1.2rem;
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-h2.dark {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 50%, var(--rust) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-h2.dark em { color: var(--rust); }

.section-lead {
  font-size: 1rem; line-height: 1.8;
  color: var(--dark-text-mid); max-width: 52ch;
}
.section-lead.dark { color: var(--gold); }

.gold-rule { width: 3rem; height: 2px; background: var(--gold); margin: 1.8rem 0; }
.rust-rule { width: 3rem; height: 2px; background: var(--rust); margin: 1.8rem 0; }

/* ── GTSB EXPLAINER ── */
#gtsb {
  background: var(--slate);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* GTSB */
#gtsb { background: var(--slate); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gtsb-intro { max-width: 70ch; margin-bottom: 3rem; }

/* Acronym strip */
.gtsb-acronym-strip {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.gtsb-letter-block { text-align: center; }
.gtsb-big-letter {
  font-family: var(--font-display); font-size: 4.5rem;
  color: var(--gold); letter-spacing: 0.06em; line-height: 1;
}
.gtsb-letter-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-dim); margin-top: 0.2rem;
}
.gtsb-letter-sep {
  font-family: var(--font-display); font-size: 2rem;
  color: rgba(200,169,110,0.25); padding-bottom: 1.5rem;
}

/* Quote */
.gtsb-core-idea {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem; background: rgba(200,169,110,0.05);
  border-radius: 0 var(--r) var(--r) 0; margin-bottom: 3.5rem;
}
.gtsb-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.05rem; line-height: 1.65; color: var(--cream);
}
.gtsb-quote-attr {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-top: 0.6rem;
}

/* Five layers grid */
.gtsb-layers-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--line); margin-bottom: 3rem;
}
.gtsb-layer {
  background: var(--slate); padding: 1.8rem 1.4rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.gtsb-layer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.gtsb-layer:hover { background: rgba(200,169,110,0.05); }
.gtsb-layer:hover::before { transform: scaleX(1); }
.gtsb-layer-num {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--gold); opacity: 0.18; line-height: 1; margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.gtsb-layer-title {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--cream); margin-bottom: 0.3rem;
}
.gtsb-layer-sub {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); opacity: 0.7;
  margin-bottom: 0.8rem;
}
.gtsb-layer-body { font-size: 0.8rem; line-height: 1.65; color: var(--text-dim); }

/* Bottom strip */
.gtsb-bottom-strip {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem;
  align-items: start; padding-top: 1rem;
}
.gtsb-distinction-title {
  font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--cream); margin-bottom: 0.8rem;
}
.gtsb-distinction-body { font-size: 0.9rem; line-height: 1.75; color: var(--text-dim); }
.gtsb-stat-row {
  display: flex; gap: 1.5rem; margin-bottom: 1.5rem;
}
.gtsb-stat { text-align: center; flex: 1; }
.gtsb-stat-num {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--gold); letter-spacing: 0.04em; line-height: 1;
}
.gtsb-stat-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim); margin-top: 0.2rem;
}
.gtsb-ip-note {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.75rem; color: var(--text-dim); line-height: 1.55;
  background: rgba(200,169,110,0.04); border: 1px solid var(--line);
  border-radius: var(--r); padding: 0.8rem 1rem;
}

@media (max-width: 1100px) {
  .gtsb-layers-grid { grid-template-columns: 1fr 1fr; }
  .gtsb-bottom-strip { grid-template-columns: 1fr; gap: 2rem; }
  .gtsb-acronym-strip { gap: 1rem; }
  .gtsb-big-letter { font-size: 3rem; }
}
@media (max-width: 640px) {
  .gtsb-layers-grid { grid-template-columns: 1fr; }
  .gtsb-stat-row { gap: 0.8rem; }
}


/* ── ABOUT ── */
#about { background: var(--ink2); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start;
}
.about-vision {
  border-left: 3px solid var(--rust);
  padding: 1.2rem 1.5rem;
  background: rgba(194,75,42,0.04);
  border-radius: 0 var(--r) var(--r) 0;
  margin: 1.8rem 0 2rem;
}
.about-vision p {
  font-family: var(--font-serif);
  font-style: italic; font-size: 1.05rem;
  line-height: 1.65; color: var(--gold);
}
.about-director {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(8,11,15,0.08); border-radius: var(--r);
  background: white; margin-top: 2rem;
}
.director-avatar {
  width: 3rem; height: 3rem; border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.director-avatar-img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.director-avatar span {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--ink); letter-spacing: 0.05em;
}
.director-info {}
.director-name {
  font-size: 0.88rem; font-weight: 700; color: var(--ink); letter-spacing: 0.02em;
}
.director-role {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rust); margin-top: 0.1rem;
}
.director-email {
  font-size: 0.78rem; color: var(--mid); margin-top: 0.2rem;
}
.director-email a { color: var(--gold-dk); }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.value-card {
  padding: 1.2rem 1.4rem; border: 1px solid rgba(8,11,15,0.07);
  border-radius: var(--r); background: white;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  border-color: var(--gold-dk);
  box-shadow: 0 4px 16px rgba(154,125,68,0.1);
}
.value-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 0.4rem;
}
.value-body { font-size: 0.82rem; line-height: 1.6; color: rgba(242,237,228,0.65); }

/* ── WHY ── */
#why { background: var(--ink2); border-top: 1px solid var(--line2); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.pain-list { display: flex; flex-direction: column; gap: 1rem; }
.pain-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 1.4rem; border: 1px solid var(--line2);
  border-radius: var(--r); background: rgba(200,169,110,0.02);
  transition: border-color 0.3s, background 0.3s;
}
.pain-item:hover { border-color: rgba(194,75,42,0.3); background: rgba(194,75,42,0.04); }
.pain-dot {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--rust); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 0.1rem;
}
.pain-dot svg { width: 11px; color: white; }
.pain-text-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 0.3rem;
}
.pain-text-body { font-size: 0.86rem; line-height: 1.6; color: var(--text-dim); }
.why-stat-highlight {
  background: rgba(200,169,110,0.06); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.4rem 1.6rem; margin-top: 2rem;
}
.why-stat-num {
  font-family: var(--font-display);
  font-size: 3rem; color: var(--gold); letter-spacing: 0.04em; line-height: 1;
}
.why-stat-text { font-size: 0.85rem; line-height: 1.6; color: var(--text-dim); margin-top: 0.3rem; }

/* ── SERVICES ── */
#services { background: var(--ink); border-top: 1px solid var(--line2); }
.services-intro { max-width: 60ch; margin-bottom: 4rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
}
.service-card {
  background: var(--ink); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: rgba(200,169,110,0.04); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display); font-size: 3.5rem;
  color: var(--gold); opacity: 0.1; line-height: 1; margin-bottom: 1rem;
}
.service-title {
  font-family: var(--font-serif); font-size: 1.3rem;
  color: var(--dark-text); margin-bottom: 0.7rem; line-height: 1.2;
}
.service-desc { font-size: 0.84rem; line-height: 1.75; color: var(--dark-text-mid); }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.service-tag {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-dk);
  border: 1px solid rgba(200,169,110,0.2); padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-top: 1.2rem;
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover .service-link { opacity: 1; }

/* ── PROCESS / METHOD ── */
#method {
  background: var(--slate);
  border-top: 1px solid var(--line);
}
.method-inner {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 7rem; align-items: start;
}
.method-sticky { position: sticky; top: 7rem; }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 3.5rem 1fr;
  gap: 1.4rem; padding: 2rem 0;
  border-bottom: 1px solid rgba(200,169,110,0.1);
  opacity: 0.45; transition: opacity 0.3s;
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }
.step:hover { opacity: 1; }
.step-num {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--gold); line-height: 1;
}
.step-title {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--dark-text); margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.84rem; line-height: 1.7; color: var(--dark-text-mid); }

/* ── DIAGNOSTICS ── */
#diagnostics { background: var(--ink); border-top: 1px solid var(--line2); }
.diag-header { max-width: 58ch; margin-bottom: 3.5rem; }
.diag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line2); }
.diag-card {
  background: var(--ink); padding: 1.8rem;
  transition: background 0.3s;
}
.diag-card:hover { background: rgba(200,169,110,0.04); }
.diag-pct {
  font-family: var(--font-display); font-size: 2.8rem;
  color: var(--gold); opacity: 0.35; line-height: 1; margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.diag-title {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--cream); margin-bottom: 0.4rem;
}
.diag-desc { font-size: 0.8rem; line-height: 1.65; color: var(--text-dim); }
.diag-bar { height: 2px; background: var(--line2); margin-top: 1rem; border-radius: 1px; overflow: hidden; }
.diag-bar-fill { height: 100%; background: var(--gold); border-radius: 1px; transition: width 1s ease; }

/* ── RESULTS (Startup stats) ── */
#results {
  background: var(--slate);
}
.results-intro { text-align: center; max-width: 55ch; margin: 0 auto 4rem; }
.results-intro .section-h2 { color: var(--ink); }
.results-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  background: rgba(8,11,15,0.08); margin-bottom: 4rem;
}
.result-stat {
  background: var(--cream-lt); padding: 2.5rem 2rem; text-align: center;
  transition: background 0.3s;
}
.result-stat:hover { background: white; }
.result-num {
  font-family: var(--font-display); font-size: 3.2rem;
  color: var(--rust); letter-spacing: 0.04em; line-height: 1;
}
.result-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-top: 0.4rem; line-height: 1.4;
}
.results-scenarios { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.scenario-card {
  background: white; border: 1px solid rgba(8,11,15,0.08);
  border-radius: var(--r); padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.scenario-card:hover {
  box-shadow: 0 8px 32px rgba(8,11,15,0.1);
  transform: translateY(-3px);
}
.scenario-industry {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 0.8rem;
}
.scenario-title {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--ink); margin-bottom: 1rem; line-height: 1.3;
}
.scenario-metrics { display: flex; flex-direction: column; gap: 0.6rem; }
.scenario-metric { display: flex; align-items: flex-start; gap: 0.6rem; }
.scenario-metric-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-dk); flex-shrink: 0; margin-top: 0.35rem;
}
.scenario-metric-text { font-size: 0.83rem; line-height: 1.5; color: rgba(242,237,228,0.8); }
.scenario-metric-text strong { color: var(--ink); font-weight: 700; }
.scenario-note {
  font-size: 0.7rem; color: rgba(242,237,228,0.35);
  margin-top: 1.2rem; font-style: italic; border-top: 1px solid rgba(8,11,15,0.06);
  padding-top: 0.8rem;
}

/* ── PRICING GATE ── */
#pricing { background: var(--slate); border-top: 1px solid var(--line); }
.pricing-gate-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.pricing-gate-card {
  background: rgba(240,236,227,0.03); border: 1px solid var(--line);
  border-radius: 8px; padding: 2.5rem; position: relative; overflow: hidden;
}
.pricing-gate-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), transparent);
}
.gate-doc-icon {
  width: 3rem; height: 3rem; border: 1px solid var(--line);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.gate-doc-icon svg { width: 18px; color: var(--gold); }
.gate-title {
  font-family: var(--font-serif); font-size: 1.4rem;
  color: var(--cream); margin-bottom: 0.4rem;
}
.gate-subtitle { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 2rem; letter-spacing: 0.04em; }
.gate-error-msg {
  background: rgba(194,75,42,0.1); border: 1px solid rgba(194,75,42,0.35);
  color: #e88a72; font-size: 0.82rem; line-height: 1.5;
  padding: 0.75rem 1rem; border-radius: var(--r); margin-bottom: 1rem;
}
.gate-form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-dim);
}
.field input, .field select, .field textarea {
  background: rgba(240,236,227,0.05);
  border: 1px solid rgba(200,169,110,0.2);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: var(--r);
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  appearance: none;
  will-change: border-color, background;
  position: relative;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: rgba(200,169,110,0.08);
  box-shadow: 0 0 12px rgba(212,184,150,0.15), inset 0 0 4px rgba(212,184,150,0.08);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(240,236,227,0.2); }
.field select option { background: var(--slate); }
.field textarea { resize: vertical; min-height: 100px; }
.field-hint { font-size: 0.68rem; color: rgba(240,236,227,0.28); margin-top: 0.2rem; }

/* OTP styles */
.otp-badge {
  display: inline-block; background: rgba(200,169,110,0.12);
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.2rem 0.7rem;
  border-radius: 2px; margin-bottom: 0.8rem;
}
.otp-title {
  font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--cream); margin-bottom: 0.5rem;
}
.otp-desc { font-size: 0.84rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 1.4rem; }
@keyframes otpSpinner {
  0%, 100% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.otp-input {
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.5em;
  background: rgba(200,169,110,0.05);
  border: 2px solid rgba(200,169,110,0.4);
  color: var(--gold);
  padding: 1rem;
  border-radius: var(--r);
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: border-color, background;
}
.otp-input:focus {
  border-color: var(--gold);
  background: rgba(200,169,110,0.1);
  box-shadow: 0 0 16px rgba(212,184,150,0.2), inset 0 0 6px rgba(212,184,150,0.1);
}
.otp-input.loading {
  animation: otpSpinner 1s linear infinite;
}
.otp-timer-row { display: flex; align-items: center; gap: 0.6rem; margin: 0.8rem 0 1.2rem; }
.otp-timer-label { font-size: 0.72rem; color: var(--text-dim); }
.otp-timer-count { font-family: var(--font-display); font-size: 1rem; color: var(--gold); letter-spacing: 0.08em; }
.otp-actions { display: flex; flex-direction: column; gap: 0.7rem; }
.gate-expired-msg { font-size: 0.8rem; color: var(--text-dim); }
.link-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.76rem;
  color: rgba(240,236,227,0.4); text-decoration: underline;
  padding: 0; transition: color 0.2s;
}
.link-btn:hover { color: var(--gold); }
.gate-success { text-align: center; padding: 1rem 0; }
.gate-success-icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: rgba(200,169,110,0.1); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.gate-success-icon svg { width: 22px; color: var(--gold); }
.gate-success-title {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--gold); letter-spacing: 0.06em; margin-bottom: 0.6rem;
}
.gate-success-msg { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 1.5rem; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: white;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.8rem 1.6rem;
  border-radius: var(--r); transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; text-decoration: none;
}
.whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

.pricing-highlights { display: flex; flex-direction: column; gap: 1.2rem; padding-top: 0.5rem; }
.highlight-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem 1.4rem; border: 1px solid var(--line);
  border-radius: var(--r); transition: border-color 0.3s;
}
.highlight-item:hover { border-color: var(--gold); }
.highlight-num {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--gold); letter-spacing: 0.04em; line-height: 1;
  min-width: 3.5rem; flex-shrink: 0;
}
.highlight-label {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim);
}
.highlight-teaser {
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.2rem 1.4rem;
}
.highlight-teaser-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.8rem;
}
.highlight-teaser-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.highlight-teaser-list li {
  font-size: 0.82rem; color: var(--text-dim);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.highlight-teaser-list li::before { content: '→'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ── WHO WE SERVE ── */
#who { background: var(--ink); border-top: 1px solid var(--line2); }
.who-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--line2); margin-top: 3.5rem;
}
.who-card {
  background: var(--ink); padding: 2.5rem 1.8rem;
  transition: background 0.3s;
}
.who-card:hover { background: rgba(200,169,110,0.04); }
.who-icon {
  width: 2.8rem; height: 2.8rem; border: 1px solid var(--line);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.who-icon svg { width: 16px; color: var(--gold); }
.who-title {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--cream); margin-bottom: 0.5rem;
}
.who-desc { font-size: 0.82rem; line-height: 1.7; color: var(--text-dim); }

/* ── CONNECT ── */
#connect { background: var(--ink2); border-top: 1px solid var(--line2); }
.social-grid { display: flex; flex-direction: column; gap: 1rem; max-width: 680px; margin-top: 3rem; }
.social-card {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.4rem 1.8rem; border: 1px solid var(--line2);
  border-radius: var(--r); text-decoration: none; color: var(--cream);
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.social-card:hover {
  border-color: var(--gold); background: rgba(200,169,110,0.04);
  transform: translateX(6px);
}
.social-icon {
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.social-icon svg { width: 20px; }
.linkedin-icon { background: #0A66C2; color: white; }
.facebook-icon { background: #1877F2; color: white; }
.instagram-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-info { flex: 1; }
.social-name {
  font-family: var(--font-display); font-size: 1.2rem;
  letter-spacing: 0.06em; color: var(--cream); line-height: 1; margin-bottom: 0.2rem;
}
.social-handle { font-size: 0.76rem; color: var(--gold); letter-spacing: 0.04em; margin-bottom: 0.25rem; }
.social-desc { font-size: 0.78rem; color: var(--text-dim); }
.social-arrow { font-size: 1.1rem; color: rgba(200,169,110,0.3); transition: color 0.2s, transform 0.2s; }
.social-card:hover .social-arrow { color: var(--gold); transform: translateX(4px); }

/* ── CTA STRIP ── */
#cta {
  background: var(--gold); padding: 5.5rem 5rem;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 3rem; overflow: hidden; position: relative;
}
#cta::before {
  content: 'KCS';
  position: absolute; right: 4rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 18rem;
  color: rgba(8,11,15,0.06); letter-spacing: 0.1em; line-height: 1;
  pointer-events: none;
}
.cta-big {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--ink); font-weight: 700; line-height: 1.1;
}
.cta-big em { font-style: italic; }
.cta-sub { font-size: 0.92rem; color: rgba(242,237,228,0.65); margin-top: 0.8rem; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--ink); color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 1.1rem 2.2rem;
  border-radius: 2px; white-space: nowrap;
  transition: background 0.2s, transform 0.2s; text-decoration: none;
  border: none; cursor: pointer;
}
.btn-dark:hover { background: var(--slate); transform: translateY(-2px); }

/* ── CONTACT ── */
#contact {
  background: var(--ink); border-top: 1px solid var(--line2);
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem;
}
.contact-info { padding-top: 0.5rem; }
.info-items { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2.5rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-item-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.info-item-icon svg { width: 16px; }
.info-item-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 0.2rem;
}
.info-item-body { font-size: 0.86rem; color: var(--text-dim); line-height: 1.5; }
.info-item-body a { color: var(--gold); }

.contact-form-wrap { display: flex; flex-direction: column; gap: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-btn {
  align-self: flex-start;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; border: none; cursor: pointer;
  padding: 1rem 2.2rem; border-radius: 2px; margin-top: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}
.form-btn:hover { background: var(--gold-lt); transform: translateY(-2px); }
.form-status {
  font-size: 0.82rem; line-height: 1.5; padding: 0.8rem 1rem;
  border-radius: var(--r); display: none;
}
.form-status.success {
  display: block;
  background: rgba(200,169,110,0.1); border: 1px solid var(--gold);
  color: var(--gold);
}
.form-status.error {
  display: block;
  background: rgba(194,75,42,0.1); border: 1px solid var(--rust);
  color: #e88a72;
}
.popia-note {
  font-size: 0.7rem; color: rgba(240,236,227,0.25); line-height: 1.5;
  margin-top: 0.5rem;
}

/* ── ENHANCED FOOTER ── */
footer {
  background: linear-gradient(180deg, rgba(5,6,8,0.6) 0%, #04060a 100%);
  padding: 3.5rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line-subtle);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.footer-logo { display: flex; align-items: center; gap: 0.7rem; }
.footer-logo-k {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--gold); letter-spacing: 0.06em;
}
.footer-logo-name {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,236,227,0.3); line-height: 1.3;
}
.footer-copy { font-size: 0.72rem; color: rgba(240,236,227,0.25); letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.68rem; color: rgba(240,236,227,0.35);
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-legal { font-size: 0.65rem; color: rgba(240,236,227,0.2); text-align: center; padding: 1rem 5rem; background: #04060a; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 998;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.8rem;
}
@keyframes waBubbleScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.wa-bubble {
  background: #25D366;
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  border: none;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
.wa-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37,211,102,0.5);
}
.wa-bubble svg { width: 22px; }
.wa-pulse {
  position: absolute; top: 0; right: 0;
  width: 0.85rem; height: 0.85rem; background: var(--rust);
  border-radius: 50%; border: 2px solid var(--ink);
  animation: waPulse 2.2s infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.wa-chat-box {
  background: #111820; border: 1px solid var(--line);
  border-radius: 12px 12px 0 12px;
  width: 310px; display: none; flex-direction: column;
  box-shadow: 0 12px 50px rgba(0,0,0,0.6);
  overflow: hidden; animation: waIn 0.25s ease;
}
.wa-chat-box.open { display: flex; }
@keyframes waIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-header {
  background: #075E54; padding: 0.9rem 1.1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.wa-avatar {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-avatar svg { width: 16px; color: white; }
.wa-header-info { flex: 1; }
.wa-header-name { font-size: 0.86rem; font-weight: 600; color: white; line-height: 1.2; }
.wa-header-status { font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.wa-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.6); font-size: 1rem; transition: color 0.2s; }
.wa-close:hover { color: white; }
.wa-body { padding: 1rem; background: #0d1117; }
.wa-msg {
  background: #1e2d24; border-radius: 0 8px 8px 8px;
  padding: 0.7rem 0.9rem; display: inline-block; max-width: 88%;
}
.wa-msg-text { font-size: 0.83rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.wa-msg-time { font-size: 0.62rem; color: rgba(255,255,255,0.3); margin-top: 0.3rem; text-align: right; }
.wa-quick { padding: 0.5rem 0.8rem 0.8rem; background: #0d1117; display: flex; flex-direction: column; gap: 0.4rem; }
.wa-qbtn {
  background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.2);
  color: #25D366; border-radius: 6px; padding: 0.5rem 0.8rem;
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 500;
  cursor: pointer; text-align: left;
  transition: background 0.2s; display: flex; align-items: center; gap: 0.5rem;
}
.wa-qbtn:hover { background: rgba(37,211,102,0.16); }
.wa-input-row {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 0.8rem; background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.wa-input {
  flex: 1; background: #2a2a2a; border: none; border-radius: 20px;
  color: white; font-family: var(--font-body); font-size: 0.8rem;
  padding: 0.5rem 0.9rem; outline: none;
}
.wa-input::placeholder { color: rgba(255,255,255,0.25); }
.wa-send {
  background: #25D366; border: none; cursor: pointer;
  width: 2rem; height: 2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s;
}
.wa-send:hover { background: #1ebe5d; }
.wa-send svg { width: 13px; color: white; }
.wa-footnote { font-size: 0.62rem; color: rgba(255,255,255,0.18); text-align: center; padding: 0.4rem; background: #0d1117; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 5rem 2.5rem; }
  .section-pad-sm { padding: 4rem 2.5rem; }
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 8rem 2.5rem 3rem; }
  .hero-right { min-height: 45vh; }
  .hero-visual { width: 260px; height: 260px; }
  .hero-center-k { font-size: 3.5rem; }
  .gtsb-inner, .about-inner, .why-inner, .method-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid, .diag-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .results-stats { grid-template-columns: 1fr 1fr; }
  .results-scenarios { grid-template-columns: 1fr; }
  .pricing-gate-inner { grid-template-columns: 1fr; }
  #cta { grid-template-columns: 1fr; }
  #cta::before { display: none; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 1rem 1.5rem; }
  .services-grid, .diag-grid, .who-grid { grid-template-columns: 1fr; }
  .results-stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; }
  footer { padding: 2rem 1.5rem; }
  .footer-legal { padding: 1rem 1.5rem; }
  .wa-chat-box { width: 280px; }
}

/* ══════════════════════════════════════════════════════════
   PREMIUM OPTIMIZATION ENHANCEMENTS
   Color • Typography • Spacing • Navigation • Imagery
══════════════════════════════════════════════════════════ */

/* ── ENHANCED TEXT CONTRAST & READABILITY ── */
.section-lead {
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.3px;
}
.dark {
  color: var(--ink) !important;
}
.dark .section-lead {
  color: rgba(6,7,9,0.75);
}

/* ── IMPROVED EYEBROW STYLING ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}
.eyebrow-text {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
}
.eyebrow-line {
  width: 2.8rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
}

/* ── SECTION DIVIDERS ── */
.gold-rule, .rust-rule {
  height: 2px;
  margin: 1.8rem 0 2.5rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.rust-rule {
  background: linear-gradient(90deg, var(--rust), transparent);
}

/* ── GTSB UPDATED ── */
.gtsb-acronym { display:flex; flex-direction:column; gap:1.2rem; }
.gtsb-letter-row { display:flex; align-items:flex-start; gap:1rem; padding:0.8rem 0; border-bottom:1px solid var(--line2); }
.gtsb-letter-row:last-child { border-bottom:none; }
.gtsb-big-ltr { font-family:var(--font-display); font-size:3rem; color:var(--gold); letter-spacing:0.06em; line-height:1; min-width:2.5rem; flex-shrink:0; }
.gtsb-ltr-word { font-size:0.9rem; font-weight:700; color:var(--cream); margin-bottom:0.2rem; }
.gtsb-ltr-desc { font-size:0.8rem; line-height:1.55; color:var(--text-dim); }
.gtsb-quote-block { background:var(--slate); border:1px solid var(--line); border-radius:6px; padding:2.5rem 3rem; display:flex; flex-direction:column; align-items:flex-start; margin-bottom:1rem; position:relative; overflow:hidden; }
.gtsb-quote-block::before { content:''; position:absolute; top:0; left:0; width:4px; height:100%; background:linear-gradient(180deg,var(--gold),var(--gold-dk)); }
.gtsb-quote-line { width:2.5rem; height:2px; background:var(--gold); margin-bottom:1.2rem; }
.gtsb-blockquote { font-family:var(--font-serif); font-style:italic; font-size:1.15rem; color:var(--cream); line-height:1.7; max-width:80ch; margin:0 0 1rem; }
.gtsb-quote-attr { font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); }
.gtsb-layers { display:flex; flex-direction:column; gap:1px; background:var(--line2); border:1px solid var(--line2); border-radius:6px; overflow:hidden; }
.gtsb-layer-item { display:flex; align-items:flex-start; gap:1.5rem; padding:1.8rem 2rem; background:var(--ink2); transition:background 0.3s; }
.gtsb-layer-item:hover { background:rgba(200,169,110,0.04); }
.gtsb-layer-num { font-family:var(--font-display); font-size:2.5rem; line-height:1; flex-shrink:0; min-width:3rem; padding-top:0.1rem; opacity:0.6; }
.gtsb-layer-title { font-family:var(--font-serif); font-size:1.1rem; color:var(--cream); margin-bottom:0.2rem; font-weight:700; }
.gtsb-layer-sub { font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:0.6rem; }
.gtsb-layer-text { font-size:0.86rem; line-height:1.7; color:var(--text-dim); margin-bottom:0.8rem; }
.gtsb-layer-lock { display:flex; align-items:center; gap:0.4rem; font-size:0.68rem; color:rgba(200,169,110,0.4); letter-spacing:0.06em; }
.gtsb-bottom { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:start; padding:2.5rem; background:var(--slate); border:1px solid var(--line); border-radius:6px; }
.gtsb-distinction-title { font-family:var(--font-serif); font-size:1.1rem; color:var(--cream); font-weight:700; margin-bottom:0.8rem; }
.gtsb-distinction-body { font-size:0.86rem; line-height:1.75; color:var(--text-dim); }
.gtsb-stat-row { display:flex; gap:2rem; margin-bottom:1.5rem; }
.gtsb-stat-num { font-family:var(--font-display); font-size:2.2rem; color:var(--gold); letter-spacing:0.04em; line-height:1; }
.gtsb-stat-label { font-size:0.65rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-dim); margin-top:0.2rem; }
.gtsb-ip-note { display:flex; align-items:flex-start; gap:0.6rem; font-size:0.76rem; color:var(--text-dim); line-height:1.55; padding:0.8rem; background:rgba(200,169,110,0.04); border:1px solid var(--line2); border-radius:4px; }
@media (max-width:1100px) {
  .gtsb-bottom { grid-template-columns:1fr; }
}


/* ══════════════════════════════════════════════
   UX PRO MAX ENHANCEMENTS
══════════════════════════════════════════════ */



/* Scroll progress */
.kcs-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-lt) 100%);
  z-index: 600; width: 0%;
  box-shadow: 0 0 10px rgba(201,169,110,0.6), 0 0 20px rgba(201,169,110,0.2);
  transition: width 0.08s linear;
}

/* Page reveal overlay */
.kcs-curtain {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink2);
  transform-origin: bottom;
  animation: curtainUp 0.9s cubic-bezier(0.77,0,0.18,1) 0.1s forwards;
}
@keyframes curtainUp {
  0%   { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(100% 0 0 0); }
}

/* Enhanced reveal animations */
.reveal, .reveal-left, .reveal-right {
  transition: opacity 0.9s cubic-bezier(.25,.8,.25,1),
              transform 0.9s cubic-bezier(.25,.8,.25,1);
}
.reveal.visible        { opacity: 1; transform: translateY(0); }
.reveal-left.visible   { opacity: 1; transform: translateX(0); }
.reveal-right.visible  { opacity: 1; transform: translateX(0); }

/* ── HERO OVERHAUL ── */
.hero-left { padding-bottom: 9rem; }
.hero-h1 {
  font-family: var(--font-serif) !important;
  font-size: clamp(3.8rem, 6vw, 6rem) !important;
  font-weight: 600;
  line-height: 1.06 !important;
  letter-spacing: -0.02em;
}
.hero-h1 .italic {
  font-style: italic;
  font-weight: 300;
  display: block;
  font-size: 1.15em;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.hero-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.hero-eyebrow-text {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
}
.hero-stat-num {
  font-family: var(--font-display) !important;
  font-size: 2rem;
  letter-spacing: 0.08em;
}
.hero-stat-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

/* Animated hero background */
#hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 55% at 75% 45%, rgba(201,169,110,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 75%, rgba(194,75,42,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26,32,48,0.8) 0%, transparent 70%);
  animation: heroBg 12s ease-in-out infinite alternate;
}
@keyframes heroBg {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Hero ring animation enhancement */
.hero-ring { animation: slowSpin 60s linear infinite; }
.hero-ring:nth-child(1) { animation-duration: 80s; border-color: rgba(201,169,110,0.18); }
.hero-ring:nth-child(2) { animation-direction: reverse; animation-duration: 55s; border-color: rgba(201,169,110,0.1); }
.hero-ring:nth-child(3) { animation-duration: 40s; border-color: rgba(201,169,110,0.07); }
.hero-ring:nth-child(4) { animation-direction: reverse; animation-duration: 25s; border-color: rgba(201,169,110,0.14); }

/* ── TYPOGRAPHY UPGRADES ── */
.section-h2 {
  font-family: var(--font-serif) !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08 !important;
}
.section-h2 em {
  font-style: italic;
  font-weight: 300;
}
.section-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.85;
  letter-spacing: 0.008em;
}
.eyebrow-text {
  font-family: var(--font-ui);
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  font-weight: 500;
}

/* ── NAV TYPOGRAPHY ── */
.nav-logo-text .top { font-family: var(--font-display); letter-spacing: 0.14em; }
.nav-logo-text .sub { font-family: var(--font-ui); letter-spacing: 0.2em; font-size: 0.58rem; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.nav-cta-btn { font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.16em; }

/* ── ENHANCED NAV ── */
nav.scrolled {
  background: rgba(6,7,9,0.96) !important;
  box-shadow: 0 1px 0 var(--line), 0 8px 32px rgba(0,0,0,0.5);
}

/* ── SECTION TAGS UPGRADE ── */
.section-tag::before { background: var(--gold); opacity: 0.7; }

/* ── SERVICE CARDS ── */
.service-card {
  transition: background 0.4s ease, transform 0.3s ease;
}
.service-card:hover {
  background: rgba(201,169,110,0.05) !important;
  transform: translateY(-2px);
}
.service-title {
  font-family: var(--font-serif) !important;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.service-desc {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  font-size: 0.86rem;
}

/* ── GTSB SECTION ── */
.gtsb-blockquote {
  font-family: var(--font-serif) !important;
  font-size: 1.25rem !important;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75 !important;
}
.gtsb-ltr-word { font-family: var(--font-ui) !important; letter-spacing: 0.04em; }
.gtsb-big-ltr {
  font-family: var(--font-display) !important;
  font-size: 3.2rem !important;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gtsb-layer-item {
  transition: background 0.4s ease, transform 0.3s ease;
  border-left: 2px solid transparent;
}
.gtsb-layer-item:hover {
  background: rgba(201,169,110,0.05) !important;
  border-left-color: var(--gold);
  transform: translateX(4px);
}
.gtsb-layer-title {
  font-family: var(--font-serif) !important;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.gtsb-layer-sub { font-family: var(--font-ui) !important; letter-spacing: 0.1em; }

/* ── ABOUT / VALUES ── */
.value-card {
  transition: border-color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.about-vision p {
  font-family: var(--font-serif) !important;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
}

/* ── METHOD STEPS ── */
.step-title {
  font-family: var(--font-serif) !important;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.step-desc { font-family: var(--font-body); font-weight: 300; line-height: 1.75; }
.step { transition: opacity 0.4s ease; }
.step:hover { opacity: 1 !important; }
.step-num { font-family: var(--font-display) !important; }

/* ── DIAGNOSTICS ── */
.diag-title {
  font-family: var(--font-serif) !important;
  font-size: 1.05rem;
  font-weight: 600;
}
.diag-bar-fill {
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
  box-shadow: 0 0 8px rgba(201,169,110,0.35);
  animation: barGrow 1.5s cubic-bezier(.25,.8,.25,1) forwards;
}
@keyframes barGrow { from { width: 0 !important; } }

/* ── WHO WE SERVE ── */
.who-title { font-family: var(--font-serif) !important; font-weight: 600; }
.who-card {
  transition: background 0.4s ease, transform 0.3s ease;
  position: relative; overflow: hidden;
}
.who-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.who-card:hover::before { transform: scaleX(1); }
.who-card:hover { transform: translateY(-3px); }

/* ── CTA STRIP ── */
.cta-big {
  font-family: var(--font-serif) !important;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem) !important;
  font-weight: 600;
  line-height: 1.12 !important;
  letter-spacing: -0.02em;
}
.cta-big em { font-style: italic; font-weight: 300; }

/* ── ENHANCED CONTACT FORM ── */
.info-item-title {
  font-family: var(--font-ui);
  letter-spacing: 0.16em;
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 600;
}
.field label {
  font-family: var(--font-ui);
  letter-spacing: 0.18em;
  font-size: 0.64rem;
  color: var(--text-bright);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-weight: 300;
  background: rgba(245,240,232,0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0.9rem 1.1rem;
  color: var(--cream);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.field input:hover, .field select:hover, .field textarea:hover {
  background: rgba(245,240,232,0.06);
  border-color: var(--line);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: rgba(245,240,232,0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,184,150,0.1),
              0 0 20px rgba(212,184,150,0.08);
}

/* ── PREMIUM BUTTON EFFECTS ── */
.btn-gold {
  font-family: var(--font-ui) !important;
  letter-spacing: 0.15em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(212, 184, 150, 0.25);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%) skewX(-12deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-gold:hover::before {
  transform: translateX(100%) skewX(-12deg);
}
.btn-outline {
  font-family: var(--font-ui) !important;
  letter-spacing: 0.15em;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  padding: 0.75rem 1.8rem;
  border-radius: var(--r-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline:hover {
  background: rgba(212, 184, 150, 0.1);
  border-color: var(--gold-lt);
  color: var(--gold-lt);
}

/* ── ENHANCED SPACING ── */
.section-pad {
  padding: 5.5rem 4rem !important;
}
.section-pad-sm {
  padding: 4rem 4rem !important;
}

/* ── ENHANCED TABLE STYLING ── */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
table th {
  background: rgba(212, 184, 150, 0.08);
  color: var(--gold);
  padding: 1rem;
  text-align: left;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.12em;
  border-bottom: 2px solid var(--line);
}
table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line-subtle);
  color: var(--text-mid);
}
table tr:hover {
  background: rgba(212, 184, 150, 0.04);
}

/* ── IMPROVED LIST STYLING ── */
ul, ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
li {
  margin: 0.8rem 0;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ── PREMIUM FOOTER ── */
.footer-logo-k {
  font-family: var(--font-display) !important;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.footer-links a {
  font-family: var(--font-ui);
  letter-spacing: 0.14em;
  font-size: 0.67rem;
  color: rgba(245,240,232,0.6);
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.45);
}

/* ── SOCIAL CARDS ── */
.social-name { font-family: var(--font-display) !important; }
.social-card {
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.3s ease;
}

/* ── PRICING GATE ── */
.gate-title { font-family: var(--font-serif) !important; font-size: 1.45rem; font-weight: 600; }
.otp-title { font-family: var(--font-serif) !important; }
.otp-input { font-family: var(--font-display) !important; }

/* ── GATE SUCCESS ── */
.gate-success-title { font-family: var(--font-display) !important; }

/* ── WHATSAPP WIDGET ── */
.wa-header-name { font-family: var(--font-ui); font-weight: 600; }
.wa-qbtn { font-family: var(--font-ui); font-size: 0.74rem; }

/* ── MOBILE NAV ── */
.mobile-nav a { font-family: var(--font-display) !important; font-size: 3rem; letter-spacing: 0.1em; }

/* ── MICRO-INTERACTIONS ── */
a, button { transition-property: color, background, border-color, opacity, transform, box-shadow; transition-duration: 0.25s; transition-timing-function: ease; }

/* Animated underline for nav links */
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Gold shimmer on hover for stat cards */
.hero-stat {
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
}
.hero-stat::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.06), transparent);
  transition: left 0.6s ease;
}
.hero-stat:hover::after { left: 150%; }

/* ── SCROLLBAR REFINEMENT ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink2); }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,169,110,0.45); }

/* ── SELECTION ── */
::selection { background: rgba(201,169,110,0.2); color: var(--cream); }


.scenario-cite {
  display: inline;
  font-size: 0.72rem;
  color: var(--gold-dk);
  font-style: italic;
  margin-left: 0.3rem;
  opacity: 0.8;
}
.result-source {
  font-size: 0.64rem;
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
  opacity: 0.7;
}


/* ── RESULTS SECTION DARK REPAINT ── */
#results .section-h2.dark        { color: var(--cream); }
#results .section-h2.dark em     { color: var(--gold); font-style: italic; }
#results .section-lead.dark      { color: var(--text-mid); }
#results .eyebrow.rust .eyebrow-line { background: var(--gold) !important; }
#results .eyebrow.rust .eyebrow-text { color: var(--gold) !important; }
#results .results-disclaimer     {
  background: rgba(201,169,110,0.06) !important;
  border-color: var(--line) !important;
}
#results .results-disclaimer p   { color: var(--text-dim); }

/* Result stat cards ,  on dark bg */
#results .result-stat {
  background: var(--ink3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.8rem 1.6rem;
  transition: border-color 0.3s, transform 0.2s;
}
#results .result-stat:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
#results .result-num  { color: var(--gold); }
#results .result-label {
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}
#results .result-source {
  color: rgba(201,169,110,0.45);
  font-size: 0.62rem;
}

/* Scenario cards ,  on dark bg */
#results .scenario-card {
  background: var(--ink3);
  border: 1px solid var(--line2);
  border-radius: var(--r);
}
#results .scenario-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-3px);
  border-color: var(--line);
}
#results .scenario-industry { color: var(--gold); }
#results .scenario-title    { color: var(--cream); font-family: var(--font-serif); }
#results .scenario-metric-dot  { background: var(--gold-dk); }
#results .scenario-metric-text { color: var(--text-mid); }
#results .scenario-metric-text strong { color: var(--cream); }
#results .scenario-cite     { color: var(--gold-dk); opacity: 0.85; }
#results .scenario-note     {
  color: var(--text-dim);
  border-top-color: var(--line2);
}

/* ── ABOUT SECTION DARK REPAINT ── */
#about .section-h2.dark       { color: var(--cream); }
#about .section-h2.dark em    { color: var(--gold); font-style: italic; }
#about .section-lead.dark     { color: var(--text-mid); }
#about .rust-rule             { background: var(--gold); }

#about .eyebrow.rust .eyebrow-line { background: var(--gold) !important; }
#about .eyebrow.rust .eyebrow-text { color: var(--gold) !important; }

#about .about-vision {
  border-left-color: var(--gold);
  background: rgba(201,169,110,0.06);
}
#about .about-vision p {
  color: var(--text-mid);
}

#about .about-director {
  background: var(--ink3);
  border-color: var(--line);
}
#about .director-name  { color: var(--cream); }
#about .director-role  { color: var(--gold); }
#about .director-email a { color: var(--gold); }

/* Value cards on dark bg */
#about .values-grid { }
#about .value-card {
  background: var(--ink3);
  border-color: var(--line2);
}
#about .value-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
#about .value-tag   { color: var(--gold); }
#about .value-body  { color: var(--text-dim); }

/* ── RESULTS STATS GRID override ── */
#results .results-stats {
  background: transparent;
  gap: 1rem;
}

/* Results scenarios grid */
#results .results-scenarios { gap: 1.5rem; }


/* lighter palette overrides removed *//* ── OFFERINGS TABS ── */
.offerings-wrap { max-width: 1100px; margin: 0 auto; }

.tab-nav { display: flex; gap: 0; flex-wrap: wrap; border-bottom: 2px solid var(--line); margin-bottom: 2.5rem; }
.tab-btn { font-family: var(--font-ui, 'Space Grotesk', sans-serif); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.85rem 1.4rem; background: none; border: none; cursor: pointer; color: var(--text-dim); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.25s ease; white-space: nowrap; }
.tab-btn:hover { color: var(--cream); }
.tab-btn.active {
  color: var(--gold-dk, #9e7d48);
  border-bottom-color: var(--gold, #c9a96e);
  background: rgba(158,125,72,0.04);
}

.tab-panel { display: none; animation: tabFadeIn 0.3s ease; }
.tab-panel.active { display: block; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.tab-intro { margin-bottom: 2rem; }
.tab-title { font-family: var(--font-serif, Georgia, serif); font-size: 1.4rem; font-style: italic; font-weight: 600; color: var(--cream); margin-bottom: 0.5rem; }
.tab-desc { font-size: 0.9rem; line-height: 1.75; color: var(--text-mid); max-width: 70ch; }

/* Offering tables */
.offering-table {
  width: 100%; border-collapse: collapse; font-size: 0.84rem;
  margin-bottom: 0.5rem;
}
.offering-table.full-width { width: 100%; }
.offering-table thead tr { background: #1a2030; }
.offering-table th {
  font-family: var(--font-ui, sans-serif);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold, #c9a96e); padding: 0.7rem 0.9rem;
  text-align: left; border-bottom: 2px solid var(--gold, #c9a96e);
}
.offering-table td { padding: 0.65rem 0.9rem; border-bottom: 1px solid var(--line2); color: var(--text-mid); vertical-align: middle; }
.offering-table tr:nth-child(even) td { background: rgba(201,169,110,0.04); }
.offering-table tr:hover td { background: rgba(201,169,110,0.08); }
.offering-table td.price { font-weight: 700; color: var(--gold); white-space: nowrap; font-family: var(--font-ui, sans-serif); }
.offering-table td.range { color: var(--text-dim); font-size: 0.8rem; }
.offering-note { font-size: 0.74rem; color: var(--text-dim); font-style: italic; padding: 0.5rem 0; border-top: 1px solid var(--line2); margin-top: 0.3rem; }

/* Offering split layout */
.offering-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-bottom: 2rem;
}
.offering-card {
  background: var(--ink2); border: 1px solid var(--line2);
  border-radius: var(--r);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.offering-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.offering-card-header {
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem;
}
.offering-card-num {
  font-family: 'Bebas Neue', var(--font-ui, sans-serif);
  font-size: 2rem; color: var(--gold, #c9a96e);
  opacity: 0.25; line-height: 1; flex-shrink: 0;
}
.offering-card-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1rem; font-weight: 600; font-style: italic;
  color: var(--cream); margin-bottom: 0.15rem;
}
.offering-card-sub {
  font-size: 0.68rem; color: var(--text-dim);
  font-family: var(--font-ui, sans-serif);
  letter-spacing: 0.06em;
}

/* Inclusions strip */
.offering-incl {
  background: var(--ink2); border: 1px solid var(--line);
  border-radius: var(--r);
  margin-top: 0.5rem;
}
.offering-incl-title {
  font-family: var(--font-ui, sans-serif);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.offering-incl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem 1.5rem;
}
.incl-item { font-size: 0.82rem; color: var(--text-mid); display: flex; align-items: center; gap: 0.4rem; }
.incl-check { color: var(--gold); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }

/* Leadership grid */
.leadership-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-bottom: 2rem;
}
.leadership-card {
  background: var(--ink2); border: 1px solid var(--line2);
  border-radius: var(--r);
  position: relative; transition: all 0.3s;
}
.leadership-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.featured-lc {
  border-color: var(--gold) !important;
  background: rgba(201,169,110,0.06) !important;
}
.lc-featured-badge {
  position: absolute; top: -10px; right: 1rem;
  background: var(--gold, #c9a96e); color: #080b0f;
  font-family: var(--font-ui, sans-serif); font-size: 0.6rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 20px;
}
.lc-header { margin-bottom: 0.6rem; }
.lc-title { font-family: var(--font-serif, Georgia, serif); font-size: 1rem; font-style: italic; font-weight: 600; color: var(--cream); margin-bottom: 0.2rem; }
.lc-meta { font-size: 0.68rem; color: var(--text-dim); font-family: var(--font-ui, sans-serif); }
.lc-price { font-family: var(--font-ui, sans-serif); font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-bottom: 0.6rem; }
.lc-desc { font-size: 0.8rem; line-height: 1.65; color: var(--text-mid); margin-bottom: 0.8rem; }
.lc-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.lc-tag { font-family: var(--font-ui, sans-serif); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(200,169,110,0.2); padding: 0.15rem 0.45rem; border-radius: 2px; }

/* Process grid */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-bottom: 2rem;
}
.process-card {
  background: var(--ink2); border: 1px solid var(--line2);
  border-radius: var(--r); transition: all 0.3s;
}
.process-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.featured-process { border-color: var(--gold) !important; grid-column: span 1; }
.process-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 0.5rem; margin-bottom: 0.6rem;
}
.process-card-type { font-family: var(--font-serif, Georgia, serif); font-size: 0.95rem; font-style: italic; font-weight: 600; color: var(--cream); flex: 1; }
.process-card-days { font-size: 0.64rem; color: var(--text-dim); white-space: nowrap; font-family: var(--font-ui, sans-serif); background: rgba(200,169,110,0.08); padding: 0.15rem 0.45rem; border-radius: 3px; }
.process-card-price { font-family: var(--font-ui, sans-serif); font-size: 1.05rem; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; }
.process-card-scope { font-size: 0.8rem; line-height: 1.65; color: var(--text-mid); }

/* Packages grid */
.packages-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
  margin-bottom: 1rem;
}
.package-card {
  background: var(--ink2); border: 1px solid var(--line2);
  border-radius: var(--r);
  transition: all 0.3s; position: relative;
}
.package-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.featured-package { border-color: var(--gold) !important; background: rgba(201,169,110,0.06) !important; }
.package-num {
  font-family: 'Bebas Neue', var(--font-ui, sans-serif);
  font-size: 3rem; color: var(--gold, #c9a96e);
  opacity: 0.15; line-height: 1; margin-bottom: 0.3rem;
}
.package-title { font-family: var(--font-serif, Georgia, serif); font-size: 1.1rem; font-style: italic; font-weight: 600; color: var(--cream); margin-bottom: 0.3rem; }
.package-from { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 1rem; font-family: var(--font-ui, sans-serif); }
.package-from span { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.package-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.4rem; margin-bottom: 1rem;
}
.package-list li { font-size: 0.82rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.5; }
.package-list li::before { content: "→"; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; margin-top: 0.1rem; }
.package-ideal { font-size: 0.72rem; color: var(--text-dim); font-style: italic; padding-top: 0.8rem; border-top: 1px solid var(--line2); }

/* Mobile responsive for tabs */
@media (max-width: 900px) {
  .offering-split { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .offering-incl-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .leadership-grid, .process-grid { grid-template-columns: 1fr; }
  .offering-incl-grid { grid-template-columns: 1fr; }
  .tab-btn { font-size: 0.62rem; padding: 0.7rem 0.9rem; }
}


/* ── OFFERINGS SECTION DARK RESTORE ── */
#offerings { background: var(--ink); }
#offerings .tab-btn { color: var(--text-dim); }
#offerings .tab-btn:hover { color: var(--cream); }
#offerings .tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(201,169,110,0.06); }
#offerings .tab-nav { border-bottom-color: var(--line); }
#offerings .tab-title { color: var(--cream); }
#offerings .tab-desc { color: var(--text-mid); }
#offerings .section-h2 { color: var(--cream) !important; }
#offerings .section-h2 em { color: var(--gold) !important; }
#offerings .section-lead { color: var(--text-mid) !important; }
#offerings .eyebrow-text { color: var(--gold) !important; }
#offerings .eyebrow-line { background: var(--gold) !important; }
#offerings .gold-rule { background: var(--gold) !important; }
#offerings p[style*="color:#444"] { color: var(--text-mid) !important; }
#offerings h4[style*="color:#0c0f17"] { color: var(--cream) !important; }

/* Offering cards dark */
#offerings .offering-card {
  background: var(--ink2) !important;
  border-color: var(--line2) !important;
  box-shadow: none !important;
}
#offerings .offering-card:hover { border-color: var(--gold) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important; }
#offerings .offering-card-title { color: var(--cream) !important; }
#offerings .offering-card-sub { color: var(--text-dim) !important; }

/* Tables dark */
#offerings .offering-table thead tr { background: var(--ink3) !important; }
#offerings .offering-table th { color: var(--gold) !important; border-bottom-color: var(--gold) !important; }
#offerings .offering-table td { color: var(--text-mid) !important; border-bottom-color: var(--line2) !important; }
#offerings .offering-table tr:nth-child(even) td { background: rgba(201,169,110,0.04) !important; }
#offerings .offering-table tr:hover td { background: rgba(201,169,110,0.08) !important; }

/* Inclusions strip dark */
#offerings .offering-incl { background: var(--ink2) !important; border-color: var(--line2) !important; }
#offerings .offering-incl-title { color: var(--gold) !important; }
#offerings .incl-item { color: var(--text-mid) !important; }
#offerings .incl-check { color: var(--gold) !important; }
#offerings .offering-note { color: var(--text-dim) !important; border-top-color: var(--line2) !important; }

/* Leadership cards dark */
#offerings .leadership-card { background: var(--ink2) !important; border-color: var(--line2) !important; box-shadow: none !important; }
#offerings .leadership-card:hover { border-color: var(--gold) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important; }
#offerings .featured-lc { background: var(--ink3) !important; border-color: var(--gold) !important; }
#offerings .lc-title { color: var(--cream) !important; }
#offerings .lc-meta { color: var(--text-dim) !important; }
#offerings .lc-desc { color: var(--text-mid) !important; }
#offerings .lc-tag { color: var(--gold-dk) !important; border-color: var(--line) !important; }

/* Process cards dark */
#offerings .process-card { background: var(--ink2) !important; border-color: var(--line2) !important; box-shadow: none !important; }
#offerings .process-card:hover { border-color: var(--gold) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important; }
#offerings .featured-process { border-color: var(--gold) !important; }
#offerings .process-card-type { color: var(--cream) !important; }
#offerings .process-card-days { color: var(--text-dim) !important; background: rgba(201,169,110,0.08) !important; }
#offerings .process-card-scope { color: var(--text-mid) !important; }

/* Package cards dark */
#offerings .package-card { background: var(--ink2) !important; border-color: var(--line2) !important; box-shadow: none !important; }
#offerings .package-card:hover { border-color: var(--gold) !important; }
#offerings .featured-package { background: var(--ink3) !important; border-color: var(--gold) !important; }
#offerings .package-num { color: var(--gold) !important; }
#offerings .package-title { color: var(--cream) !important; }
#offerings .package-list li { color: var(--text-mid) !important; }
#offerings .package-list li::before { color: var(--gold) !important; }
#offerings .package-ideal { color: var(--text-dim) !important; border-top-color: var(--line2) !important; }

/* CTA area */
#offerings .offerings-cta p { color: var(--text-dim) !important; }

/* ════════════════════════════════════════════════════════════════ */
/* ──────────── MOBILE OPTIMIZATION FOR iPhone (390px) ──────────── */
/* ════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  html { font-size: 14px; }

  /* Hero: Stack to 1 column, reduce padding */
  #hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
  .hero-left {
    padding: 2rem 0;
    justify-content: flex-start;
  }
  .hero-right {
    display: none; /* Hide visual on mobile */
  }
  .hero-h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero-h1-sub {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow {
    margin-bottom: 1rem;
  }
  .hero-body {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .btn-gold, .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
  }
  .hero-stats {
    flex-direction: column;
    position: relative;
    bottom: auto;
    background: transparent;
    border-top: none;
  }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
    text-align: center;
  }
  .hero-stat:last-child {
    border-bottom: none;
  }
  .hero-stat-num {
    font-size: 1.5rem;
  }

  /* Section padding */
  .section-pad {
    padding: 2.5rem 1.5rem;
  }
  .section-pad-sm {
    padding: 2rem 1.5rem;
  }

  /* Section headings */
  .section-h2 {
    font-size: 1.8rem !important;
  }

  /* GTSB Section */
  .gtsb-intro {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .gtsb-acronym-strip {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .gtsb-big-letter {
    display: none; /* Hide decorative letters on mobile */
  }
  .gtsb-layers-grid {
    grid-template-columns: 1fr !important;
    gap: 0.5px;
    margin-bottom: 1.5rem;
  }
  .gtsb-layer {
    padding: 1rem 0.8rem;
  }
  .gtsb-layer-num {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
  .gtsb-layer-title {
    font-size: 0.9rem;
  }
  .gtsb-layer-body {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .gtsb-bottom-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 0;
  }
  .gtsb-core-idea {
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    border-left-width: 2px;
  }
  .gtsb-quote {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Cards: Stack all */
  .service-grid, .value-grid, .scenario-grid, .who-grid, .diag-grid {
    grid-template-columns: 1fr !important;
  }
  .service-card, .value-card, .scenario-card, .who-card, .diag-card {
    padding: 1.2rem;
  }
  .service-num, .value-num, .scenario-num {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  /* Navigation */
  nav {
    padding: 1rem;
  }
  .nav-logo {
    font-size: 0.8rem;
  }
  .nav-links {
    gap: 0.5rem;
  }
  .nav-link {
    font-size: 0.7rem;
  }

  /* Buttons overall */
  button, .cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
  }

  /* Forms */
  input, textarea, select {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 0.8rem;
  }

  /* Images */
  img {
    max-width: 100%;
    height: auto;
  }
  .hero-visual {
    width: 100% !important;
    height: auto !important;
    max-width: 250px;
  }
  .hero-ring {
    display: none;
  }

  /* Offerings tabs */
  .tab-btn {
    font-size: 0.55rem;
    padding: 0.6rem 0.7rem;
  }
  .offering-split {
    grid-template-columns: 1fr !important;
  }
  .leadership-grid, .process-grid, .offering-incl-grid {
    grid-template-columns: 1fr !important;
  }
  .packages-grid {
    grid-template-columns: 1fr !important;
  }

  /* Contact form */
  .contact-split {
    grid-template-columns: 1fr !important;
  }

  /* Spacing reductions */
  section {
    margin-bottom: 2rem;
  }
  h2, h3 {
    margin-bottom: 1rem;
  }
  p {
    margin-bottom: 1rem;
  }

  /* Hide all decorative big letters on mobile */
  [class*="big-letter"] {
    display: none !important;
  }

  /* Image gallery grid: 3 columns → 1 column */
  #offerings .reveal[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Results stats grid: 4 columns → 1 column */
  .results-stats {
    grid-template-columns: 1fr !important;
  }
}


