/* ═══════════════════════════════════
   TOKENS
═══════════════════════════════════ */
:root {
  --ink:      #0D0D0D;
  --ivory:    #F5F0E8;
  --saffron:  #F4A726;
  --saffron2: #E8941A;
  --forest:   #1A3D2B;
  --sage:     #4E7C5F;
  --rust:     #C94B1E;
  --cream:    #FAF6EE;
  --muted:    #8A8070;
  --card-bg:  rgba(245,240,232,0.04);
  --card-bdr: rgba(245,240,232,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--ivory);
  overflow-x: hidden;
  cursor: none;
}

/* custom cursor */
.cursor {
  width: 14px; height: 14px;
  background: var(--saffron);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.25s, height 0.25s, opacity 0.25s;
  mix-blend-mode: difference;
}
.cursor.big { width: 44px; height: 44px; opacity: 0.5; }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4vw;
  background: rgba(13,13,13,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244,167,38,0.12);
  transition: all 0.4s;
}

nav.scrolled { padding: 0.9rem 4vw; }

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--saffron);
  text-decoration: none;
}
.logo span { color: var(--ivory); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--ivory); }

.nav-cta {
  background: var(--saffron);
  color: var(--ink) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.3rem;
  border-radius: 2rem;
  transition: transform 0.25s, box-shadow 0.25s !important;
}
.nav-cta:hover { transform: scale(1.05) !important; box-shadow: 0 0 24px rgba(244,167,38,0.35) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--ivory); border-radius: 2px; transition: all 0.3s; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 4vw 5rem;
  position: relative; overflow: hidden;
}

.hero-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-glow1 {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(244,167,38,0.09) 0%, transparent 70%);
  top: -200px; right: -150px; pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}

.hero-glow2 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,61,43,0.18) 0%, transparent 70%);
  bottom: -100px; left: 5%; pointer-events: none;
  animation: pulse 8s ease-in-out infinite 2s;
}

@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.08);opacity:0.7} }

.hero-inner { position: relative; z-index: 1; max-width: 1100px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--saffron); font-weight: 600;
  border: 1px solid rgba(244,167,38,0.35);
  padding: 0.4rem 1rem; border-radius: 2rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-tag .dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--saffron);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.2rem, 8.5vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ivory);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s ease 0.1s both;
}

.hero-h1 em { font-style: italic; color: var(--saffron); }
.hero-h1 .line2 { display: block; padding-left: 8vw; }
.hero-h1 .line3 { display: block; padding-left: 2vw; }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245,240,232,0.6);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.75rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.3s both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--saffron);
  color: var(--ink);
  font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 2.2rem; border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--saffron);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(244,167,38,0.3); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--ivory);
  font-weight: 500; font-size: 0.95rem;
  padding: 0.9rem 2.2rem; border-radius: 2rem;
  text-decoration: none;
  border: 2px solid rgba(245,240,232,0.2);
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: rgba(245,240,232,0.5); background: rgba(245,240,232,0.05); }

.hero-trust {
  margin-top: 4rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.4s both;
}

.trust-label {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

.trust-avatars {
  display: flex;
}
.t-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 0.75rem; font-weight: 700;
  margin-left: -8px; color: var(--ink);
}
.t-avatar:first-child { margin-left: 0; }

.trust-text {
  font-size: 0.83rem; color: rgba(245,240,232,0.55);
}
.trust-text strong { color: var(--saffron); }

/* hero stats bar */
.hero-stats {
  margin-top: 5rem;
  display: flex; gap: 0; flex-wrap: wrap;
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 2.5rem;
  animation: fadeUp 0.9s ease 0.5s both;
}

.h-stat {
  flex: 1; min-width: 140px;
  padding-right: 2rem;
  border-right: 1px solid rgba(245,240,232,0.08);
  margin-right: 2rem;
}
.h-stat:last-child { border-right: none; margin-right: 0; }

.h-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--saffron); letter-spacing: -0.03em;
  display: block; line-height: 1;
  margin-bottom: 0.3rem;
}
.h-stat-label {
  font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 4vw; z-index: 1;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); animation: fadeUp 1s ease 0.8s both;
}
.scroll-line {
  width: 40px; height: 1px; background: var(--muted);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--saffron);
  animation: scanLine 2s ease-in-out infinite;
}
@keyframes scanLine { 0%{left:-100%} 100%{left:100%} }

/* hero visual panel */
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 44vw; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 9rem 3vw 5rem;
}

.lms-mockup {
  width: 100%; max-width: 420px;
  background: rgba(245,240,232,0.03);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  animation: floatUp 3s ease-in-out infinite;
}
@keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.mockup-bar {
  background: rgba(244,167,38,0.12);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}
.m-dot { width:10px;height:10px;border-radius:50%; }
.m-dot.r{background:#ff5f57;} .m-dot.y{background:#febc2e;} .m-dot.g{background:#28c840;}
.m-url {
  flex:1; background:rgba(245,240,232,0.06); border-radius:0.5rem;
  padding:0.3rem 0.75rem; margin-left:0.5rem;
  font-size:0.72rem; color:rgba(245,240,232,0.4);
}

.mockup-body { padding: 1.25rem; }

.m-course-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.m-course-thumb {
  width: 48px; height: 48px; border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--saffron), var(--forest));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.m-course-title { font-family:'Fraunces',serif; font-size:0.9rem; font-weight:700; color:var(--ivory); margin-bottom:0.2rem; }
.m-course-sub { font-size:0.72rem; color:var(--muted); }

.m-progress-bar {
  background: rgba(245,240,232,0.08); border-radius:2rem;
  height: 5px; margin-bottom: 1rem; overflow: hidden;
}
.m-progress-fill {
  width: 65%; height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--sage));
  border-radius: 2rem;
  position: relative;
}
.m-progress-fill::after {
  content: '65%';
  position: absolute; right: -1px; top: -18px;
  font-size: 0.65rem; color: var(--saffron); font-weight: 600;
}

.m-lessons { display:flex;flex-direction:column;gap:0.5rem; margin-bottom:1rem; }
.m-lesson {
  display:flex;align-items:center;gap:0.75rem;
  padding:0.6rem 0.75rem;
  border-radius:0.6rem;
  background:rgba(245,240,232,0.04);
  border:1px solid rgba(245,240,232,0.07);
  transition:all 0.3s;
}
.m-lesson.active { background:rgba(244,167,38,0.1); border-color:rgba(244,167,38,0.25); }
.m-lesson-icon { font-size:0.9rem; width:24px;text-align:center; }
.m-lesson-name { font-size:0.78rem; color:rgba(245,240,232,0.75); flex:1; }
.m-lesson-done { font-size:0.7rem; color:var(--sage); }
.m-lesson.active .m-lesson-name { color:var(--ivory); font-weight:500; }

.m-quiz-card {
  background: rgba(26,61,43,0.4);
  border: 1px solid rgba(78,124,95,0.3);
  border-radius:0.75rem;
  padding:0.9rem;
}
.m-quiz-label { font-size:0.65rem;letter-spacing:0.12em;text-transform:uppercase;color:var(--sage);margin-bottom:0.4rem;font-weight:600; }
.m-quiz-q { font-size:0.8rem;color:var(--ivory);margin-bottom:0.6rem;font-weight:500; }
.m-quiz-opts { display:flex;flex-direction:column;gap:0.35rem; }
.m-quiz-opt {
  padding:0.4rem 0.75rem; border-radius:0.4rem;
  background:rgba(245,240,232,0.05);
  border:1px solid rgba(245,240,232,0.1);
  font-size:0.72rem; color:rgba(245,240,232,0.65); cursor:pointer;
  transition:all 0.2s;
}
.m-quiz-opt.sel { background:rgba(244,167,38,0.15);border-color:rgba(244,167,38,0.4);color:var(--saffron); }

/* ═══════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════ */
section { padding: 7rem 4vw; position: relative; overflow: hidden; }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--saffron); font-weight: 600; margin-bottom: 1.25rem;
}

.section-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--ivory);
  margin-bottom: 1.25rem;
}
.section-h2 em { font-style: italic; color: var(--saffron); }

.section-lead {
  font-size: 1.05rem; color: rgba(245,240,232,0.6);
  max-width: 560px; line-height: 1.7; font-weight: 300;
}

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════
   LOGOS STRIP
═══════════════════════════════════ */
.logos-strip {
  background: rgba(245,240,232,0.025);
  border-top: 1px solid rgba(245,240,232,0.07);
  border-bottom: 1px solid rgba(245,240,232,0.07);
  padding: 2rem 4vw;
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 1.75rem;
}

.logos-track {
  display: flex; align-items: center; gap: 3rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.logos-track span {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 0.95rem;
  color: rgba(245,240,232,0.25); letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════ */
#problem { background: #0A0D0A; }

.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  margin-top: 3.5rem; align-items: start;
}

.pain-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem;
  background: rgba(201,75,30,0.06);
  border: 1px solid rgba(201,75,30,0.18);
  border-radius: 0.875rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.pain-card:hover { border-color: rgba(201,75,30,0.35); transform:translateX(4px); }

.pain-num {
  font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 900;
  color: var(--rust); line-height: 1; flex-shrink: 0; width: 2rem;
}

.pain-text { font-size: 0.9rem; color: rgba(245,240,232,0.75); line-height: 1.6; }
.pain-text strong { color: var(--ivory); display: block; margin-bottom: 0.25rem; font-size: 0.95rem; }

.problem-right {
  position: sticky; top: 7rem;
}

.quote-block {
  background: rgba(244,167,38,0.06);
  border-left: 3px solid var(--saffron);
  border-radius: 0 1rem 1rem 0;
  padding: 2rem 1.75rem;
  margin-bottom: 2rem;
}
.quote-text {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.1rem; color: rgba(245,240,232,0.8); line-height: 1.65;
  font-weight: 300; margin-bottom: 1rem;
}
.quote-attr { font-size: 0.8rem; color: var(--muted); }
.quote-attr strong { color: var(--saffron); }

.chaos-tools {
  background: rgba(245,240,232,0.03);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: 1rem; padding: 1.5rem;
}
.chaos-label { font-size:0.7rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--muted);margin-bottom:1rem;font-weight:600; }
.tool-row {
  display:flex;align-items:center;justify-content:space-between;
  padding:0.6rem 0;
  border-bottom:1px solid rgba(245,240,232,0.06);
  font-size:0.85rem;
}
.tool-row:last-child{border-bottom:none;}
.tool-name{color:rgba(245,240,232,0.6);}
.tool-prob{color:var(--rust);font-size:0.75rem;font-weight:500;}

/* ═══════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════ */
#features { background: var(--ink); }

.features-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; flex-wrap: wrap; gap: 2rem;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feat-card {
  background: rgba(26,61,43,0.25);
  border: 1px solid rgba(78,124,95,0.2);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  transition: all 0.35s;
  position: relative; overflow: hidden;
}

.feat-card::before {
  content:'';
  position:absolute; top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg, var(--saffron), var(--sage));
  opacity:0; transition:opacity 0.35s;
}

.feat-card:hover {
  background: rgba(26,61,43,0.5);
  border-color: rgba(78,124,95,0.4);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}
.feat-card:hover::before { opacity:1; }

.feat-icon {
  width:50px;height:50px;border-radius:0.875rem;
  background:rgba(244,167,38,0.1);border:1px solid rgba(244,167,38,0.2);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem; margin-bottom:1.25rem;
}

.feat-name {
  font-family:'Fraunces',serif;font-size:1.05rem;font-weight:700;
  color:var(--ivory);margin-bottom:0.6rem;
}
.feat-desc{font-size:0.87rem;color:rgba(245,240,232,0.58);line-height:1.65;}

.feat-tag {
  display:inline-block;margin-top:1rem;
  font-size:0.68rem;letter-spacing:0.1em;text-transform:uppercase;
  background:rgba(244,167,38,0.1);color:var(--saffron);
  padding:0.25rem 0.65rem;border-radius:2rem;font-weight:600;
}

/* big feature card */
.feat-card.big {
  grid-column: span 2;
  display: flex; gap: 2rem; align-items: center;
  background: linear-gradient(135deg, rgba(26,61,43,0.5), rgba(13,13,13,0.8));
}
@media(max-width:900px){ .feat-card.big{grid-column:span 1;flex-direction:column;} }

.feat-card.big .feat-visual {
  flex:1; background:rgba(244,167,38,0.05);border:1px solid rgba(244,167,38,0.15);
  border-radius:0.75rem; padding:1.25rem; min-width:0;
}

.grade-row {
  display:flex;align-items:center;justify-content:space-between;
  padding:0.5rem 0.6rem;border-radius:0.4rem;
  background:rgba(245,240,232,0.04);margin-bottom:0.4rem;
  font-size:0.78rem;
}
.grade-name{color:rgba(245,240,232,0.7);}
.grade-score{font-family:'Fraunces',serif;font-weight:700;color:var(--saffron);}
.grade-pass{font-size:0.68rem;color:var(--sage);}

/* ═══════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════ */
#how { background: var(--forest); }

.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
  position: relative;
}

.how-grid::before {
  content:'';
  position:absolute;top:36px;left:calc(12.5% + 20px);right:calc(12.5% + 20px);
  height:2px;
  background:linear-gradient(90deg, rgba(244,167,38,0.5), rgba(244,167,38,0.1));
  z-index:0;
}

.how-step { position:relative;z-index:1;text-align:center;padding:0 0.5rem; }

.how-step-num {
  width:56px;height:56px;border-radius:50%;
  background:rgba(244,167,38,0.12);
  border:2px solid rgba(244,167,38,0.3);
  display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;font-size:1.2rem;font-weight:900;
  color:var(--saffron); margin:0 auto 1.25rem;
  transition:all 0.3s;
}
.how-step:hover .how-step-num {
  background:var(--saffron);color:var(--ink);
  box-shadow:0 0 30px rgba(244,167,38,0.4);
}

.how-step-icon { font-size:1.5rem;margin-bottom:0.75rem;display:block; }
.how-step-title {
  font-family:'Fraunces',serif;font-size:1rem;font-weight:700;
  color:var(--ivory);margin-bottom:0.5rem;
}
.how-step-text { font-size:0.83rem;color:rgba(245,240,232,0.6);line-height:1.6; }

/* ═══════════════════════════════════
   PRICING
═══════════════════════════════════ */
#pricing { background: #080D0A; }

.pricing-grid {
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.25rem;margin-top:3.5rem;align-items:start;
}

.price-card {
  background:rgba(245,240,232,0.03);
  border:1px solid rgba(245,240,232,0.1);
  border-radius:1.25rem;padding:2rem 1.75rem;
  transition:all 0.35s;
}
.price-card:hover { border-color:rgba(244,167,38,0.3);transform:translateY(-4px); }

.price-card.featured {
  background:rgba(244,167,38,0.08);
  border:2px solid rgba(244,167,38,0.4);
  position:relative;
}

.feat-badge {
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:var(--saffron);color:var(--ink);
  font-size:0.68rem;letter-spacing:0.12em;text-transform:uppercase;font-weight:700;
  padding:0.3rem 1rem;border-radius:2rem;
  white-space:nowrap;
}

.price-plan{font-size:0.75rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:0.5rem;}
.price-name{font-family:'Fraunces',serif;font-size:1.4rem;font-weight:900;color:var(--ivory);margin-bottom:1rem;}
.price-amount{
  font-family:'Fraunces',serif;font-size:2.8rem;font-weight:900;
  color:var(--saffron);letter-spacing:-0.04em;line-height:1;margin-bottom:0.25rem;
}
.price-amount small{font-size:1rem;font-weight:400;color:var(--muted);}
.price-period{font-size:0.8rem;color:var(--muted);margin-bottom:1.5rem;}

.price-divider{height:1px;background:rgba(245,240,232,0.08);margin:1.5rem 0;}

.price-features{list-style:none;display:flex;flex-direction:column;gap:0.7rem;}
.price-features li{
  display:flex;align-items:center;gap:0.75rem;
  font-size:0.87rem;color:rgba(245,240,232,0.72);
}
.price-features li::before{
  content:'✦';color:var(--sage);font-size:0.65rem;flex-shrink:0;
}
.price-features li.off{color:rgba(245,240,232,0.3);}
.price-features li.off::before{content:'—';color:rgba(245,240,232,0.2);}

.price-btn{
  display:block;text-align:center;text-decoration:none;
  margin-top:1.75rem;padding:0.85rem;border-radius:0.75rem;
  font-weight:600;font-size:0.9rem;transition:all 0.3s;
}
.price-btn.outline{
  border:1.5px solid rgba(245,240,232,0.2);color:var(--ivory);
}
.price-btn.outline:hover{border-color:rgba(244,167,38,0.4);background:rgba(244,167,38,0.07);}

.price-btn.solid{
  background:var(--saffron);color:var(--ink);
}
.price-btn.solid:hover{box-shadow:0 12px 30px rgba(244,167,38,0.35);transform:translateY(-1px);}

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
#testimonials { background: var(--ink); }

.testi-grid {
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.25rem;margin-top:3.5rem;
}

.testi-card {
  background:rgba(245,240,232,0.03);
  border:1px solid rgba(245,240,232,0.09);
  border-radius:1.25rem;padding:1.75rem;
  transition:all 0.35s;
}
.testi-card:hover{border-color:rgba(244,167,38,0.25);transform:translateY(-3px);}

.testi-stars{color:var(--saffron);font-size:0.85rem;margin-bottom:1rem;letter-spacing:0.1em;}

.testi-text{
  font-family:'Fraunces',serif;font-style:italic;
  font-size:0.98rem;color:rgba(245,240,232,0.8);
  line-height:1.65;font-weight:300;margin-bottom:1.5rem;
}

.testi-author{display:flex;align-items:center;gap:0.75rem;}
.t-ava{
  width:40px;height:40px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;font-weight:900;font-size:0.9rem;
  color:var(--ink);flex-shrink:0;
}
.t-name{font-size:0.88rem;font-weight:600;color:var(--ivory);}
.t-role{font-size:0.75rem;color:var(--muted);}

/* ═══════════════════════════════════
   CTA BAND
═══════════════════════════════════ */
#cta {
  background: var(--forest);
  padding: 6rem 4vw;
  text-align: center;
  position: relative; overflow: hidden;
}

#cta::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 0%, rgba(244,167,38,0.15) 0%, transparent 65%);
  pointer-events:none;
}

#cta .section-h2 { margin: 0 auto 1.25rem; max-width: 700px; }
#cta .section-lead { margin: 0 auto 2.5rem; text-align: center; }

.cta-actions {
  display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;
}

.cta-note{
  margin-top:1.25rem;
  font-size:0.8rem;color:rgba(245,240,232,0.4);
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: #060808;
  border-top: 1px solid rgba(245,240,232,0.07);
  padding: 4rem 4vw 2rem;
  padding-top: 0;
}

.footer-grid {
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;margin-bottom:3rem;
}

.footer-brand .logo { font-size:1.3rem;display:block;margin-bottom:0.75rem;text-decoration:none; }
.footer-brand p { font-size:0.85rem;color:rgba(245,240,232,0.45);line-height:1.7;max-width:260px; }

.footer-col h4 {
  font-size:0.72rem;letter-spacing:0.15em;text-transform:uppercase;
  color:var(--saffron);font-weight:600;margin-bottom:1.25rem;
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:0.6rem;}
.footer-col ul a{font-size:0.87rem;color:rgba(245,240,232,0.5);text-decoration:none;transition:color 0.25s;}
.footer-col ul a:hover{color:var(--ivory);}

.footer-bottom {
  border-top:1px solid rgba(245,240,232,0.06);
  padding-top:2rem;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;
}

.footer-bottom p{font-size:0.8rem;color:rgba(245,240,232,0.3);}
.footer-socials{display:flex;gap:0.75rem;}
.social-link{
  width:34px;height:34px;border-radius:50%;
  border:1px solid rgba(245,240,232,0.12);
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;font-size:0.9rem;
  color:rgba(245,240,232,0.5);transition:all 0.25s;
}
.social-link:hover{border-color:rgba(244,167,38,0.4);color:var(--saffron);}

/* ═══════════════════════════════════
   MOBILE MENU
═══════════════════════════════════ */
.mobile-menu {
  display:none;
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:var(--ink);z-index:499;
  flex-direction:column;align-items:center;justify-content:center;gap:2rem;
  padding:2rem;
}
.mobile-menu.open{display:flex;}
.mobile-menu a{
  font-family:'Fraunces',serif;font-size:2rem;font-weight:700;
  color:rgba(245,240,232,0.7);text-decoration:none;transition:color 0.2s;
}
.mobile-menu a:hover{color:var(--saffron);}
.mobile-close{
  position:absolute;top:1.5rem;right:4vw;
  background:none;border:none;cursor:none;
  font-size:1.5rem;color:var(--ivory);
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media(max-width:1024px){
  .hero-visual{display:none;}
  .hero-h1 .line2,.hero-h1 .line3{padding-left:0;}
}

@media(max-width:768px){
  .nav-links{display:none;}
  .hamburger{display:flex;}
  .problem-grid,.feat-grid,.how-grid,.pricing-grid,.testi-grid,.footer-grid{grid-template-columns:1fr;}
  .how-grid::before{display:none;}
  .hero-h1{font-size:clamp(2.5rem,11vw,4rem);}
  .h-stat{min-width:50%;border-right:none;margin-right:0;padding-right:0;border-bottom:1px solid rgba(245,240,232,0.08);padding-bottom:1.25rem;margin-bottom:1.25rem;}
  .h-stat:last-child{border-bottom:none;padding-bottom:0;margin-bottom:0;}
  .hero-stats{gap:0;}
  .feat-card.big{grid-column:span 1;}
  .features-header{flex-direction:column;align-items:flex-start;}
}