/* ==========================================================================
   HighScore Exam Software — Marketing Site Stylesheet
   ==========================================================================
   This file controls colours, fonts and spacing for the WHOLE website.

   TO CHANGE YOUR BRAND COLOURS: edit the values inside :root{ ... } below.
   Every page (Home, Products, Subscription, Contact) uses these same
   colours, so changing them here updates the entire site at once.
   ========================================================================== */

:root{
  /* ---- Brand colours (same family as the exam app) ---- */
  --cover:        #6E1423;   /* primary brand colour (maroon) */
  --cover-dark:   #4A0E18;
  --cover-light:  #8A2035;
  --cover-shadow: rgba(0,0,0,0.35);

  --paper:        #ECE4CE;   /* cream card / page background */
  --paper-edge:   #DDD3B4;
  --paper-soft:   #F6F1E3;

  --ink:          #1D2E4A;   /* main text colour */
  --ink-soft:     #5A6A85;   /* secondary text colour */

  --gold:         #C79A3D;   /* accent colour */
  --gold-dark:    #9C7727;
  --gold-light:   #E8CE8E;

  --correct:      #2F6B44;   /* success / highlight green */
  --correct-bg:   #DCEBDD;

  /* ---- Fonts ---- */
  --display: 'Zilla Slab', Georgia, serif;
  --body-font: 'IBM Plex Sans', -apple-system, Segoe UI, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
  --stamp-font: 'Permanent Marker', cursive;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--paper-soft);
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color: inherit; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1,h2,h3,h4{ font-family: var(--display); font-weight:700; margin:0 0 .5em; color: var(--ink); }
p{ margin:0 0 1em; }

.eyebrow{
  font-family: var(--mono); font-size:11px; letter-spacing:.28em; text-transform:uppercase;
  color: var(--gold-dark); font-weight:600; display:block; margin-bottom:10px;
}

/* ---------------------------- Buttons ---------------------------- */
.btn{
  display:inline-flex; align-items:center; gap:8px; justify-content:center;
  font-family: var(--mono); letter-spacing:.06em; text-transform:uppercase; font-size:13px; font-weight:600;
  border:none; border-radius:6px; padding:14px 26px; cursor:pointer; text-decoration:none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(180deg, var(--cover-light), var(--cover));
  color:#F3E9D2; box-shadow: 0 4px 0 var(--cover-dark);
}
.btn-primary:hover{ box-shadow:0 5px 0 var(--cover-dark); transform:translateY(-2px); }
.btn-gold{
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--cover-dark); box-shadow: 0 4px 0 var(--gold-dark);
}
.btn-gold:hover{ box-shadow:0 5px 0 var(--gold-dark); transform:translateY(-2px); }
.btn-ghost{
  background:transparent; color:#F3E9D2; border:1.5px solid rgba(243,233,210,.5);
}
.btn-ghost:hover{ border-color:#F3E9D2; }
.btn-ghost-dark{
  background:transparent; color:var(--ink); border:1.5px solid rgba(29,46,74,.3);
}
.btn-ghost-dark:hover{ border-color:var(--ink); }

/* ---------------------------- Top navigation ---------------------------- */
.site-nav{
  background: var(--cover);
  position: sticky; top:0; z-index:50;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.site-nav .nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px; max-width: var(--container); margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-mark{
  width:34px; height:34px; border-radius:8px; background: var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--display); font-weight:700; color: var(--cover-dark); font-size:18px;
  flex-shrink:0;
}
.brand-text{ font-family: var(--display); font-weight:700; font-size:19px; color:#F3E9D2; letter-spacing:.01em; }
.brand-text .v{
  font-family: var(--mono); font-size:9px; letter-spacing:.1em; color:var(--cover-dark);
  background: var(--gold); padding:2px 5px; border-radius:3px; margin-left:6px; vertical-align:middle;
}

.nav-links{ display:flex; align-items:center; gap:4px; list-style:none; margin:0; padding:0; }
.nav-links a{
  font-family: var(--mono); font-size:12.5px; letter-spacing:.05em; text-transform:uppercase;
  text-decoration:none; color:rgba(243,233,210,.85); padding:10px 14px; border-radius:20px;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover{ background: rgba(243,233,210,.1); color:#F3E9D2; }
.nav-links a.active{ background: rgba(243,233,210,.14); color:#F3E9D2; }
.nav-links a.nav-cta{
  background: var(--gold); color: var(--cover-dark); font-weight:700;
}
.nav-links a.nav-cta:hover{ background: var(--gold-light); }

.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ display:block; width:22px; height:2px; background:#F3E9D2; margin:5px 0; border-radius:2px; }

@media (max-width: 860px){
  .nav-toggle{ display:block; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0; background: var(--cover-dark);
    flex-direction:column; align-items:stretch; padding:10px 20px 18px; gap:2px;
    display:none; box-shadow: 0 10px 20px rgba(0,0,0,.25);
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:12px 10px; border-radius:8px; }
}

/* ---------------------------- Hero (booklet on maroon) ---------------------------- */
.hero{
  background: radial-gradient(ellipse at top, var(--cover) 0%, var(--cover-dark) 75%);
  padding: 72px 24px 96px;
  position: relative; overflow:hidden;
}
.hero-inner{
  max-width: var(--container); margin:0 auto;
  display:grid; grid-template-columns: 1.1fr .9fr; gap:56px; align-items:center;
}
.hero h1{ color:#F8F1DE; font-size: 2.6rem; line-height:1.15; margin-bottom:.4em; }
.hero .lede{ color: rgba(248,241,222,.85); font-size:1.08rem; max-width:46ch; }
.hero .eyebrow{ color: var(--gold-light); }
.hero-ctas{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }

/* ---- Admit-ticket signature graphic ---- */
.ticket{
  background: var(--paper);
  border-radius: 10px;
  box-shadow: 0 30px 60px var(--cover-shadow), 0 2px 0 rgba(255,255,255,.5) inset;
  padding: 30px 28px 26px;
  position: relative;
  transform: rotate(1.5deg);
}
.ticket:before{
  content:"";
  position:absolute; inset:10px;
  border: 1.5px dashed rgba(29,46,74,.28);
  border-radius:6px;
  pointer-events:none;
}
.ticket-eyebrow{
  font-family: var(--mono); font-size:10.5px; letter-spacing:.3em; text-transform:uppercase;
  color: var(--ink-soft); text-align:center; margin-bottom:6px;
}
.ticket h3{ text-align:center; font-size:1.3rem; margin-bottom:2px; }
.ticket .sub{ text-align:center; font-family:var(--mono); font-size:11px; color:var(--ink-soft); margin-bottom:18px; }
.ticket-row{
  display:flex; justify-content:space-between; padding:9px 0; border-bottom:1px dashed rgba(29,46,74,.2);
  font-family: var(--mono); font-size:12px;
}
.ticket-row:last-of-type{ border-bottom:none; }
.ticket-row .k{ color: var(--ink-soft); text-transform:uppercase; letter-spacing:.05em; }
.ticket-row .v{ color: var(--ink); font-weight:600; }
.stamp{
  position:absolute; top:-14px; right:-10px;
  font-family: var(--stamp-font); font-size:1rem; color: var(--correct);
  background: var(--paper); border:2.5px solid var(--correct); border-radius:50%;
  width:82px; height:82px; display:flex; align-items:center; justify-content:center;
  text-align:center; line-height:1.1; transform: rotate(10deg); padding:6px;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}

/* ---------------------------- Sections ---------------------------- */
section{ padding: 76px 24px; }
.section-head{ text-align:center; max-width:640px; margin:0 auto 48px; }
.section-head h2{ font-size:2rem; }
.section-head p{ color: var(--ink-soft); font-size:1.02rem; }

.bg-paper{ background: var(--paper); }
.bg-plain{ background: var(--paper-soft); }
.bg-cover{ background: linear-gradient(180deg, var(--cover-dark), var(--cover)); color:#F3E9D2; }
.bg-cover h2, .bg-cover h3{ color:#F8F1DE; }
.bg-cover p{ color: rgba(243,233,210,.82); }

/* ---- Steps ---- */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap:28px; max-width: var(--container); margin:0 auto; }
.step{ text-align:left; }
.step .num{
  font-family: var(--display); font-weight:700; font-size:2rem; color: var(--gold-dark);
  border-bottom: 2px solid var(--paper-edge); padding-bottom:10px; margin-bottom:14px;
}
.step h4{ font-size:1.05rem; margin-bottom:6px; }
.step p{ color: var(--ink-soft); font-size:.95rem; margin:0; }

/* ---- Feature cards ---- */
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; max-width: var(--container); margin:0 auto; }
.grid-2{ display:grid; grid-template-columns: repeat(2,1fr); gap:24px; max-width: var(--container); margin:0 auto; }
.card{
  background: var(--paper); border:1px solid var(--paper-edge); border-radius:12px;
  padding:28px 26px; box-shadow: 0 10px 24px rgba(78,40,20,.06);
}
.card .icon{
  width:46px; height:46px; border-radius:10px; background: var(--cover);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.card .icon svg{ width:22px; height:22px; stroke: var(--gold-light); }
.card h3{ font-size:1.12rem; margin-bottom:8px; }
.card p{ color: var(--ink-soft); font-size:.95rem; margin:0; }

/* ---- Chips (boards/exams supported) ---- */
.chip-row{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; max-width:760px; margin:0 auto; }
.chip{
  font-family: var(--mono); font-size:12.5px; letter-spacing:.03em;
  border:1.5px solid var(--paper-edge); background: var(--paper); color: var(--ink);
  padding:9px 18px; border-radius:22px;
}

/* ---- Pricing ---- */
.pricing-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; max-width: var(--container); margin:0 auto; align-items:stretch; }
.plan{
  background: var(--paper); border:1.5px solid var(--paper-edge); border-radius:14px;
  padding:32px 26px; display:flex; flex-direction:column; position:relative;
}
.plan.featured{ border-color: var(--gold); box-shadow: 0 16px 40px rgba(110,20,35,.14); transform: translateY(-8px); }
.plan .badge{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%) rotate(-3deg);
  background: var(--gold); color: var(--cover-dark); font-family:var(--stamp-font);
  font-size:.85rem; padding:6px 16px; border-radius:20px; box-shadow:0 4px 10px rgba(0,0,0,.2);
}
.plan h3{ font-size:1.2rem; margin-bottom:4px; }
.plan .price{ font-family: var(--display); font-weight:700; font-size:2.1rem; color: var(--cover); margin:10px 0 2px; }
.plan .price small{ font-family: var(--mono); font-size:.8rem; font-weight:500; color: var(--ink-soft); }
.plan .desc{ color: var(--ink-soft); font-size:.92rem; margin-bottom:20px; }
.plan ul{ list-style:none; margin:0 0 26px; padding:0; flex:1; }
.plan li{ display:flex; gap:10px; padding:8px 0; border-top:1px dashed rgba(29,46,74,.18); font-size:.92rem; }
.plan li:before{ content:"✓"; color: var(--correct); font-weight:700; flex-shrink:0; }

/* ---- Credit cost table ---- */
.credit-table{ max-width:560px; margin:0 auto; border-collapse:collapse; width:100%; font-family: var(--mono); font-size:14px; }
.credit-table th, .credit-table td{ padding:13px 16px; text-align:left; border-bottom:1px solid var(--paper-edge); }
.credit-table th{ text-transform:uppercase; letter-spacing:.06em; font-size:11px; color: var(--ink-soft); }
.credit-table td.q{ font-weight:600; }
.credit-table td.c{ color: var(--cover); font-weight:700; }
.credit-table tr:last-child td{ border-bottom:none; }

/* ---- Contact cards ---- */
.contact-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; max-width: var(--container); margin:0 auto 56px; }
.contact-card{
  background: var(--paper); border:1px solid var(--paper-edge); border-radius:12px;
  padding:26px; text-align:center;
}
.contact-card .icon{
  width:44px; height:44px; border-radius:50%; background: var(--correct-bg); color: var(--correct);
  display:flex; align-items:center; justify-content:center; margin:0 auto 14px;
}
.contact-card h3{ font-size:1.02rem; margin-bottom:6px; }
.contact-card a, .contact-card p{ color: var(--ink-soft); font-size:.95rem; margin:0; text-decoration:none; }
.contact-card a:hover{ color: var(--cover); }

.contact-form{
  max-width:640px; margin:0 auto; background: var(--paper); border:1px solid var(--paper-edge);
  border-radius:14px; padding:38px 34px;
}
.form-row{ margin-bottom:18px; }
.form-row label{
  display:block; font-family: var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color: var(--ink-soft); margin-bottom:7px;
}
.form-row input, .form-row textarea{
  width:100%; font-family: var(--body-font); font-size:15px; color: var(--ink);
  background:#fff; border:1.5px solid var(--paper-edge); border-radius:7px; padding:11px 13px; outline:none;
}
.form-row input:focus, .form-row textarea:focus{ border-color: var(--gold-dark); }
.form-note{ font-size:12.5px; color: var(--ink-soft); margin-top:14px; text-align:center; }

/* ---- Two-column feature rows (Products page) ---- */
.feature-row{
  display:grid; grid-template-columns: 1fr 1fr; gap:52px; align-items:center;
  max-width: var(--container); margin:0 auto 90px;
}
.feature-row.reverse .feature-copy{ order:2; }
.feature-row.reverse .feature-visual{ order:1; }
.feature-copy .eyebrow{ color: var(--gold-dark); }
.feature-copy h2{ font-size:1.7rem; }
.feature-copy p{ color: var(--ink-soft); }
.feature-copy ul{ list-style:none; padding:0; margin:18px 0 0; }
.feature-copy li{ display:flex; gap:10px; padding:7px 0; font-size:.96rem; }
.feature-copy li:before{ content:"—"; color: var(--gold-dark); font-weight:700; flex-shrink:0; }

.feature-visual{
  background: var(--paper); border:1px solid var(--paper-edge); border-radius:14px;
  padding:22px; box-shadow: 0 16px 34px rgba(78,40,20,.08);
}
.feature-visual img{ border-radius:8px; }
.visual-placeholder{
  aspect-ratio: 4/3; border-radius:8px; border:1.5px dashed var(--paper-edge);
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px;
  color: var(--ink-soft); font-family: var(--mono); font-size:12px; text-align:center; padding:20px;
  background: repeating-linear-gradient(135deg, rgba(29,46,74,.03) 0 10px, transparent 10px 20px);
}

/* ---- CTA banner ---- */
.cta-banner{
  background: linear-gradient(120deg, var(--cover), var(--cover-dark));
  border-radius:18px; padding:52px 40px; text-align:center; max-width: var(--container); margin:0 auto;
}
.cta-banner h2{ color:#F8F1DE; }
.cta-banner p{ color: rgba(243,233,210,.82); max-width:52ch; margin:0 auto 26px; }

/* ---------------------------- Footer ---------------------------- */
.site-footer{ background: var(--cover-dark); color: rgba(243,233,210,.75); padding:50px 24px 26px; }
.footer-inner{ max-width: var(--container); margin:0 auto; display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:40px; }
.footer-inner h4{ color:#F3E9D2; font-size:.95rem; font-family:var(--mono); letter-spacing:.08em; text-transform:uppercase; margin-bottom:14px; }
.footer-inner ul{ list-style:none; margin:0; padding:0; }
.footer-inner li{ margin-bottom:9px; }
.footer-inner a{ text-decoration:none; color: rgba(243,233,210,.7); font-size:.92rem; }
.footer-inner a:hover{ color:#F3E9D2; }
.footer-bottom{
  max-width: var(--container); margin: 36px auto 0; padding-top:22px; border-top:1px solid rgba(243,233,210,.12);
  font-family: var(--mono); font-size:11.5px; color: rgba(243,233,210,.5); text-align:center;
}

/* ---------------------------- Reveal-on-scroll ---------------------------- */
.reveal{ opacity:0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ---------------------------- WhatsApp chat button ---------------------------- */
/* This button is injected automatically by js/site.js on every page that
   loads that script — you don't need to add any HTML for it yourself. */
.wa-fab{
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.wa-fab .wa-label{
  background: var(--ink); color:#fff; font-family: var(--body-font); font-size:13.5px;
  padding:9px 14px; border-radius:20px; white-space:nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,.22);
  opacity:0; transform: translateX(6px); transition: opacity .2s ease, transform .2s ease;
  pointer-events:none;
}
.wa-fab:hover .wa-label{ opacity:1; transform:none; }
.wa-fab .wa-circle{
  width:58px; height:58px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  animation: wa-pulse 2.6s ease-in-out infinite;
  transition: transform .15s ease;
}
.wa-fab:hover .wa-circle{ transform: scale(1.06); }
.wa-fab .wa-circle svg{ width:28px; height:28px; }
@keyframes wa-pulse{
  0%, 100% { box-shadow: 0 8px 20px rgba(0,0,0,.28), 0 0 0 0 rgba(37,211,102,.45); }
  50% { box-shadow: 0 8px 20px rgba(0,0,0,.28), 0 0 0 10px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce){
  .wa-fab .wa-circle{ animation:none; }
}
@media (max-width: 620px){
  .wa-fab{ right:16px; bottom:16px; }
  .wa-fab .wa-label{ display:none; }
  .wa-fab .wa-circle{ width:54px; height:54px; }
}

/* ---------------------------- Responsive ---------------------------- */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero .ticket{ max-width:420px; margin:0 auto; }
  .steps{ grid-template-columns: repeat(2,1fr); }
  .grid-3, .pricing-grid, .contact-grid{ grid-template-columns: repeat(2,1fr); }
  .grid-2{ grid-template-columns: 1fr; }
  .feature-row{ grid-template-columns: 1fr; gap:28px; margin-bottom:60px; }
  .feature-row.reverse .feature-copy{ order:1; }
  .feature-row.reverse .feature-visual{ order:2; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 620px){
  .hero{ padding:56px 20px 72px; }
  .hero h1{ font-size:2.05rem; }
  section{ padding:56px 20px; }
  .steps{ grid-template-columns:1fr; }
  .grid-3, .pricing-grid, .contact-grid{ grid-template-columns:1fr; }
  .plan.featured{ transform:none; }
  .footer-inner{ grid-template-columns:1fr; gap:28px; }
  .cta-banner{ padding:40px 22px; }
}

.hero-copy {
    max-width: 700px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    margin-bottom: 25px;
}

.hero h1 strong {
    display: inline-block;
}

.hero-emotional {
    font-family: "Zilla Slab", serif;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.hero-emotional strong {
    font-weight: 700;
}

.hero-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: .8;
}


/* Emotional problem section */

.emotional-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.problem-grid {
    max-width: 1100px;
    margin: 50px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.problem-card {
    padding: 30px;

    border: 1px solid rgba(0,0,0,.08);

    border-radius: 12px;

    background: rgba(255,255,255,.65);
}

.problem-number {
    font-family: "IBM Plex Mono", monospace;

    font-size: 13px;

    opacity: .55;
}

.problem-card h3 {
    margin-top: 15px;

    font-size: 23px;

    line-height: 1.25;
}

.problem-card p {
    line-height: 1.7;

    opacity: .75;
}


/* Parent section */

.parent-section {
    padding: 100px 20px;

    background:
        linear-gradient(
            135deg,
            #151515,
            #252525
        );

    color: white;

    text-align: center;
}

.parent-inner {
    max-width: 850px;

    margin: auto;
}

.parent-inner h2 {
    font-family: "Zilla Slab", serif;

    font-size: clamp(34px, 5vw, 60px);

    line-height: 1.12;

    margin: 20px 0 25px;
}

.parent-inner p {
    font-size: 18px;

    line-height: 1.8;

    opacity: .8;
}

.parent-question {
    font-family: "Permanent Marker", cursive;

    font-size: 25px;

    margin: 25px 0;

    transform: rotate(-1deg);
}


/* Motivation */

.motivation {
    padding: 100px 20px;

    text-align: center;
}

.motivation-inner {
    max-width: 850px;

    margin: auto;
}

.quote-mark {
    font-family: Georgia, serif;

    font-size: 100px;

    line-height: .5;

    opacity: .2;
}

.motivation h2 {
    font-family: "Zilla Slab", serif;

    font-size: clamp(38px, 5vw, 65px);

    line-height: 1.1;

    margin: 20px 0;
}

.motivation p {
    font-size: 20px;

    line-height: 1.8;

    opacity: .7;
}


/* Before / After */

.comparison-grid {
    max-width: 1000px;

    margin: 50px auto 90px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.comparison-card {
    padding: 35px;

    border-radius: 15px;

    border: 1px solid rgba(0,0,0,.08);
}

.comparison-card h3 {
    font-size: 25px;

    margin-bottom: 25px;
}

.comparison-card ul {
    padding: 0;

    margin: 0;

    list-style: none;
}

.comparison-card li {
    padding: 12px 0;

    border-bottom: 1px solid rgba(0,0,0,.07);
}

.before {
    background: #f5f5f5;
}

.after {
    background: #fffdf4;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}


/* CTA */

.cta-section {
    padding: 90px 20px;
}

.cta-banner {
    max-width: 1000px;

    margin: auto;

    text-align: center;

    padding: 70px 30px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #1c1c1c,
            #333
        );

    color: white;

    box-shadow:
        0 25px 60px rgba(0,0,0,.15);
}

.cta-banner h2 {
    font-family: "Zilla Slab", serif;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.05;

    margin: 20px 0;
}

.cta-banner p {
    max-width: 600px;

    margin: 0 auto 30px;

    font-size: 18px;

    line-height: 1.7;

    opacity: .8;
}

.cta-small {
    margin-top: 25px !important;

    font-size: 13px !important;

    opacity: .5 !important;
}


/* FAQ */

.faq-section {
    padding: 90px 20px;
}

.faq-container {
    max-width: 850px;

    margin: 40px auto;
}

.faq-container details {
    padding: 22px 0;

    border-bottom: 1px solid rgba(0,0,0,.12);
}

.faq-container summary {
    cursor: pointer;

    font-size: 18px;

    font-weight: 600;
}

.faq-container details p {
    margin-top: 15px;

    line-height: 1.7;

    opacity: .75;
}


/* Mobile */

@media (max-width: 768px) {

    .problem-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-emotional {
        font-size: 19px;
    }

    .parent-section,
    .emotional-section,
    .motivation,
    .faq-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .cta-banner {
        padding: 50px 20px;
    }

}