/* ═══════════════════════════════════════════════
   MMG AGENT GROWTH LAB — Design System v2
   Dark Premium · Gold Accents · Swagged Out
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bricolage+Grotesque:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ───────────────────────────── */
:root {
  --bg-primary: #06060B;
  --bg-secondary: #0B0B16;
  --bg-tertiary: #111122;
  --bg-card: rgba(16, 16, 36, 0.6);
  --bg-card-solid: #131330;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dark: #B8952E;
  --gold-muted: rgba(212, 175, 55, 0.10);
  --gold-glow: rgba(212, 175, 55, 0.25);
  --text-primary: #F0EDE6;
  --text-secondary: #8E8EA3;
  --text-muted: #55556B;
  --purple-deep: #150F30;
  --purple-glow: #2A1860;
  --purple-accent: #7B5FE0;
  --border-subtle: rgba(212, 175, 55, 0.15);
  --border-card: rgba(255, 255, 255, 0.04);
  --gradient-card: linear-gradient(160deg, rgba(212, 175, 55, 0.06) 0%, transparent 40%);
  --gradient-hero: radial-gradient(ellipse at 20% 0%, rgba(42, 24, 96, 0.4) 0%, transparent 55%),
                   radial-gradient(ellipse at 85% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
                   radial-gradient(circle at 50% 120%, rgba(123, 95, 224, 0.08) 0%, transparent 50%);
  --shadow-card: 0 8px 50px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.2), 0 0 80px rgba(212, 175, 55, 0.06);
  --shadow-gold-btn: 0 4px 24px rgba(212, 175, 55, 0.3), 0 0 60px rgba(212, 175, 55, 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 76px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

/* ── Film Grain Overlay ─────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ──────────────────────────────── */
h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
}

h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ── Decorative Divider ─────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  border: none;
  margin: 0;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--gold);
  color: #06060B;
  box-shadow: 0 2px 16px rgba(212, 175, 55, 0.15);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold-btn);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
  font-weight: 400;
}

.btn-arrow:hover::after {
  transform: translateX(5px);
}

/* ── Navigation ──────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(6, 6, 11, 0.88);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

.nav-cta {
  padding: 9px 22px;
  font-size: 0.85rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Hero Section ────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

/* Decorative orb */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  top: 10%;
  right: -10%;
  pointer-events: none;
  animation: float-orb 8s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.05); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-content h1 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-content h1 .text-gold {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 460px;
  color: var(--text-secondary);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1.5px;
  background: linear-gradient(150deg, var(--gold) 0%, transparent 35%, transparent 65%, var(--purple-accent) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-image-placeholder .placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}

.hero-image-placeholder .placeholder-inner svg {
  width: 44px;
  height: 44px;
  stroke: var(--text-muted);
}

/* ── Credibility Badge ──────────────────────── */
.credibility-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.credibility-pill .dot,
.cta-trust-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--gold-glow); }
  50% { opacity: 0.5; box-shadow: 0 0 4px var(--gold-glow); }
}

/* ── Logo Strip ──────────────────────────────── */
.logo-strip {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(6, 6, 11, 0.5);
}

.logo-strip-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.logo-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-strip-logos span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.logo-strip-logos span:hover {
  opacity: 0.7;
}

/* ── Stats Grid ──────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-card,
.stat {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg-secondary);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── Section Spacing ─────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header p {
  margin-top: 16px;
}

/* ── About Preview (Home) ────────────────────── */
.about-preview {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-quote {
  margin: 28px 0;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--bg-card);
  position: relative;
  border-left: 2px solid var(--gold);
}

.about-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: 16px;
  line-height: 1;
}

.about-quote p {
  font-style: italic;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* ── Pillar Cards ────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pillar-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pillar-card:hover {
  border-color: rgba(212, 175, 55, 0.12);
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.04);
}

.pillar-card:hover::before,
.pillar-card:hover::after {
  opacity: 1;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  border: 1px solid rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.pillar-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── Testimonial Card ────────────────────────── */
.testimonial-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple-deep);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Case Study Cards ────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.case-card:hover {
  border-color: rgba(212, 175, 55, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.case-before {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.case-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.case-card p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.case-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--gold-muted);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.case-result-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-result-icon svg {
  width: 10px;
  height: 10px;
  stroke: #06060B;
  fill: none;
  stroke-width: 3;
}

.case-result span {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
}

/* ── CTA Section ─────────────────────────────── */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(42, 24, 96, 0.18) 0%, transparent 65%),
              radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section > .container > p {
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Footer ──────────────────────────────────── */
.footer {
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: var(--bg-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 14px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  background: var(--gold-muted);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* ── Guarantee Banner ────────────────────────── */
.guarantee-banner {
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.1);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guarantee-banner h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.guarantee-banner p {
  max-width: 560px;
  margin: 0 auto;
}

/* ── Who This Is For ─────────────────────────── */
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.for-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
}

.for-card.for-yes {
  background: rgba(212, 175, 55, 0.03);
  border-color: rgba(212, 175, 55, 0.1);
}

.for-card.for-no {
  background: var(--bg-card);
}

.for-card h3 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.for-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.for-card li .icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.for-card.for-yes li .icon {
  color: var(--gold);
}

.for-card.for-no li .icon {
  color: #3E3E52;
}

/* ── About Page ──────────────────────────────── */
.about-hero {
  padding: 160px 0 80px;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.credential-item {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  transition: border-color 0.3s ease;
}

.credential-item:hover {
  border-color: rgba(212, 175, 55, 0.1);
}

.credential-item h4 {
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.credential-item p {
  font-size: 0.78rem;
}

/* ── Program Page ────────────────────────────── */
.program-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.program-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.problem-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pillar-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pillar-detail:last-child {
  border-bottom: none;
}

.pillar-detail-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.pillar-detail h3 {
  margin-bottom: 16px;
}

.pillar-features {
  list-style: none;
}

.pillar-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.pillar-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ── What You Get ────────────────────────────── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.deliverable-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  transition: all 0.4s ease;
}

.deliverable-card:hover {
  border-color: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.deliverable-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.deliverable-card h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.deliverable-card p {
  font-size: 0.85rem;
}

/* ── Results Page ────────────────────────────── */
.results-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.results-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.case-detail {
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  align-items: start;
  transition: all 0.4s ease;
}

.case-detail:hover {
  border-color: rgba(212, 175, 55, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.case-detail-meta {
  position: relative;
}

.case-detail-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple-deep);
  border: 1px solid rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.case-detail-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 3px;
}

.case-detail-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.case-detail-result-box {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--gold-muted);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.case-detail-result-box .label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.case-detail-result-box .value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.case-detail-story h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.case-detail-story p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.case-detail-story .built-list {
  margin: 14px 0;
}

.case-detail-story .built-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.case-detail-story .built-list li svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ── Apply Page ──────────────────────────────── */
.apply-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 0 80px;
  position: relative;
}

.apply-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.apply-content {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.apply-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

.apply-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.apply-step {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  transition: all 0.4s ease;
}

.apply-step:hover {
  border-color: rgba(212, 175, 55, 0.08);
}

.apply-step-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.apply-step h4 {
  margin-bottom: 8px;
}

.apply-step p {
  font-size: 0.82rem;
}

/* ── Animations ──────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }
.fade-in-delay-4 { transition-delay: 0.48s; }

/* ── Scroll to top button ────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-btn);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: #06060B;
  stroke-width: 2.5;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-content h1 .text-gold { display: inline; }
  .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .about-preview { grid-template-columns: 1fr; text-align: center; }
  .about-content { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-section { grid-template-columns: 1fr; }
  .pillar-detail { grid-template-columns: 1fr; }
  .case-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  h3 { font-size: clamp(1.05rem, 3vw, 1.3rem); }

  .container { padding: 0 20px; }

  .nav-links { display: none; }
  .nav-cta.desktop-only { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    padding: 40px 28px;
    gap: 20px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1.15rem;
  }

  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 24px); padding-bottom: 48px; }
  .hero-content h1 { margin-bottom: 18px; }
  .hero-content p { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-visual { max-width: 360px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { padding: 24px 20px; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { padding: 22px 20px; }
  .for-grid { grid-template-columns: 1fr; }
  .for-card { padding: 24px 20px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .deliverable-card { padding: 18px; }
  .apply-steps { grid-template-columns: 1fr; gap: 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card, .stat { padding: 24px 14px; }
  .stat-number { font-size: clamp(2rem, 5vw, 2.8rem); }
  .logo-strip-logos { gap: 20px; }

  .testimonial-card { padding: 28px 22px; }
  .testimonial-text { font-size: 0.95rem; }

  .about-quote { padding: 18px 20px; }
  .about-quote::before { font-size: 3.5rem; top: -12px; left: 12px; }

  .guarantee-banner { padding: 32px 22px; }
  .guarantee-badge { font-size: 1.3rem; }
  .guarantee-banner h3 { font-size: 1.4rem; }

  .cta-trust { flex-direction: column; align-items: center; gap: 10px; }
  .cta-section { padding: 80px 0; }
  .cta-section h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  .about-hero { padding: 120px 0 60px; }
  .program-hero { padding: 120px 0 60px; }
  .results-hero { padding: 120px 0 60px; }
  .apply-hero { padding: 120px 0 60px; min-height: auto; }
  .apply-content h1 { font-size: clamp(2rem, 7vw, 3.5rem); }

  .case-detail { padding: 28px 22px; gap: 24px; }
  .case-detail-result-box .value { font-size: 1.2rem; }

  .credentials-grid { grid-template-columns: 1fr; }
  .credential-item { padding: 16px; }

  .pillar-detail { gap: 28px; padding: 32px 0; }
  .pillar-detail-number { font-size: 3.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .credibility-pill { font-size: 0.7rem; padding: 5px 12px; }

  .btn { padding: 13px 24px; font-size: 0.9rem; }
  .hero-ctas { justify-content: center; }
}

/* ── Small phones (iPhone SE, etc.) ──────── */
@media (max-width: 420px) {
  h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 2rem); }

  .container { padding: 0 16px; }

  .hero-content p { font-size: 0.9rem; }
  .hero-visual { max-width: 300px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .stat-card, .stat { padding: 20px 10px; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.72rem; }

  .testimonial-card { padding: 22px 18px; }
  .pillar-card { padding: 20px 16px; }
  .case-card { padding: 20px 16px; }
  .for-card { padding: 20px 16px; }
  .case-detail { padding: 22px 18px; }
  .guarantee-banner { padding: 26px 18px; }

  .apply-content h1 { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .apply-step { padding: 22px 14px; }

  .section { padding: 48px 0; }
  .cta-section { padding: 56px 0; }
  .about-hero, .program-hero, .results-hero, .apply-hero { padding: 100px 0 48px; }

  .footer { padding: 48px 0 20px; }
  .scroll-top { width: 40px; height: 40px; bottom: 20px; right: 20px; }
}
