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

:root {
  --gold: #D4A843;
  --gold-light: #E8C55A;
  --gold-dim: rgba(212, 168, 67, 0.12);
  --gold-glow: rgba(212, 168, 67, 0.08);
  --bg: #060606;
  --bg-elevated: #100D0A;
  --bg-card: rgba(255, 255, 255, 0.045);
  --text: #E8E6E3;
  --text-muted: rgba(232, 230, 227, 0.45);
  --text-dim: rgba(232, 230, 227, 0.25);
  --border: rgba(255, 255, 255, 0.09);
  --border-gold: rgba(212, 168, 67, 0.15);
  --red: #E8534A;
  --green: #4AE88A;
  --green-neon: #00E676;
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --section-pad: clamp(40px, 5vw, 64px);
  --container: min(1200px, 90vw);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; position: relative; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: rgba(212, 168, 67, 0.3); color: #fff; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(212, 168, 67, 0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212, 168, 67, 0.3); }

/* ===== UTILITY ===== */
.container { width: var(--container); margin: 0 auto; }
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.active { opacity: 1; transform: translateY(0); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
/* Hero and page header reveals start visible - CSS animation instead of JS observer */
.hero .reveal, .page-header .reveal {
  opacity: 0; transform: translateY(30px);
  animation: revealIn 0.8s var(--ease) forwards;
}
.hero .reveal.reveal-delay-1, .page-header .reveal.reveal-delay-1 { animation-delay: 0.15s; }
.hero .reveal.reveal-delay-2, .page-header .reveal.reveal-delay-2 { animation-delay: 0.3s; }
.hero .reveal.reveal-delay-3, .page-header .reveal.reveal-delay-3 { animation-delay: 0.45s; }
@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }
}
.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }

/* ===== BACKGROUND GRID ===== */
.bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpath d='M40 0L80 23v46L40 92 0 69V23z' fill='none' stroke='rgba(212,168,67,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 80px 92px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: all 0.5s var(--ease);
}

.nav.scrolled {
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: 1400px; margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-body); font-weight: 700; font-size: 22px;
  letter-spacing: -0.02em; color: var(--text);
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* Active nav link */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; background: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255, 255, 255, 0.04); border-radius: 6px; padding: 4px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
}
.lang-toggle button {
  padding: 5px 10px; border-radius: 4px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; transition: all 0.3s ease; color: var(--text-muted);
}
.lang-toggle button.active { background: rgba(212, 168, 67, 0.15); color: var(--gold); }

.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  padding: 10px 24px; border: 1px solid var(--border-gold); border-radius: 8px;
  color: var(--gold); transition: all 0.4s var(--ease);
}
.nav-cta:hover {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.2);
}

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s ease; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: rgba(6, 6, 6, 0.97);
  backdrop-filter: blur(30px); z-index: 999; padding: 120px 40px 40px;
  flex-direction: column; gap: 0; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  display: block; font-family: var(--font-display); font-size: 32px; padding: 16px 0;
  color: var(--text-muted); border-bottom: 1px solid var(--border); transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.active { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 85svh; display: flex; align-items: center; position: relative;
  padding: 100px 0 var(--section-pad);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 168, 67, 0.045) 0%, rgba(212, 168, 67, 0.015) 30%, transparent 70%);
}

/* Subtle gold divider accent between major sections */
.section-divider {
  display: block; width: 72px; height: 1px; margin: 0 auto;
  background: rgba(212, 168, 67, 0.3);
  position: relative; z-index: 1;
}

.hero-content {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-text { flex: 1; min-width: 0; }
.hero-visual {
  flex: 0 0 440px;
}

.hero-tagline {
  font-size: clamp(11px, 1.2vw, 13px); font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 32px; display: flex; align-items: center; gap: 16px;
}
.hero-tagline::before {
  content: ''; width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 5.5vw, 76px); line-height: 1.08; letter-spacing: -0.02em;
  max-width: 900px; margin-bottom: 32px;
}
.hero h1 em {
  font-style: italic; color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-clip: text; -webkit-background-clip: text;
}

.hero-body {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7;
  color: var(--text-muted); max-width: 620px; margin-bottom: 48px; font-weight: 300;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  padding: 18px 40px; border-radius: 10px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg); transition: all 0.4s var(--ease);
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 168, 67, 0.35);
}
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

/* Hero decorative orb */
.hero-orb {
  position: absolute; right: -5%; top: 15%; width: 500px; height: 500px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  filter: blur(60px); animation: orbFloat 8s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -30px) scale(1.05); }
}

/* ===== METRICS BAR ===== */
.metrics {
  padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center;
}
.metric { position: relative; }
.metric:not(:last-child)::after {
  content: ''; position: absolute; right: -20px; top: 20%; height: 60%;
  width: 1px; background: var(--border);
}
.metric-value {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px);
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.metric-label { font-size: 14px; color: var(--text-muted); font-weight: 400; letter-spacing: 0.02em; }

/* ===== PILLARS ===== */
.pillars { padding: var(--section-pad) 0; position: relative; z-index: 1; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; }

.pillar-card {
  position: relative; padding: 40px 28px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.5s var(--ease); overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--border-gold) 50%, transparent 90%);
  opacity: 0; transition: opacity 0.5s ease;
}
.pillar-card:hover {
  border-color: var(--border-gold); transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--gold-glow);
  background: rgba(255, 255, 255, 0.03);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.pillar-card:hover .pillar-icon { opacity: 1; }
.pillar-card h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 400;
  line-height: 1.2; margin-bottom: 16px; color: var(--text);
}
.pillar-card p { font-size: 15px; line-height: 1.65; color: var(--text-muted); font-weight: 300; }

/* ===== PROBLEM SECTION ===== */
.problem {
  padding: var(--section-pad) 0; position: relative; z-index: 1;
  background: var(--bg-elevated);
}
.problem::before, .problem::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: var(--border);
}
.problem::before { top: 0; }
.problem::after { bottom: 0; }

.problem h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400; line-height: 1.1; max-width: 700px; margin-bottom: 40px;
}
.problem h2 em { font-style: italic; color: var(--gold); }

.problem-body { font-size: 18px; color: var(--text-muted); max-width: 680px; margin-bottom: 40px; font-weight: 300; line-height: 1.7; }

.pain-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.pain-point {
  display: flex; align-items: center; gap: 16px; font-size: 17px;
  font-weight: 400; color: var(--text);
}
.pain-point .icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232, 83, 74, 0.1); border: 1px solid rgba(232, 83, 74, 0.2);
}
.pain-point .icon svg { width: 12px; height: 12px; color: var(--red); }

.problem-closing {
  font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4; color: var(--text); max-width: 600px; font-style: italic;
}

/* ===== APPROACH ===== */
.approach { padding: var(--section-pad) 0; position: relative; z-index: 1; }

.approach-header { margin-bottom: 64px; }
.approach h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400; line-height: 1.1; margin-bottom: 32px;
}
.approach h2 em { font-style: italic; color: var(--gold); }
.approach-body { font-size: 18px; color: var(--text-muted); max-width: 720px; font-weight: 300; line-height: 1.7; }

.approach-steps { display: flex; flex-direction: column; gap: 0; }
.approach-step {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}
.approach-step:first-child { border-top: 1px solid var(--border); }
.approach-step:hover { padding-left: 12px; }

.step-num {
  font-family: var(--font-display); font-size: 20px; font-style: italic;
  color: var(--green-neon); padding-top: 2px;
}
.step-text { font-size: 18px; font-weight: 400; line-height: 1.5; }

/* ===== SERVICES ===== */
.services { padding: var(--section-pad) 0; position: relative; z-index: 1; background: var(--bg-elevated); }
.services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--border); }

.services-header { text-align: center; margin-bottom: 64px; }
.services-header h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400; margin-bottom: 16px;
}
.services-header h2 em { font-style: italic; color: var(--gold); }
.services-header p { font-size: 18px; color: var(--text-muted); font-weight: 300; }

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

.service-card {
  position: relative; padding: 48px 40px; border-radius: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.5s var(--ease); overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--border-gold) 50%, transparent 95%);
}
.service-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 60px var(--gold-glow);
}

.service-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.service-label::before { content: ''; width: 8px; height: 1px; background: var(--gold); }

.service-card h3 {
  font-family: var(--font-display); font-size: 32px; font-weight: 400;
  margin-bottom: 20px; line-height: 1.15;
}

.service-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; font-weight: 300; }

.service-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.service-list-item {
  display: flex; gap: 14px; font-size: 15px; line-height: 1.55; color: var(--text-muted);
}
.service-list-item .dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 7px;
  background: var(--gold); opacity: 0.5;
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.03em;
  padding: 14px 32px; border-radius: 10px;
  border: 1px solid rgba(212, 168, 67, 0.3); color: var(--gold);
  transition: all 0.4s var(--ease); margin-bottom: 24px;
}
.btn-outline:hover {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.15);
}
.btn-outline svg { transition: transform 0.3s ease; }
.btn-outline:hover svg { transform: translateX(4px); }

.service-outcome {
  font-size: 14px; color: var(--text-dim); font-style: italic; padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ===== FIT SECTION ===== */
.fit { padding: var(--section-pad) 0; position: relative; z-index: 1; }

.fit-header { margin-bottom: 64px; }
.fit h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400; line-height: 1.1; max-width: 700px; margin-bottom: 24px;
}
.fit h2 em { font-style: italic; color: var(--gold); }
.fit-header p { font-size: 18px; color: var(--text-muted); max-width: 700px; font-weight: 300; line-height: 1.7; }

.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.fit-col h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 400;
  margin-bottom: 12px;
}
.fit-col.for h3 { color: var(--green); }
.fit-col.not-for h3 { color: var(--red); }
.fit-col > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; font-weight: 300; }

.fit-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.fit-item {
  display: flex; gap: 14px; font-size: 15px; line-height: 1.6; color: var(--text-muted);
}
.fit-item .icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.fit-col.for .fit-item .icon { background: rgba(74, 232, 138, 0.1); border: 1px solid rgba(74, 232, 138, 0.2); }
.fit-col.for .fit-item .icon svg { color: var(--green); }
.fit-col.not-for .fit-item .icon { background: rgba(232, 83, 74, 0.1); border: 1px solid rgba(232, 83, 74, 0.2); }
.fit-col.not-for .fit-item .icon svg { color: var(--red); }

.fit-closing { font-size: 15px; color: var(--text-dim); font-style: italic; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: var(--section-pad) 0; position: relative; z-index: 1; text-align: center;
  background: var(--bg-elevated); overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--border);
}

.final-cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}

.final-cta h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400; line-height: 1.1; margin-bottom: 24px; position: relative;
}

.final-cta > .container > p {
  font-size: 18px; color: var(--text-muted); max-width: 620px; margin: 0 auto 48px;
  font-weight: 300; line-height: 1.7; position: relative;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0; border-top: 1px solid var(--border); position: relative; z-index: 1;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--font-body); font-weight: 700; font-size: 18px; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

/* ===== PAGE HEADER (SUBPAGES) ===== */
.page-header {
  padding: 140px 0 32px;
  position: relative; z-index: 1;
  text-align: center;
}
.page-header .hero-tagline { margin-bottom: 24px; justify-content: center; }
.page-header h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.08; letter-spacing: -0.02em;
  max-width: 800px; margin: 0 auto 20px;
}
.page-header h1 em {
  font-style: italic; color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-clip: text; -webkit-background-clip: text;
}
.page-header .subtitle {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7;
  color: var(--text-muted); max-width: 680px; font-weight: 300;
  margin: 0 auto;
}

/* ===== SUBPAGE CONTENT SECTIONS ===== */
.content-section {
  padding: var(--section-pad) 0; position: relative; z-index: 1;
}
.content-section.elevated {
  background: var(--bg-elevated);
}
.content-section.elevated::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 67, 0.18) 50%, transparent 100%);
}
.content-section.elevated::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 67, 0.18) 50%, transparent 100%);
}

.content-section h2 {
  font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400; line-height: 1.15; margin-bottom: 24px;
  text-align: center;
}
.content-section h2 em { font-style: italic; color: var(--gold); }

.content-section .section-label { justify-content: center; }

.content-body {
  font-size: 17px; color: var(--text-muted); max-width: 720px;
  font-weight: 300; line-height: 1.75; margin: 0 auto 32px;
  text-align: center;
}

.content-body-wide {
  font-size: 17px; color: var(--text-muted);
  font-weight: 300; line-height: 1.75; margin-bottom: 32px;
}

.content-closing {
  font-family: var(--font-display); font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4; color: var(--text); max-width: 600px; font-style: italic;
  margin: 40px auto 0; text-align: center;
}

/* ===== CONTENT LIST (checkmarks / bullets) ===== */
.content-list {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.content-list-item {
  display: flex; gap: 14px; font-size: 16px; line-height: 1.6; color: var(--text-muted);
}
.content-list-item .icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212, 168, 67, 0.08); border: 1px solid rgba(212, 168, 67, 0.15);
}
.content-list-item .icon svg { width: 12px; height: 12px; color: var(--gold); }

/* ===== STEPS CARDS ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px; margin-bottom: 48px;
}
.step-card {
  position: relative; padding: 40px 28px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.5s var(--ease); overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--border-gold) 50%, transparent 90%);
  opacity: 0; transition: opacity 0.5s ease;
}
.step-card:hover {
  border-color: var(--border-gold); transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--gold-glow);
  background: rgba(255, 255, 255, 0.03);
}
.step-card:hover::before { opacity: 1; }

.step-card-num {
  font-family: var(--font-display); font-size: 48px; color: var(--gold-dim);
  line-height: 1; margin-bottom: 20px; font-style: italic;
}
.step-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  line-height: 1.2; margin-bottom: 14px; color: var(--text);
}
.step-card p { font-size: 15px; line-height: 1.65; color: var(--text-muted); font-weight: 300; }

/* ===== ANALYSIS / DELIVERABLE GRID ===== */
.analysis-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 48px;
}
.analysis-card {
  position: relative; padding: 36px 28px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.5s var(--ease); overflow: hidden;
}
.analysis-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--border-gold) 50%, transparent 90%);
  opacity: 0; transition: opacity 0.5s ease;
}
.analysis-card:hover {
  border-color: var(--border-gold); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 30px var(--gold-glow);
  background: rgba(255, 255, 255, 0.03);
}
.analysis-card:hover::before { opacity: 1; }

.analysis-card-num {
  font-family: var(--font-display); font-size: 36px; color: var(--gold-dim);
  line-height: 1; margin-bottom: 16px; font-style: italic;
}
.analysis-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  line-height: 1.2; margin-bottom: 12px; color: var(--text);
}
.analysis-card p { font-size: 15px; line-height: 1.65; color: var(--text-muted); font-weight: 300; }

/* ===== SCOPE LIST (for consultant page) ===== */
.scope-list {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 32px;
}
.scope-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}
.scope-item:first-child { border-top: 1px solid var(--border); }
.scope-item:hover { padding-left: 12px; }
.scope-item .step-num {
  font-family: var(--font-display); font-size: 20px; font-style: italic;
  color: var(--gold); padding-top: 2px;
}
.scope-item .scope-text { font-size: 17px; font-weight: 400; line-height: 1.5; color: var(--text); }

/* ===== ENGAGEMENT GRID ===== */
.engagement-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.engagement-card {
  padding: 32px 24px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  text-align: center; transition: all 0.5s var(--ease);
}
.engagement-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 30px var(--gold-glow);
}
.engagement-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  color: var(--gold); margin-bottom: 12px;
}
.engagement-card p { font-size: 15px; line-height: 1.6; color: var(--text-muted); font-weight: 300; }

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body); font-size: 16px; font-weight: 300;
  padding: 16px 20px; border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); transition: all 0.3s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 20px var(--gold-glow);
}
.form-group textarea { min-height: 160px; resize: vertical; }

.form-submit {
  align-self: flex-start;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}

/* ===== LOGO SUBTITLE ===== */
.nav-logo small, .footer-logo small {
  display: block;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-top: -2px;
}

/* ===== SERVICE TAG ===== */
.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00E676;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* ===== DASHBOARD MOCKUP ===== */
.dashboard-mock {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.dash-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-dot.red { background: #E8534A; }
.dash-dot.yellow { background: var(--gold); }
.dash-dot.green { background: #00E676; }
.dash-title {
  margin-left: 8px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.dash-body { padding: 20px; }
.dash-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dash-metric {
  text-align: center;
  padding: 12px 8px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.dash-metric-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.dash-metric-value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
}
.dash-metric-change {
  font-size: 11px;
  font-weight: 600;
  margin-top: 2px;
}
.dash-metric-change.up { color: #00E676; }
.dash-metric-change.down { color: #E8534A; }
.dash-chart {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--border);
  padding: 16px 12px 8px;
}
.dash-chart svg { width: 100%; height: 80px; }
.dash-channels { display: flex; flex-direction: column; gap: 10px; }
.dash-channel {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
}
.dash-channel span { text-align: left; white-space: nowrap; }
.dash-channel-bar {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0.6;
}

/* ===== PROBLEM VISUAL ===== */
.problem > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.problem-visual {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  padding-top: 40px;
}
.decay-chart {
  width: 100%;
  max-width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.decay-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.decay-chart svg { width: 100%; height: auto; }

/* ===== APPROACH VISUAL ===== */
.approach > .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}
.approach-content { min-width: 0; }
.approach-visual {
  position: sticky;
  top: 120px;
  padding-top: 80px;
}
.system-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 280px;
}
.sys-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}
.sys-node:hover, .sys-node.active {
  border-color: var(--border-gold);
  background: rgba(255,255,255,0.04);
}
.sys-icon { font-size: 24px; }
.sys-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ===== HERO DIAGRAM ===== */
.hero-diagram {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  height: 450px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ===== ABOUT STATS BAR ===== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.about-stat { text-align: center; }
.about-stat-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ===== ABOUT SYSTEM VISUAL ===== */
.about-system-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 48px auto 0;
  padding: 40px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 480px;
}
.asv-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.asv-box {
  padding: 14px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  transition: all 0.3s ease;
  min-width: 100px;
}
.asv-box.gold {
  border-color: var(--border-gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.06);
}
.asv-box.green {
  border-color: rgba(0, 230, 118, 0.2);
  color: #00E676;
  background: rgba(0, 230, 118, 0.06);
}
.asv-connector-v {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
}

/* ===== MARKETS VISUAL ===== */
.markets-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}
.market-tag {
  padding: 10px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.market-tag:hover {
  border-color: var(--border-gold);
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

/* ===== SNAPSHOT TIMELINE ===== */
.snapshot-timeline {
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
}
.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 24px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.timeline-step:hover {
  border-color: var(--border-gold);
  background: rgba(255,255,255,0.04);
}
.timeline-num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  font-style: italic;
  opacity: 0.7;
}
.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}
.timeline-time {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  opacity: 0.7;
  text-align: right;
  white-space: nowrap;
}
.timeline-connector {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
  margin-left: 44px;
}

/* ===== DELIVERABLE MOCKUP ===== */
.deliverable-mock {
  margin: 48px auto 0;
  max-width: 520px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.del-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.del-dots {
  display: flex;
  gap: 5px;
}
.del-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.del-dots span:nth-child(1) { background: #E8534A; }
.del-dots span:nth-child(2) { background: var(--gold); }
.del-dots span:nth-child(3) { background: #00E676; }
.del-header > span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.del-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.del-section {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.del-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}
.del-badge.red {
  color: #E8534A;
  background: rgba(232, 83, 74, 0.1);
  border: 1px solid rgba(232, 83, 74, 0.2);
}
.del-badge.yellow {
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
}
.del-badge.green {
  color: #00E676;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
}
.del-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ===== ENGAGEMENT VISUAL (CONSULTANT) ===== */
.engagement-visual {
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}
.eng-phase {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
}
.eng-week {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: right;
}
.eng-bar {
  height: 40px;
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.15), rgba(212, 168, 67, 0.06));
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  transition: all 0.3s ease;
}
.eng-bar:hover {
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.25), rgba(212, 168, 67, 0.1));
}
.eng-bar span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

/* ===== CONTACT LAYOUT & INFO CARD ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-layout .contact-form {
  max-width: 100%;
}
.contact-info-card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-top: 0;
}
.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
}
.contact-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-step:last-child { margin-bottom: 0; }
.contact-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.15);
  flex-shrink: 0;
}
.contact-step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  padding-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; gap: 56px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .metric:not(:last-child)::after { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .analysis-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-diagram { width: 300px; height: 300px; right: -5%; opacity: 0.3; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-content { flex-direction: column; }
  .hero-visual { flex: none; width: 100%; max-width: 480px; margin-top: 40px; }
  .problem > .container { grid-template-columns: 1fr; }
  .problem-visual { padding-top: 20px; }
  .approach > .container { grid-template-columns: 1fr; }
  .approach-visual { position: static; padding-top: 40px; }
  .system-diagram { width: 100%; max-width: 320px; margin: 0 auto; }
}

@media (max-width: 767px) {
  :root { --section-pad: clamp(32px, 6vw, 56px); }
  .pillars-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-cta { display: none; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .nav-inner { height: 64px; }
  .service-card { padding: 32px 24px; }
  .hero-diagram { display: none; }
  .hero-orb { display: none; }
  .hero-visual { flex: none; width: 100%; max-width: 100%; }
  .dashboard-mock { max-width: 100%; }
  .approach-visual { display: none; }
  .approach-step { grid-template-columns: 40px 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; }
  .eng-phase { grid-template-columns: 70px 1fr; }
  .timeline-step { grid-template-columns: 40px 1fr auto; }
  .page-header { padding: 100px 0 24px; }
  .page-header h1 { font-size: clamp(28px, 7vw, 44px); }
  .scope-item { grid-template-columns: 40px 1fr; }
}

/* ===== SUBPAGE CTA CENTERING ===== */
.content-section .btn-primary,
.page-header .btn-primary {
  display: inline-flex;
}
.content-section > .container > .btn-primary,
.page-header > .container > .btn-primary {
  margin: 0 auto;
  display: flex;
  width: fit-content;
}

/* ===== PRICING SIGNAL ===== */
.pricing-signal {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #D4A843;
  font-weight: 500;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
  text-align: center;
}

/* ===== ENGAGEMENT GRID CENTERING ===== */
.engagement-grid { justify-items: center; }
.scope-list { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ===== NOT INCLUDED LIST (exclusion variant of content-list) ===== */
.content-section:has(> .container > .content-list.not-included) {
  padding-top: calc(var(--section-pad) * 0.6);
  padding-bottom: calc(var(--section-pad) * 0.6);
}
.content-section > .container > h2 + .content-list.not-included,
.content-list.not-included {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border);
  border-radius: 14px;
  gap: 12px;
}
.content-section > .container > h2:has(+ .content-list.not-included),
.content-section > .container > h2 + .content-list.not-included {
  /* heading paired with not-included block */
}
.content-list.not-included + .content-closing { margin-top: 28px; }

/* Heading style when followed by not-included block: smaller, muted */
.content-section > .container > h2:has(+ .content-list.not-included) {
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 4px;
}

.content-list.not-included .content-list-item {
  color: var(--text-dim);
  font-size: 15px;
}
.content-list.not-included .content-list-item .icon {
  background: rgba(232, 83, 74, 0.06);
  border-color: rgba(232, 83, 74, 0.18);
}
.content-list.not-included .content-list-item .icon svg {
  color: var(--red);
  width: 11px;
  height: 11px;
}

/* ===== ANALYSIS GRID — 5-CARD VARIANT (audit page) ===== */
/* When the grid has 5 cards, switch to 3 columns so the 5th doesn't orphan */
.analysis-grid:has(> .analysis-card:nth-child(5)) {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .analysis-grid:has(> .analysis-card:nth-child(5)) {
    grid-template-columns: 1fr;
  }
}

/* ===== PRICING SIGNAL CONTEXT FIXES ===== */
/* Inside service cards on homepage: left-align to match card content */
.service-card .pricing-signal {
  text-align: left;
  margin-top: 18px;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.03em;
}
/* Inside service-page intro (centered content-body context): keep centered, breathing */
.content-section .pricing-signal {
  margin-top: 20px;
  margin-bottom: 8px;
}

/* ===== ACCESSIBILITY: FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--bg);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0 0 8px 0;
  z-index: 2000;
}
.skip-link:focus {
  left: 0;
}

/* ===== TIMELINE POLISH ===== */
.timeline-step:focus-within {
  border-color: var(--border-gold);
}

/* ===== ABOUT SYSTEM THINKING — give the lone paragraph more presence ===== */
.content-section.elevated > .container > .content-body:only-of-type {
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 760px;
}

/* ===== FINAL CTA BODY MARGIN FIX (subpages) ===== */
.final-cta > .container > p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.7;
  position: relative;
}

/* ===== METRICS BAR — text-only variant (no values) ===== */
.metrics-grid .metric:not(:has(.metric-value)) {
  padding: 8px 0;
}
.metrics-grid .metric:not(:has(.metric-value)) .metric-label {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

/* ===== MOBILE TAP TARGETS ===== */
@media (max-width: 767px) {
  .nav-hamburger { padding: 12px; min-width: 44px; min-height: 44px; }
  .lang-toggle button { min-height: 36px; padding: 8px 12px; }
  .footer-links a { padding: 8px 0; display: inline-block; }
  .content-list.not-included { padding: 22px 20px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-orb { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
