/* ================================================================
   FIT & LIFT — IRONFORM ECOSYSTEM
   Premium Responsive Stylesheet
   Mobile-first → Desktop expansion
   ================================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  background: #0A0A0A;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100vw;
  max-width: 100vw;
}

h1, h2, h3, h4, .bebas-font {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Base */
  --bg: #0A0A0A;
  --bg2: #0D0D0D;
  --card: #111111;
  --border: #1F1F1F;
  --border2: #2A2A2A;
  --text: #FFFFFF;
  --muted: #A0A0A0;
  --dim: #555555;

  /* System Identity Colors */
  --accent: #E50914;
  /* IronForm — Iron Red (FLAGSHIP) */
  --accent-h: #C5070F;
  /* Premium Gold Shade System */
  --gold: #D4AF37;
  --gold-soft: #C6A85A;
  --gold-dark: #9C7A1C;
  --gold-glow: rgba(212, 175, 55, 0.18);

  /* System Identity Colors */
  --accent: #E50914; /* IronForm — Iron Red (FLAGSHIP) */
  --accent-h: #C5070F;
  --silver: #D9D9D9; /* IronForm Stage — Silver/White */
  --green: #178A40; /* IronForm Group — Deep Green (muted) */
  --green-h: #1AA34A;
  --blue: #2E6FD9; /* Iron Forge — Steel Blue (muted) */
  --blue-h: #3A7BFF;

  /* Section depth tints */
  --section-tint: rgba(229, 9, 20, .018);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
}

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--bg2);
  /* Subtle depth — very low opacity red tint to separate from base */
  background-image: radial-gradient(ellipse 120% 60% at 50% 0%, rgba(229, 9, 20, .025) 0%, transparent 70%);
  border-top: 1px solid var(--border);
}

/* ── UTILITIES ─────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-gold-soft { color: var(--gold-soft); }
.glow-gold { text-shadow: 0 0 15px var(--gold-glow); }

/* Safety Logic: IRONFORM branding */
.ironform-gold {
  color: var(--gold) !important;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* Hero Depth Utilities */
.hero-depth-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-grain {
  background-image: url('assets/noise.png'); /* Fallback for grain effect */
  opacity: 0.03;
  mix-blend-mode: overlay;
}

.hero-grid {
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
}

.hero-vignette {
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.6) 100%);
}

.hero-glow {
  background: radial-gradient(circle at 50% 0%, var(--gold-glow) 0%, transparent 70%);
}

/* ── TYPE HELPERS ────────────────────────────────────────────────── */
.text-red {
  color: var(--accent);
}

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

.hide-mobile {
  display: none;
}

/* ── CHIP / EYEBROW ─────────────────────────────────────────────── */
.chip {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid rgba(229, 9, 20, 0.35);
  background: rgba(229, 9, 20, 0.06);
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(10px, 3vw, 13px);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  white-space: normal;
  overflow: visible;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .eyebrow {
    font-size: clamp(10px, 3vw, 13px);
    line-height: 1.4;
    margin-bottom: 10px;
    transform: translateY(-4px);
  }
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s infinite;
  flex-shrink: 0;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.75);
  }
}

/* ── SECTION HEADER ─────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-h2 {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.section-h2 em {
  font-style: normal;
  color: var(--accent);
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .15s, box-shadow .18s, opacity .18s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(.97);
}

.btn-block {
  width: 100%;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-h);
  box-shadow: 0 6px 24px rgba(229, 9, 20, .35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .25);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .06);
}

.btn-gold {
  background: var(--gold);
  color: #000;
}

.btn-gold:hover {
  background: var(--gold-h);
  transform: translateY(-1px);
}

/* Deep green for IronForm Group CTAs */
.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-h);
  box-shadow: 0 6px 24px rgba(23, 138, 64, .3);
  transform: translateY(-1px);
}

/* Steel blue for Iron Forge CTAs */
.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-blue:hover {
  background: var(--blue-h);
  box-shadow: 0 6px 24px rgba(46, 111, 217, .3);
  transform: translateY(-1px);
}

/* WhatsApp — replaced with dark outline (no bright green) */
.btn-wa {
  background: transparent;
  color: var(--silver);
  border: 1.5px solid rgba(217, 217, 217, .28);
}

.btn-wa:hover {
  border-color: rgba(217, 217, 217, .55);
  background: rgba(255, 255, 255, .04);
  transform: translateY(-1px);
}

/* ================================================================
   FLOATING WHATSAPP BUTTON — GLOBAL PREMIUM STANDARD
   Applied via main.js across all pages
   ================================================================ */

/* Outer wrapper — anchors the button + pulse ring together */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulse ring animation */
.wa-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%   { opacity: 0.7; transform: scale(1); }
  70%  { opacity: 0;   transform: scale(1.35); }
  100% { opacity: 0;   transform: scale(1.35); }
}

/* The clickable button */
.wa-float {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.28),
    0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.wa-float i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 28px;
  line-height: 1;
  pointer-events: none;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 16px 40px rgba(37, 211, 102, 0.38),
    0 6px 16px rgba(0, 0, 0, 0.4);
}

.wa-float:active {
  transform: scale(0.96);
}

/* Tooltip */
.wa-fab .wa-tooltip {
  position: absolute;
  right: 76px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.wa-fab:hover .wa-tooltip {
  opacity: 1;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .wa-fab {
    bottom: 20px;
    right: 18px;
  }
  .wa-float {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  .wa-float i {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
  /* Hide tooltip on touch devices */
  .wa-fab .wa-tooltip {
    display: none;
  }
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, .8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-height: 72px;
  max-height: 72px;
  padding: 0 20px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  max-width: none;
  overflow: visible;
}

.nav-logo-wrapper {
  flex: 0 0 auto;
  width: clamp(38px, 4vw, 48px);
  height: clamp(38px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transform: translateY(-1px);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}

.brand-amp {
  color: var(--accent);
}

.brand-tagline {
  font-size: clamp(9px, 1vw, 11px);
  opacity: 0.7;
  letter-spacing: 0.5px;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
  line-height: 1;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .nav {
    overflow: hidden;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: none;
    overflow: visible;
    flex-shrink: 0;
    min-width: fit-content;
  }

  .nav-logo-wrapper {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
  }

  .brand-text {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .brand-name {
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.6px;
  }

  .brand-tagline {
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.5px;
    opacity: 0.75;
    white-space: nowrap;
    overflow: visible;
    margin-top: 2px;
  }
}

.nav-links {
  display: none;
  gap: 4px;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .05);
}

.nav-link.active {
  color: #fff;
  background: rgba(255, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.2);
}

.nav-cta {
  display: none;
  height: 38px;
  font-size: 11px;
  padding: 0 18px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Drawer */
.drawer {
  position: fixed;
  top: 72px; /* Match nav height */
  left: 0;
  right: 0;
  background: #0D0D0D;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  transform: translateY(-10px);
  visibility: hidden;
}

.drawer.open {
  max-height: 80vh;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  overflow-y: auto;
}

.drawer-inner {
  padding: 24px 20px 32px;
  max-width: 480px;
  margin: 0 auto;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.drawer-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}

.drawer-link:last-child {
  border-bottom: none;
}

.drawer-link:hover {
  color: #fff;
}

.drawer-link.active {
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
  backdrop-filter: blur(4px);
}

.drawer-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: 64px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 9, 20, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 9, 20, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
      rgba(229, 9, 20, .14) 0%,
      rgba(229, 9, 20, .04) 40%,
      transparent 70%);
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  padding: 60px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero-h1 {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: clamp(52px, 14vw, 96px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 8px;
}

.hero-note {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.65;
  margin-bottom: 36px;
  padding-left: 14px;
  border-left: 2px solid var(--border2);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Hero Visual: stat cards & logo */
.hero-visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-logo-container img {
  max-width: 260px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hero-logo-container img {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .hero-logo-container img {
    max-width: 160px;
  }
}

.hero-card-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .hero-card-stack {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-card-stack {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.hcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .2s;
}

.hcard:hover {
  border-color: var(--border2);
}

.hcard-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}

.hcard-val {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.hcard-val.red {
  color: var(--accent);
}


/* ================================================================
   ECOSYSTEM CREDIBILITY STRIP
   ================================================================ */
/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand-col {
    grid-column: span 1;
  }
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.6px;
}

.footer-brand-tagline {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 5px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .footer-logo-link {
    gap: 12px;
  }
  .footer-logo {
    width: 42px;
    height: 42px;
  }
  .footer-brand-name {
    font-size: 22px;
  }
  .footer-brand-tagline {
    font-size: 9px;
    margin-top: 4px;
  }
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social-row {
  display: flex;
  gap: 16px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.3s ease;
}

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

.footer-disclaimer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}

.footer-disclaimer p {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
/* ================================================================
   ECOSYSTEM CREDIBILITY STRIP
   ================================================================ */
.eco-strip {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.eco-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(229, 9, 20, .03) 0%, transparent 70%);
  pointer-events: none;
}

.eco-inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.eco-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.eco-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 32px;
  flex: 1;
  cursor: default;
  transition: background .22s;
  opacity: 0;
  transform: translateY(10px);
  animation: ecoFadeUp .55s ease forwards;
}

.eco-item:hover {
  background: rgba(229, 9, 20, .03);
}

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

/* Staggered animation delays */
.eco-item:nth-child(1) {
  animation-delay: .05s;
}

.eco-item:nth-child(2) {
  animation-delay: .12s;
}

.eco-item:nth-child(3) {
  animation-delay: .19s;
}

.eco-item:nth-child(4) {
  animation-delay: .26s;
}

.eco-item:nth-child(5) {
  animation-delay: .33s;
}

.eco-item:nth-child(7) {
  animation-delay: .40s;
}

.eco-item:nth-child(9) {
  animation-delay: .47s;
}

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

.eco-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--accent);
  transition: color .22s, filter .22s;
  flex-shrink: 0;
}

.eco-item:hover .eco-icon {
  color: #FF1A26;
  filter: drop-shadow(0 0 6px rgba(229, 9, 20, .55));
}

.eco-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  transition: color .22s;
}

.eco-item:hover .eco-label {
  color: #FFFFFF;
}

.eco-item--location .eco-label {
  letter-spacing: .08em;
  font-size: 9.5px;
}

.eco-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 14px 0;
  flex-shrink: 0;
}

/* Mobile: 2-column grid */
@media (max-width: 768px) {
  .eco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .eco-divider {
    display: none;
  }

  .eco-item {
    padding: 22px 16px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    white-space: normal;
  }

  /* 2-col: remove right border on even items, remove bottom border on last row */
  .eco-item:nth-child(even) {
    border-right: none;
  }

  /* location spans full width on mobile */
  .eco-item--location {
    grid-column: span 2;
    border-right: none;
  }

  .eco-label {
    white-space: normal;
    font-size: 9px;
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.scroll-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollDrop 2s ease infinite;
}

@keyframes scrollDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

.hero-scroll-hint span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--dim);
}

/* ================================================================
   WHERE DO I BEGIN — Path Guide
   ================================================================ */

/* Row wrappers */
.begin-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.begin-row--primary {
  grid-template-columns: 1fr 1fr;
}

.begin-row--specialized {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 48px;
}

/* Base card — clean, equal weight */
.begin-card {
  background: #111111;
  border: 1px solid #1F1F1F;
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0;
  transition: border-color .22s, transform .22s;
  position: relative;
  overflow: hidden;
}

.begin-card:hover {
  transform: translateY(-4px);
  border-color: #2E2E2E;
}

/* Ensure the path description and icon wrap allow the card to grow */
.begin-card-body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1; /* Allow body to grow */
}

/* If there are any buttons inside begin-card, align them to bottom */
.begin-card .btn, 
.begin-card .btn-explore {
  margin-top: auto;
}

/* Path label (category) */
.begin-path-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 18px;
}

/* Body row: icon + text */
.begin-card-body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Icon wrap — subtle red, equal on all cards */
.begin-icon-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: .72;
  transition: opacity .22s;
}

.begin-card:hover .begin-icon-wrap {
  opacity: 1;
}

/* Title */
.begin-path-title {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 7px;
  line-height: 1.1;
  color: #FFFFFF;
  transition: color .22s;
}

.begin-card:hover .begin-path-title {
  color: #FFFFFF;
}

/* Description */
.begin-path-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Specialized row: slightly more compact */
.begin-row--specialized .begin-card {
  padding: 22px 20px;
}

.begin-row--specialized .begin-path-title {
  font-size: 19px;
}

.begin-row--specialized .begin-path-desc {
  font-size: 12.5px;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {

  .begin-row--primary,
  .begin-row--specialized {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {

  .begin-row--primary,
  .begin-row--specialized {
    grid-template-columns: 1fr;
  }

  .begin-row--specialized {
    margin-bottom: 32px;
  }

}



/* ================================================================
   FIVE SYSTEMS
   ================================================================ */
.systems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.sys-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.sys-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-soft);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--gold-glow);
}

/* Align system buttons to bottom */
.sys-card .btn,
.sys-card .btn-explore,
.sys-card .sys-cta {
  margin-top: auto;
}

/* System-matched border accents — subtle tinted borders at rest, glow on hover */
.sys-card--flagship {
  border-color: rgba(229, 9, 20, .12);
}

.sys-card--flagship:hover {
  border-color: rgba(229, 9, 20, .45);
  box-shadow: 0 0 28px rgba(229, 9, 20, .08);
}

.sys-card--gold {
  border-color: rgba(198, 168, 90, .14);
}

.sys-card--gold:hover {
  border-color: rgba(198, 168, 90, .45);
  box-shadow: 0 0 28px rgba(198, 168, 90, .08);
}

.sys-card--green {
  border-color: rgba(23, 138, 64, .14);
}

.sys-card--green:hover {
  border-color: rgba(23, 138, 64, .45);
  box-shadow: 0 0 28px rgba(23, 138, 64, .08);
}

.sys-card--blue {
  border-color: rgba(46, 111, 217, .14);
}

.sys-card--blue:hover {
  border-color: rgba(46, 111, 217, .45);
  box-shadow: 0 0 28px rgba(46, 111, 217, .08);
}

.sys-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sys-num {
  font-size: 8px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .1em;
}

.sys-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
}

.sys-badge--red {
  background: rgba(229, 9, 20, .1);
  color: var(--accent);
  border: 1px solid rgba(229, 9, 20, .28);
}

.sys-badge--gold {
  background: rgba(198, 168, 90, .09);
  color: var(--gold);
  border: 1px solid rgba(198, 168, 90, .28);
}

.sys-badge--white {
  background: rgba(217, 217, 217, .07);
  color: var(--silver);
  border: 1px solid rgba(217, 217, 217, .2);
}

.sys-badge--green {
  background: rgba(23, 138, 64, .1);
  color: var(--green);
  border: 1px solid rgba(23, 138, 64, .28);
}

.sys-badge--blue {
  background: rgba(46, 111, 217, .1);
  color: var(--blue);
  border: 1px solid rgba(46, 111, 217, .28);
}

.sys-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(229, 9, 20, .07);
  border: 1px solid rgba(229, 9, 20, .2);
  margin-bottom: 16px;
}

.sys-icon--gold {
  color: var(--gold);
  background: rgba(198, 168, 90, .07);
  border-color: rgba(198, 168, 90, .2);
}

.sys-icon--white {
  color: var(--silver);
  background: rgba(217, 217, 217, .05);
  border-color: rgba(217, 217, 217, .18);
}

.sys-icon--green {
  color: var(--green);
  background: rgba(23, 138, 64, .07);
  border-color: rgba(23, 138, 64, .2);
}

.sys-icon--blue {
  color: var(--blue);
  background: rgba(46, 111, 217, .07);
  border-color: rgba(46, 111, 217, .2);
}

.sys-name {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}

.sys-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.sys-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.sys-tag {
  font-size: 8px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 4px;
}

.sys-tag--gold {
  color: var(--gold);
  border-color: rgba(198, 168, 90, .25);
}

.sys-tag--white {
  color: var(--silver);
  border-color: rgba(217, 217, 217, .2);
}

.sys-tag--green {
  color: var(--green);
  border-color: rgba(23, 138, 64, .25);
}

.sys-tag--blue {
  color: var(--blue);
  border-color: rgba(46, 111, 217, .25);
}



/* ── SYSTEM CARDS (Systems Page Design) ── */
.sys-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.if-pathway-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
  text-decoration: none;
}

.if-pathway-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
  transition: opacity .28s, transform .28s;
}

.if-pathway-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-soft);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 15px var(--gold-glow);
}

.if-pathway-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  transition: color .22s, border-color .22s, background .22s;
}

.if-pathway-card:hover .if-pathway-arrow {
  border-color: currentColor;
  background: rgba(255, 255, 255, .06);
}

.if-pathway-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
}

.if-pathway-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

.if-pathway-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0px;
}


.if-pathway-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: auto;
}

.if-pathway-tag {
  font-size: 8.5px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3.4px 6.8px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.22s ease;
}

.if-pathway-card:hover .if-pathway-tag {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.if-pathway--red:hover .if-pathway-tag {
  border-color: rgba(229, 9, 20, 0.3);
  color: var(--accent);
}

.if-pathway--gold:hover .if-pathway-tag {
  border-color: rgba(198, 168, 90, 0.3);
  color: var(--gold);
}

.if-pathway--white:hover .if-pathway-tag {
  border-color: rgba(217, 217, 217, 0.3);
  color: var(--silver);
}

.if-pathway--green:hover .if-pathway-tag {
  border-color: rgba(23, 138, 64, 0.3);
  color: #22c55e;
}

.if-pathway--blue:hover .if-pathway-tag {
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--blue);
}

.if-pathway-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  transition: color .22s;
  margin-top: auto;
}

/* Color Variants */
.if-pathway--red::before {
  background: var(--accent);
}

.if-pathway--red:hover {
  border-color: rgba(229, 9, 20, .45);
  box-shadow: 0 20px 60px rgba(229, 9, 20, .15);
}

.if-pathway--red:hover .if-pathway-title {
  color: var(--accent);
}

.if-pathway--red .if-pathway-arrow {
  color: var(--accent);
}

.if-pathway--gold::before {
  background: var(--gold);
}

.if-pathway--gold:hover {
  border-color: rgba(198, 168, 90, .45);
  box-shadow: 0 20px 60px rgba(198, 168, 90, .13);
}

.if-pathway--gold:hover .if-pathway-title {
  color: var(--gold);
}

.if-pathway--gold .if-pathway-arrow {
  color: var(--gold);
}

.if-pathway--white::before {
  background: #D9D9D9;
}

.if-pathway--white:hover {
  border-color: rgba(217, 217, 217, .35);
  box-shadow: 0 20px 60px rgba(217, 217, 217, .10);
}

.if-pathway--white:hover .if-pathway-title {
  color: var(--silver);
}

.if-pathway--white .if-pathway-arrow {
  color: var(--silver);
}

.if-pathway--green::before {
  background: var(--green);
}

.if-pathway--green:hover {
  border-color: rgba(23, 138, 64, .45);
  box-shadow: 0 20px 60px rgba(23, 138, 64, .14);
}

.if-pathway--green:hover .if-pathway-title {
  color: #22c55e;
}

.if-pathway--green .if-pathway-arrow {
  color: #22c55e;
}

.if-pathway--blue::before {
  background: var(--blue);
}

.if-pathway--blue:hover {
  border-color: rgba(46, 111, 217, .45);
  box-shadow: 0 20px 60px rgba(46, 111, 217, .15);
}

.if-pathway--blue:hover .if-pathway-title {
  color: var(--blue-h);
}

.if-pathway--blue .if-pathway-arrow {
  color: var(--blue-h);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 1023px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card .team-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  aspect-ratio: 4/5;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.team-card-num {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 14px;
  z-index: 2;
  border-radius: 2px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.sys-cta {
  height: 46px;
  font-size: 11px;
}

.sys-glow {
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .07;
  pointer-events: none;
  transition: opacity .3s;
}

.sys-card:hover .sys-glow {
  opacity: .14;
}

.sys-glow--red {
  background: var(--accent);
}

.sys-glow--gold {
  background: var(--gold);
}

.sys-glow--white {
  background: var(--silver);
}

.sys-glow--green {
  background: var(--green);
}

.sys-glow--blue {
  background: var(--blue);
}

/* ================================================================
   IRONFORM STANDARD / PILLARS
   ================================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  align-items: start;
  transition: border-color .2s, transform .2s;
  animation-delay: var(--d, 0s);
}

.pillar-card:hover {
  border-color: rgba(229, 9, 20, .3);
  transform: translateX(4px);
}

.pillar-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .1em;
  grid-row: span 2;
  padding-top: 3px;
  min-width: 24px;
}

.pillar-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ================================================================
   HOW IT WORKS — PROCESS
   ================================================================ */
.steps-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-card {
  display: flex;
  gap: 20px;
  padding-bottom: 40px;
  position: relative;
}

.step-card:last-child {
  padding-bottom: 0;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(229, 9, 20, .4), transparent);
}

.step-card:last-child .step-connector {
  display: none;
}

.step-content {
  padding-top: 10px;
  flex: 1;
}

.step-title {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.step-arrow {
  display: none;
}

/* shown on desktop */

/* ================================================================
   SESSION STRUCTURE
   ================================================================ */
.session-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1160px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .session-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .session-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .session-list {
    grid-template-columns: 1fr;
  }
}

.session-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  cursor: default;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  height: 100%;
}

.session-item:hover {
  background: rgba(229, 9, 20, .04);
  border-color: rgba(229, 9, 20, .3);
  transform: translateX(6px);
}

.session-num {
  font-size: 8px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .1em;
  min-width: 20px;
}

.session-content {
  flex: 1;
}

.session-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.session-detail {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.session-bar {
  width: 32px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.session-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}

.session-item:hover .session-bar::after {
  transform: scaleX(1);
}

/* ================================================================
   SYSTEM BREAKDOWN
   ================================================================ */
.breakdown-card {
  display: flex;
  gap: 20px;
  background: var(--card);
  border: 1px solid rgba(23, 138, 64, .22);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
  transition: border-color .2s, box-shadow .2s;
}

.breakdown-card:hover {
  border-color: rgba(23, 138, 64, .45);
  box-shadow: 0 0 24px rgba(23, 138, 64, .07);
}

.breakdown-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(23, 138, 64, .08);
  border: 1px solid rgba(23, 138, 64, .25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.breakdown-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: .9;
}

.breakdown-title {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.breakdown-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ================================================================
   IRON FORGE
   ================================================================ */
.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 24px;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.22,1,.36,1), border-color .25s, box-shadow .25s;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.store-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 12px 32px -4px rgba(0,0,0,0.3);
}

.store-card:active {
  transform: translateY(-2px) scale(0.98);
}

/* Color-Specific Glows */
.store-card--red:hover { border-color: rgba(229, 9, 20, 0.45); box-shadow: 0 0 24px rgba(229, 9, 20, 0.08); }
.store-card--gold:hover { border-color: rgba(198, 168, 90, 0.45); box-shadow: 0 0 24px rgba(198, 168, 90, 0.08); }
.store-card--green:hover { border-color: rgba(23, 138, 64, 0.45); box-shadow: 0 0 24px rgba(23, 138, 64, 0.08); }
.store-card--blue:hover { border-color: rgba(46, 111, 217, 0.45); box-shadow: 0 0 24px rgba(46, 111, 217, 0.08); }

.store-chip {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(229, 9, 20, .09);
  color: var(--accent);
  border: 1px solid rgba(229, 9, 20, .22);
  min-width: 62px;
  text-align: center;
  flex-shrink: 0;
}

.store-chip--gold { background: rgba(198, 168, 90, .09); color: var(--gold); border-color: rgba(198, 168, 90, .2); }
.store-chip--green { background: rgba(23, 138, 64, .09); color: var(--green); border-color: rgba(23, 138, 64, .2); }
.store-chip--blue { background: rgba(46, 111, 217, .09); color: var(--blue); border-color: rgba(46, 111, 217, .2); }

.store-name {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
  line-height: 1.4;
  color: #fff;
}

.store-arrow {
  font-size: 16px;
  color: var(--dim);
  transition: transform .25s ease, color .2s;
}

.store-card:hover .store-arrow {
  transform: translateX(6px);
  color: #fff;
}

.store-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 48px;
}

.store-helper-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.btn--store-cta {
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
}

.btn--store-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0 24px rgba(229, 9, 20, 0.25);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card, .testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover, .testi-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.testi-quote {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 64px;
  line-height: .7;
  color: var(--accent);
  opacity: .5;
  font-weight: 800;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -.01em;
  margin-bottom: 26px;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.3s ease;
}

.testimonial-card:hover .testi-avatar img {
  filter: grayscale(0);
}

.testi-avatar--gold {
  background: var(--gold);
  color: #000;
}

.testi-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 13px;
}

.testi-sys {
  font-size: 11px;
  color: var(--gold-soft);
  font-weight: 600;
  white-space: nowrap;
}

.testi-stat {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  top: 25px;
  right: 26px;
  text-align: right;
}

.testi-stat--gold {
  color: var(--gold);
}

/* ================================================================
   QUIZ
   ================================================================ */
.quiz-section {
  background: var(--bg);
}

.quiz-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 52px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}

.quiz-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(229, 9, 20, .09), transparent 65%);
  pointer-events: none;
}

.quiz-icon-wrap {
  width: 68px;
  height: 68px;
  background: rgba(229, 9, 20, .08);
  border: 1px solid rgba(229, 9, 20, .22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 18px;
}

.quiz-h2 {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: clamp(30px, 7vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.quiz-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.quiz-btn {
  max-width: 280px;
  margin: 0 auto;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--card);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background .15s;
  line-height: 1.5;
}

.faq-q:hover {
  background: #161616;
}

.faq-q[aria-expanded="true"] {
  color: var(--accent);
}

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .25s, color .15s;
  line-height: 1;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  background: #0E0E0E;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 9, 20, .1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-h2 {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.final-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ================================================================
   FOOTER (REDESIGN)
   ================================================================ */
.footer {
  background: #000000;
  border-top: 1px solid #111;
  padding: 80px 0 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 60px;
  align-items: start;
}

.footer-section h4 {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
  color: #fff;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

/* Column 1: Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-wrap {
  text-decoration: none;
}

.footer-logo-text {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.footer-logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 200px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

/* Links List */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-item {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link-item i {
  font-size: 10px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
  color: var(--accent);
}

.footer-link-item:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-link-item:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* System Specifics */
.system-link {
  position: relative;
}

.system-link:hover {
  color: var(--accent);
}

.system-link:hover::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Iron Forge Column */
.footer-forge-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-forge-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-forge-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.footer-forge-btn:hover {
  gap: 10px;
  color: #fff;
}

/* Connect Column */
.connect-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.connect-item i {
  width: 16px;
  text-align: center;
}

.connect-item:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #111;
  padding: 32px 0;
  margin-top: 40px;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  color: #444;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Responsive Footer */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

/* ================================================================
   REVEAL ON SCROLL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ================================================================
   ████  DESKTOP  ████
   ================================================================ */


/* ── 640px ─ desktop nav + hero ──────────────────────────────────*/

/* ── 640px ─ desktop nav + 2-col hero ────────────────────────────*/
@media (min-width: 640px) {
  .hide-mobile {
    display: inline;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .drawer {
    display: none !important;
  }

  .drawer-overlay {
    display: none !important;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 80px 20px 100px;
  }

  .hero-text {
    flex: 1;
    min-width: 0;
  }

  .hero-visual {
    flex: 0 0 300px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Hero: only accent + outline CTAs in row; WhatsApp goes last */
  .hero-actions .btn {
    flex: 1;
    min-width: 130px;
  }

  .begin-grid {
    grid-template-columns: 1fr 1fr;
  }

  .store-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .store-actions {
    flex-direction: row;
    justify-content: center;
  }

  .final-actions {
    flex-direction: row;
    justify-content: center;
  }

  /* Desktop: increase section contrast with subtle alternating depth */
  .section {
    border-bottom: 1px solid var(--border);
  }

  .section--dark {
    border-color: var(--border);
  }

}

@media (min-width: 769px) and (max-width: 1100px) {
  .sys-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Optimize Section 2 primary row for tablets */
  .begin-row--primary {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* ── 1024px ─ full desktop ────────────────────────────────────────*/
@media (min-width: 1024px) {

  /* 3-col systems (flagship spans full top row) */
  .systems-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .sys-card--flagship {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 32px;
  }

  .sys-card--flagship .sys-card-top {
    grid-column: 1;
  }

  .sys-card--flagship .sys-icon {
    grid-column: 1;
  }

  .sys-card--flagship .sys-name {
    grid-column: 1;
  }

  .sys-card--flagship .sys-desc {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    font-size: 15px;
  }

  .sys-card--flagship .sys-tags {
    grid-column: 3;
    grid-row: 1;
  }

  .sys-card--flagship .sys-cta {
    grid-column: 3;
    grid-row: 2 / 4;
    align-self: end;
  }

  .sys-card--flagship .sys-glow {
    display: block;
  }

  /* 3-col pillars */
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Horizontal steps */
  .steps-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .step-card {
    flex: 1;
    flex-direction: column;
    gap: 0;
    padding-bottom: 0;
    padding-right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    transition: border-color .2s;
  }

  .step-card:hover {
    border-color: rgba(229, 9, 20, .35);
  }

  .step-connector {
    display: none;
  }

  .step-num {
    margin-bottom: 20px;
  }

  .step-content {
    padding-top: 0;
  }

  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: rgba(229, 9, 20, .4);
    padding: 0 12px;
    flex-shrink: 0;
    margin-top: 24px;
  }

  /* 3-col store */
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .store-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 20px;
  }

  .store-arrow {
    align-self: flex-end;
  }

  /* 2-col footer */
  .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
  }
}

/* ── 1200px ─ max container ───────────────────────────────────────*/
@media (min-width: 1200px) {
  .section {
    padding: 100px 0;
  }

  .hero-h1 {
    font-size: 104px;
  }
}

/* === IRONFORM SYSTEMS PAGE CSS === */

/* ─── IRONFORM PAGE VARIABLES ─── */
:root {
  --gold: #c9a84c;
  --gold-light: #e4c97a;
  --gold-dim: rgba(201, 168, 76, 0.15);
}

/* ─── HERO ─── */
.if-hero {
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.85) 100%),
    url('images/ironform_home_hero.png') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5% 5rem;
  position: relative;
}

.if-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(229, 57, 70, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.if-hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.35rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.6rem;
  background: rgba(201, 168, 76, 0.07);
}

.if-hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 1.2rem;
}

.if-hero-title span {
  color: var(--primary-red);
}

.if-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #ccc;
  max-width: 640px;
  margin: 0 auto 0.75rem;
  line-height: 1.7;
  font-weight: 300;
}

.if-hero-line {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.if-hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.if-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

/* ─── SECTION WRAPPER ─── */
.if-section {
  padding: 5rem 5%;
}

.global-modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.95) !important;
  z-index: 100000 !important;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.global-modal-backdrop.active {
  display: flex !important;
}

.quiz-step {
  display: none !important;
}

.quiz-step.active {
  display: block !important;
}

.premium-modal {
  position: relative !important;
  width: 100% !important;
  max-width: 680px !important;
  margin: auto !important;
}

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

.if-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.if-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.if-title span {
  color: var(--primary-red);
}

.if-body {
  color: #b0b0b0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.if-divider {
  width: 50px;
  height: 3px;
  background: var(--primary-red);
  margin: 1rem 0 2rem;
}

/* ─── WHAT IS IRONFORM ─── */
.if-what {
  background-color: var(--bg-card);
}

.if-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.if-what-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.if-what-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.if-what-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 30, 0.9) 0%, transparent 50%);
  border-radius: 12px;
}

.if-what-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: var(--primary-red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
}

.if-what-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.if-pill {
  background: rgba(229, 57, 70, 0.1);
  color: var(--primary-red);
  border: 1px solid rgba(229, 57, 70, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.if-whatline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 1.5rem;
  letter-spacing: 1px;
}

/* ─── WHY IT WORKS ─── */
.if-why {
  background-color: var(--bg-dark);
  background: radial-gradient(circle at 20% 50%, rgba(229, 57, 70, 0.05) 0%, transparent 50%), var(--bg-dark);
}

.if-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 3rem;
}

.if-pillar-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  min-height: auto;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.if-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-red), transparent);
  opacity: 0.5;
}

.if-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 57, 70, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.if-pillar-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(229, 57, 70, 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.if-pillar-icon {
  font-size: 1.5rem;
  color: var(--primary-red);
  margin-bottom: 0.75rem;
}

.if-pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.if-pillar-card p {
  color: #999;
  font-size: 14px;
  line-height: 1.5;
}

/* ─── HOW THE SYSTEM IS BUILT ─── */
.if-build {
  background: var(--bg-card);
}

.if-build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.if-build-card {
  background: var(--bg-dark);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.if-build-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.if-build-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: var(--gold);
}

.if-build-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.if-build-card p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
}

.if-build-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
}

/* ─── SYSTEM PATHWAYS ─── */
.if-pathways {
  background: var(--bg-dark);
}

.if-pathways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.if-pathway-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s ease;
}

.if-pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(229, 57, 70, 0.12);
}

.if-pathway-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.if-pathway-card:hover .if-pathway-bg {
  transform: scale(1.06);
}

.if-pathway-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.if-pathway-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.if-pathway-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-red);
  border: 1px solid rgba(229, 57, 70, 0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  background: rgba(229, 57, 70, 0.08);
}

.if-pathway-content h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.if-pathway-who,
.if-pathway-outcome {
  color: #ddd;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.if-pathway-who strong,
.if-pathway-outcome strong {
  color: var(--gold);
}

.if-pathway-content .btn {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  padding: 0.6rem 1.5rem;
}

/* ─── HOW IT WORKS ─── */
.if-process {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.if-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.if-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, rgba(229, 57, 70, 0.8), rgba(201, 168, 76, 0.4));
}

.if-step {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

.if-step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.4rem;
  color: var(--primary-red);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.if-step:hover .if-step-circle {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 0 20px rgba(229, 57, 70, 0.4);
}

.if-step-num {
  position: absolute;
  top: -8px;
  right: -5px;
  width: 22px;
  height: 22px;
  background: var(--primary-red);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.if-step h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.if-step p {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.5;
}

/* ─── RESULTS / TESTIMONIALS ─── */
.if-results {
  background: var(--bg-card);
}

.if-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.if-testi-card {
  background: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.if-testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: rgba(229, 57, 70, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
}

.if-testi-card:hover {
  border-color: rgba(229, 57, 70, 0.2);
  transform: translateY(-4px);
}

.if-testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.if-testi-text {
  color: #ccc;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.if-testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1rem;
}

.if-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), #8b0000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.if-testi-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.if-testi-program {
  color: var(--primary-red);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ─── WHO IS THIS FOR ─── */
.if-who {
  background: var(--bg-dark);
}

.if-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.if-who-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.if-who-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.if-who-card:hover::after {
  transform: scaleX(1);
}

.if-who-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 57, 70, 0.2);
}

.if-who-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--primary-red);
}

.if-who-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.if-who-card p {
  color: #888;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ─── FINAL CTA ─── */
.if-cta {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
  padding: 7rem 5%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.if-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(229, 57, 70, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.if-cta-word {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -4px;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.if-cta-content {
  position: relative;
  z-index: 2;
}

.if-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.if-cta p {
  color: #999;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.if-cta-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── GLASS CARD (shared from index) ─── */
.glass-card {
  background: rgba(30, 30, 30, 0.4) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .if-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .if-steps::before {
    display: none;
  }

  .if-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .if-pathways-grid {
    grid-template-columns: 1fr;
  }

  .if-pathway-card {
    min-height: 320px;
  }

  .if-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .if-hero-title {
    font-size: 3.5rem;
    letter-spacing: 0.1em;
  }

  .if-what-grid {
    grid-template-columns: 1fr;
  }

  .if-what-img {
    order: -1;
  }

  .if-what-img img {
    height: 300px;
  }

  .if-pillars-grid {
    grid-template-columns: 1fr;
  }

  .if-build-grid {
    grid-template-columns: 1fr;
  }

  .if-testimonials {
    grid-template-columns: 1fr;
  }

  .if-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .if-who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .if-hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .if-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .if-who-grid {
    grid-template-columns: 1fr;
  }

  .if-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─────────────────────────────────────────────
           COACHING TIERS
        ───────────────────────────────────────────── */

.if-tiers {
  background: linear-gradient(180deg, #0f0f0f 0%, #141414 100%);
}

.if-tiers-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3.5rem;
  position: relative;
}

/* Vertical connector line */
.if-tiers-stack::before {
  content: '';
  position: absolute;
  left: 38px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom,
      rgba(229, 57, 70, 0.6) 0%,
      rgba(201, 168, 76, 0.4) 60%,
      rgba(201, 168, 76, 0.8) 100%);
}

.if-tier-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.8rem 2rem;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}

.if-tier-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.if-tier-card:hover {
  transform: translateX(6px);
  border-color: rgba(229, 57, 70, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), -4px 0 0 var(--primary-red);
}

/* Most Popular highlight */
.if-tier-card.tier-popular {
  background: linear-gradient(135deg, #1f1010 0%, #1e1515 100%);
  border-color: rgba(229, 57, 70, 0.35);
  box-shadow: 0 0 0 1px rgba(229, 57, 70, 0.15), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.if-tier-card.tier-popular:hover {
  box-shadow: 0 16px 50px rgba(229, 57, 70, 0.15), -4px 0 0 var(--primary-red);
}

/* Elite gold highlight */
.if-tier-card.tier-elite {
  background: linear-gradient(135deg, #151208 0%, #181406 100%);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.1), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.if-tier-card.tier-elite:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 16px 50px rgba(201, 168, 76, 0.08), -4px 0 0 #c9a84c;
}

/* Badge (numbered circle) */
.if-tier-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #111;
  border: 2px solid rgba(229, 57, 70, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary-red);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.if-tier-card:hover .if-tier-badge {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #fff;
  box-shadow: 0 0 16px rgba(229, 57, 70, 0.4);
}

.if-tier-card.tier-elite .if-tier-badge {
  border-color: rgba(201, 168, 76, 0.6);
  color: #c9a84c;
}

.if-tier-card.tier-elite:hover .if-tier-badge {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #111;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.4);
}

/* Content area */
.if-tier-body {
  flex: 1;
  min-width: 0;
}

.if-tier-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

.if-tier-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.if-tier-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
}

.if-tier-badge-label.popular {
  background: rgba(229, 57, 70, 0.15);
  color: var(--primary-red);
  border: 1px solid rgba(229, 57, 70, 0.3);
}

.if-tier-badge-label.elite {
  background: rgba(201, 168, 76, 0.12);
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.if-tier-hook {
  color: #888;
  font-size: 0.88rem;
  margin: 0.3rem 0 1rem;
  line-height: 1.5;
}

.if-tier-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.if-tier-feat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #bbb;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

.if-tier-feat i {
  color: var(--primary-red);
  font-size: 0.7rem;
}

.if-tier-card.tier-elite .if-tier-feat i {
  color: #c9a84c;
}

/* CTA at end of row */
.if-tier-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
}

.if-tier-cta .btn {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 0.6rem 1.5rem;
}

.if-tier-position {
  font-size: 0.72rem;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: right;
}

@media (max-width: 768px) {
  .if-tiers-stack::before {
    display: none;
  }

  .if-tier-card {
    flex-direction: column;
  }

  .if-tier-cta {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .if-tier-cta .btn {
    flex: 1;
    text-align: center;
  }

  .if-tier-position {
    text-align: left;
  }
}

/* ─────────────────────────────────────────────
           MODAL SYSTEM
        ───────────────────────────────────────────── */

/* Backdrop */
.if-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.if-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* Modal box */
.if-modal {
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.38s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.35s ease;
  opacity: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(229, 57, 70, 0.35) transparent;
}

.if-modal-backdrop.active .if-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.if-modal::-webkit-scrollbar {
  width: 5px;
}

.if-modal::-webkit-scrollbar-track {
  background: transparent;
}

.if-modal::-webkit-scrollbar-thumb {
  background: rgba(229, 57, 70, 0.4);
  border-radius: 4px;
}

/* Modal header band */
.if-modal-header {
  background: linear-gradient(135deg, #1e1e1e 0%, #222 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.8rem 2rem 1.5rem;
  position: relative;
}

.if-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-red), var(--gold, #c9a84c));
}

.if-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.if-modal-close:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #fff;
}

.if-modal-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-red);
  border: 1px solid rgba(229, 57, 70, 0.35);
  padding: 0.25rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

.if-modal-title {
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.1;
}

.if-modal-desc {
  color: #909090;
  font-size: 0.9rem;
  margin: 0;
}

/* Body */
.if-modal-body {
  padding: 1.8rem 2rem;
}

/* Section label inside modal */
.if-modal-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  margin-bottom: 1rem;
  display: block;
}

/* Program list */
.if-program-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.if-program-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  gap: 1rem;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.if-program-item:hover {
  border-color: rgba(229, 57, 70, 0.3);
  background: rgba(229, 57, 70, 0.04);
}

.if-program-info {
  flex: 1;
  min-width: 0;
}

.if-program-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.if-program-benefit {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
  line-height: 1.4;
}

.if-program-btn {
  flex-shrink: 0;
  background: var(--primary-red);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.42rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.if-program-btn:hover {
  background: #c92a37;
  transform: translateY(-1px);
}

.if-program-btn.outline {
  background: transparent;
  border: 1px solid rgba(229, 57, 70, 0.5);
  color: var(--primary-red);
}

.if-program-btn.outline:hover {
  background: var(--primary-red);
  color: #fff;
}

/* Why this works strip */
.if-modal-why {
  background: rgba(229, 57, 70, 0.05);
  border: 1px solid rgba(229, 57, 70, 0.1);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.if-modal-why-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #bbb;
  font-weight: 500;
}

.if-modal-why-item i {
  color: var(--primary-red);
  font-size: 0.85rem;
}

/* Footer CTA */
.if-modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 2rem 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.if-modal-footer .btn {
  flex: 1;
  text-align: center;
  min-width: 140px;
  font-size: 0.88rem;
  padding: 0.75rem 1.5rem;
}

/* Pathway trigger button tweak */
.if-pathway-trigger {
  cursor: pointer;
  margin-top: 1.2rem;
}

@media (max-width: 520px) {
  .if-modal {
    max-height: 92vh;
  }

  .if-modal-header {
    padding: 1.4rem 1.3rem 1.2rem;
  }

  .if-modal-body {
    padding: 1.4rem 1.3rem;
  }

  .if-modal-footer {
    padding: 1.2rem 1.3rem 1.5rem;
    flex-direction: column;
  }

  .if-program-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .if-program-btn {
    width: 100%;
    text-align: center;
  }

  .if-modal-why {
    gap: 0.85rem;
  }
}

/* ================================================================
   ABOUT PAGE SPECIALIZED STYLES
   ================================================================ */
.about-hero {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.15);
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.about-hero-h1 {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: clamp(48px, 12vw, 120px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-hero-sub {
  font-size: clamp(16px, 4vw, 20px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* About Page — Founder Section (about-wrap) */
.about-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.about-title {
  margin: 0;
  line-height: 1.15;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.about-title .highlight {
  color: #ff2b2b;
}

.about-image {
  margin-top: 6px;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.about-image::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: #ff2b2b;
  margin-top: 10px;
}

.about-meta {
  margin-top: 6px;
}

.about-tag {
  font-size: 11px;
  letter-spacing: 1.2px;
  opacity: 0.7;
  font-weight: 700;
  text-transform: uppercase;
}

.about-desc {
  margin-top: 4px;
  line-height: 1.6;
  opacity: 0.85;
  font-size: 16px;
}

/* Mobile Reorder */
@media (max-width: 768px) {
  .about-title-block { order: 1; }
  .about-image       { order: 2; }
  .about-meta        { order: 3; }
  .about-desc        { order: 4; }
}

/* Desktop Restoration */
@media (min-width: 1024px) {
  .about-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas: 
      "img title"
      "img meta"
      "img desc";
    gap: 0 60px;
    align-items: start;
  }

  .about-image { 
    grid-area: img; 
    margin-top: 0;
  }
  
  .about-image img {
    height: auto;
    max-height: 700px;
    object-fit: cover;
  }

  .about-title-block { 
    grid-area: title; 
    padding-top: 40px;
  }
  
  .about-title {
    font-size: clamp(32px, 5vw, 48px);
    font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
    text-transform: uppercase;
  }

  .about-meta { 
    grid-area: meta; 
    margin-top: 20px;
  }

  .about-desc { 
    grid-area: desc; 
    margin-top: 10px;
    font-size: 17px;
  }
}

/* Stat Chips (Restored) */
.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.story-stat-item {
  display: flex;
  flex-direction: column;
}

.story-stat-val {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.story-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
}

@media (max-width: 640px) {
  .story-stats {
    flex-direction: row; /* keep side by side on mobile if they fit, or stack if too wide */
    gap: 32px;
  }
}

/* Edge / Pillars */
.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.edge-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: var(--r-lg);
  transition: transform .3s, border-color .3s;
}

.edge-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.edge-icon {
  width: 44px;
  height: 44px;
  background: rgba(229, 9, 20, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s;
}

.team-img img {
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 24px 20px;
}

.team-name {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-role {
  font-size: 8px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .edge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .edge-grid {
    grid-template-columns: 1fr;
  }

  .story-stats {
    flex-direction: column;
    gap: 20px;
  }
}

.team-detail {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 14px;
}

.team-detail-label {
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

/* Coach Quotes (Desktop Only) */
.team-card-quote {
  display: none;
}

@media (min-width: 1024px) {
  .team-card-quote {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: auto;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--gold);
    border-radius: 4px;
    box-sizing: border-box;
  }

  .team-card-quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.35;
    user-select: none;
    margin-top: -2px; /* slight visual offset alignment */
  }

  .team-card-quote-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }
}

/* ================================================================
   IRON FORGE MARKETPLACE ECOSYSTEM STYLES
   ================================================================ */

/* Hero */
.forge-hero {
  position: relative;
  padding: 120px 20px 40px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .forge-hero {
    min-height: auto;
    height: auto;
    padding: 100px 20px 60px;
  }
}

.forge-hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 800;
  line-height: .85;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(48px, 8vw, 96px);
}

.forge-hero-sub {
  font-size: clamp(16px, 3vw, 18px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.forge-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Marketplace Credibility Strip */
.forge-credibility-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 0 auto 48px;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
}

.forge-cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.forge-cred-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}

.forge-cred-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Featured Product Preview Row */
.forge-preview-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
  padding: 0 10px;
}

.forge-preview-card {
  flex: 1;
  background: linear-gradient(160deg, #141414 0%, #0d0d0d 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 135px;
  text-decoration: none;
}

.forge-preview-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.15);
}

.forge-preview-card.best-seller-preview:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.forge-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.forge-preview-goal {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.forge-preview-card.best-seller-preview .forge-preview-goal {
  color: var(--gold);
}

.forge-preview-badge {
  background: var(--accent);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.forge-preview-card.best-seller-preview .forge-preview-badge {
  background: var(--gold);
  color: #000;
}

.forge-preview-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.forge-preview-bestfor {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 12px;
}

.forge-preview-bestfor strong {
  color: #fff;
  font-weight: 600;
}

.forge-preview-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 10px;
}

.forge-preview-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}

.forge-preview-action {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  transition: color 0.25s, transform 0.25s;
}

.forge-preview-card.best-seller-preview .forge-preview-action {
  color: var(--gold);
}

.forge-preview-card:hover .forge-preview-action {
  transform: translateX(3px);
}

/* Previews Responsiveness */
@media (max-width: 1023px) {
  .forge-preview-row {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    justify-content: flex-start;
    padding: 10px 20px 20px;
    margin: 0 auto;
    gap: 16px;
  }
  .forge-preview-row::-webkit-scrollbar {
    display: none;
  }
  .forge-preview-card {
    flex-shrink: 0;
    width: 280px;
    scroll-snap-align: center;
  }
}

@media (max-width: 600px) {
  .forge-preview-row {
    padding-left: 24px;
    padding-right: 24px;
  }
  .forge-preview-card {
    width: 85%;
    scroll-snap-align: center;
  }
}



/* Sticky Category Navigation */
.forge-sticky-nav {
  position: sticky;
  top: 72px; /* Below standard header */
  z-index: 100;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.forge-sticky-nav::-webkit-scrollbar { display: none; }

.forge-sticky-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 0 24px;
}

.forge-sticky-link {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
  transition: color 0.3s;
}

.forge-sticky-link:hover,
.forge-sticky-link.active {
  color: var(--gold);
}

/* Category Sections Rhythm */
.forge-category-section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.forge-category-section:nth-child(even) {
  background: var(--bg2);
}

.forge-category-header {
  text-align: center;
  margin-bottom: 60px;
}

.forge-category-title {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 48px;
  color: #fff;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.forge-category-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Product Grid */
.forge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  align-items: stretch;
}

/* Base Product Card */
.product-card {
  position: relative;
  background: linear-gradient(160deg, #141414 0%, #0f0f0f 100%);
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
  height: 100%;
}

/* Performance safe hover */
@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 168, 90, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }
}

/* Bestseller Hierarchy */
.bestseller-card {
  border-color: rgba(198, 168, 90, 0.35);
  background: linear-gradient(160deg, #1a1813 0%, #0f0f0f 100%);
}

.bestseller-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.badge-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Card Content Hierarchy */
.pc-title {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: .02em;
  padding-right: 60px; /* Room for badge */
}

/* Flex Row for Goal and Duration */
.pc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pc-goal-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
}

.pc-duration {
  font-size: 11px;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Pricing */
.pc-price-wrap {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pc-price {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}

.pc-price-period {
  font-size: 12px;
  color: var(--muted);
}

.pc-crossed {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--dim);
}

/* Features Block */
.pc-features {
  font-size: 12px;
  color: var(--silver);
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pc-features p {
  margin-bottom: 8px;
  color: var(--muted);
}

.pc-features ul {
  padding-left: 14px;
  margin-bottom: 12px;
}

.pc-features li {
  margin-bottom: 4px;
}

.pc-disclaimer {
  font-size: 10px;
  color: var(--dim);
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.08);
}

/* Consultative CTA Order */
.pc-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.pc-ctas .btn {
  height: 40px;
  font-size: 10px;
  letter-spacing: .12em;
  border-radius: 8px;
  width: 100%;
}

.pc-ctas .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  background: transparent;
  border: none;
}

.pc-ctas .btn-ghost:hover {
  color: rgba(255,255,255,0.8);
}

/* Stage Education Tag */
.stage-tag {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  margin-top: 8px;
  display: block;
}

/* Global Safety Notice */
.forge-safety-block {
  background: rgba(229, 9, 20, 0.02);
  border: 1px solid rgba(229, 9, 20, 0.2);
  border-radius: var(--r-xl);
  padding: 48px;
  text-align: center;
  max-width: 800px;
  margin: 100px auto;
}

.forge-safety-block h3 {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

.forge-safety-block p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .forge-hero {
    padding: 120px 20px 80px;
  }
  
  .forge-sticky-inner {
    justify-content: flex-start;
  }
  
  .forge-category-section {
    padding: 60px 0;
  }
  
  .product-card {
    padding: 24px;
  }
  
  .forge-grid {
    grid-template-columns: 1fr;
  }

  .forge-safety-block {
    padding: 32px 20px;
    margin: 60px 0;
  }
}


/* ── HOME PAGE CARDS RESPONSIVENESS FIX ── */
@media (max-width: 768px) {
  .sys-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    padding: 0 16px;
    overflow-x: hidden; /* Remove horizontal scroll if any */
  }

  .sys-grid .if-pathway-card {
    width: 100%;
    max-width: 100%;
    min-width: 0; /* Override any forced min-width */
  }
}

  /* ================================================================
     GLOBAL FOOTER — UNIFIED IRONFORM ECOSYSTEM STANDARD
     Single CSS source of truth for all pages
     ================================================================ */

  /* ── Footer outer wrapper ── */
  .footer {
    background: #080808;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 72px;
  }

  /* ── 4-col grid ── */
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 0 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  /* ── Column 1 — Brand ── */
  .footer-brand-col {}

  .footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
  }

  .footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .footer-brand-name {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--gold);
  }

  .footer-brand-tagline {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin-top: 3px;
  }

  .footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 24px;
  }

  .footer-social-row {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
  }

  .footer-social-icon:hover {
    background: rgba(255,255,255,0.09);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
  }

  /* ── Columns 2–4 ── */
  .footer-section {}

  .footer-h4 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
  }

  .footer-h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

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

  .footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    transition: color 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .footer-links a:hover {
    color: rgba(255,255,255,0.85);
  }

  .footer-links .ironform-gold {
    font-size: 13px;
    font-weight: 700;
  }

  /* Connect column icons */
  .footer-connect-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    transition: color 0.18s ease;
  }

  .footer-connect-item i {
    width: 20px;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    transition: color 0.18s ease;
  }

  .footer-connect-item:hover {
    color: rgba(255,255,255,0.85);
  }

  .footer-connect-item:hover i {
    color: var(--gold);
  }

  /* ── Disclaimer bar ── */
  .footer-disclaimer {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .footer-disclaimer p {
    font-size: 11px;
    color: rgba(255,255,255,0.22);
    line-height: 1.7;
    max-width: 900px;
  }

  .footer-disclaimer strong {
    color: rgba(255,255,255,0.35);
    font-weight: 600;
  }

  /* ── Bottom bar ── */
  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.04em;
  }

  .footer-copy .fc-brand {
    color: var(--gold);
    font-weight: 700;
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .footer-brand-col {
      grid-column: 1 / -1;
    }
    .footer-tagline {
      max-width: 100%;
    }
  }

  @media (max-width: 600px) {
    .footer {
      padding-top: 52px;
    }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 36px;
      text-align: center;
    }
    .footer-h4::after {
      left: 50%;
      transform: translateX(-50%);
    }
    .footer-logo-link {
      flex-direction: column;
      align-items: center;
    }
    .footer-brand-text {
      align-items: center;
      text-align: center;
    }
    .footer-tagline {
      margin: 0 auto 20px;
      text-align: center;
    }
    .footer-social-row {
      justify-content: center;
    }
    .footer-links a,
    .footer-connect-item {
      justify-content: center;
    }
    .footer-bottom-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }

/* ======================================================
   TESTIMONIAL MODAL & DROPDOWNS
====================================================== */
.testimonial-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
  padding: 20px;
}

.modal-content {
  max-width: 900px;
  width: 95%;
  background: #0b0b0b;
  padding: 32px;
  border-radius: 12px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
  font-size: 20px;
  color: var(--muted);
  transition: color 0.2s;
}

.close-modal:hover {
  color: #fff;
}

.modal-inner {
  display: flex;
  gap: 32px;
  margin-top: 20px;
}

.modal-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-images img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.modal-text {
  flex: 1.2;
}

.testimonial-full-text {
  font-size: 16px;
  line-height: 1.7;
  color: #eee;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Dropdowns */
.testimonial-dropdown {
  margin-top: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dropdown-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}

.dropdown-header {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown-header:hover {
  color: var(--accent);
}

.dropdown-header span {
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.3s;
}

.dropdown-header.active span {
  transform: rotate(45deg);
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
  line-height: 1.8;
}

.dropdown-content.active {
  padding-top: 14px;
  padding-bottom: 12px;
}

@media (max-width: 768px) {
  .modal-inner {
    flex-direction: column;
  }
  
  .modal-content {
    padding: 24px;
    width: 100%;
  }

  .dropdown-header {
    font-size: 12px;
  }

  .dropdown-content {
    font-size: 13px;
  }
}

/* ================================================================
   GLOBAL SYSTEM MODALS (Migrated from systems.html)
   ================================================================ */
.sys-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

@media (min-width: 640px) {
  .sys-modal-backdrop {
    align-items: center;
  }
}

.sys-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.sys-modal {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(40px);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
  position: relative;
  padding: 0 0 32px;
}

@media (min-width: 640px) {
  .sys-modal {
    border-radius: 20px;
    transform: translateY(20px) scale(.97);
    max-height: 85vh;
  }
}

.sys-modal-backdrop.active .sys-modal {
  transform: translateY(0) scale(1);
}

.sys-modal-handle {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, .12);
  border-radius: 2px;
  margin: 12px auto 0;
}

.sys-modal-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}

.sys-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s, color .18s;
}

.sys-modal-close:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.sys-modal-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.sys-modal-title {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 8px;
}

.sys-modal-pos {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.sys-modal-body {
  padding: 24px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sys-modal-sec-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  display: block;
  margin-bottom: 14px;
}

.sys-prog-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sys-prog-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .18s;
}

.sys-prog-item:hover {
  border-color: #2a2a2a;
}

.sys-prog-item--premium {
  border-color: rgba(198, 168, 90, .15);
  background: rgba(198, 168, 90, .03);
}

.sys-prog-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.sys-prog-name--gold {
  color: var(--gold);
}

.sys-prog-benefit {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}

.sys-prog-btn {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  background: transparent;
  transition: background .18s, border-color .18s;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.sys-prog-btn:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .35);
}

.sys-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sys-why-item {
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.sys-why-item i {
  flex-shrink: 0;
  font-size: 13px;
}

.sys-who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sys-who-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 100px;
  background: #161616;
  border: 1px solid #222;
  color: var(--muted);
}

.sys-modal-cta-row {
  padding: 0 28px;
  margin-top: 4px;
}

.sys-modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, opacity .18s;
  text-decoration: none;
  color: #fff;
}

.sys-modal-cta:hover {
  transform: translateY(-2px);
}

.sys-modal-cta--red { background: var(--accent); }
.sys-modal-cta--red:hover { box-shadow: 0 8px 28px rgba(229, 9, 20, .35); }

.sys-modal-cta--gold { background: var(--gold); color: #000; }
.sys-modal-cta--gold:hover { box-shadow: 0 8px 28px rgba(198, 168, 90, .3); }

.sys-modal-cta--white {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
}

.sys-modal-cta--white:hover { background: rgba(255, 255, 255, .18); }

.sys-modal-cta--green { background: var(--green); }
.sys-modal-cta--green:hover { box-shadow: 0 8px 28px rgba(23, 138, 64, .32); }

.sys-modal-cta--blue { background: var(--blue); }
.sys-modal-cta--blue:hover { box-shadow: 0 8px 28px rgba(46, 111, 217, .32); }

.tag--red { background: rgba(229, 9, 20, .12); color: #f55; border: 1px solid rgba(229, 9, 20, .25); }
.tag--gold { background: rgba(198, 168, 90, .12); color: var(--gold); border: 1px solid rgba(198, 168, 90, .25); }
.tag--white { background: rgba(217, 217, 217, .08); color: #ccc; border: 1px solid rgba(217, 217, 217, .2); }
.tag--green { background: rgba(23, 138, 64, .1); color: #22c55e; border: 1px solid rgba(23, 138, 64, .25); }
.tag--blue { background: rgba(46, 111, 217, .1); color: #60a5fa; border: 1px solid rgba(46, 111, 217, .25); }

.why-icon--red { color: var(--accent); }
.why-icon--gold { color: var(--gold); }

/* ================================================================
   LEGACY RESTORE TRACK MODAL STYLES
   ================================================================ */
.tag--legacy {
  background: rgba(198, 168, 90, .1);
  color: var(--gold);
  border: 1px solid rgba(198, 168, 90, .2);
}

.sys-modal-cta--legacy {
  background: linear-gradient(90deg, var(--gold) 0%, #a6894c 100%);
  color: #000;
}

.sys-modal-cta--legacy:hover {
  box-shadow: 0 8px 32px rgba(198, 168, 90, .3);
}

/* Pillar Grid (Legacy) */
.legacy-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.legacy-pillar-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s, border-color .2s;
}

.legacy-pillar-item:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 168, 90, 0.3);
}

.legacy-pillar-icon {
  font-size: 18px;
  color: var(--gold);
}

.legacy-pillar-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

/* Flow Strip */
.legacy-flow-container {
  overflow-x: auto;
  padding-bottom: 8px;
  margin: 0 -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.legacy-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 600px;
}

.legacy-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
}

.legacy-flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 10px;
  font-size: 10px;
  color: var(--dim);
}

.legacy-flow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(198, 168, 90, 0.1);
  border: 1px solid rgba(198, 168, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gold);
}

.legacy-flow-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  text-align: center;
}

.legacy-results-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.legacy-result-item {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.legacy-result-item i {
  color: #22c55e;
  font-size: 12px;
}

@media (max-width: 640px) {
  .legacy-pillar-grid {
    grid-template-columns: 1fr;
  }
}


/* ── BLOG SYSTEM ENHANCEMENTS ─────────────────────────────────── */
.post-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

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

/* Readable Typography for Blog */
.post-content {
  color: #d1d1d1;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.post-content h2, .post-content h3 {
  color: #fff;
  margin-top: 2em;
  margin-bottom: 0.8em;
}

/* ================================================================
   DISCLAIMER BAR
   ================================================================ */
.disclaimer-bar {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
}

.disclaimer-bar .wrap {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.disclaimer-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: rgba(229, 9, 20, 0.7);
  font-size: 15px;
}

.disclaimer-content {
  flex: 1;
  min-width: 0;
}

.disclaimer-content p {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  letter-spacing: 0.01em;
}

.disclaimer-content p + p {
  margin-top: 6px;
}


/* ================================================================
   MICRO COPY — Context-based safety notes
   ================================================================ */
.micro-copy {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  max-width: 420px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .micro-copy {
    font-size: 11px;
  }
}

/* ── NEW POLISH COMPONENTS ─────────────────────────────────────── */

/* Stats Visual Blocks */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.3);
}

.stat-icon {
  font-size: 20px;
  color: var(--accent);
  opacity: 0.8;
}

.stat-num {
  font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 900;
  display: block;
  line-height: 1;
  color: #fff;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Explore System Button (Standardized) */
.btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

.btn-explore:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.25);
  transform: translateY(-1px);
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .sys-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card {
    padding: 20px 16px;
  }
  
  .stat-num {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

/* ================================================================
   PREMIUM LEGACY RESTORE TRACK MODAL
   ================================================================ */

/* Container */
.legacy-premium-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.legacy-premium-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.legacy-premium-modal {
  max-width: 1100px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  background: #050505;
  border-radius: 28px;
  border: 1px solid rgba(212,175,55,0.12);
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9), 0 0 40px rgba(212,175,55,0.03);
}

.legacy-premium-overlay.active .legacy-premium-modal {
  transform: translateY(0) scale(1);
}

.legacy-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}
.legacy-close-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Header */
.legacy-modal-header {
  padding: 40px 40px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: left;
}
.legacy-tag-gold {
  display: inline-block;
  background: rgba(212,175,55,0.1);
  color: #D4AF37;
  border: 1px solid rgba(212,175,55,0.2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.legacy-title-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.legacy-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

/* Body */
.legacy-modal-body {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Typography */
.legacy-sec-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.legacy-body-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
}

/* Core Pillars */
.legacy-pillar-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.legacy-pillar-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transition: all 0.2s;
}
.legacy-pillar-card:hover {
  background: rgba(212,175,55,0.03);
  border-color: rgba(212,175,55,0.2);
  transform: translateY(-2px);
}
.legacy-gold-icon {
  font-size: 24px;
  color: #D4AF37;
}
.legacy-pillar-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #eee;
}

/* Pills */
.legacy-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.legacy-premium-pill {
  background: #111;
  border: 1px solid #222;
  color: #999;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
}

/* Checklist */
.legacy-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.legacy-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ccc;
  background: rgba(255,255,255,0.02);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}
.legacy-check-icon {
  color: #D4AF37;
  font-size: 14px;
}

/* Flow */
.legacy-flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 24px;
  overflow-x: auto;
}
.legacy-flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 100px;
}
.legacy-flow-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 16px;
}
.legacy-flow-text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
}
.legacy-flow-arrow {
  color: rgba(255,255,255,0.1);
  font-size: 12px;
}

/* Options Stack */
.legacy-options-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legacy-opt-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px 24px;
  border-radius: 12px;
  transition: all 0.2s;
}
.legacy-opt-card:hover {
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.03);
}
.legacy-opt-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.legacy-opt-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
}
.legacy-opt-btn {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #D4AF37;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.3);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.legacy-opt-btn:hover {
  background: rgba(212,175,55,0.1);
  color: #fff;
  border-color: #D4AF37;
}

/* Why */
.legacy-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.legacy-why-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legacy-why-icon {
  color: #D4AF37;
}

/* Footer */
.legacy-modal-footer {
  padding: 32px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legacy-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background: linear-gradient(90deg, #D4AF37 0%, #a6894c 100%);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.legacy-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.3);
}
.legacy-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.legacy-cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.legacy-footer-note {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #666;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .legacy-modal-header, .legacy-modal-body, .legacy-modal-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .legacy-title-main {
    font-size: 32px;
  }
  .legacy-why-grid {
    grid-template-columns: 1fr;
  }
  .legacy-flow-row {
    flex-direction: column;
    gap: 16px;
  }
  .legacy-flow-arrow {
    transform: rotate(90deg);
  }
}

/* ============================================================================
   CREATOR WATERMARK (PAGE-LEVEL DESIGN CREDIT)
   ============================================================================ */
.creator-watermark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px; /* 40-60px space from copyright bar */
  padding-bottom: 20px; /* Space from the page bottom edge */
}

.watermark-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.watermark-logo {
  width: 32px; /* 2-4% of total canvas width */
  height: auto;
  opacity: 0.2; /* 15-25% opacity for subtle watermark effect */
  filter: grayscale(100%) brightness(150%); /* Monochrome soft gray effect */
  display: block;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.watermark-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500; /* Inter Medium */
  font-size: 11px; /* 10-12px equivalent */
  color: #8A8A8A; /* Soft gray color */
  opacity: 0.5; /* 40-60% opacity for understated appearance */
  letter-spacing: 0.5px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.watermark-link:hover .watermark-text {
  color: var(--gold);
  opacity: 0.8;
}

.watermark-link:hover .watermark-logo {
  opacity: 0.4;
  filter: none; /* Reveals original subtle brand colors on hover */
}

/* ============================================================================
   FORM VALIDATION ERROR STYLING
   ============================================================================ */
.form-field.has-error .form-input,
.form-field.has-error .form-select,
.form-field.has-error .form-textarea {
  border-color: #e50914 !important;
  box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.25) !important;
}

.form-field.has-error .form-label {
  color: #e50914 !important;
}

.error-message {
  color: #e50914;
  font-size: 11px;
  margin-top: 4px;
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  animation: errorFadeIn 0.2s ease-in-out;
}

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