/* ── Maxwell Training — Production Stylesheet ── */

/* ── Variables ────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --cream:   #F5F2ED;
  --card:    #ECEAE4;
  --white:   #FFFFFF;
  --ink:     #111111;
  --mid:     #5A5A5A;
  --lite:    #A0A0A0;
  --red:     #E63946;
  --red2:    #C8303B;
  --gold:    #C9A84C;

  /* Spacing */
  --section-pad: 100px 20px;
  --section-pad-sm: 64px 20px;

  /* Radius */
  --radius: 14px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);

  /* Type */
  --font-body:    'Inter', sans-serif;
  --font-display: 'DM Serif Display', serif;

  /* Breakpoints (reference only) */
  --bp-sm:  480px;
  --bp-md:  768px;
  --bp-lg: 1024px;
}

/* ── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ── Typography ──────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; margin-bottom: 10px; }
p  { margin: 0 0 16px; line-height: 1.7; }

/* ── Accessibility ───────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Navigation ──────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 60px;
  background: rgba(245, 242, 237, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
  letter-spacing: -0.01em;
  background: none;
  border: none;
  padding: 0;
}
.nav-right { display: flex; align-items: center; gap: 4px; }
.nav-link {
  background: none;
  border: none;
  color: var(--mid);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  font-family: var(--font-body);
}
.nav-link:hover { color: var(--ink); background: rgba(0,0,0,0.05); }
.nav-btn {
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 9px 20px;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.15s;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.nav-btn:hover { opacity: 0.85; transform: translateY(-1px); }
@media (max-width: 480px) { .nav-link { display: none; } nav { padding: 0 16px; } }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 60px);
  max-height: 900px;
}
.hero-photo-col {
  position: relative;
  overflow: hidden;
  background: #e8e4de;
}
.hero-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(240,237,232,0.98) 0%, transparent 100%);
}
.hero-photo-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}
.hero-photo-credit {
  font-size: 0.72rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.1);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(230,57,70,0.2);
  width: fit-content;
}
h1 span { color: var(--red); }
.hero-p {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.7;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all 0.2s;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  width: fit-content;
}
.hero-btn:hover { background: #333; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero-btn svg { transition: transform 0.2s; }
.hero-btn:hover svg { transform: translateX(4px); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.badge {
  font-size: 0.75rem;
  color: var(--mid);
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  padding: 5px 14px;
  font-weight: 500;
}
.hero-note { font-size: 0.78rem; color: var(--lite); margin: 0; }

/* Hero entrance animation */
.hero-text-col > * { animation: fadeUp 0.6s ease both; }
.hero-text-col > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text-col > *:nth-child(2) { animation-delay: 0.15s; }
.hero-text-col > *:nth-child(3) { animation-delay: 0.25s; }
.hero-text-col > *:nth-child(4) { animation-delay: 0.35s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; max-height: none; }
  .hero-photo-col { height: 55vw; max-height: 320px; }
  .hero-text-col { padding: 40px 24px; }
  .hero-p { font-size: 0.96rem; }
}

/* ── Three Strip ──────────────────────────────────────────────────────── */
.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: var(--cream);
}
.three-item {
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.three-item:last-child { border-right: none; }
.three-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 16px;
}
.three-label { font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; color: #fff; }
.three-desc  { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
@media (max-width: 600px) {
  .three { grid-template-columns: 1fr; }
  .three-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 32px 24px; }
}

/* ── About ───────────────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: var(--white);
}
.about-img { min-height: 520px; overflow: hidden; background: #e8e4de; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-text { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px; }
.about-text h2 { margin-bottom: 20px; }
.about-creds { display: flex; flex-direction: column; gap: 8px; margin: 20px 0 24px; }
.cred-item {
  font-size: 0.85rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f8f6f2;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
}
@media (max-width: 768px) {
  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 300px; }
  .about-text { padding: 48px 24px; }
}

/* ── What You Get ─────────────────────────────────────────────────────── */
.get { background: var(--cream); text-align: center; padding: var(--section-pad); }
.get-sub {
  color: var(--mid);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.get-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}
.get-item { background: var(--white); padding: 36px 32px; transition: background 0.2s; }
.get-item:hover { background: #faf8f4; }
.get-accent { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--red); opacity: 0.5; line-height: 1; margin-bottom: 16px; }
.get-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; color: var(--ink); }
.get-desc  { font-size: 0.84rem; color: var(--mid); line-height: 1.65; }

/* ── How It Works ─────────────────────────────────────────────────────── */
.how-section { background: var(--ink); color: var(--cream); text-align: center; padding: var(--section-pad); }
.how-section h2 { color: var(--cream); }
.how-sub { color: rgba(255,255,255,0.45); margin: 0 auto 60px; max-width: 440px; font-size: 1rem; }
.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 12%; right: 12%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
}
.how-step { flex: 1; padding: 0 16px; text-align: center; position: relative; z-index: 1; }
.how-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.how-label { font-weight: 700; font-size: 0.92rem; margin-bottom: 10px; color: #fff; }
.how-desc  { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
@media (max-width: 600px) {
  .how-steps { flex-direction: column; gap: 32px; }
  .how-steps::before { display: none; }
  .how-step { padding: 0; }
}

/* ── Pricing ──────────────────────────────────────────────────────────── */
.pricing { background: var(--cream); text-align: center; padding: var(--section-pad); }
.pricing-sub { color: var(--mid); max-width: 480px; margin: 0 auto 52px; font-size: 1rem; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 64px;
  text-align: left;
}
.plan {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.plan-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
}
.plan-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lite); margin-bottom: 6px; }
.plan.featured .plan-label { color: rgba(255,255,255,0.35); }
.plan-name { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; }
.plan-desc { font-size: 0.84rem; color: var(--mid); margin-bottom: 24px; line-height: 1.6; flex: 1; }
.plan.featured .plan-desc { color: rgba(255,255,255,0.5); }
.plan-price { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 4px; font-family: var(--font-body); }
.plan-from  { font-size: 0.75rem; color: var(--lite); margin-bottom: 28px; }
.plan.featured .plan-from { color: rgba(255,255,255,0.3); }

.plan-feats { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan-feats li { font-size: 0.84rem; color: var(--mid); display: flex; align-items: center; gap: 8px; }
.plan-feats li::before { content: "✓"; color: var(--red); font-weight: 700; font-size: 0.78rem; flex-shrink: 0; }
.plan.featured .plan-feats li { color: rgba(255,255,255,0.55); }
.plan.featured .plan-feats li::before { color: rgba(255,255,255,0.7); }

.plan-btn {
  width: 100%; padding: 14px;
  border-radius: 50px;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: all 0.2s;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  background: var(--ink); color: var(--cream);
}
.plan.featured .plan-btn { background: var(--cream); color: var(--ink); }
.plan-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.plan-btn.outline { background: transparent; border: 1.5px solid rgba(0,0,0,0.15); color: var(--ink); }
.plan-btn.outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

@media (max-width: 768px) {
  .plans { grid-template-columns: 1fr; }
  .plan.featured { order: -1; }
}

/* Comparison Table */
.compare-wrap { max-width: 960px; margin: 0 auto; text-align: center; }
.compare-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; color: var(--ink); }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; min-width: 500px; }
.compare-table th {
  padding: 14px 16px;
  background: var(--ink); color: var(--cream);
  font-weight: 600; text-align: center; border: none;
}
.compare-table th:first-child { text-align: left; width: 42%; }
th.compare-featured { background: var(--red) !important; }
.compare-table td { padding: 11px 16px; border-bottom: 1px solid rgba(0,0,0,0.06); text-align: center; color: var(--mid); }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--ink); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-featured { background: rgba(230,57,70,0.05) !important; }
.compare-price { font-size: 0.75rem; font-weight: 400; opacity: 0.7; display: block; }

/* ── Guarantee ────────────────────────────────────────────────────────── */
.guarantee-section {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 48px 20px;
}
.guarantee-inner { max-width: 680px; margin: 0 auto; display: flex; gap: 28px; align-items: flex-start; }
.guarantee-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 4px; }
.guarantee-text h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.guarantee-text p { color: var(--mid); font-size: 0.88rem; line-height: 1.7; margin-bottom: 6px; }
.guarantee-contact { font-size: 0.82rem; color: var(--lite); }
@media (max-width: 500px) { .guarantee-inner { flex-direction: column; gap: 16px; } }

/* ── Sample Section ───────────────────────────────────────────────────── */
.sample-section { background: var(--ink); padding: var(--section-pad); text-align: center; }
.sample-section h2 { color: var(--cream); }
.sample-sub { color: rgba(255,255,255,0.4); margin: 0 auto 52px; max-width: 480px; font-size: 1rem; }
.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto 48px;
  text-align: left;
}
.sample-card { background: #131320; padding: 32px 28px; transition: background 0.2s; }
.sample-card:hover { background: #1c1c2c; }
.sample-icon { font-size: 1.5rem; margin-bottom: 14px; display: block; }
.sample-title { font-weight: 700; font-size: 0.92rem; margin-bottom: 8px; color: var(--cream); }
.sample-desc  { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.65; }
.sample-cta .btn {
  background: var(--cream); color: var(--ink);
  border: none; padding: 16px 36px;
  font-size: 0.96rem; font-weight: 700;
  border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.sample-cta .btn:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

/* ── Reviews ──────────────────────────────────────────────────────────── */
.reviews { background: var(--cream); text-align: center; padding: var(--section-pad); }
.reviews-sub { color: var(--mid); margin: 0 auto 48px; max-width: 440px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 48px;
  text-align: left;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 28px;
}
.review-stars { color: var(--red); font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text  { font-size: 0.9rem; color: var(--ink); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 0.76rem; color: var(--lite); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.reviews-empty { color: var(--lite); font-size: 0.9rem; padding: 32px; background: var(--white); border-radius: var(--radius); border: 1px dashed rgba(0,0,0,0.1); max-width: 480px; margin: 0 auto 48px; }

.review-form-wrap {
  max-width: 520px; margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 36px;
  text-align: left;
}
.review-form-wrap h3 { margin-bottom: 20px; }

/* ── Forms ────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: var(--font-body);
  color: var(--ink); background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--ink); }
.form-group input.error { border-color: var(--red); }
.form-error { font-size: 0.78rem; color: var(--red); margin-top: 4px; display: none; }
.form-group.has-error .form-error { display: block; }
.form-group.has-error input { border-color: var(--red); }

/* Star rating */
.star-rating { display: flex; gap: 6px; margin-bottom: 16px; }
.star-rating button {
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--lite);
  padding: 4px; border-radius: 4px;
  transition: color 0.15s, transform 0.1s;
  line-height: 1;
}
.star-rating button:hover,
.star-rating button.active { color: var(--gold); transform: scale(1.15); }

.submit-btn {
  width: 100%; padding: 14px;
  background: var(--ink); color: var(--cream);
  border: none; border-radius: 50px;
  font-size: 0.92rem; font-weight: 700;
  cursor: pointer; font-family: var(--font-body);
  transition: opacity 0.2s;
  margin-top: 8px;
}
.submit-btn:hover { opacity: 0.85; }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-section { padding: var(--section-pad); max-width: 720px; margin: 0 auto; }
.faq-section h2 { text-align: center; margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600; font-size: 0.92rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink); background: var(--white);
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #faf8f4; }
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: var(--lite); font-weight: 300; flex-shrink: 0; margin-left: 16px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { background: #faf8f4; }
.faq-item p { padding: 0 22px 20px; color: var(--mid); font-size: 0.87rem; line-height: 1.75; margin: 0; background: var(--white); }

/* ── Footer ───────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  font-size: 0.81rem;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-links { display: flex; flex-wrap: wrap; gap: 4px; }
.foot-links button {
  background: none; border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.81rem; cursor: pointer;
  padding: 6px 12px; border-radius: 6px;
  transition: color 0.2s; font-family: var(--font-body);
}
.foot-links button:hover { color: rgba(255,255,255,0.75); }
@media (max-width: 480px) { footer { flex-direction: column; padding: 24px 16px; text-align: center; } }

/* ── Sticky Mobile CTA ────────────────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 999;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.06);
}
.sticky-cta button {
  width: 100%; background: var(--red); color: #fff;
  border: none; border-radius: 50px;
  padding: 15px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; font-family: var(--font-body);
  letter-spacing: 0.01em; transition: opacity 0.2s;
  min-height: 44px;
}
.sticky-cta button:hover { opacity: 0.9; }
@media (max-width: 700px) { .sticky-cta { display: block; } body { padding-bottom: 80px; } }

/* ── Contact Modal ────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 480px; width: 100%;
  position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--mid); padding: 8px;
  border-radius: 8px; line-height: 1;
  transition: background 0.2s;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(0,0,0,0.06); }
.modal h3 { margin-bottom: 20px; }

/* ── Quiz & Plan Pages ────────────────────────────────────────────────── */
.quiz-page, .plan-page, .confirm-page {
  min-height: calc(100vh - 60px);
  padding: 40px 20px 80px;
  max-width: 680px;
  margin: 0 auto;
}
.quiz-back {
  background: none; border: none; cursor: pointer;
  font-size: 0.85rem; color: var(--mid);
  padding: 8px 0; margin-bottom: 24px;
  font-family: var(--font-body);
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.quiz-back:hover { color: var(--ink); }
.quiz-progress {
  height: 3px; background: rgba(0,0,0,0.08);
  border-radius: 2px; margin-bottom: 40px; overflow: hidden;
}
.quiz-progress-fill { height: 100%; background: var(--red); border-radius: 2px; transition: width 0.4s ease; }
.q-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lite); margin-bottom: 12px; }
.q-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 8px; }
.q-sub   { font-size: 0.9rem; color: var(--mid); margin-bottom: 32px; }
.q-counter { font-size: 0.78rem; color: var(--lite); margin-bottom: 32px; }

/* Quiz option cards */
.opt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin-bottom: 32px; }
.opt-card {
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 18px 16px;
  cursor: pointer; text-align: center;
  transition: all 0.15s;
  background: var(--white);
  min-height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.opt-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.opt-card.sel { border-color: var(--red); background: rgba(230,57,70,0.05); }
.opt-icon { font-size: 1.6rem; }
.opt-label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.opt-card.sel .opt-label { color: var(--red); }

/* Pill tags */
.pill-group { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.pill {
  padding: 8px 18px; border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.12);
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; background: var(--white);
  transition: all 0.15s; color: var(--ink);
  min-height: 44px; display: flex; align-items: center;
}
.pill:hover { border-color: var(--ink); }
.pill.sel  { border-color: var(--red); background: rgba(230,57,70,0.08); color: var(--red); font-weight: 700; }

/* Style toggle */
.style-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.style-btn {
  padding: 14px 20px; border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius); background: var(--white);
  cursor: pointer; text-align: left; transition: all 0.15s;
  min-height: 44px;
}
.style-btn:hover { border-color: var(--ink); }
.style-btn.sel { border-color: var(--red); background: rgba(230,57,70,0.05); }
.style-name { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.style-btn.sel .style-name { color: var(--red); }
.style-desc { font-size: 0.76rem; color: var(--mid); margin-top: 4px; }

/* Slider */
.slider-wrap { margin-bottom: 32px; }
.slider-val  { font-size: 2rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.04em; }
input[type="range"] { width: 100%; accent-color: var(--red); height: 6px; cursor: pointer; }
.slider-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--lite); margin-top: 8px; }

/* Text inputs in quiz */
.quiz-input {
  width: 100%; padding: 14px 16px;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: var(--radius); font-size: 1rem;
  font-family: var(--font-body); color: var(--ink);
  background: var(--white); margin-bottom: 12px;
  transition: border-color 0.2s;
}
.quiz-input:focus { outline: none; border-color: var(--ink); }
.quiz-input.error { border-color: var(--red); }
.quiz-input-error { font-size: 0.78rem; color: var(--red); margin-bottom: 12px; display: none; }

/* Next button */
.q-next {
  width: 100%; padding: 16px;
  background: var(--ink); color: var(--cream);
  border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: var(--font-body);
  transition: opacity 0.2s; margin-top: 8px;
  min-height: 56px;
}
.q-next:hover { opacity: 0.85; }
.q-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* Plan loading */
.plan-loading { text-align: center; padding: 80px 20px; }
.plan-spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(0,0,0,0.1);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.plan-loading-text { font-size: 1.1rem; font-weight: 600; margin-bottom: 24px; }
.plan-loading-steps { display: flex; flex-direction: column; gap: 10px; max-width: 280px; margin: 0 auto; }
.load-step { font-size: 0.82rem; color: var(--lite); display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.load-step::before { content: '○'; font-size: 0.6rem; flex-shrink: 0; }
.load-step.active { color: var(--ink); }
.load-step.active::before { content: '●'; color: var(--ink); }
.load-step.done { color: var(--mid); }
.load-step.done::before { content: '✓'; color: var(--ink); }

/* Plan output */
.plan-output {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: #333;
}
.plan-output h2 { font-size: 1.3rem; margin: 24px 0 12px; }
.plan-output h3 { font-size: 1.05rem; margin: 20px 0 10px; }
.plan-output table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.83rem; overflow-x: auto; display: block; }
.plan-output th { background: var(--ink); color: var(--cream); padding: 10px 12px; text-align: left; }
.plan-output td { padding: 9px 12px; border-bottom: 1px solid rgba(0,0,0,0.07); }
.plan-output tr:nth-child(even) td { background: #faf8f4; }

.plan-blur-wrap { position: relative; overflow: hidden; border-radius: var(--radius); margin-bottom: 20px; }
.plan-blur-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}

/* Adjust panel */
.adjust-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 24px; margin-bottom: 20px;
}
.adjust-box h3 { font-size: 1rem; margin-bottom: 14px; }
.adjust-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.adj-chip {
  padding: 7px 16px; border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.12);
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer; background: var(--white);
  transition: all 0.15s; color: var(--ink);
  min-height: 36px;
}
.adj-chip:hover, .adj-chip.sel { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.adj-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: var(--font-body); margin-bottom: 10px;
}
.adj-input:focus { outline: none; border-color: var(--ink); }
.adj-submit {
  padding: 10px 24px; background: var(--ink); color: var(--cream);
  border: none; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); transition: opacity 0.2s;
  min-height: 44px;
}
.adj-submit:hover { opacity: 0.85; }

/* Pay box */
.pay-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 32px; text-align: center;
}
.pay-box h3 { margin-bottom: 8px; }
.pay-box p  { color: var(--mid); font-size: 0.9rem; margin-bottom: 24px; }
.tier-switch { display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.tier-btn {
  padding: 9px 20px; border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.12);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; background: var(--white);
  transition: all 0.15s; font-family: var(--font-body);
  min-height: 44px;
}
.tier-btn.sel { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.name-email { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
@media (max-width: 480px) { .name-email { grid-template-columns: 1fr; } }
.pay-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: var(--font-body);
  transition: border-color 0.2s;
}
.pay-input:focus { outline: none; border-color: var(--ink); }
.pay-input.error { border-color: var(--red); }
.dl-btn {
  width: 100%; padding: 16px;
  background: var(--ink); color: var(--cream);
  border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: var(--font-body);
  transition: opacity 0.2s; margin-top: 12px;
  min-height: 56px;
}
.dl-btn:hover { opacity: 0.85; }
.dl-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.pay-secure { font-size: 0.76rem; color: var(--lite); margin-top: 10px; }

/* ── Legal Modal ──────────────────────────────────────────────────────── */
.legal-modal {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.legal-box {
  background: var(--white); border-radius: var(--radius);
  max-width: 640px; width: 100%;
  max-height: 80vh; overflow-y: auto;
  padding: 40px; position: relative;
}
.legal-box h2 { font-size: 1.4rem; margin-bottom: 20px; }
.legal-box p, .legal-box li { font-size: 0.88rem; color: var(--mid); line-height: 1.75; margin-bottom: 12px; }
.legal-box h3 { font-size: 1rem; margin: 24px 0 10px; color: var(--ink); }
.legal-box ul { padding-left: 20px; }
.legal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--mid); padding: 8px;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Privacy notice ───────────────────────────────────────────────────── */
.privacy-notice {
  background: #f8f6f2;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.privacy-notice a { color: var(--ink); text-decoration: underline; cursor: pointer; }

/* ── Aria live region ─────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.aria-status { position: absolute; left: -9999px; }

/* ── Transformation Section ──────────────────────────────────────────── */
.transformation {
  background: var(--white);
  padding: var(--section-pad);
  text-align: center;
}
.transformation h2 { margin-bottom: 12px; }
.transformation-sub {
  color: var(--mid);
  max-width: 480px;
  margin: 0 auto 56px;
  font-size: 1rem;
}
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.transform-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
}
.transform-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.transform-images.single {
  grid-template-columns: 1fr;
}
.transform-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #e8e4de;
}
.transform-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.transform-card:hover .transform-img-wrap img {
  transform: scale(1.03);
}
.transform-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(17,17,17,0.75);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.transform-label.after {
  background: rgba(230,57,70,0.85);
}
.transform-info {
  padding: 20px 24px;
}
.transform-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.transform-detail {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.5;
}
.transform-shoutout {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--mid);
}
@media (max-width: 600px) {
  .transformation-grid { grid-template-columns: 1fr; }
}
