/* ============================================
   THE PROBATE LAB — STYLESHEET
   Color scheme & content preserved from original
   Added: scroll reveals, counter animations,
   enhanced hover effects, full responsiveness
   ============================================ */

:root {
  --black: #0d0d0d;
  --charcoal: #1a1a1a;
  --dark: #221f1f;
  --mid: #2e2e2e;
  --border: #333;
  --cyan: #0071bb;
  --cyan-light: #3b96d2;
  --cyan-pale: #e8f4fb;
  --gold: #c9a94e;
  --white: #f5f5f3;
  --off: #e8e8e4;
  --muted: #888;
  --text: #d4d4cc;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.nav-brand:hover { transform: translateX(2px); }

.nav-monogram {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-brand:hover .nav-monogram {
  background: var(--cyan-light);
  transform: rotate(360deg);
  box-shadow: 0 0 0 4px rgba(0,113,187,0.2);
}

.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-wordmark span { color: var(--cyan-light); }

.nav-cta {
  background: var(--cyan);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,113,187,0.35);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,113,187,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,169,78,0.05) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 2rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--cyan-light);
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 820px;
  margin-bottom: 1.8rem;
  color: var(--white);
}

.hero-headline em {
  font-style: italic;
  color: var(--cyan-light);
  position: relative;
  display: inline-block;
}

.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cyan-light);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1s 1.2s ease forwards;
}

@keyframes underline {
  to { transform: scaleX(1); }
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  color: var(--text);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,113,187,0.4);
}

.btn-primary:hover::before { left: 100%; }

.btn-ghost {
  display: inline-block;
  color: var(--text);
  padding: 15px 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.03em;
  transition: color 0.25s ease, border-color 0.25s ease, padding-right 0.25s ease;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--cyan-light);
  padding-right: 8px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.stat-item:hover { transform: translateY(-4px); }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--cyan-light);
  line-height: 1;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.stat-item:hover .stat-num {
  color: var(--white);
  text-shadow: 0 0 20px rgba(59,150,210,0.6);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
}

.stat-item:hover .stat-label { color: var(--text); }

/* ── SECTION BASE ── */
section { padding: 6rem 2rem; }
.container { max-width: 1060px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--cyan-light);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 620px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── WHY ── */
.why-section { background: var(--charcoal); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.why-argument {
  background: var(--dark);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  padding: 2rem;
  border-radius: 4px;
  transition: border-left-width 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.why-argument:hover {
  border-left-width: 6px;
  transform: translateX(4px);
  box-shadow: -8px 8px 24px rgba(0,113,187,0.15);
}

.why-argument p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
}

.why-argument p + p { margin-top: 1rem; }
.why-argument strong { color: var(--white); font-weight: 600; }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.why-point:hover {
  background: rgba(0,113,187,0.06);
  transform: translateX(6px);
}

.why-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,113,187,0.15);
  border: 1px solid rgba(0,113,187,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s ease;
}

.why-point:hover .why-icon {
  background: rgba(0,113,187,0.3);
  border-color: var(--cyan-light);
  transform: scale(1.1) rotate(-8deg);
}

.why-point-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.why-point:hover .why-point-text h4 { color: var(--cyan-light); }

.why-point-text p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── PRODUCTS ── */
.products-section { background: var(--black); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.product-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-card:hover {
  border-color: var(--cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,113,187,0.2);
}

.product-card:hover::after { transform: scaleX(1); }

.product-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--charcoal) 0%, rgba(0,113,187,0.08) 100%);
}

.product-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 14px;
  right: -28px;
  background: var(--cyan);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 36px;
  transform: rotate(45deg);
  z-index: 2;
}

.product-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 0.8rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.product-card:hover .product-name { color: var(--cyan-light); }

.product-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.5rem;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.product-price span {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.product-features {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-features li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  transition: transform 0.2s ease, color 0.2s ease;
}

.product-features li:hover {
  transform: translateX(4px);
  color: var(--white);
}

.product-features li::before {
  content: '✓';
  color: var(--cyan-light);
  font-weight: 700;
  flex-shrink: 0;
}

.product-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.product-btn-primary {
  background: var(--cyan);
  color: #fff;
}

.product-btn-primary:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,113,187,0.4);
}

.product-btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
}

.product-btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan-light);
  background: rgba(0,113,187,0.05);
  transform: translateY(-2px);
}

/* ── COACHING ── */
.coaching-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.coaching-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coaching-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.coaching-bullet {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.25s ease;
}

.coaching-bullet:hover { transform: translateX(6px); }

.coaching-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 7px;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.coaching-bullet:hover .coaching-bullet-dot {
  background: var(--cyan-light);
  transform: scale(1.6);
  box-shadow: 0 0 12px rgba(59,150,210,0.6);
}

.coaching-bullet p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
}

.coaching-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.coaching-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,113,187,0.2);
}

.coaching-price-monthly {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.coaching-price-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0.4rem 0 0.2rem;
}

.coaching-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.2rem 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.coaching-divider::before, .coaching-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.coaching-price-annual {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan-light);
}

.coaching-price-save {
  font-size: 12px;
  color: var(--gold);
  margin-top: 0.2rem;
}

.coaching-btn {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--cyan);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: 1.8rem;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.coaching-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.coaching-btn:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,113,187,0.4);
}

.coaching-btn:hover::before { left: 100%; }

.coaching-guarantee {
  font-size: 12px;
  color: var(--muted);
  margin-top: 0.8rem;
  line-height: 1.5;
}

/* ── BIO ── */
.bio-section { background: var(--black); }

.bio-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 2rem;
}

.bio-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, #004f8c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 3px solid rgba(0,113,187,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.bio-avatar:hover {
  transform: scale(1.05) rotate(-5deg);
  box-shadow: 0 0 0 8px rgba(0,113,187,0.15), 0 20px 40px rgba(0,113,187,0.3);
  border-color: var(--cyan-light);
}

.bio-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.bio-title {
  font-size: 13px;
  color: var(--cyan-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.bio-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
}

.bio-body p + p { margin-top: 1rem; }

.bio-credentials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.bio-cred {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cyan-light);
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(0,113,187,0.4);
  padding: 8px 16px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.bio-cred::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,113,187,0.15), rgba(59,150,210,0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.bio-cred:hover {
  color: var(--white);
  border-color: var(--cyan-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,113,187,0.25);
}

.bio-cred:hover::before {
  opacity: 1;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.footer-brand span { color: var(--cyan-light); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan-light);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links a:hover::after { width: 100%; }

.footer-legal {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-top {
  transform: translateY(-30px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   HERO INTRO ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero-headline { animation: fadeUp 0.7s 0.1s ease both; }
.hero-sub      { animation: fadeUp 0.7s 0.2s ease both; }
.hero-actions  { animation: fadeUp 0.7s 0.3s ease both; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large tablet / small laptop */
@media (max-width: 1024px) {
  section { padding: 5rem 2rem; }
  .hero { padding: 6rem 2rem 4rem; }
}

/* Tablet */
@media (max-width: 900px) {
  .why-grid,
  .coaching-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  nav {
    padding: 0 1.2rem;
    height: 58px;
  }

  .nav-monogram {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .nav-wordmark { font-size: 15px; }

  .nav-cta {
    padding: 8px 14px;
    font-size: 12px;
  }

  section { padding: 4rem 1.2rem; }

  .hero { padding: 4.5rem 1.2rem 3.5rem; min-height: auto; }

  .hero-eyebrow {
    font-size: 10px;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    gap: 1rem;
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }

  .btn-ghost { padding: 12px 0; }

  .stats-bar { padding: 2rem 1.2rem; }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .why-argument { padding: 1.5rem; }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .product-card { padding: 1.8rem; }

  .coaching-card { padding: 2rem 1.5rem; }

  .bio-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    justify-items: center;
  }

  .bio-avatar {
    width: 140px;
    height: 140px;
    font-size: 3.4rem;
  }

  .bio-credentials { justify-content: center; }

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  nav { padding: 0 1rem; }

  .nav-cta {
    padding: 7px 12px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  section { padding: 3.5rem 1rem; }

  .hero { padding: 3.5rem 1rem 3rem; }

  .hero-headline { font-size: 2rem; }

  .hero-sub { font-size: 0.95rem; margin-bottom: 2rem; }

  .stats-bar { padding: 1.8rem 1rem; }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .stat-num { font-size: 1.9rem; }

  .stat-label { font-size: 10px; }

  .section-title { font-size: 1.6rem; }

  .product-card,
  .coaching-card,
  .why-argument { padding: 1.5rem; }

  .product-card.featured::before {
    font-size: 9px;
    padding: 3px 30px;
    right: -32px;
  }

  .bio-avatar {
    width: 120px;
    height: 120px;
    font-size: 2.8rem;
  }

  .bio-name { font-size: 1.5rem; }

  .bio-cred {
    font-size: 10px;
    padding: 5px 10px;
  }

  .coaching-price-monthly { font-size: 2.4rem; }

  .coaching-price-annual { font-size: 1.4rem; }

  footer { padding: 2.5rem 1rem; }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}