/* ==========================================================================
   Mikavu — public site styles
   Mobile-first. No build step. Edit freely.
   ========================================================================== */

/* ----- Design tokens ----- */
:root {
  --c-primary:      #2349C6;   /* royal blue — buttons, links, headings accents */
  --c-primary-dark: #172F86;   /* hover states, footer background */
  --c-primary-tint: #EAF0FF;   /* alternating section background */
  --c-red:          #E5484D;   /* accent — eyebrows, highlights */
  --c-red-dark:     #C6373C;
  --c-gold:         #FFB912;   /* badges & decorative only, never text on white */
  --c-ink:          #1B2437;   /* body text */
  --c-gray:         #5A6472;   /* secondary text */
  --c-line:         #DDE4F2;   /* borders */
  --c-bg:           #FFFFFF;
  --c-wa:           #25D366;   /* WhatsApp button */
  --c-wa-dark:      #1DA851;

  --font-head: "Baloo 2", "Segoe UI", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 6px 24px rgba(23, 47, 134, 0.10);
  --shadow-lift: 0 12px 32px rgba(23, 47, 134, 0.16);
  --container: 1120px;
  --header-h: 72px;
}

/* ----- Base ----- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--c-ink);
}

h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 700; }

p { margin: 0 0 1em; }

a { color: var(--c-primary); }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Anchored sections stop below the sticky header */
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-primary-dark);
  color: #fff;
  padding: 10px 18px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- Header / nav ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: 0 2px 12px rgba(23, 47, 134, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
}
.nav-logo img { width: 48px; height: 48px; }
.nav-logo span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--c-primary-dark);
  letter-spacing: 0.04em;
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--c-ink);
  font-weight: 600;
  border-radius: 8px;
}
.nav-links a:hover { color: var(--c-primary); background: var(--c-primary-tint); }

.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--c-primary-dark); }

/* Mobile menu panel */
.nav-links.open {
  display: block;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  box-shadow: var(--shadow);
  padding: 8px 20px 16px;
}
.nav-links.open a { padding: 14px 12px; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.15s;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(35, 73, 198, 0.35);
}
.btn--primary:hover { background: var(--c-primary-dark); }

.btn--outline {
  background: #fff;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary-tint); }

.btn--wa {
  background: var(--c-wa);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.btn--wa:hover { background: var(--c-wa-dark); }
.btn--wa svg { width: 20px; height: 20px; fill: currentColor; }

.btn--lg { min-height: 56px; padding: 14px 34px; font-size: 1.06rem; }

/* ----- Badges & chips ----- */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge--gold { background: var(--c-gold); color: #4A3200; }
.badge--blue { background: var(--c-primary-tint); color: var(--c-primary-dark); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  box-shadow: 0 2px 8px rgba(23, 47, 134, 0.06);
}
.chips li svg { width: 16px; height: 16px; fill: var(--c-wa-dark); flex-shrink: 0; }

/* ----- Sections ----- */
.section { padding: 72px 0; }
.section--tint { background: var(--c-primary-tint); }
.section--dark { background: var(--c-primary-dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-header {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-header .eyebrow {
  display: block;
  color: var(--c-red);
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.section-header .lede {
  color: var(--c-gray);
  font-size: 1.08rem;
  margin: 0;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(234, 240, 255, 0.82) 100%),
    url("../images/hero-bg.jpg") center 30% / cover no-repeat;
  padding: 64px 0 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--c-red);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--c-primary); }
.hero h1 .accent-red { color: var(--c-red); }
.hero .hero-sub {
  font-size: 1.15rem;
  color: var(--c-gray);
  max-width: 34em;
}
.hero .hero-sub strong { color: var(--c-ink); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.hero-risk {
  margin: 14px 0 0;
  color: var(--c-gray);
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-art { display: none; text-align: center; }
.hero-art img {
  width: min(380px, 80%);
  margin: 0 auto;
  filter: drop-shadow(0 16px 32px rgba(23, 47, 134, 0.18));
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.25fr 0.75fr; }
  .hero-art { display: block; }
}

/* ----- Stat tiles ----- */
.stats-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.stat-tile {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-tile .stat-number {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.12;
  display: block;
  margin-bottom: 10px;
}
.stat-tile p { margin: 0; color: var(--c-gray); font-size: 0.95rem; }
.stat-tile .stat-src { font-size: 0.8rem; color: var(--c-gray); opacity: 0.85; display: block; margin-top: 8px; }

.punchline {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--c-primary-dark);
  max-width: 30em;
  margin: 44px auto 0;
}
.punchline .accent-red { color: var(--c-red); }

@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.inline-cta {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 20px 22px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-primary-tint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.inline-cta p { margin: 0; color: var(--c-primary-dark); }
@media (max-width: 639px) {
  .inline-cta { align-items: stretch; flex-direction: column; text-align: center; }
}

/* ----- Generic cards ----- */
.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.cards-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--c-primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.6rem;
  line-height: 1;
}
.card p { color: var(--c-gray); margin: 0; }

/* ----- Curriculum grid ----- */
.modules-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .modules-grid { grid-template-columns: repeat(3, 1fr); } }

.module-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
}
.module-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.module-card .module-emoji {
  font-size: 1.7rem;
  line-height: 1;
  background: var(--c-primary-tint);
  border-radius: 12px;
  padding: 12px;
  flex-shrink: 0;
}
.module-card h3 { font-size: 1.08rem; margin-bottom: 4px; }
.module-card .module-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 2px;
}
.module-card p { margin: 0; color: var(--c-gray); font-size: 0.92rem; }

/* ----- Class anatomy timeline ----- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  counter-reset: step;
}
.timeline li {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 20px 66px;
}
.timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline h3 { font-size: 1.05rem; margin-bottom: 4px; }
.timeline .t-min {
  float: right;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--c-primary-dark);
  background: var(--c-primary-tint);
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 10px;
}
.timeline p { margin: 0; color: var(--c-gray); font-size: 0.93rem; }

@media (min-width: 960px) {
  .timeline { grid-template-columns: repeat(5, 1fr); }
  .timeline li { padding: 64px 18px 20px 18px; }
  .timeline li::before { left: 18px; top: 18px; }
  .timeline .t-min { float: none; display: inline-block; margin: 0 0 8px; }
}

/* ----- Steps (how it works) ----- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  counter-reset: hiw;
}
.steps li {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  text-align: center;
}
.steps li::before {
  counter-increment: hiw;
  content: counter(hiw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.steps h3 { margin-bottom: 6px; }
.steps p { color: var(--c-gray); margin: 0; }

@media (min-width: 960px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ----- Pricing ----- */
.pricing-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--c-primary);
  border-radius: 24px;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  text-align: center;
}
.pricing-card .price-head {
  background: var(--c-primary);
  color: #fff;
  padding: 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}
.pricing-card .price-body { padding: 30px 28px 34px; }
.price-amount {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--c-primary-dark);
  line-height: 1;
}
.price-amount .per { font-size: 1.05rem; font-weight: 700; color: var(--c-gray); }
.price-equivalent {
  display: inline-block;
  margin: 12px 0 0;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--c-primary-tint);
  color: var(--c-primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
}
.price-note { color: var(--c-gray); font-size: 0.95rem; margin-top: 6px; }
.price-reassurance {
  margin: 14px 0 0;
  color: var(--c-gray);
  font-size: 0.88rem;
  font-weight: 700;
}
.price-list {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  text-align: left;
}
.price-list li {
  padding: 9px 0 9px 32px;
  position: relative;
  border-bottom: 1px dashed var(--c-line);
  font-size: 0.98rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-wa) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.4-1.4z"/></svg>') center / 13px no-repeat;
}

/* ----- Founder note ----- */
.founder-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 36px 28px;
}
.founder-wrap .founder-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.founder-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  overflow: hidden;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-name { font-weight: 800; font-family: var(--font-head); font-size: 1.1rem; }
.founder-role { color: var(--c-gray); font-size: 0.9rem; }
.founder-wrap blockquote {
  margin: 0;
  color: var(--c-ink);
  font-size: 1.02rem;
}
.founder-sign {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--c-primary);
  margin-top: 16px;
}

.testimonial {
  max-width: 640px;
  margin: 36px auto 0;
  text-align: center;
}
.testimonial blockquote {
  margin: 0;
  font-size: 1.15rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--c-primary-dark);
}
.testimonial blockquote::before { content: "\201C"; color: var(--c-gold); font-size: 2.2rem; line-height: 0; vertical-align: -0.35em; margin-right: 4px; }
.testimonial cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 700;
  color: var(--c-gray);
}
.testimonial .stars { color: var(--c-gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ----- FAQ ----- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 48px 18px 20px;
  font-weight: 700;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-primary);
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details[open] summary { border-bottom: 1px solid var(--c-line); }
.faq-list .faq-body { padding: 16px 20px; color: var(--c-gray); }
.faq-list .faq-body p:last-child { margin-bottom: 0; }

/* ----- Demo form ----- */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 24px;
  box-shadow: var(--shadow-lift);
  padding: 34px 26px;
}
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.field label .req { color: var(--c-red); }
.field label .optional { color: var(--c-gray); font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-ink);
  background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(35, 73, 198, 0.18);
}
.form-alt {
  text-align: center;
  margin-top: 20px;
  color: var(--c-gray);
  font-size: 0.95rem;
}
.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--c-gray);
  font-weight: 600;
  line-height: 1.45;
}
.consent-field input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin-top: 2px;
  flex: 0 0 20px;
}
.consent-field a { color: var(--c-primary); }
/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ----- Footer ----- */
.site-footer {
  background: var(--c-primary-dark);
  color: #C9D4F5;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 36px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-brand img { width: 64px; background: #fff; border-radius: 14px; padding: 6px; margin-bottom: 12px; }
.footer-brand .f-name { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #fff; }
.footer-brand .f-tag { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-gold); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #C9D4F5; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 22px;
  font-size: 0.85rem;
  text-align: center;
  color: #93A5DD;
}
.footer-bottom a { color: inherit; }

/* ----- Legal pages ----- */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.legal-page h1 { margin-bottom: 10px; }
.legal-page h2 { margin-top: 34px; margin-bottom: 10px; font-size: 1.35rem; }
.legal-page p, .legal-page li { color: var(--c-gray); }
.legal-page ul { padding-left: 22px; }
.legal-meta { color: var(--c-gray); font-size: 0.92rem; margin-bottom: 28px; }

/* ----- Monthly enrolment ----- */
.price-enrol { margin: 22px 0 0; font-size: 0.95rem; color: var(--c-gray); }
.price-enrol a { font-weight: 800; }
.enrol-page { max-width: 760px; margin: 0 auto; }
.enrol-card { background: var(--c-primary-tint); border: 1px solid var(--c-line); border-radius: var(--radius); padding: clamp(22px, 4vw, 36px); margin: 28px 0; }
.enrol-card ul { padding-left: 22px; }
.enrol-price { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--c-primary-dark); margin-bottom: 0; }
.enrol-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 22px 0 12px; }
.enrol-fine { font-size: 0.92rem; color: var(--c-gray); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ----- Floating WhatsApp button ----- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { background: var(--c-wa-dark); }

/* ----- Simple page (thank-you / 404) ----- */
.simple-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.simple-page .inner { max-width: 560px; }
.simple-page img { width: 140px; margin: 0 auto 24px; }
.simple-page .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
