/* =========================================================
   Great Talk Africa — shared design system
   Brand tokens carried over from the original one-page design.
   ========================================================= */
:root{
  --cream:#ECE0CC;
  --cream-light:#F7F1E6;
  --navy:#11131E;
  --navy-text:#171722;
  --orange:#C1652F;
  --green:#5C8664;
  --tan:#C7A488;
  --muted:#8a7f6c;
  --muted-light:#a89a82;
  --body-text:#26242a;
  --focus-ring:#7CB3FF;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}
html,body{ margin:0; padding:0; }
body{
  background:var(--cream);
  font-family:'Lora',serif;
  color:var(--body-text);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
button{ font:inherit; }

/* focus visibility — never remove without a replacement */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline:2px solid var(--focus-ring);
  outline-offset:2px;
  border-radius:2px;
}

.container{ max-width:1040px; margin:0 auto; padding:0 24px; }
.container.narrow{ max-width:720px; }
.center{ text-align:center; }

/* skip link */
.skip-link{
  position:absolute; left:12px; top:-48px; z-index:1000;
  background:var(--orange); color:#fff; padding:10px 16px; border-radius:3px;
  font-family:'Poppins',sans-serif; font-weight:700; font-size:12.5px; text-decoration:none;
  transition:top .2s ease;
}
.skip-link:focus{ top:12px; }

h1,h2,h3{ text-wrap:balance; }
p{ text-wrap:pretty; }

/* ================= NAV ================= */
.site-nav{
  position:sticky; top:0; z-index:100;
  background:rgba(17,19,30,0.96); backdrop-filter:blur(6px);
  border-bottom:1px solid #262838;
}
.nav-inner{
  max-width:1180px; margin:0 auto; padding:12px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.nav-brand{ display:flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; touch-action:manipulation; }
.nav-brand img{ width:28px; height:auto; }
.nav-brand span{
  font-family:'Poppins',sans-serif; font-weight:700; font-size:14px; color:#F7F1E6; letter-spacing:0.3px;
}
.nav-links{ display:flex; align-items:center; gap:20px; list-style:none; margin:0; padding:0; flex-wrap:wrap; justify-content:flex-end; }
.nav-links a{
  font-family:'Poppins',sans-serif; font-weight:600; font-size:12px; letter-spacing:0.4px;
  color:#c9c2b0; text-decoration:none; text-transform:uppercase; transition:color .2s ease;
  white-space:nowrap;
}
.nav-links a:hover{ color:var(--orange); }
.nav-links a[aria-current="page"]{ color:var(--orange); }
.nav-links .nav-cta{
  background:var(--orange); color:#fff !important; padding:9px 16px; border-radius:3px;
}
.nav-links .nav-cta:hover{ background:#a8551f; color:#fff !important; }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; touch-action:manipulation; }
.nav-toggle span{ display:block; width:22px; height:2px; background:#F7F1E6; margin:4px 0; transition:transform .25s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

@media (max-width:900px){
  .nav-links{
    position:absolute; top:100%; left:0; right:0; background:var(--navy);
    flex-direction:column; align-items:stretch; gap:0; max-height:0; overflow:hidden; transition:max-height .3s ease;
    border-bottom:1px solid #262838;
  }
  .nav-links.open{ max-height:420px; overflow-y:auto; }
  .nav-links a{ padding:14px 24px; display:block; border-top:1px solid #262838; }
  .nav-links .nav-cta{ margin:14px 24px; text-align:center; border-radius:3px; }
  .nav-toggle{ display:block; }
}

/* ================= HERO (home) ================= */
.hero{
  background:var(--navy); color:#EFE7D8; padding:28px 20px 56px 20px;
  display:flex; flex-direction:column; align-items:center;
}
.hero-topline{
  width:100%; max-width:1040px; display:flex; justify-content:space-between;
  font-family:'Poppins',sans-serif; font-size:10px; letter-spacing:2px; color:#9a9280; text-transform:uppercase;
  margin-bottom:48px;
}
.hero-center{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px; max-width:640px; }
.hero-logo{ margin-bottom:6px; }
.cover-eyebrow{ font-family:'Poppins',sans-serif; font-size:11px; letter-spacing:3px; color:var(--orange); text-transform:uppercase; }
.cover-name{ font-family:'Poppins',sans-serif; font-weight:800; font-size:clamp(34px,7vw,56px); line-height:1.05; color:#F7F1E6; margin:0; }
.cover-roles{ font-family:'Poppins',sans-serif; font-size:11px; letter-spacing:1.6px; color:#c9c2b0; text-transform:uppercase; }
.cover-rule{ width:56px; height:2px; background:var(--orange); margin:6px 0; }
.cover-subtitle{ font-family:'Lora',serif; font-style:italic; font-size:clamp(15px,2.4vw,19px); color:#e7e0d0; line-height:1.5; }
.hero-ctas{ display:flex; gap:14px; margin-top:18px; flex-wrap:wrap; justify-content:center; }

/* ================= PAGE HEADER (internal pages) ================= */
.page-header{
  background:var(--navy); color:#EFE7D8; padding:52px 20px 44px;
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px;
}
.breadcrumbs{
  font-family:'Poppins',sans-serif; font-size:10.5px; letter-spacing:1.2px; text-transform:uppercase;
  color:#9a9280; margin-bottom:8px;
}
.breadcrumbs a{ color:#c9c2b0; text-decoration:none; }
.breadcrumbs a:hover{ color:var(--orange); }
.page-header .cover-eyebrow{ }
.page-header h1{
  font-family:'Poppins',sans-serif; font-weight:800; font-size:clamp(28px,5.5vw,44px); line-height:1.1; color:#F7F1E6; margin:2px 0 0 0;
}
.page-header .page-lede{
  font-family:'Lora',serif; font-style:italic; font-size:clamp(14.5px,2vw,17px); color:#e7e0d0; line-height:1.55; max-width:620px; margin-top:4px;
}

.btn{
  font-family:'Poppins',sans-serif; font-weight:700; font-size:12.5px; letter-spacing:0.5px;
  text-transform:uppercase; padding:13px 22px; border-radius:3px; text-decoration:none; transition:all .2s ease;
  display:inline-block; cursor:pointer; touch-action:manipulation; border:1.5px solid transparent;
}
.btn-primary{ background:var(--orange); color:#fff; }
.btn-primary:hover{ background:#a8551f; }
.btn-ghost{ background:transparent; color:#EFE7D8; border:1.5px solid #444459; }
.btn-ghost:hover{ border-color:var(--orange); color:var(--orange); }
.btn-ghost-light{ background:transparent; color:var(--navy-text); border:1.5px solid var(--muted-light); }
.btn-ghost-light:hover{ border-color:var(--orange); color:var(--orange); }

/* ================= SECTIONS / TYPE ================= */
section{ padding:56px 0; }
.intro-section{ background:var(--cream); }
.section-eyebrow{ font-family:'Poppins',sans-serif; font-weight:600; font-size:11px; letter-spacing:2px; color:var(--orange); text-transform:uppercase; margin-bottom:8px; }
.page-title{ font-family:'Poppins',sans-serif; font-weight:800; font-size:clamp(24px,4vw,32px); color:var(--navy-text); margin:0 0 8px 0; line-height:1.2; }
.sub-heading{ font-family:'Poppins',sans-serif; font-weight:700; font-size:17px; color:var(--navy-text); margin:28px 0 10px 0; }
.mod-subtitle{ font-family:'Lora',serif; font-style:italic; color:#6b6355; font-size:14px; margin-top:4px; }

.body-text p, .njeri-box p, .callout-box p{ font-size:15.5px; line-height:1.7; margin:0 0 14px 0; }
.body-text{ margin:18px 0; }
.body-text.left{ text-align:left; }
p.dropcap .dc{ float:left; font-family:'Poppins',sans-serif; font-weight:800; font-size:46px; color:var(--orange); line-height:0.8; margin:4px 8px 0 0; }
.lede{ font-family:'Lora',serif; font-style:italic; color:#6b6355; text-align:center; max-width:560px; margin:-6px auto 0; }

/* ================= HOW-TO / SIGNOFF ================= */
.how-to{ background:var(--cream-light); border:1px solid #ded2b8; padding:20px 22px; margin:20px 0; }
.plain-list{ margin:10px 0 0 0; padding-left:18px; }
.plain-list li{ font-size:15px; line-height:1.6; margin-bottom:10px; }
.signoff{ margin-top:24px; }
.signoff p{ margin:0; font-style:italic; font-size:16px; }
.signoff-name{ font-family:'Poppins',sans-serif !important; font-style:normal !important; font-weight:700; font-size:17px !important; margin-top:6px !important; color:var(--navy-text); }

/* ================= SIX SHIFTS GRID ================= */
.toc-section{ background:var(--cream); }
.shift-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin-top:32px; }
.shift-card{
  background:var(--cream-light); border:1px solid #ded2b8; padding:22px 20px; text-decoration:none;
  color:var(--navy-text); transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease; display:block;
}
.shift-card:hover{ border-color:var(--orange); transform:translateY(-2px); box-shadow:0 8px 20px rgba(193,101,47,0.12); }
.shift-num{ font-family:'Poppins',sans-serif; font-weight:800; font-size:22px; color:var(--orange); margin-bottom:8px; }
.shift-title{ font-family:'Poppins',sans-serif; font-weight:700; font-size:15px; margin-bottom:6px; line-height:1.35; }
.shift-sub{ font-family:'Lora',serif; font-style:italic; font-size:13px; color:#7a7160; }
.bonus-card{ margin-top:16px; background:var(--navy); color:#EFE7D8; border-color:var(--navy); }
.bonus-card .shift-title{ color:#fff; }
.bonus-card .shift-sub{ color:#c9c2b0; }
.bonus-card .shift-num{ color:var(--orange); }

@media (max-width:820px){ .shift-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .shift-grid{ grid-template-columns:1fr; } }

/* ================= MODULE SECTIONS ================= */
.module-section{ background:var(--cream); border-top:1px solid #ddd0b4; }
.module-section.alt{ background:#E7DAC1; }
.mod-label{ font-family:'Poppins',sans-serif; font-weight:600; font-size:11px; letter-spacing:1.8px; color:var(--orange); text-transform:uppercase; margin-bottom:10px; }
.mod-title-row{ display:flex; align-items:flex-start; gap:14px; }
.mod-num{ font-family:'Poppins',sans-serif; font-weight:800; font-size:clamp(36px,6vw,52px); color:var(--orange); line-height:1; }
.mod-title-wrap h2{ font-family:'Poppins',sans-serif; font-weight:800; font-size:clamp(22px,3.4vw,30px); color:var(--navy-text); margin:2px 0 0 0; line-height:1.2; }
.rule{ width:44px; height:2px; background:var(--orange); margin:16px 0 4px 0; }

/* ================= BOXES ================= */
.box-label{ font-family:'Poppins',sans-serif; font-weight:700; font-size:11px; letter-spacing:1.4px; text-transform:uppercase; margin-bottom:8px; display:block; }
.box-label.orange{ color:var(--orange); }
.box-label.green{ color:var(--green); }
.box-label.dark{ color:var(--navy-text); }

.njeri-box{ background:var(--cream-light); border-left:4px solid var(--orange); padding:20px 24px; margin:24px 0; color:var(--navy-text); }
.njeri-box p{ font-style:italic; }
.njeri-box p:last-child{ margin-bottom:0; }

.callout-box{ background:var(--cream-light); padding:18px 22px; margin:16px 0; border:1px solid #ded2b8; color:var(--navy-text); }
.callout-box.small p{ font-size:14px; font-style:italic; margin:0; }
.callout-box p{ margin-bottom:0; color:var(--navy-text); }

.reflect-box{ background:var(--tan); padding:22px 24px; margin:20px 0; border-radius:2px; color:var(--navy-text); }
.reflect-list{ list-style:none; margin:12px 0 0 0; padding:0; }
.reflect-list li{ display:flex; gap:12px; margin-bottom:14px; font-size:15px; line-height:1.55; color:var(--navy-text); }
.reflect-list li:last-child{ margin-bottom:0; }
.num-circle{ flex-shrink:0; width:22px; height:22px; border-radius:50%; background:var(--navy); color:#fff; font-family:'Poppins',sans-serif; font-size:11px; font-weight:700; display:flex; align-items:center; justify-content:center; margin-top:1px; }

.gutcheck-box{ background:var(--navy); color:#EFE7D8; padding:22px 24px; margin:20px 0; border-radius:2px; }
.gc-question{ font-family:'Poppins',sans-serif; font-weight:700; font-size:16px; color:#fff; margin:8px 0 14px 0; line-height:1.4; }
.gc-opts{ margin-bottom:12px; }
.gc-opt{ font-size:14.5px; padding:9px 0; border-bottom:1px solid #33344a; display:flex; align-items:center; gap:10px; }
.gc-opt:last-child{ border-bottom:none; }
.gc-dot{ width:9px; height:9px; border-radius:50%; border:1.5px solid var(--orange); flex-shrink:0; }
.gc-note{ font-style:italic; font-size:13.5px; color:#b9b2a0; margin-top:8px; line-height:1.55; }

.myth-reality{ display:flex; gap:14px; margin:20px 0; }
.mr-box{ flex:1; background:var(--cream-light); padding:18px 20px; border:1px solid #ded2b8; color:var(--navy-text); }
.mr-box p{ font-size:14.5px; margin:0; line-height:1.55; }
@media (max-width:600px){ .myth-reality{ flex-direction:column; } }

.bte-box{ border:1.5px dashed var(--orange); padding:16px 20px; margin:20px 0; font-size:14.5px; }
.bte-text{ font-style:italic; color:#4a453c; }

.quiz-cta{
  display:inline-block; margin-top:8px; font-family:'Poppins',sans-serif; font-weight:700; font-size:13px;
  color:var(--orange); text-decoration:none; letter-spacing:0.3px;
}
.quiz-cta:hover{ text-decoration:underline; }

/* ================= TWO-COL (bonus / closing) ================= */
.two-col{ display:flex; gap:28px; margin:20px 0; }
.signal-col{ flex:1; min-width:0; }
.signal-col p{ font-size:15px; line-height:1.65; }
.check-list{ list-style:none; margin:12px 0 0 0; padding:0; }
.check-list li{ font-size:14.5px; line-height:1.6; margin-bottom:12px; padding-left:16px; position:relative; }
.check-list li:before{ content:"\2014"; position:absolute; left:0; color:var(--orange); }
@media (max-width:700px){ .two-col{ flex-direction:column; gap:24px; } }

.testimonial{ background:var(--cream-light); border-left:4px solid var(--green); padding:18px 22px; margin:16px 0; color:var(--navy-text); }
.testimonial p{ font-style:italic; font-size:15px; margin-bottom:8px; color:var(--navy-text); }
.testimonial-name{ font-family:'Poppins',sans-serif; font-weight:600; font-size:11.5px; letter-spacing:0.8px; text-transform:uppercase; color:var(--muted); }

/* ================= BONUS SECTION BG ================= */
.bonus-section{ background:var(--navy); color:#EFE7D8; }
.bonus-section .page-title, .bonus-section h2, .bonus-section h3{ color:#fff; }
.bonus-section .mod-subtitle{ color:#c9c2b0; }
.bonus-section .body-text p{ color:#d8d1c0; }
.bonus-section .box-label.dark{ color:#EFE7D8; }
.bonus-section .signal-col p{ color:#c9c2b0; }
.bonus-section .check-list li{ color:#c9c2b0; }

/* ================= CLOSING ================= */
.closing-section{ background:var(--cream); }
.closing-line{ margin:24px 0; padding-top:20px; border-top:1px solid #d9cdb2; }
.closing-line p{ font-style:italic; font-size:17px; text-align:center; line-height:1.65; max-width:600px; margin:0 auto; }
.closing-section .two-col{ text-align:left; }

/* ================= QUIZ SECTION ================= */
.quiz-section{ background:var(--cream); padding:64px 0 72px 0; }
.quiz-wrap{ width:100%; max-width:640px; margin:0 auto; padding:0 20px; }
.quiz-eyebrow{ font-family:'Poppins',sans-serif; font-weight:600; font-size:11px; letter-spacing:2px; color:var(--orange); text-transform:uppercase; text-align:center; margin-bottom:6px; }
.quiz-title{ font-family:'Poppins',sans-serif; font-weight:800; font-size:clamp(24px,4vw,30px); text-align:center; margin:0 0 6px 0; color:var(--navy-text); }
.quiz-subtitle{ font-family:'Lora',serif; font-style:italic; color:#6b6355; text-align:center; font-size:14.5px; margin-bottom:28px; }

/* ================= FOOTER ================= */
.site-footer{ background:var(--navy); color:#c9c2b0; padding:48px 20px 28px; }
.footer-inner{
  max-width:1040px; margin:0 auto; display:flex; justify-content:space-between; gap:32px; flex-wrap:wrap;
}
.footer-brand{ max-width:320px; }
.footer-brand .nav-brand{ margin-bottom:10px; }
.footer-brand p{ font-size:13px; line-height:1.6; color:#9a9280; margin:0; }
.footer-consulting{ margin-top:10px !important; }
.footer-consulting a{ color:var(--orange); text-decoration:none; font-weight:600; }
.footer-consulting a:hover{ text-decoration:underline; }
.footer-cols{ display:flex; gap:48px; flex-wrap:wrap; }
.footer-col h3{
  font-family:'Poppins',sans-serif; font-weight:700; font-size:11px; letter-spacing:1.4px; text-transform:uppercase;
  color:#EFE7D8; margin:0 0 12px 0;
}
.footer-col ul{ list-style:none; margin:0; padding:0; }
.footer-col li{ margin-bottom:9px; }
.footer-col a{ font-family:'Poppins',sans-serif; font-size:13px; color:#c9c2b0; text-decoration:none; }
.footer-col a:hover{ color:var(--orange); }
.footer-bottom{
  max-width:1040px; margin:36px auto 0; padding-top:20px; border-top:1px solid #262838;
  font-family:'Poppins',sans-serif; font-size:10.5px; letter-spacing:1px; text-transform:uppercase; color:#7a7364;
  text-align:center;
}
.footer-bottom a{ color:var(--orange); text-decoration:none; }
@media (max-width:700px){ .footer-inner{ flex-direction:column; } }

/* ---- Quiz card component (scoped) ---- */
.quiz-wrap .progress{ display:flex; justify-content:center; gap:8px; margin-bottom:28px; flex-wrap:wrap; }
.quiz-wrap .dot{ width:8px; height:8px; border-radius:50%; background:#d9cdb2; transition:background-color .3s ease, width .3s ease; }
.quiz-wrap .dot.active{ background:var(--orange); width:22px; border-radius:4px; }
.quiz-wrap .dot.done{ background:var(--green); }

.quiz-wrap .card{
  background:var(--navy); color:#EFE7D8; border-radius:4px;
  padding:32px 28px; position:relative; overflow:hidden;
  box-shadow:0 20px 50px rgba(17,19,30,0.25);
}
.quiz-wrap .mod-label{
  font-family:'Poppins',sans-serif; font-weight:600; font-size:10.5px; letter-spacing:1.6px;
  color:var(--orange); text-transform:uppercase; margin-bottom:14px;
}
.quiz-wrap .question{
  font-family:'Poppins',sans-serif; font-weight:700; font-size:19px; line-height:1.4;
  margin-bottom:22px; color:#fff;
}
.quiz-wrap .options{ display:flex; flex-direction:column; gap:10px; margin-bottom:6px; }
.quiz-wrap .opt{
  text-align:left; background:transparent; border:1.5px solid #33344a; color:#EFE7D8;
  font-family:'Lora',serif; font-size:14.5px; padding:13px 16px; border-radius:3px;
  cursor:pointer; transition:border-color .2s ease, background-color .2s ease; line-height:1.5; width:100%;
  touch-action:manipulation; min-height:44px;
}
.quiz-wrap .opt:hover:not(:disabled){ border-color:var(--orange); background:rgba(193,101,47,0.08); }
.quiz-wrap .opt:disabled{ cursor:default; }
.quiz-wrap .opt.correct{ border-color:var(--green); background:rgba(92,134,100,0.18); }
.quiz-wrap .opt.incorrect{ border-color:var(--orange); background:rgba(193,101,47,0.14); opacity:0.85; }
.quiz-wrap .opt-tag{
  display:block; font-family:'Poppins',sans-serif; font-weight:700; font-size:10px;
  letter-spacing:1px; text-transform:uppercase; margin-top:6px;
}
.quiz-wrap .opt-tag.correct-tag{ color:var(--green); }
.quiz-wrap .opt-tag.incorrect-tag{ color:var(--orange); }

.quiz-wrap .dial-wrap{ margin:26px 0 20px 0; }
.quiz-wrap .dial-labels{ display:flex; justify-content:space-between; font-family:'Poppins',sans-serif;
  font-size:9.5px; letter-spacing:1.2px; text-transform:uppercase; color:#8a8577; margin-bottom:8px; }
.quiz-wrap .dial-track{ position:relative; height:6px; background:#262838; border-radius:3px; overflow:visible; }
.quiz-wrap .dial-fill{ position:absolute; top:0; left:50%; height:6px; width:0; background:var(--orange); border-radius:3px; transition:left .6s cubic-bezier(.34,1.56,.64,1), width .6s cubic-bezier(.34,1.56,.64,1); }
.quiz-wrap .dial-fill.right{ background:var(--green); }
.quiz-wrap .dial-marker{
  position:absolute; top:-7px; left:50%; width:20px; height:20px; border-radius:50%;
  background:#fff; border:3px solid var(--navy); transform:translateX(-50%);
  transition:left .6s cubic-bezier(.34,1.56,.64,1);
  box-shadow:0 2px 8px rgba(0,0,0,0.3);
}

.quiz-wrap .feedback{
  background:var(--cream-light); color:var(--navy-text); border-radius:3px; padding:16px 18px;
  margin-top:18px; display:none; opacity:0; transition:opacity .4s ease;
}
.quiz-wrap .feedback.show{ display:block; opacity:1; }
.quiz-wrap .feedback-tag{
  font-family:'Poppins',sans-serif; font-weight:700; font-size:11px; letter-spacing:1.4px;
  text-transform:uppercase; margin-bottom:6px; display:block;
}
.quiz-wrap .feedback-tag.correct{ color:var(--green); }
.quiz-wrap .feedback-tag.incorrect{ color:var(--orange); }
.quiz-wrap .feedback p{ font-size:14px; line-height:1.55; margin:0; font-style:italic; color:#4a453c; }

.quiz-wrap .next-btn{
  display:block; width:100%; margin-top:20px; background:var(--orange); color:#fff; border:none;
  font-family:'Poppins',sans-serif; font-weight:700; font-size:13px; letter-spacing:0.5px;
  padding:13px; border-radius:3px; cursor:pointer; opacity:0; pointer-events:none; transition:opacity .3s ease;
  text-transform:uppercase; touch-action:manipulation; min-height:44px;
}
.quiz-wrap .next-btn.show{ opacity:1; pointer-events:auto; }
.quiz-wrap .next-btn:hover{ background:#a8551f; }

.quiz-wrap .summary{ text-align:center; }
.quiz-wrap .summary .big-num{ font-family:'Poppins',sans-serif; font-weight:800; font-size:52px; color:var(--orange); margin:6px 0; font-variant-numeric:tabular-nums; }
.quiz-wrap .summary .big-num span{ font-size:22px; color:#8a8577; font-weight:600; }
.quiz-wrap .summary p{ font-size:14.5px; line-height:1.6; color:#c9c2b0; max-width:440px; margin:14px auto 0 auto; }
.quiz-wrap .restart-btn{
  margin-top:24px; background:transparent; border:1.5px solid var(--orange); color:var(--orange);
  font-family:'Poppins',sans-serif; font-weight:600; font-size:12px; letter-spacing:1px;
  text-transform:uppercase; padding:11px 20px; border-radius:3px; cursor:pointer; transition:background-color .2s ease, color .2s ease;
  touch-action:manipulation; min-height:44px;
}
.quiz-wrap .restart-btn:hover{ background:var(--orange); color:#fff; }

.quiz-wrap .share-row{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:22px; }
.quiz-wrap .share-btn{
  display:inline-flex; align-items:center; gap:7px; background:transparent; border:1.5px solid #33344a;
  color:#EFE7D8; font-family:'Poppins',sans-serif; font-weight:600; font-size:11.5px; letter-spacing:0.4px;
  text-transform:uppercase; padding:10px 14px; border-radius:3px; cursor:pointer; text-decoration:none;
  transition:border-color .2s ease, background-color .2s ease; touch-action:manipulation; min-height:40px;
}
.quiz-wrap .share-btn:hover{ border-color:var(--orange); background:rgba(193,101,47,0.08); }
.quiz-wrap .share-btn svg{ width:15px; height:15px; flex-shrink:0; }
.quiz-wrap .share-label{ font-family:'Poppins',sans-serif; font-weight:600; font-size:10.5px; letter-spacing:1.4px; text-transform:uppercase; color:#8a8577; text-align:center; margin-top:26px; margin-bottom:0; }

@media (max-width:480px){
  .quiz-wrap .card{ padding:22px 18px; }
  .quiz-wrap .question{ font-size:17px; }
}

/* ================= LOCKED MODULES GRID ================= */
.lock-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin-top:8px; }
.lock-card{ background:var(--cream-light); border:1.5px dashed #c8bb9c; padding:20px 20px 22px; }
.lock-card .lock-num{ font-family:'Poppins',sans-serif; font-weight:800; font-size:20px; color:var(--muted); margin-bottom:6px; }
.lock-card .lock-title{ font-family:'Poppins',sans-serif; font-weight:700; font-size:14.5px; margin-bottom:6px; line-height:1.35; color:var(--navy-text); }
.lock-card .lock-sub{ font-family:'Lora',serif; font-style:italic; font-size:12.5px; color:#7a7160; margin-bottom:14px; }
.lock-card .lock-tag{ display:inline-block; font-family:'Poppins',sans-serif; font-weight:700; font-size:10px; letter-spacing:1px; text-transform:uppercase; color:var(--orange); }
.lock-card.bonus-lock{ background:var(--navy); border-color:var(--navy); }
.lock-card.bonus-lock .lock-title{ color:#fff; }
.lock-card.bonus-lock .lock-sub{ color:#c9c2b0; }
.lock-card.bonus-lock .lock-num{ color:var(--orange); }
@media (max-width:820px){ .lock-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .lock-grid{ grid-template-columns:1fr; } }

/* ================= PRICING ================= */
.price-section{ background:var(--cream); }
.price-card{ max-width:480px; margin:30px auto 0; background:var(--navy); color:#EFE7D8; padding:34px 32px; border-radius:4px; text-align:center; }
.price-card .price-eyebrow{ font-family:'Poppins',sans-serif; font-weight:600; font-size:11px; letter-spacing:2px; color:var(--orange); text-transform:uppercase; margin-bottom:10px; }
.price-card .price-amount{ font-family:'Poppins',sans-serif; font-weight:800; font-size:40px; color:#fff; margin-bottom:4px; font-variant-numeric:tabular-nums; }
.price-card .price-amount span{ font-size:14px; font-weight:600; color:#c9c2b0; }
.price-fx{ font-family:'Poppins',sans-serif; font-size:11.5px; letter-spacing:0.3px; color:#8a8577; margin-bottom:10px; }
.price-card .price-note{ font-family:'Lora',serif; font-style:italic; font-size:13.5px; color:#c9c2b0; margin-bottom:20px; }
.price-list{ list-style:none; margin:0 0 24px 0; padding:0; text-align:left; }
.price-list li{ font-size:14px; line-height:1.6; margin-bottom:10px; padding-left:22px; position:relative; color:#EFE7D8; }
.price-list li:before{ content:"\2713"; position:absolute; left:0; color:var(--orange); font-weight:700; }
.price-card .btn-primary{ width:100%; box-sizing:border-box; }
.price-fine{ text-align:center; font-family:'Lora',serif; font-style:italic; font-size:12.5px; color:var(--muted); margin-top:14px; }

/* ================= SESSIONS ================= */
.sessions-section{ background:var(--cream-light); border-top:1px solid #ddd0b4; border-bottom:1px solid #ddd0b4; }
.session-grid{ display:flex; gap:36px; align-items:flex-start; margin-top:26px; flex-wrap:wrap; }
.session-copy{ flex:1 1 320px; min-width:0; }
.session-price-wrap{ flex:0 1 380px; min-width:300px; }
.session-price-wrap .price-card{ margin-top:0; }
@media (max-width:760px){ .session-grid{ flex-direction:column; } }

/* ================= CTA BANNER ================= */
.cta-banner{ background:var(--navy); color:#EFE7D8; padding:44px 20px; text-align:center; }
.cta-banner .cta-title{ font-family:'Poppins',sans-serif; font-weight:800; font-size:clamp(19px,3vw,24px); color:#fff; margin-bottom:10px; }
.cta-banner .cta-sub{ font-family:'Lora',serif; font-style:italic; font-size:14.5px; color:#c9c2b0; margin-bottom:22px; max-width:540px; margin-left:auto; margin-right:auto; }

/* ================= FAQ ================= */
.faq-section{ background:var(--cream); }
.faq-item{ border-top:1px solid #ddd0b4; padding:20px 0; }
.faq-item:last-child{ border-bottom:1px solid #ddd0b4; }
.faq-q{ font-family:'Poppins',sans-serif; font-weight:700; font-size:15.5px; color:var(--navy-text); margin-bottom:8px; }
.faq-a{ font-size:14.5px; line-height:1.65; color:var(--body-text); margin:0; }

/* ================= CONTACT ================= */
.contact-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:28px; }
.contact-card{ background:var(--cream-light); border:1px solid #ded2b8; padding:26px 24px; }
.contact-card h3{ font-family:'Poppins',sans-serif; font-weight:700; font-size:16px; color:var(--navy-text); margin:0 0 8px 0; }
.contact-card p{ font-size:14.5px; line-height:1.6; margin:0 0 16px 0; color:var(--body-text); }
@media (max-width:700px){ .contact-grid{ grid-template-columns:1fr; } }

/* ================= PROFILE PHOTO ================= */
.profile-portrait-wrap{ float:right; margin:4px 0 24px 28px; text-align:center; }
.profile-portrait{
  width:240px; height:300px; object-fit:cover; border-radius:6px;
  border:3px solid var(--orange); box-shadow:0 14px 30px rgba(17,19,30,0.18); display:block;
}
.profile-caption{ font-family:'Poppins',sans-serif; font-size:11px; letter-spacing:0.6px; color:var(--muted); margin-top:10px; }
@media (max-width:640px){
  .profile-portrait-wrap{ float:none; margin:0 auto 24px; max-width:220px; }
  .profile-portrait{ width:100%; height:auto; aspect-ratio:4/5; }
}

.byline-row{ display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.byline-avatar{ width:56px; height:56px; border-radius:50%; border:2px solid var(--orange); flex-shrink:0; object-fit:cover; }
.byline-name{ font-family:'Poppins',sans-serif; font-weight:700; font-size:14px; color:var(--navy-text); }
.byline-role{ font-family:'Poppins',sans-serif; font-size:11.5px; color:var(--muted); letter-spacing:0.3px; margin-top:2px; }

/* ================= STICKY WHATSAPP CTA ================= */
.whatsapp-float{
  position:fixed; right:18px; bottom:18px; z-index:200;
  display:flex; align-items:center; gap:10px;
  background:#25D366; color:#fff; text-decoration:none;
  padding:13px 16px; border-radius:30px;
  box-shadow:0 8px 22px rgba(17,19,30,0.35);
  font-family:'Poppins',sans-serif; font-weight:700; font-size:13px;
  transition:transform .2s ease, box-shadow .2s ease;
  touch-action:manipulation;
}
.whatsapp-float:hover{ transform:translateY(-2px); box-shadow:0 12px 26px rgba(17,19,30,0.4); }
.whatsapp-float svg{ width:22px; height:22px; flex-shrink:0; }
.whatsapp-float .wa-label{ white-space:nowrap; }
@media (max-width:560px){
  .whatsapp-float{ right:14px; bottom:14px; padding:13px; border-radius:50%; }
  .whatsapp-float .wa-label{ display:none; }
}

/* ================= BLOG ================= */
.blog-section{ background:var(--cream); }
.blog-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:32px; }
.blog-card{
  background:var(--cream-light); border:1px solid #ded2b8; padding:24px 22px; text-decoration:none;
  color:var(--navy-text); transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease; display:block;
}
.blog-card:hover{ border-color:var(--orange); transform:translateY(-2px); box-shadow:0 8px 20px rgba(193,101,47,0.12); }
.blog-tag{ font-family:'Poppins',sans-serif; font-weight:700; font-size:10.5px; letter-spacing:1.4px; text-transform:uppercase; color:var(--orange); margin-bottom:10px; display:block; }
.blog-card-title{ font-family:'Poppins',sans-serif; font-weight:700; font-size:17px; margin-bottom:8px; line-height:1.35; color:var(--navy-text); }
.blog-card-summary{ font-size:14px; line-height:1.6; color:var(--body-text); margin-bottom:12px; }
.blog-card-meta{ font-family:'Poppins',sans-serif; font-size:11px; color:var(--muted); letter-spacing:0.3px; }
@media (max-width:700px){ .blog-grid{ grid-template-columns:1fr; } }

.article-header{ background:var(--navy); color:#EFE7D8; padding:52px 20px 40px; }
.article-header .breadcrumbs{ text-align:center; }
.article-meta-row{ display:flex; justify-content:center; align-items:center; gap:14px; flex-wrap:wrap; margin-top:14px; }
.article-tag{ font-family:'Poppins',sans-serif; font-weight:700; font-size:10.5px; letter-spacing:1.4px; text-transform:uppercase; color:var(--orange); }
.article-date{ font-family:'Poppins',sans-serif; font-size:11.5px; color:#9a9280; }
.article-author-row{ display:flex; align-items:center; justify-content:center; gap:10px; margin-top:18px; }
.article-author-row img{ width:36px; height:36px; border-radius:50%; border:2px solid var(--orange); }
.article-author-name{ font-family:'Poppins',sans-serif; font-weight:600; font-size:13px; color:#EFE7D8; }

.article-body{ max-width:720px; margin:0 auto; padding:0 24px; }
.article-body p{ font-size:16px; line-height:1.75; margin:0 0 18px 0; color:var(--body-text); }
.article-body h2{ font-family:'Poppins',sans-serif; font-weight:700; font-size:22px; color:var(--navy-text); margin:36px 0 14px 0; }
.article-body h3{ font-family:'Poppins',sans-serif; font-weight:700; font-size:18px; color:var(--navy-text); margin:28px 0 12px 0; }
.article-body ul, .article-body ol{ margin:0 0 18px 0; padding-left:22px; }
.article-body li{ font-size:16px; line-height:1.7; margin-bottom:10px; color:var(--body-text); }
.article-body strong{ color:var(--navy-text); }
.article-body a{ color:var(--orange); font-weight:600; text-decoration:none; }
.article-body a:hover{ text-decoration:underline; }
.article-cta{
  background:var(--cream-light); border:1px solid #ded2b8; border-left:4px solid var(--orange);
  padding:22px 24px; margin:32px 0;
}
.article-cta p{ margin:0 0 12px 0 !important; }
.article-cta p:last-child{ margin-bottom:0 !important; }
.article-lede{ font-family:'Lora',serif; font-style:italic; font-size:18px !important; line-height:1.6 !important; color:#4a453c !important; }

/* ================= 404 ================= */
.error-section{ background:var(--cream); text-align:center; padding:96px 20px; }
.error-code{ font-family:'Poppins',sans-serif; font-weight:800; font-size:clamp(48px,10vw,96px); color:var(--orange); margin:0; line-height:1; }
