/* ===========================
   FITHUB — STYLESHEET
   Brand: Black · White · Light Grey · Soft Amber Orange
   =========================== */

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

:root {
  --primary:       #F0A500;   /* amber orange from logo */
  --primary-dark:  #D4920A;
  --primary-light: #FFD166;
  --dark:          #111111;
  --dark-2:        #1E1E1E;
  --muted:         #5A5A5A;
  --muted-light:   #888888;
  --bg:            #FFFFFF;
  --bg-grey:       #F5F5F5;
  --bg-grey-2:     #EBEBEB;
  --border:        #E0E0E0;
  --white:         #FFFFFF;

  --font: 'Plus Jakarta Sans', sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.06);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: 100px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(240,165,0,.3);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(240,165,0,.4);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn--outline-light {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.2);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  background: var(--bg-grey);
}

/* --- Section typography --- */
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(240,165,0,.1);
  border: 1px solid rgba(240,165,0,.25);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.section-badge--light {
  color: var(--white);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.35);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--dark);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { max-width: 520px; margin-inline: auto; }

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 14px;
  transition: background .25s, box-shadow .25s;
}

.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--r-sm);
  background: var(--white);
  padding: 3px 6px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: color .15s;
}
.nav.scrolled .nav__links a { color: var(--muted); }
.nav__links a:hover { color: var(--white); }
.nav.scrolled .nav__links a:hover { color: var(--dark); }

.nav__cta { margin-left: 8px; padding: 10px 22px; font-size: 0.88rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: none;
  background: none;
  cursor: pointer;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav.scrolled .nav__burger span { background: var(--dark); }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,.88) 0%,
    rgba(10,10,10,.65) 50%,
    rgba(10,10,10,.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: 80px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(240,165,0,.15);
  border: 1px solid rgba(240,165,0,.3);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--primary);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.hero__bullets li span {
  color: var(--primary);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero__trust {
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 11px;
  position: relative;
}
.hero__scroll span::before {
  content: '';
  display: block;
  width: 4px; height: 7px;
  background: rgba(255,255,255,.55);
  border-radius: 2px;
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  60% { transform: translateX(-50%) translateY(11px); opacity: 0; }
}

/* ═══════════════════════════════
   STATS
═══════════════════════════════ */
.stats {
  background: var(--dark);
  padding-block: 36px;
}

.stats__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.stats__item {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
}

.stats__item strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 5px;
}

.stats__item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.stats__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ═══════════════════════════════
   PAIN SECTION
═══════════════════════════════ */
.pain { background: var(--bg-grey); }

.pain__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pain__text .section-title { margin-bottom: 40px; }

.pain__point {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}

.pain__icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain__point h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}

.pain__point p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.pain__deconstruct {
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 22px 24px;
  margin-top: 8px;
}

.pain__deconstruct p {
  font-size: 0.92rem;
  color: var(--dark-2);
  line-height: 1.75;
  margin-bottom: 8px;
}
.pain__deconstruct p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
}

.pain__visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pain__img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ═══════════════════════════════
   OUTCOME SECTION
═══════════════════════════════ */
.outcome { background: var(--white); }

.outcome__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.outcome__card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}

.outcome__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.outcome__img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.outcome__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}

.outcome__card:hover .outcome__img-wrap img {
  transform: scale(1.04);
}

.outcome__card h3 {
  font-size: 1rem;
  font-weight: 800;
  padding: 20px 22px 8px;
  color: var(--dark);
}

.outcome__card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 22px 22px;
}

.outcome__paradigm {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  background: var(--bg-grey);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  border: 1px solid var(--border);
}

.outcome__paradigm p {
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.75;
}

.outcome__paradigm strong { color: var(--primary-dark); }

/* ═══════════════════════════════
   HOW IT WORKS
═══════════════════════════════ */
.how { background: var(--bg-grey); }

.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how__step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}

.how__step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  opacity: .25;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.how__step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}

.how__step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.how__arrow {
  font-size: 1.8rem;
  color: var(--primary);
  opacity: .4;
  padding: 0 20px;
  margin-top: 40px;
  flex-shrink: 0;
}

/* ═══════════════════════════════
   PLANS
═══════════════════════════════ */
.plans { background: var(--dark); }

.plans .section-badge {
  background: rgba(240,165,0,.15);
  border-color: rgba(240,165,0,.3);
  color: var(--primary);
}

.plans .section-title { color: var(--white); }
.plans .section-sub { color: rgba(255,255,255,.5); }

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

.plan-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  transition: transform .2s;
}
.plan-card:hover { transform: translateY(-5px); }

.plan-card--featured {
  background: var(--white);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  transform: scale(1.04);
}
.plan-card--featured:hover { transform: scale(1.04) translateY(-5px); }

.plan-card__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 4px;
  white-space: nowrap;
}

.plan-card__head h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.plan-card--featured .plan-card__head h3 { color: var(--dark); }

.plan-card__head p {
  font-size: 0.83rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 22px;
}
.plan-card--featured .plan-card__head p { color: var(--muted); }

.plan-card__price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan-card--featured .plan-card__price { border-color: var(--border); }

.plan-card__price strong {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-card--featured .plan-card__price strong { color: var(--dark); }

.plan-card__price span {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.plan-card--featured .plan-card__price span { color: var(--muted); }

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
}

.plan-card__features li {
  font-size: 0.86rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}
.plan-card--featured .plan-card__features li { color: var(--dark-2); }

.plan-card__features li.yes::before { content: '✓'; color: var(--primary); font-weight: 800; position: absolute; left: 0; }
.plan-card__features li.no { color: rgba(255,255,255,.25); text-decoration: line-through; }
.plan-card--featured .plan-card__features li.no { color: var(--muted-light); }
.plan-card__features li.no::before { content: '✗'; color: rgba(255,255,255,.2); font-weight: 800; position: absolute; left: 0; }
.plan-card--featured .plan-card__features li.no::before { color: var(--muted-light); }

.plans__grid--soon {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-inline: auto;
  margin-top: 24px;
}

/* Coming soon card */
.plan-card--soon {
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.15);
  opacity: .75;
}

.plan-card--soon:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.plan-card--soon .plan-card__head h3 {
  color: rgba(255,255,255,.6);
}

.plan-card--soon .plan-card__head p {
  color: rgba(255,255,255,.3);
}

.plan-card__soon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(240,165,0,.12);
  border: 1px solid rgba(240,165,0,.25);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.plan-card__soon-msg {
  font-size: 0.88rem;
  color: rgba(255,255,255,.35);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.btn--outline-soon {
  background: transparent;
  color: rgba(255,255,255,.4);
  border-color: rgba(255,255,255,.15);
}
.btn--outline-soon:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}

.plans__note {
  text-align: center;
  margin-top: 44px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.4);
}

.plans__note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testimonials { background: var(--bg-grey); }

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

.t-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow .2s, transform .2s;
}
.t-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.t-card__stars { color: var(--primary); font-size: 1rem; letter-spacing: 2px; }

.t-card p {
  font-size: 0.9rem;
  color: var(--dark-2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.t-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}
.t-avatar--a { background: linear-gradient(135deg, #F0A500, #D4920A); }
.t-avatar--b { background: linear-gradient(135deg, #444, #111); }
.t-avatar--c { background: linear-gradient(135deg, #888, #555); }

.t-card__author strong { display: block; font-size: 0.88rem; font-weight: 800; }
.t-card__author span { font-size: 0.78rem; color: var(--muted); }

/* ═══════════════════════════════
   FOUNDER
═══════════════════════════════ */
.founder { background: var(--white); }

.founder__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.founder__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founder__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder__text .section-badge { margin-bottom: 20px; }

blockquote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark-2);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  padding-left: 24px;
}

blockquote::before {
  content: '"';
  position: absolute;
  left: 0; top: -4px;
  font-size: 3rem;
  color: var(--primary);
  font-style: normal;
  line-height: 1;
  font-weight: 900;
}

.founder__sig strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark);
}

.founder__sig span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ═══════════════════════════════
   CTA
═══════════════════════════════ */
.cta {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.cta__text p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.75;
}

.cta__btn { margin-bottom: 32px; }

.cta__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta__detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
}

.cta__detail svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.cta__detail a { color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 3px; }
.cta__detail a:hover { color: var(--white); }

.cta__visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.cta__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: #0A0A0A;
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__logo {
  height: 52px;
  width: auto;
  border-radius: var(--r-sm);
  background: var(--white);
  padding: 4px 8px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
}

.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.86rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 9px;
  transition: color .15s;
}
.footer__col a:hover { color: var(--primary); }

.footer__col p {
  font-size: 0.86rem;
  color: rgba(255,255,255,.35);
  margin-top: 8px;
  line-height: 1.6;
}

.footer__bottom {
  padding-block: 20px;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.2);
  text-align: center;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .pain__inner { gap: 48px; }
  .plans__grid { gap: 16px; }
  .plan-card--featured { transform: scale(1.02); }
  .plan-card--featured:hover { transform: scale(1.02) translateY(-5px); }
  .founder__inner { gap: 48px; }
  .cta__inner { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding-block: 64px; }

  /* Nav mobile */
  .nav__links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 13px 24px; font-size: 1rem; color: var(--muted); }
  .nav__links a:hover { color: var(--dark); }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }

  /* Stats */
  .stats__grid { flex-wrap: wrap; }
  .stats__item { flex: 1 1 40%; }
  .stats__divider { display: none; }

  /* Pain */
  .pain__inner { grid-template-columns: 1fr; gap: 48px; }
  .pain__visual { order: -1; }
  .pain__img { height: 400px; }

  /* Outcome */
  .outcome__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }

  /* How */
  .how__steps { flex-direction: column; gap: 16px; }
  .how__arrow { display: none; }

  /* Plans */
  .plans__grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .plans__grid--soon { grid-template-columns: 1fr; }
  .plan-card--featured { transform: scale(1); }
  .plan-card--featured:hover { transform: translateY(-5px); }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }

  /* Founder */
  .founder__inner { grid-template-columns: 1fr; gap: 40px; }
  .founder__img { height: 320px; }

  /* CTA */
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta__visual { display: none; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats__item { flex: 1 1 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .outcome__paradigm { padding: 24px; }
}
