/* =============================================
   PROGRAM PAGES — SHARED STYLES
   Inherits brand: Clash Display + Satoshi, Red/Black
   ============================================= */

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

:root {
  --red: #E8000D;
  --red-dark: #B5000A;
  --red-glow: rgba(232,0,13,0.25);
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --gray-dark: #2a2a2a;
  --gray-mid: #555;
  --gray-light: #999;
  --warm-white: #F5F0E8;
  --white: #FFFFFF;
  --gold: #C9A84C;

  --font-display: 'Archivo', sans-serif;
  --font-cond: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h: 72px;
  --container: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--warm-white); overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }
::selection { background: var(--red); color: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.red-dot { color: var(--red); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

/* ====== NAV (same as main) ====== */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(232,0,13,0.2);
  backdrop-filter: blur(12px);
}
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-m { font-family: var(--font-display); font-size: 2.4rem; color: var(--red); line-height: 1; }
.logo-rest { font-family: var(--font-display); font-size: 1.4rem; color: var(--red); letter-spacing: 0.12em; line-height: 1; }
.logo-divider { width: 1px; height: 32px; background: rgba(245,240,232,0.2); }
.logo-tag { font-family: var(--font-cond); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.5); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--font-cond); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.65); transition: color 0.2s; }
.nav-links a:hover { color: var(--warm-white); }
.nav-links .nav-cta { background: var(--red); color: var(--white); padding: 9px 22px; border: 2px solid var(--red); transition: all 0.25s; }
.nav-links .nav-cta:hover { background: transparent; color: var(--red); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--warm-white); transition: all 0.3s; }

/* ====== PROGRAM HERO ====== */
.prog-hero {
  min-height: 70vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.prog-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(232,0,13,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(232,0,13,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.prog-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, var(--red-glow) 0%, transparent 65%);
  pointer-events: none;
}
.prog-hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.prog-hero-eyebrow { font-family: var(--font-cond); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.prog-hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 6.5rem); line-height: 0.88; letter-spacing: 0.02em; color: var(--warm-white); margin-bottom: 12px; }
.prog-hero-title span { color: var(--red); display: block; }
.prog-hero-sub-title { font-family: var(--font-cond); font-size: 1.1rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.5); margin-bottom: 28px; }
.prog-hero-desc { font-size: 1rem; line-height: 1.8; color: rgba(245,240,232,0.7); max-width: 580px; margin-bottom: 36px; }
.prog-hero-meta { display: flex; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-label { font-family: var(--font-cond); font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(245,240,232,0.35); }
.meta-value { font-family: var(--font-cond); font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; color: var(--warm-white); }
.prog-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero card */
.prog-hero-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(232,0,13,0.2);
  padding: 40px;
  position: relative;
}
.prog-hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
}
.phc-label { font-family: var(--font-cond); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.phc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.phc-list li { font-size: 0.92rem; line-height: 1.5; color: rgba(245,240,232,0.75); padding-left: 20px; position: relative; }
.phc-list li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-size: 0.85rem; }

/* ====== STAT BAR ====== */
.prog-stat-bar { background: var(--red); padding: 28px 0; }
.prog-stat-bar-inner { max-width: var(--container); margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-around; gap: 20px; }
.psb-item { text-align: center; }
.psb-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--white); line-height: 1; }
.psb-label { font-family: var(--font-cond); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 4px; }
.psb-div { width: 1px; height: 48px; background: rgba(255,255,255,0.25); }

/* ====== SECTIONS ====== */
.section-label { font-family: var(--font-cond); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; display: block; }
.section-headline { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 0.92; letter-spacing: 0.02em; margin-bottom: 20px; }
.section-headline.dark { color: var(--black); }
.section-headline.light { color: var(--warm-white); }
.section-sub { font-size: 1rem; line-height: 1.75; color: rgba(245,240,232,0.6); max-width: 640px; }
.section-sub.dark { color: #555; }

/* ====== WHO IS THIS FOR ====== */
.who-section { padding: 100px 0; background: var(--warm-white); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.who-left .section-label { color: var(--red); }
.who-profiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.who-card { background: var(--white); border: 1px solid #e8e8e8; padding: 20px; border-left: 3px solid var(--red); transition: box-shadow 0.2s; }
.who-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.who-icon { font-size: 1.6rem; margin-bottom: 10px; }
.who-card h4 { font-family: var(--font-cond); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.who-card p { font-size: 0.82rem; line-height: 1.6; color: #666; }
.who-right { background: var(--black); padding: 40px; }
.who-right-label { font-family: var(--font-cond); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; display: block; }
.objectives-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.objectives-list li { font-size: 0.92rem; line-height: 1.6; color: rgba(245,240,232,0.75); padding-left: 24px; position: relative; }
.objectives-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ====== WHAT THEY GAIN ====== */
.gains-section { padding: 100px 0; background: var(--black-2); }
.gains-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--gray-dark); border: 2px solid var(--gray-dark); margin-top: 60px; }
.gain-card { background: var(--black); padding: 36px 32px; transition: background 0.3s; }
.gain-card:hover { background: rgba(232,0,13,0.05); }
.gain-num { font-family: var(--font-display); font-size: 3rem; color: rgba(232,0,13,0.15); line-height: 1; margin-bottom: 12px; }
.gain-card h3 { font-family: var(--font-cond); font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-white); margin-bottom: 10px; }
.gain-card p { font-size: 0.88rem; line-height: 1.7; color: rgba(245,240,232,0.5); }

/* ====== MODULES ====== */
.modules-section { padding: 100px 0; background: var(--warm-white); }
.modules-section .section-label { color: var(--red); }
.modules-accordion { margin-top: 48px; border: 1px solid #e0e0e0; }
.module-item { border-bottom: 1px solid #e0e0e0; }
.module-item:last-child { border-bottom: none; }
.module-btn { width: 100%; background: none; border: none; text-align: left; padding: 0; cursor: pointer; display: flex; align-items: stretch; transition: background 0.2s; }
.module-btn:hover { background: #fafafa; }
.module-btn.active { background: var(--black); }
.module-num-box { width: 72px; flex-shrink: 0; background: var(--black); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.4rem; color: var(--red); padding: 20px 0; transition: background 0.2s; }
.module-btn.active .module-num-box { background: var(--red); color: var(--white); }
.module-header-text { flex: 1; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.module-name { font-family: var(--font-cond); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); transition: color 0.2s; }
.module-btn.active .module-name { color: var(--warm-white); }
.module-sub { font-family: var(--font-body); font-size: 0.82rem; color: #888; font-weight: 400; letter-spacing: 0; text-transform: none; margin-top: 3px; display: block; }
.module-btn.active .module-sub { color: rgba(245,240,232,0.5); }
.module-toggle { font-size: 1.4rem; color: var(--red); flex-shrink: 0; line-height: 1; transition: transform 0.3s; font-weight: 300; }
.module-btn.active .module-toggle { transform: rotate(45deg); color: var(--warm-white); }
.module-content { display: none; background: #f8f8f5; border-top: 1px solid #e0e0e0; padding: 32px 40px 32px 96px; }
.module-content.open { display: block; }
.module-topics { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.module-topics li { font-size: 0.88rem; line-height: 1.5; color: #444; padding-left: 18px; position: relative; }
.module-topics li::before { content: '·'; position: absolute; left: 0; color: var(--red); font-size: 1.2rem; line-height: 1.3; }

/* ====== SESSION APPROACH ====== */
.approach-section { padding: 100px 0; background: var(--black); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 60px; }
.approach-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.approach-method { background: rgba(245,240,232,0.04); border: 1px solid rgba(245,240,232,0.08); padding: 20px; }
.am-icon { font-size: 1.4rem; margin-bottom: 10px; }
.am-label { font-family: var(--font-cond); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-white); }
.approach-ratings { }
.rating-label { font-family: var(--font-cond); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(245,240,232,0.35); margin-bottom: 24px; display: block; }
.rating-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.rating-name { font-family: var(--font-cond); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.7); width: 80px; flex-shrink: 0; }
.rating-bar { flex: 1; height: 4px; background: rgba(245,240,232,0.1); border-radius: 2px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--red); border-radius: 2px; animation: fill-bar 1.5s var(--ease-out) forwards; }
@keyframes fill-bar { from { width: 0; } }
.rating-stars { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; }
.approach-photo {
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.approach-photo img {
  width: 100%;
  display: block;
  filter: contrast(1.05);
  transition: transform 0.6s ease;
}
.approach-photo:hover img { transform: scale(1.03); }
.approach-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232,0,13,0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* ====== INCLUSIONS ====== */
.inclusions-section { padding: 80px 0; background: var(--black-3); }
.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.inclusions-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.inclusions-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.92rem; line-height: 1.6; color: rgba(245,240,232,0.75); }
.inc-icon { color: var(--red); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step { display: flex; gap: 20px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(245,240,232,0.06); }
.process-step:last-child { border-bottom: none; }
.ps-num { width: 36px; height: 36px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; color: var(--white); flex-shrink: 0; }
.ps-text { font-size: 0.88rem; line-height: 1.6; color: rgba(245,240,232,0.65); padding-top: 6px; }

/* ====== SUCCESS STORIES ====== */
.success-section { padding: 100px 0; background: var(--black); position: relative; overflow: hidden; }
.success-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(232,0,13,0.1) 0%, transparent 60%); pointer-events: none; }
.success-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--gray-dark); border: 2px solid var(--gray-dark); margin-top: 60px; }
.success-card { background: var(--black-2); padding: 40px 32px; }
.success-card.featured-s { background: var(--red); }
.sc-dollar { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); color: var(--warm-white); line-height: 1; margin-bottom: 4px; }
.featured-s .sc-dollar { color: var(--white); }
.sc-context { font-family: var(--font-cond); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.featured-s .sc-context { color: rgba(255,255,255,0.8); }
.sc-story { font-size: 0.88rem; line-height: 1.7; color: rgba(245,240,232,0.6); }
.featured-s .sc-story { color: rgba(255,255,255,0.9); }

/* ====== TESTIMONIALS ====== */
.prog-testi-section { padding: 100px 0; background: var(--warm-white); }
.prog-testi-section .section-label { color: var(--red); }
.prog-testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.prog-testi-card { background: var(--white); border: 1px solid #eee; padding: 32px; position: relative; transition: border-color 0.3s; }
.prog-testi-card:hover { border-color: var(--red); }
.prog-testi-card.featured-t { grid-column: span 2; background: var(--black); border: none; padding: 40px 48px; }
.ptc-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 16px; }
.ptc-quote { font-size: 0.95rem; line-height: 1.8; color: #333; font-style: italic; margin-bottom: 20px; }
.prog-testi-card.featured-t .ptc-quote { color: rgba(245,240,232,0.85); font-size: 1.05rem; }
.ptc-author strong { display: block; font-family: var(--font-cond); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
.prog-testi-card.featured-t .ptc-author strong { color: var(--warm-white); }
.ptc-author span { font-size: 0.8rem; color: #888; }
.prog-testi-card.featured-t .ptc-author span { color: rgba(245,240,232,0.45); }
.voices-mini { margin-top: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.voice-mini { background: #f5f5f0; padding: 14px 18px; font-size: 0.83rem; line-height: 1.6; color: #555; border-left: 3px solid var(--red); font-style: italic; }

/* ====== CTA SECTION ====== */
.prog-cta-section { padding: 100px 0; background: var(--black-2); position: relative; overflow: hidden; }
.prog-cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(232,0,13,0.15) 0%, transparent 60%); pointer-events: none; }
.prog-cta-inner { max-width: 800px; margin: 0 auto; text-align: center; padding: 0 40px; position: relative; z-index: 1; }
.prog-cta-inner .section-headline { margin-bottom: 20px; }
.prog-cta-inner p { font-size: 1rem; line-height: 1.75; color: rgba(245,240,232,0.6); margin-bottom: 40px; }
.prog-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.prog-breadcrumb { font-family: var(--font-cond); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,232,0.3); margin-top: 24px; }
.prog-breadcrumb a { color: var(--red); transition: color 0.2s; }
.prog-breadcrumb a:hover { color: var(--warm-white); }

/* ====== BUTTONS ====== */
.btn-primary { display: inline-block; background: var(--red); color: var(--white); font-family: var(--font-cond); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 16px 40px; border: 2px solid var(--red); transition: all 0.25s var(--ease-out); cursor: pointer; }
.btn-primary:hover { background: transparent; color: var(--red); }
.btn-ghost { display: inline-block; background: transparent; color: var(--warm-white); font-family: var(--font-cond); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 36px; border: 2px solid rgba(245,240,232,0.3); transition: all 0.25s; }
.btn-ghost:hover { border-color: var(--warm-white); background: rgba(245,240,232,0.05); }

/* ====== FOOTER ====== */
.prog-footer { background: #040404; padding: 40px 0; border-top: 1px solid rgba(232,0,13,0.2); }
.prog-footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.prog-footer-brand { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.12em; color: var(--warm-white); }
.prog-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.prog-footer-links a { font-family: var(--font-cond); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.35); transition: color 0.2s; }
.prog-footer-links a:hover { color: var(--warm-white); }
.prog-footer-copy { font-size: 0.75rem; color: rgba(245,240,232,0.2); }

/* ====== FLOATING BUTTONS ====== */
.float-btn { position: fixed; right: 24px; z-index: 999; display: flex; align-items: center; gap: 10px; padding: 13px 20px 13px 16px; border-radius: 50px; font-family: var(--font-cond); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; box-shadow: 0 4px 24px rgba(0,0,0,0.4); transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); overflow: hidden; }
.float-label { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width 0.3s var(--ease-out); opacity: 0; }
.float-btn:hover .float-label { max-width: 80px; opacity: 1; }
.whatsapp-btn { bottom: 100px; background: #25D366; color: var(--white); }
.whatsapp-btn:hover { background: #1ebe5a; transform: scale(1.05); }
.email-btn { bottom: 36px; background: var(--red); color: var(--white); }
.email-btn:hover { background: var(--red-dark); transform: scale(1.05); }
.home-btn { left: 24px; bottom: 36px; background: var(--black); color: var(--warm-white); border: 1px solid rgba(245,240,232,0.15); }
.home-btn:hover { background: var(--red); border-color: var(--red); transform: scale(1.05); }

/* ====== AOS ====== */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 32px 40px 40px; gap: 20px; border-top: 1px solid rgba(232,0,13,0.2); backdrop-filter: blur(12px); }
  .hamburger { display: flex; }
  .prog-hero-content { grid-template-columns: 1fr; }
  .prog-hero-card { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .who-profiles { grid-template-columns: 1fr; }
  .gains-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-methods { grid-template-columns: 1fr 1fr; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .success-grid { grid-template-columns: 1fr; }
  .prog-testi-grid { grid-template-columns: 1fr; }
  .prog-testi-card.featured-t { grid-column: span 1; }
  .voices-mini { grid-template-columns: 1fr; }
  .module-topics { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .prog-hero-content { padding: 60px 20px; }
  .gains-grid { grid-template-columns: 1fr; }
  .prog-stat-bar-inner { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .psb-div { display: none; }
  .prog-footer-inner { flex-direction: column; text-align: center; }
}

/* =========================================
   PREMIUM TYPE REFINEMENT — Direction A
   Clash Display + Satoshi tuning layer
   ========================================= */
.prog-hero-title, .section-headline {
  text-transform: uppercase; font-weight: 600; letter-spacing: -0.01em;
}
.nav-logo { gap: 1px; align-items: baseline; }
.logo-m { font-size: 1.5rem; font-weight: 600; color: var(--red); letter-spacing: 0.05em; }
.logo-rest { font-size: 1.5rem; font-weight: 600; color: var(--red); letter-spacing: 0.05em; }
.prog-hero-logo { width: 86px; height: 86px; border-radius: 14px; display: block; margin-bottom: 22px; box-shadow: 0 18px 44px rgba(0,0,0,0.5); }
@media (max-width: 720px){ .prog-hero-logo { width: 68px; height: 68px; } }
.psb-num, .gain-num, .sc-dollar, .ps-num, .module-num-box { font-weight: 700; letter-spacing: -0.02em; }
.prog-footer-brand { text-transform: uppercase; font-weight: 600; letter-spacing: 0.04em; }
.module-sub { font-family: var(--font-body); }
body { letter-spacing: 0.002em; }
