/* =================================================================
   FORECAST INTEGRITY PARTNERS — Modern Crisp Redesign
   Aesthetic: Clean / Modern / Professional (Bain-inspired)
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Core Palette - Clean & Modern */
  --bg: #ffffff;
  --bg-dark: #111827;
  --bg-section: #f9fafb;
  --surface: #ffffff;
  --surface-dark: #1f2937;
  
  /* Text */
  --text: #111827;
  --text-body: #4b5563;
  --text-muted: #6b7280;
  --text-inverse: #ffffff;
  --text-inverse-muted: rgba(255,255,255,0.7);
  
  /* Accents - Sharp teal, not gold */
  --accent: #0d9488;
  --accent-light: #ccfbf1;
  --accent-dark: #0f766e;
  --brand: #0d9488;
  --success: #059669;
  --danger: #dc2626;
  --warning: #d97706;
  
  /* Lines & Shadows */
  --line: #e5e7eb;
  --line-dark: rgba(255,255,255,0.1);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
  
  /* Sizing */
  --max: 1140px;
  --radius: 6px;
  --radius-lg: 8px;
  
  /* Typography - Modern Sans */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--text);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(1.6rem, 5vw, 1.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* === LAYOUT === */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--text-inverse);
}

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

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s;
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.logo-img {
  height: 36px;
  width: auto;
  border-radius: 4px;
}

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

.nav-links .link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}

.nav-links .link:hover {
  color: var(--text);
}

.nav-links .link.active {
  color: var(--text);
}

.nav-links .link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 1px;
  transition: 0.3s;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--text);
  color: var(--text-inverse);
}

.btn--primary:hover {
  background: #000;
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn--secondary:hover {
  border-color: var(--text);
  background: var(--bg-section);
}

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

.btn--accent:hover {
  background: var(--accent-dark);
}

.btn--inverse {
  background: var(--text-inverse);
  color: var(--text);
}

.btn--inverse:hover {
  background: #f3f4f6;
}

.btn--ghost {
  background: transparent;
  color: var(--text-inverse);
  border: 1px solid var(--line-dark);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

/* === HERO === */
.hero {
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero--dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding-bottom: 80px;
}

.hero--dark h1,
.hero--dark h2 {
  color: var(--text-inverse);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 48px;
}

.hero__content {
  max-width: 600px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.hero__title {
  max-width: 700px;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-inverse-muted);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero__subtitle strong {
  color: var(--text-inverse);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero Proof Card */
.hero__proof {
  display: flex;
  justify-content: center;
}

.hero__proof-card {
  background: var(--surface-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 380px;
}

.hero__proof-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  margin-bottom: 20px;
}

.hero__proof-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__proof-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
}

.hero__proof-bar span {
  color: var(--text-inverse-muted);
  font-weight: 500;
}

.hero__proof-bar strong {
  font-size: 18px;
  font-weight: 700;
}

.hero__proof-bar--mgmt {
  background: rgba(255,255,255,0.08);
}

.hero__proof-bar--mgmt strong {
  color: var(--text-inverse-muted);
}

.hero__proof-bar--fip {
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid var(--accent);
}

.hero__proof-bar--fip strong {
  color: var(--accent);
}

.hero__proof-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.hero__proof-delta {
  font-size: 28px;
  font-weight: 700;
  color: #f87171;
  letter-spacing: -0.02em;
}

.hero__proof-desc {
  font-size: 13px;
  color: var(--text-inverse-muted);
  line-height: 1.4;
}

/* === STATS BAR === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
}

.stat__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-inverse);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat__number span {
  color: var(--accent);
}

.stat__label {
  font-size: 14px;
  color: var(--text-inverse-muted);
  line-height: 1.4;
}

/* === AUTHORITY LOGOS === */
.authority {
  padding: 24px 32px;
  margin-top: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
}

.authority__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  margin-bottom: 16px;
}

.authority__logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.authority__logos img {
  height: 24px;
  width: auto;
  filter: brightness(0.8) invert(0.1);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.authority__logos img:hover {
  opacity: 1;
  filter: brightness(0.9) invert(0);
}

/* === VALUE GRID === */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-item {
  background: var(--bg);
  padding: 32px;
}

.value-item:hover {
  background: var(--bg-section);
}

.value-item__number {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.value-item__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.value-item__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* === PRICING CARDS === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: #d1d5db;
}

.pricing-card--featured {
  background: var(--bg-dark);
  color: var(--text-inverse);
  border: none;
}

.pricing-card--featured .pricing-card__title,
.pricing-card--featured .pricing-card__price {
  color: var(--text-inverse);
}

.pricing-card--featured .pricing-card__desc,
.pricing-card--featured .pricing-card__timeline {
  color: var(--text-inverse-muted);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

.pricing-card__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-card__price {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.pricing-card__timeline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.pricing-card--featured .pricing-card__timeline {
  border-color: var(--line-dark);
}

.pricing-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-body);
  line-height: 1.4;
}

.pricing-card--featured .pricing-card__features li {
  color: var(--text-inverse-muted);
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card__credit {
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

/* === CASE STUDIES === */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
}

.case-card__header {
  padding: 16px 24px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-card__industry {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.case-card__outcome-badge {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius);
}

.case-card__body {
  padding: 24px;
}

.case-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.case-card__scenario {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.case-card__finding {
  background: var(--bg-section);
  padding: 16px;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  margin-bottom: 16px;
}

.case-card__finding-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

.case-card__finding p {
  font-size: 14px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.5;
}

.case-card__result {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.case-card__result strong {
  color: var(--text);
}

/* === CALCULATOR === */
.calculator {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.calculator__inputs {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.calculator__presets {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.calc-preset-btn {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.calc-preset-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.calc-preset-btn.active {
  background: var(--text);
  color: var(--text-inverse);
  border-color: var(--text);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.calc-row:last-child {
  border-bottom: none;
}

.calc-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}

.calc-input {
  width: 100px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  color: var(--text);
  transition: border-color 0.15s;
}

.calc-input:focus {
  outline: none;
  border-color: var(--text);
}

.calc-input--highlight {
  border-color: var(--danger);
  color: var(--danger);
}

.calculator__result {
  background: var(--bg-dark);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 88px;
}

.calculator__result-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  margin-bottom: 8px;
}

.calculator__result-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.calculator__result-context {
  font-size: 14px;
  color: var(--text-inverse-muted);
  margin-bottom: 24px;
}

.calculator__result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line-dark);
}

.calculator__result-row span:first-child {
  font-size: 14px;
  color: var(--text-inverse-muted);
}

.calculator__result-row span:last-child {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-inverse);
}

.calculator__result-row--highlight span:last-child {
  color: var(--success);
}

/* === METHOD GRID === */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.method-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.method-item--a { border-left: 4px solid var(--success); }
.method-item--b { border-left: 4px solid var(--warning); }
.method-item--c { border-left: 4px solid var(--danger); }

.method-item__grade {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.method-item--a .method-item__grade { color: var(--success); }
.method-item--b .method-item__grade { color: var(--warning); }
.method-item--c .method-item__grade { color: var(--danger); }

.method-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.method-item__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* === PROCESS GRID === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.process-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.process-item__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-item__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* === SECTION HEADERS === */
.section-header {
  max-width: 600px;
  margin-bottom: 40px;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.cta-section h2 {
  color: var(--text-inverse);
  max-width: 600px;
  margin: 0 auto 16px;
}

.cta-section p {
  font-size: 16px;
  color: var(--text-inverse-muted);
  max-width: 500px;
  margin: 0 auto 24px;
}

/* === FOOTER === */
.footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* === PILLS === */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 20px;
}

/* === MINI LIST === */
.mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text-body);
  line-height: 1.4;
}

.mini-list li::before {
  content: '→';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* === FOUNDER SECTION === */
.founder-section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.founder-profile {
  text-align: center;
  position: sticky;
  top: 88px;
}

.founder-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-section);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.founder-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.founder-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-content {
  padding-top: 8px;
}

.founder-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 32px;
}

.founder-lead strong {
  color: var(--text);
}

.founder-track {
  margin-bottom: 32px;
}

.founder-track-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.founder-track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.founder-track-item {
  background: var(--bg-section);
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.founder-track-company {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.founder-track-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.founder-quote {
  background: var(--bg-section);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.founder-quote p {
  font-size: 15px;
  font-style: italic;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .founder-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .founder-profile {
    position: static;
  }
  
  .founder-track-grid {
    grid-template-columns: 1fr;
  }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pricing-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }
  
  .calculator {
    grid-template-columns: 1fr;
  }
  
  .calculator__result {
    position: static;
  }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  
  .mobile-menu-btn { display: block; }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active { display: flex; }
  
  .nav-links .link {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
    font-size: 15px;
  }
  
  .nav-links .link.active::after { display: none; }
  
  .nav-links .btn {
    margin-top: 12px;
    width: 100%;
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .value-grid,
  .case-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero__proof-card {
    max-width: 100%;
  }
  
  .calculator__presets {
    flex-direction: column;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Add to bottom of styles.css */

.pricing-card__credit {
  background: #f0fdf4;
  border: 1px solid #16a34a;
  color: #15803d;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 24px;
}

/* === TIER TABLE STYLES === */
.tier-table-container {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.tier-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  min-width: 600px;
}

.tier-table th {
  background: var(--bg-section);
  text-align: left;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
}

.tier-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--text-body);
  font-size: 15px;
  vertical-align: top;
}

.tier-table tr:last-child td {
  border-bottom: none;
}

.tier-table strong {
  color: var(--text);
  font-weight: 700;
}