/* ── TOKENS ───────────────────────────────────────────────────── */
/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body{
  background: var(--cream);
  overflow-x: hidden;
}

/* ── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,153,58,0.35); }
  50%      { box-shadow: 0 0 0 8px rgba(200,153,58,0); }
}
@keyframes drift {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.fade-up   { animation: fadeUp .6s ease both; }
.fade-up-1 { animation: fadeUp .6s .1s ease both; }
.fade-up-2 { animation: fadeUp .6s .22s ease both; }
.fade-up-3 { animation: fadeUp .6s .36s ease both; }
.fade-up-4 { animation: fadeUp .6s .5s ease both; }
.fade-up-5 { animation: fadeUp .6s .64s ease both; }

/* ── NAV ──────────────────────────────────────────────────────── */
nav {
  background: var(--ink);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(200,153,58,0.14);
}
.nav-brand {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: var(--cream);
  text-decoration: none;
}
.nav-brand em { color: var(--gold); font-style: italic; }

.nav-links { display: flex; gap: 0.15rem; align-items: center; }
.nav-links a {
  color: rgba(246,239,226,0.93);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 3px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--cream); background: rgba(255,255,255,0.12); }
.nav-cta {
  background: var(--tc) !important; color: var(--cream) !important;
  font-weight: 700 !important; padding: 0.45rem 1.2rem !important;
  margin-left: 0.6rem; border-radius: 4px;
}
.nav-cta:hover { background: var(--tc-dk) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; }

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--ink); padding: 1.25rem 2rem 2rem;
    border-top: 1px solid rgba(200,153,58,0.12);
    gap: 0.15rem; align-items: flex-start;
  }
  .nav-links.open .nav-cta { margin-left: 0; margin-top: 0.6rem; }
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  background: var(--ink);
  padding: 6rem 2.5rem 6.5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 88% 50%, rgba(184,77,35,0.16) 0%, transparent 68%),
    radial-gradient(ellipse 40% 55% at 4% 85%, rgba(200,153,58,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-geo {
  position: absolute; right: -90px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(200,153,58,0.07); border-radius: 50%; pointer-events: none;
}
.hero-geo::after {
  content: ''; position: absolute; inset: 55px;
  border: 1px solid rgba(184,77,35,0.07); border-radius: 50%;
}
.hero-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }

.hero-label {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(200,153,58,0.1); border: 1px solid rgba(200,153,58,0.24);
  color: var(--gold-lt);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.38rem 1rem; border-radius: 20px; margin-bottom: 1.75rem;
}
.hero-label::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse-gold 2s infinite;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 5.5vw, 3.6rem);
  color: var(--cream);
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.2rem;
  color: rgba(246,239,226,0.96);
  margin-bottom: 2.1rem;
  max-width: 530px;
  line-height: 1.72;
  font-weight: 400;
}

.hero-checks { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2.6rem; }
.hero-checks li {
  list-style: none;
  font-size: 1.05rem;
  color: rgba(246,239,226,0.9);
  display: flex; align-items: flex-start; gap: 0.75rem;
  line-height: 1.55;
}
.hero-checks li::before { content: '✔'; color: var(--gold); font-size: 0.85rem; margin-top: 0.22rem; flex-shrink: 0; }

.hero-actions { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--tc); color: var(--cream);
  padding: 0.95rem 2.1rem; border-radius: 4px;
  text-decoration: none; font-weight: 700; font-size: 1.02rem;
  letter-spacing: 0.01em;
  transition: background .15s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--tc-dk); transform: translateY(-1px); }

.btn-ghost {
  color: rgba(246,239,226,0.92); text-decoration: none;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(200,153,58,0.32); padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-guarantee {
  margin-top: 1.4rem; font-size: 0.88rem;
  color: rgba(246,239,226,0.88); line-height: 1.5;
}
.hero-guarantee span { color: rgba(200,153,58,0.72); }

/* ── TRUST BAR ────────────────────────────────────────────────── */
.trust-bar {
  background: var(--ink-2);
  border-top: 1px solid rgba(200,153,58,0.1);
  border-bottom: 1px solid rgba(200,153,58,0.1);
  padding: 1.15rem 2.5rem;
}
.trust-bar-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2.75rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem; color: rgba(246,239,226,0.90);
}
.trust-item strong { color: var(--gold-lt); font-weight: 700; font-size: 1.05rem; }
.trust-divider { width: 1px; height: 18px; background: rgba(200,153,58,0.14); }
@media (max-width: 560px) { .trust-divider { display: none; } }

/* ── PHRASE STRIP ─────────────────────────────────────────────── */
.pod-strip {
  background: var(--cream-dk);
  border-bottom: 1px solid var(--cream-md);
  padding: 1rem 2.5rem;
}
.pod-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap;
}
.pod-label {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted); font-weight: 700; white-space: nowrap;
}
.pod-phrase { font-family: 'Lora', serif; font-size: 1.15rem; color: var(--ink); font-style: italic; }
.pod-meaning { font-size: 0.97rem; color: var(--muted); }
.pod-next {
  margin-left: auto; background: none;
  border: 1px solid var(--cream-md); color: var(--muted);
  font-size: 0.82rem; padding: 0.32rem 0.9rem; border-radius: 3px;
  cursor: pointer; font-family: 'Source Sans 3', sans-serif;
  transition: border-color .15s, color .15s; white-space: nowrap;
}
.pod-next:hover { border-color: var(--tc); color: var(--tc); }

/* ── SHARED SECTION ───────────────────────────────────────────── */
section { padding: 5.5rem 2.5rem; }
.section-inner { max-width: 1000px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--tc);
  font-weight: 700; margin-bottom: 0.65rem;
  display: block;
}
.section-heading {
  font-family: 'Lora', serif;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  color: var(--ink); font-weight: 700;
  line-height: 1.18; margin-bottom: 1.05rem;
}
.section-heading em { color: var(--tc); font-style: italic; }
.section-sub {
  font-size: 1.12rem; color: var(--muted);
  max-width: 600px; line-height: 1.8;
  margin-bottom: 3rem; font-weight: 400;
}

/* ── PROBLEM ──────────────────────────────────────────────────── */
#problem { background: var(--ink); position: relative; overflow: hidden; }
#problem::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 75% at 100% 0%, rgba(184,77,35,0.12) 0%, transparent 60%);
  pointer-events: none;
}
#problem .section-label  { color: rgba(221,185,106,0.7); }
#problem .section-heading { color: var(--cream); }
#problem .section-sub    { color: rgba(246,239,226,0.98); }

.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(200,153,58,0.13);
  border: 1px solid rgba(200,153,58,0.13); border-radius: 10px;
  overflow: hidden; margin-bottom: 2.5rem;
}
@media (max-width: 660px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: rgba(22,14,3,0.52);
  padding: 2.25rem 2rem;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.problem-card .x-icon {
  width: 34px; height: 34px;
  background: rgba(184,77,35,0.18); border: 1px solid rgba(184,77,35,0.38);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #e06545; font-size: 0.88rem; font-weight: 700;
}
.problem-card h3 {
  font-family: 'Lora', serif; font-size: 1.2rem;
  color: var(--cream); font-weight: 600; line-height: 1.3;
}
.problem-card p { font-size: 1rem; color: rgba(246,239,226,0.93); line-height: 1.7; }

.problem-payoff {
  border-left: 3px solid var(--tc);
  padding: 1.1rem 1.6rem;
  background: rgba(184,77,35,0.07); border-radius: 0 6px 6px 0;
}
.problem-payoff p {
  font-family: 'Lora', serif; font-style: italic;
  color: rgba(246,239,226,0.8); font-size: 1.05rem; line-height: 1.72;
}
.problem-payoff strong { color: var(--gold-lt); font-style: normal; }

/* ── SOLUTION ─────────────────────────────────────────────────── */
#solution { background: var(--cream); }

.solution-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.75rem; align-items: center;
}
@media (max-width: 660px) { .solution-grid { grid-template-columns: 1fr; } }

.solution-steps { display: flex; flex-direction: column; gap: 1.1rem; }
.solution-step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.4rem 1.6rem;
  background: var(--card-bg); border: 1px solid var(--cream-dk);
  border-radius: 8px; transition: box-shadow .2s, border-color .2s;
}
.solution-step:hover { box-shadow: 0 4px 22px rgba(22,14,3,0.08); border-color: var(--cream-md); }

.step-num {
  width: 36px; height: 36px; background: var(--tc); color: var(--cream);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; flex-shrink: 0; font-family: 'Lora', serif;
}
.step-body h3 { font-size: 1.03rem; font-weight: 600; color: var(--ink); margin-bottom: 0.28rem; line-height: 1.35; }
.step-body p  { font-size: 0.97rem; color: var(--muted); line-height: 1.65; margin: 0; }

.solution-right { display: flex; flex-direction: column; gap: 1.1rem; }
.solution-callout {
  background: var(--ink); color: var(--cream);
  padding: 2.5rem 2.25rem; border-radius: 10px;
  position: relative; overflow: hidden;
}
.solution-callout::before {
  content: ''; position: absolute; top: -35px; right: -35px;
  width: 120px; height: 120px; background: rgba(200,153,58,0.07); border-radius: 50%;
}
.solution-callout .big-stat {
  font-family: 'Lora', serif; font-size: 4.5rem;
  color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 0.4rem;
}
.solution-callout p { font-size: 1rem; color: rgba(246,239,226,0.93); line-height: 1.65; }

.solution-mini-checks { display: flex; flex-direction: column; gap: 0.55rem; }
.solution-mini-checks li {
  list-style: none; font-size: 0.98rem; color: var(--text);
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.7rem 1.1rem; background: var(--card-bg);
  border: 1px solid var(--cream-dk); border-radius: 5px; line-height: 1.5;
}
.solution-mini-checks li::before {
  content: '✔'; color: var(--tc); font-size: 0.8rem; margin-top: 0.22rem; flex-shrink: 0;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
#testimonials { background: var(--cream-dk); padding: 5.5rem 2.5rem; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2.25rem;
}
@media (max-width: 720px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--cream-md);
  border-radius: 10px; padding: 2.25rem 2rem;
  position: relative; transition: box-shadow .2s;
}
.testimonial-card:hover { box-shadow: 0 8px 28px rgba(22,14,3,0.09); }
.testimonial-card::before {
  content: '\201C'; font-family: 'Lora', serif;
  font-size: 5rem; color: var(--cream-md);
  position: absolute; top: 0.4rem; left: 1.1rem; line-height: 1;
}
.testimonial-card p {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 1.06rem; color: var(--text);
  line-height: 1.78; margin-bottom: 1.6rem;
  position: relative; z-index: 1; padding-top: 1.6rem;
}
.testimonial-meta { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--tc), var(--gold));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--cream);
  font-family: 'Lora', serif; flex-shrink: 0;
}
.testimonial-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 1px; }
.testimonial-name { font-size: 0.94rem; font-weight: 600; color: var(--ink); }
.testimonial-role { font-size: 0.82rem; color: var(--muted); }

/* ── WHO IT'S FOR ─────────────────────────────────────────────── */
#who { background: var(--card-bg); }

.who-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--cream-dk);
  border: 1px solid var(--cream-dk); border-radius: 10px; overflow: hidden;
}
@media (max-width: 560px) { .who-grid { grid-template-columns: 1fr; } }

.who-card {
  background: var(--card-bg); padding: 2.25rem 2rem;
  display: flex; gap: 1.4rem; align-items: flex-start;
  transition: background .15s;
}
.who-card:hover { background: #fdfaf5; }
.who-icon { font-size: 1.7rem; flex-shrink: 0; margin-top: 0.05rem; animation: drift 4s ease-in-out infinite; }
.who-card:nth-child(2) .who-icon { animation-delay: .5s; }
.who-card:nth-child(3) .who-icon { animation-delay: 1s; }
.who-card:nth-child(4) .who-icon { animation-delay: 1.5s; }
.who-card h3 { font-size: 1.08rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.3; }
.who-card p  { font-size: 1rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── DIFFERENTIATION ──────────────────────────────────────────── */
#differentiation { background: var(--cream); }

.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: start; }
@media (max-width: 620px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-col-label {
  font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700;
  padding: 0.75rem 1.35rem; border-radius: 6px 6px 0 0;
}
.diff-col-juba .diff-col-label    { background: var(--tc); color: var(--cream); }
.diff-col-standard .diff-col-label { background: var(--cream-dk); color: var(--muted); }

.diff-items {
  border: 1px solid var(--cream-md); border-top: none;
  border-radius: 0 0 8px 8px; overflow: hidden; background: var(--card-bg);
}
.diff-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 1rem 1.35rem; border-bottom: 1px solid var(--cream-dk);
  font-size: 1rem; line-height: 1.52;
}
.diff-item:last-child { border-bottom: none; }
.diff-icon { flex-shrink: 0; font-size: 0.9rem; margin-top: 0.14rem; }
.diff-col-juba .diff-item     { color: var(--text); }
.diff-col-juba .diff-icon     { color: var(--tc); }
.diff-col-standard .diff-item { color: var(--muted); }
.diff-col-standard .diff-icon { color: var(--cream-md); }
.diff-cta { grid-column: 1/-1; text-align: center; margin-top: 1.1rem; font-size: 1rem; color: var(--muted); }
.diff-cta a { color: var(--tc); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--tc); }
.diff-cta a:hover { color: var(--gold); border-color: var(--gold); }

/* ── CURRICULUM ───────────────────────────────────────────────── */
#curriculum { background: var(--ink); }
#curriculum .section-label  { color: rgba(200,153,58,0.84); }
#curriculum .section-heading { color: var(--cream); }
#curriculum .section-sub    { color: rgba(246,239,226,0.9); }

.chapter-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(275px,1fr));
  gap: 1px; background: rgba(200,153,58,0.1);
  border: 1px solid rgba(200,153,58,0.1); border-radius: 10px;
  overflow: hidden; margin-bottom: 2.25rem;
}
.chapter-card {
  background: var(--ink-2); padding: 1.5rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.55rem; transition: background .15s;
}
.chapter-card:hover { background: rgba(32,22,10,0.95); }
.chapter-card.free  { border-left: 2px solid var(--gold); }

.chapter-num {
  font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); font-weight: 700;
  display: flex; align-items: center; gap: 0.5rem;
}
.chapter-num .free-badge {
  background: rgba(200,153,58,0.14); color: var(--gold-lt);
  border: 1px solid rgba(200,153,58,0.2);
  padding: 0.1rem 0.5rem; border-radius: 2px; font-size: 0.64rem;
}
.chapter-num .lock { color: rgba(246,239,226,0.55); }
.chapter-title {
  font-family: 'Lora', serif; font-size: 1rem;
  color: var(--cream); font-weight: 600; line-height: 1.35;
}
.chapter-vocab { font-size: 0.83rem; color: rgba(246,239,226,0.88); line-height: 1.48; }

.curriculum-cta { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.curriculum-cta a.btn-secondary {
  color: rgba(246,239,226,0.90); text-decoration: none; font-size: 0.97rem;
  border-bottom: 1px solid rgba(200,153,58,0.22); padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.curriculum-cta a.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* ── VOCAB TABLE ──────────────────────────────────────────────── */
#vocab-sample { background: var(--cream-dk); padding: 4.5rem 2.5rem; }

.vocab-table {
  width: 100%; border-collapse: collapse;
  background: var(--card-bg); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--cream-md);
}
.vocab-table th {
  background: var(--ink); color: var(--gold-lt); text-align: left;
  padding: 0.9rem 1.5rem; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.09em; font-weight: 700;
}
.vocab-table td { padding: 0.88rem 1.5rem; border-bottom: 1px solid var(--cream-dk); font-size: 1rem; }
.vocab-table tr:last-child td { border-bottom: none; }
.vocab-table tr:hover td { background: #fdfaf5; }
.vocab-table td:first-child {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 1.1rem; color: var(--ink); font-weight: 600;
}
.vocab-table td:nth-child(2) { color: var(--text); }
.vocab-table .ch-badge {
  display: inline-block; background: var(--cream-dk); color: var(--muted);
  font-size: 0.74rem; padding: 0.15rem 0.6rem; border-radius: 3px; font-weight: 600;
}

/* ── AUTHOR ───────────────────────────────────────────────────── */
#author { background: var(--card-bg); }

.author-layout { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: start; }
@media (max-width: 620px) { .author-layout { grid-template-columns: 1fr; } }

.author-avatar-wrap { position: relative; }
.author-avatar-large {
  width: 115px; height: 115px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tc) 0%, var(--gold) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-size: 2.6rem; color: var(--cream); font-weight: 700;
  border: 3px solid var(--cream-dk);
}
.author-avatar-wrap::after {
  content: ''; position: absolute; inset: -7px;
  border-radius: 50%; border: 1px solid var(--cream-md);
}
.author-name  { font-family: 'Lora', serif; font-size: 1.55rem; font-weight: 700; color: var(--ink); margin-bottom: 0.22rem; line-height: 1.2; }
.author-title { font-size: 0.95rem; color: var(--tc); font-weight: 600; margin-bottom: 1.2rem; }
.author-bio p { font-size: 1.03rem; color: var(--text); margin-bottom: 1.1rem; line-height: 1.82; }
.author-bio blockquote {
  border-left: 3px solid var(--gold); padding: 0.9rem 1.5rem;
  background: #fff8ee; border-radius: 0 6px 6px 0;
  font-family: 'Lora', serif; font-style: italic;
  font-size: 1.08rem; color: var(--ink); margin: 1.2rem 0; line-height: 1.68;
}
.author-link {
  color: var(--tc); text-decoration: none; font-size: 0.95rem;
  font-weight: 600; border-bottom: 1px solid var(--tc); transition: color .15s, border-color .15s;
}
.author-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── FEATURES ─────────────────────────────────────────────────── */
#features { background: var(--cream-dk); }

.features-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 660px) { .features-layout { grid-template-columns: 1fr; } }

.feature-list { display: flex; flex-direction: column; gap: 0.8rem; }
.feature-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.2rem 1.5rem; background: var(--card-bg);
  border: 1px solid var(--cream-md); border-radius: 7px; transition: box-shadow .2s;
}
.feature-item:hover { box-shadow: 0 3px 14px rgba(22,14,3,0.07); }
.feature-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.feature-body h4 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.22rem; line-height: 1.3; }
.feature-body p  { font-size: 0.95rem; color: var(--muted); margin: 0; line-height: 1.6; }

.coming-soon-item { border-style: dashed; opacity: 0.72; }
.coming-soon-item .feature-body h4::after {
  content: 'Coming soon'; background: var(--cream-dk); color: var(--muted);
  font-size: 0.65rem; padding: 0.12rem 0.5rem; border-radius: 2px;
  margin-left: 0.55rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700;
  vertical-align: middle;
}

/* Inline feature box — override inline styles */
.feature-box {
  background: var(--ink); border-radius: 10px; padding: 2.25rem;
  color: var(--cream);
}
.feature-box-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(200,153,58,0.84); margin-bottom: 1.1rem; font-weight: 700;
}
.feature-box-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
.feature-box-list li {
  font-size: 0.98rem; color: rgba(246,239,226,0.95);
  display: flex; gap: 0.65rem; align-items: flex-start; line-height: 1.5;
}
.feature-box-list li span { color: var(--gold); flex-shrink: 0; }
.feature-box-list li.bonus { color: var(--gold-lt); }
.feature-box-cta { display: block; text-align: center; font-size: 1rem; padding: 0.9rem; }
.feature-box-note { text-align: center; font-size: 0.78rem; color: rgba(246,239,226,0.84); margin-top: 0.8rem; }

/* ── PRICING ──────────────────────────────────────────────────── */
#pricing { background: var(--ink); }
#pricing .section-label  { color: rgba(200,153,58,0.84); }
#pricing .section-heading { color: var(--cream); }

.pricing-card {
  background: var(--ink-2); border: 1px solid rgba(200,153,58,0.2);
  border-radius: 12px; overflow: hidden; max-width: 480px; margin: 0 auto;
}
.pricing-card-header {
  background: linear-gradient(135deg, var(--tc) 0%, #8a3518 100%);
  padding: 2.25rem 2.75rem; position: relative; overflow: hidden;
}
.pricing-card-header::before {
  content: ''; position: absolute; top: -25px; right: -25px;
  width: 100px; height: 100px; background: rgba(255,255,255,0.05); border-radius: 50%;
}
.pricing-intro {
  font-size: 0.82rem; color: rgba(246,239,226,0.92);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.pricing-amount {
  font-family: 'Lora', serif; font-size: 4.5rem; color: var(--cream);
  font-weight: 700; line-height: 1; position: relative; z-index: 1;
}
.pricing-amount sup { font-size: 1.9rem; vertical-align: top; margin-top: 0.65rem; }
.pricing-note { font-size: 0.88rem; color: rgba(246,239,226,0.90); margin-top: 0.55rem; position: relative; z-index: 1; }

.pricing-card-body{
  padding: 2.25rem 2.75rem;
}
.pricing-includes { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.pricing-includes li {
  list-style: none; font-size: 1rem;
  color: rgba(246,239,226,0.95); display: flex; align-items: flex-start; gap: 0.65rem;
  line-height: 1.5;
}
.pricing-includes li::before { content: '✔'; color: var(--gold); font-size: 0.8rem; margin-top: 0.25rem; flex-shrink: 0; }
.pricing-includes li.bonus { color: var(--gold-lt); }
.pricing-includes li.bonus::before { content: '🎁'; font-size: 0.8rem; }

.pricing-cta-btn {
  display: block; background: var(--tc); color: var(--cream);
  text-align: center; padding: 1.05rem; border-radius: 6px;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  transition: background .15s; margin-bottom: 1.1rem; letter-spacing: 0.01em;
}
.pricing-cta-btn:hover { background: var(--tc-dk); }

.pricing-trust { display: flex; justify-content: center; gap: 1.75rem; flex-wrap: wrap; }
.pricing-trust span { font-size: 0.82rem; color: rgba(246,239,226,0.86); display: flex; align-items: center; gap: 0.3rem; }
.payment-methods { margin-top: 1.6rem; display: flex; justify-content: center; align-items: center; gap: 0.65rem; flex-wrap: wrap; }
.payment-logo {
  height: 30px;
  background: rgba(255,255,255,0.93);
  border-radius: 5px;
  padding: 4px 9px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.payment-logo:hover { background: #fff; }
.payment-logo svg { display: block; height: 20px; width: auto; }

/* ── FAQ ──────────────────────────────────────────────────────── */
#faq { background: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; max-width: 740px; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--cream-dk);
  border-radius: 7px; overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.1rem 1.5rem; text-align: left;
  font-family: 'Source Sans 3', sans-serif; font-size: 1.04rem; font-weight: 600;
  color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  line-height: 1.45; transition: color .15s;
}
.faq-q:hover { color: var(--tc); }
.faq-arrow { color: var(--tc); font-size: 0.78rem; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner {
  padding: 1rem 1.5rem 1.3rem;
  font-size: 1rem; color: var(--muted); line-height: 1.78;
  border-top: 1px solid var(--cream-dk);
}
.faq-a-inner a { color: var(--tc); text-decoration: underline; }
.faq-more { margin-top: 1.6rem; font-size: 0.98rem; color: var(--muted); }
.faq-more a { color: var(--tc); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--tc); }
.faq-more a:hover { color: var(--gold); border-color: var(--gold); }

/* ── FINAL CTA ────────────────────────────────────────────────── */
#final-cta {
  background: linear-gradient(135deg, var(--tc) 0%, #8a3518 100%);
  padding: 6rem 2.5rem; text-align: center; position: relative; overflow: hidden;
}
#final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 80% at 50% 0%, rgba(200,153,58,0.13) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta-label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(246,239,226,0.96);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
#final-cta h2 {
  font-family: 'Lora', serif;
  font-size: clamp(2.35rem, 4.8vw, 3.2rem);
  color: var(--cream); font-weight: 700; margin-bottom: 1rem; position: relative;
  line-height: 1.12;
}
#final-cta p { color: rgba(246,239,226,0.98); font-size: 1.18rem; margin-bottom: 2rem; position: relative; }
.final-cta-copy {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.final-cta-copy strong { color: #fff; font-weight: 700; }
#final-cta .btn-primary {
  background: var(--cream); color: var(--tc);
  font-size: 1.14rem; padding: 1.12rem 2.9rem; position: relative;
  box-shadow: 0 12px 28px rgba(22,14,3,0.24);
  border-radius: 6px;
}
#final-cta .btn-primary:hover { background: var(--cream-dk); transform: translateY(-2px); }
#final-cta .guarantee { margin-top: 1.1rem; font-size: 0.92rem; color: rgba(246,239,226,0.92); position: relative; }
@media (max-width: 560px) {
  #final-cta { padding: 5rem 1.5rem; }
  #final-cta h2 { font-size: 2.05rem; }
  #final-cta p { font-size: 1.05rem; }
  #final-cta .btn-primary { width: 100%; }
}

/* ── EXTRA FIXES ──────────────────────────────────────────────── */
.check { color: var(--gold); flex-shrink: 0; }
#pricing .pricing-heading { color: var(--cream); text-align: center; margin-bottom: 2rem; }
.feature-box-cta { display: block; text-align: center; font-size: 1rem; padding: 0.9rem; margin-bottom: 0; }
.btn-secondary {
  color: rgba(246,239,226,0.9); text-decoration: none; font-size: 0.97rem; font-weight: 500;
  border-bottom: 1px solid rgba(200,153,58,0.25); padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.btn-secondary:hover { color: var(--gold-lt); border-color: var(--gold); }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(200,153,58,0.09);
  padding: 3.5rem 2.5rem 2.25rem;
}
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.75rem; margin-bottom: 2.75rem;
}
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }
@media (max-width: 420px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand-col .footer-brand {
  font-family: 'Lora', serif; font-size: 1.25rem; color: var(--cream); margin-bottom: 0.7rem;
}
.footer-brand-col .footer-brand em { color: var(--gold); font-style: italic; }
.footer-brand-col p { font-size: 0.88rem; color: rgba(246,239,226,0.88); line-height: 1.7; max-width: 230px; }

.footer-col h4 {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(200,153,58,0.78); font-weight: 700; margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  color: rgba(246,239,226,0.88); text-decoration: none;
  font-size: 0.92rem; transition: color .15s;
}
.footer-col ul a:hover { color: var(--gold-lt); }

.footer-bottom {
  border-top: 1px solid rgba(200,153,58,0.08); padding-top: 1.6rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(246,239,226,0.24); }
.footer-legal a {
  font-size: 0.82rem; color: rgba(246,239,226,0.84);
  text-decoration: none; transition: color .15s;
}
.footer-legal a:hover { color: var(--gold-lt); }


/* ── HERO CLEANUP SWEEP ─────────────────────────────────────── */
.hero-clean {
  padding: 5.4rem 2rem 5.2rem;
}
.hero-clean .hero-inner {
  max-width: 780px;
  text-align: center;
}
.hero-clean .hero-label {
  margin: 0 auto 1.25rem;
}
.hero-clean h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.1rem;
}
.hero-clean .hero-sub {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(246,239,226,0.94);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  max-width: 640px;
  margin: 0 auto 1.8rem;
}
.hero-metric {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,153,58,0.16);
  border-radius: 14px;
  padding: .95rem .8rem;
  backdrop-filter: blur(2px);
}
.hero-metric strong {
  display: block;
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .18rem;
}
.hero-metric span {
  display: block;
  color: rgba(246,239,226,0.75);
  font-size: .88rem;
  letter-spacing: .02em;
}
.hero-clean .hero-actions {
  justify-content: center;
  gap: .9rem;
}
.hero-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.03);
}
.hero-secondary:hover {
  background: rgba(255,255,255,.07);
}
.hero-clean .hero-guarantee {
  margin-top: 1rem;
  font-size: .9rem;
  color: rgba(246,239,226,0.78);
}
@media (max-width: 820px) {
  .hero-clean {
    padding: 4.6rem 1.1rem 4.4rem;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .hero-clean .hero-actions {
    flex-direction: column;
  }
  .hero-clean .hero-actions a {
    width: 100%;
  }
}


/* ===== CONVERSION POLISH SWEEP ===== */
.section-clean{
  padding: 4rem 1.25rem;
}
.container-narrow{
  max-width: 860px;
  margin: 0 auto;
}
.hero-proof{
  margin-top: 1rem;
  font-size: .95rem;
  color: rgba(246,239,226,0.9);
  font-weight: 700;
}
.clean-check-list,
.clean-x-list{
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: .9rem;
}
.clean-check-list li,
.clean-x-list li{
  background: #fffaf3;
  border: 1px solid rgba(196,87,42,.16);
  border-radius: 14px;
  padding: 1rem 1rem 1rem 3rem;
  position: relative;
  line-height: 1.65;
  box-shadow: 0 8px 22px rgba(30,20,8,.04);
  color: #24160d;
  font-weight: 600;
}
.clean-check-list li::before,
.clean-x-list li::before{
  position: absolute;
  left: 1rem;
  top: .98rem;
  font-weight: 800;
}
.clean-check-list li::before{
  content: "✔";
  color: #2f7d32;
}
.clean-x-list li::before{
  content: "✕";
  color: #b84d23;
}
.problem-solution-grid{
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.problem-card,
.solution-card{
  background: #fffaf3;
  border: 1px solid rgba(196,87,42,.12);
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 10px 26px rgba(30,20,8,.05);
}
.problem-card h3,
.solution-card h3{
  margin-top: 0;
  margin-bottom: .6rem;
  color: #24160d;
  font-size: 1.24rem;
}

.problem h2{
  color: #1f130b;
}

.problem-card p,
.solution-card p{
  color: #4a3b2d;
}
.value-stack li{
  font-size: 1rem;
}
.cta-center{
  text-align: center;
}
.btn-primary.big{
  font-size: 1.08rem;
  padding: 1rem 1.9rem;
  display: inline-block;
  margin-top: .7rem;
}
.cta-note{
  margin-top: .95rem;
  color: #5f4d3a;
  font-size: .92rem;
}
.trust-line{
  margin-top: .55rem;
  color: #7a6855;
  font-size: .92rem;
  font-weight: 700;
}
.pricing .usd-notice{
  margin-top: .9rem;
}
section{
  scroll-margin-top: 88px;
}
@media (max-width: 820px){
  .problem-solution-grid{
    grid-template-columns: 1fr;
  }
  .section-clean{
    padding: 3rem 1rem;
  }
}


/* ===== ELITE SECTION TRANSITIONS + VISUAL RHYTHM ===== */
:root{
  --page-cream:#f7f1e8;
  --surface-light:#fffaf3;
  --surface-warm:#fcf4e8;
  --surface-dark:#2a1b10;
  --border-soft:rgba(196,87,42,.12);
  --shadow-soft:0 10px 26px rgba(30,20,8,.05);
}

body{
  background: var(--page-cream);
}

main{
  overflow: hidden;
}

.section-clean,
.pricing{
  position: relative;
  padding: 5rem 1.25rem;
}

.section-light{
  background: var(--surface-light);
}

.section-warm{
  background: linear-gradient(180deg, #fcf4e8 0%, #fffaf3 100%);
}

.section-dark-soft{
  background: linear-gradient(180deg, #2a1b10 0%, #332114 100%);
  color: #fffaf3;
}

.section-divider-top::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:min(960px, calc(100% - 2rem));
  height:1px;
  background:linear-gradient(90deg, transparent 0%, rgba(196,87,42,.18) 18%, rgba(196,87,42,.18) 82%, transparent 100%);
}

.section-divider-wave::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-1px;
  transform:translateX(-50%);
  width:min(1100px, calc(100% - 2rem));
  height:28px;
  background:
    radial-gradient(circle at 14px -2px, transparent 16px, rgba(196,87,42,.08) 17px, rgba(196,87,42,.08) 18px, transparent 19px) repeat-x;
  background-size:36px 28px;
  opacity:.85;
  pointer-events:none;
}

.transformation .container-narrow,
.outcomes .container-narrow,
.problem .container-narrow,
.value .container-narrow,
.price-anchor .container-narrow,
.pricing .container-narrow,
.cta .container-narrow{
  position: relative;
  z-index: 1;
}

.transformation h2,
.outcomes h2,
.problem h2,
.value h2,
.price-anchor h2,
.pricing h2,
.cta h2{
  text-align:center;
  margin-bottom: .85rem;
  letter-spacing:-.02em;
}

.transformation p,
.outcomes p,
.problem p,
.value p,
.price-anchor p,
.pricing p,
.cta p{
  line-height: 1.75;
}

.transformation .container-narrow{
  max-width: 760px;
  text-align: center;
}

.transformation p{
  font-size: 1.08rem;
  color: #4c3d2f;
  margin: 0 auto;
}

.outcomes .clean-check-list,
.value .clean-check-list{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.problem-solution-grid{
  margin-top: 1.45rem;
  align-items: stretch;
}

.problem-card,
.solution-card{
  border-radius: 20px;
  padding: 1.5rem 1.35rem;
}

.problem-card{
  background: linear-gradient(180deg, #fff9f2 0%, #fffaf3 100%);
}

.solution-card{
  background: linear-gradient(180deg, #f8efe1 0%, #fffaf3 100%);
}

.value-stack li{
  font-weight: 500;
}

.price-anchor .container-narrow{
  max-width: 700px;
  text-align: center;
}

.price-anchor .clean-check-list{
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.price-anchor strong{
  color:#8f4b14;
}

.pricing .checkout-summary-card{
  max-width: 760px;
  margin: 1.15rem auto 0;
  border-radius: 22px;
  padding: 1.45rem 1.3rem;
  box-shadow: 0 14px 34px rgba(30,20,8,.07);
}

.pricing .checkout-summary-card h3{
  text-align:center;
}

.pricing .checkout-summary-price{
  text-align:center;
  font-size: 1.7rem;
}

.pricing .checkout-consent{
  margin-top: 1.15rem;
}

.pricing .refund-note-inline-home,
.pricing .usd-notice{
  text-align:center;
}

.hero .btn-primary,
.cta .btn-primary.big{
  box-shadow: 0 10px 26px rgba(184,77,35,.22);
}

.hero .btn-primary:hover,
.cta .btn-primary.big:hover{
  transform: translateY(-1px);
}

.cta .container-narrow{
  max-width: 760px;
}

.cta p,
.cta .cta-note,
.cta .trust-line{
  color: rgba(255,250,243,.86);
}

.cta .btn-primary.big{
  margin-top: 1rem;
  font-size: 1.12rem;
}

.hero-actions .btn-secondary,
.hero-secondary{
  border-radius: 999px;
}

.trust-line{
  display:block;
  margin-top:.45rem;
}

@media (max-width: 820px){
  .section-clean,
  .pricing{
    padding: 3.8rem 1rem;
  }
  .section-divider-wave::after{
    height: 20px;
    background-size: 30px 20px;
  }
}


.site-footer {
  padding: 40px 20px;
  background: #f7f1e8;
  text-align: center;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer-product {
  font-weight: 500;
  margin-bottom: 10px;
  color: #2a1b10;
}

.footer-copy {
  font-size: 0.9rem;
  color: #6b5a45;
  margin-bottom: 8px;
}


.usd-notice-checkout {
  font-size: 0.85rem;
  color: #8a7762;
  margin-top: 10px;
  text-align: center;
}

.problem{
  isolation: isolate;
}

.problem .container-narrow{
  max-width: 960px;
}

.problem h2{
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
}

.problem-solution-grid{
  gap: 1.35rem;
}

.problem-card,
.solution-card{
  border: 1px solid rgba(196,87,42,.2);
}

.problem-card{
  background: linear-gradient(180deg, #fff7ef 0%, #fffdf9 100%);
}

.solution-card{
  background: linear-gradient(180deg, #f7eddc 0%, #fffaf3 100%);
}

.problem-card h3,
.solution-card h3{
  letter-spacing: -.01em;
}

.problem .clean-x-list li,
.problem .clean-check-list li{
  box-shadow: 0 12px 30px rgba(30,20,8,.06);
}


/* ===== ELITE PRICING + CTA SYSTEM (HOMEPAGE) ===== */
.pricing-layout{
  max-width: 1100px;
}

.pricing-lead{
  max-width: 760px;
  margin: 0 auto 1.35rem;
  text-align: center;
  color: rgba(246,239,226,0.9);
  font-size: 1.05rem;
}

.pricing{
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.price-main {
  margin: 0 0 10px;
  font-family: "Lora", serif;
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  line-height: 1.05;
  color: #c8993a;
  letter-spacing: -0.02em;
}

.price-sub {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.price-anchor {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
}

.price-urgency {
  margin: 0 0 20px;
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 600;
  color: #f0b35f;
}

.pricing .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: #c8993a;
  color: #160e03;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.pricing .cta:hover,
.pricing .cta:focus-visible {
  background: #ddb96a;
  transform: translateY(-1px);
}

.pricing .cta:focus-visible {
  outline: 3px solid rgba(221, 185, 106, 0.35);
  outline-offset: 3px;
}

.pricing-hero{
  margin-top: 1.1rem;
}

.curriculum-cta-conversion{
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.curriculum-cta-conversion .btn-secondary{
  margin: 0 auto;
}

.pricing-homepage{
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-benefits-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.25rem;
}

.pricing-benefits-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 1.4rem 1.25rem;
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.pricing-benefits-card h3{
  color: var(--cream);
  margin-bottom: 0.9rem;
  text-align: left;
}

.elite-pricing-list{
  margin-bottom: 0;
}

.pricing-trust-home{
  justify-content: flex-start;
  margin-top: 1rem;
}

.pricing-final{
  text-align: center;
  margin-top: 1rem;
}

.problem-card h3,
.solution-card h3{
  color: #1e1408;
}

.clean-x-list li{
  color: #2e2015;
  font-weight: 600;
}

@media (max-width: 820px){
  .pricing-benefits-grid{
    grid-template-columns: 1fr;
  }

  .pricing,
  .pricing-homepage,
  .pricing-final,
  .pricing-hero,
  .pricing-mid{
    max-width: 100%;
  }
}
