/* =========================================================
   Ankuram · Class 8 Tuition LP (Cluster 1: Near Me)
   Full stylesheet — loads async via media="print" swap
   Critical above-the-fold styles are inlined in index.html
   ========================================================= */

/* ---------- Typography & global ---------- */
h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); letter-spacing: -0.25px; line-height: 1.2; }
h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 12px; font-weight: 700; }
h3 { font-size: clamp(18px, 2.4vw, 22px); margin-bottom: 8px; font-weight: 700; }
h4 { font-size: 16px; margin-bottom: 8px; font-weight: 700; }
p { margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }
small { font-size: 0.85em; color: var(--muted); font-weight: normal; }
ul { list-style: none; }
.muted { color: var(--muted); }
.container-narrow { max-width: 820px; }

/* ---------- Hero: grid + classroom photo ---------- */
.hero-grid { display: grid; gap: 28px; align-items: start; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr minmax(220px, 320px); gap: 40px; align-items: center; }
}
.hero-photo-wrap { margin: 0; max-width: 420px; width: 100%; margin-left: auto; margin-right: auto; }
@media (min-width: 960px) {
  .hero-photo-wrap { margin-left: 0; margin-right: 0; max-width: none; }
}
.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-photo-caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}
@media (min-width: 960px) { .hero-photo-caption { text-align: left; } }

/* ---------- Section spacing ---------- */
.section { padding: 56px 0; }
.section-light { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-soft { background: var(--soft-bg); }
.section-head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-sub { font-size: clamp(15px, 2vw, 17px); color: #2A2A2A; line-height: 1.65; }
@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
}

/* ---------- Grid utilities ---------- */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

/* ---------- Card primitive ---------- */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--soft-bg); display: flex; align-items: center; justify-content: center; color: var(--navy); margin-bottom: 16px; }
.card-icon svg { width: 22px; height: 22px; }
.card-step { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 12px; font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
.card-tag { display: inline-block; margin-left: 8px; padding: 2px 8px; background: var(--gold); color: #fff; font-size: 12px; font-weight: 600; border-radius: 4px; vertical-align: middle; }
.card p { color: #2A2A2A; font-size: 15px; line-height: 1.6; }

/* ---------- Inline CTA row ---------- */
.inline-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }

/* ---------- Trust strip (schools) ---------- */
.trust-strip { background: var(--navy); color: #fff; padding: 24px 0; }
.trust-strip-label { text-align: center; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.7); margin-bottom: 14px; font-weight: 600; }
.school-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.school-list span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.92); padding: 4px 0; white-space: nowrap; }
@media (min-width: 768px) {
  .school-list { gap: 8px 28px; }
  .school-list span { font-size: 15px; }
}

/* ---------- Format & batch comparison ---------- */
.compare-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .compare-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.compare-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.compare-card ul { display: grid; gap: 10px; margin-top: 6px; }
.compare-card li { font-size: 15px; line-height: 1.5; color: #2A2A2A; padding-left: 22px; position: relative; }
.compare-card li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; position: absolute; left: 4px; top: 8px; }
.compare-badge { display: inline-block; padding: 6px 12px; border-radius: 999px; font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.compare-bad { border-top: 4px solid #B85050; }
.compare-bad .compare-badge { background: #FBEAEA; color: #B85050; }
.compare-bad li::before { background: #B85050; }
.compare-warn { border-top: 4px solid #C99A4B; }
.compare-warn .compare-badge { background: #FAF0E0; color: #A07C32; }
.compare-warn li::before { background: #C99A4B; }
.compare-good { border-top: 4px solid #1DA851; box-shadow: 0 8px 24px rgba(29,168,81,.12); }
.compare-good .compare-badge { background: #E5F7EC; color: #1DA851; }
.compare-good li::before { background: #1DA851; }

/* ---------- How-it-works steps ---------- */
.steps { display: grid; gap: 22px; counter-reset: step; max-width: 820px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start; padding: 22px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--gold); font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: Georgia, serif; }
.step-body h3 { color: var(--navy); margin-bottom: 6px; }
.step-body p { color: #2A2A2A; font-size: 15px; line-height: 1.6; }
.step-timeline { text-align: center; padding: 16px 20px; background: var(--soft-bg); border-radius: var(--radius); margin-top: 28px; font-size: 15px; line-height: 1.6; }

/* ---------- Fees section ---------- */
.diagnostic-card { background: var(--card); border: 2px solid var(--gold); border-radius: var(--radius); padding: 26px; margin: 0 auto 32px; max-width: 720px; box-shadow: var(--shadow-lg); }
.diagnostic-card-step { display: inline-block; padding: 4px 12px; background: var(--gold); color: #fff; font-size: 13px; font-weight: 700; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.diagnostic-card h3 { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.diagnostic-card h3 small { font-size: 14px; font-weight: normal; color: var(--muted); font-family: -apple-system, sans-serif; }
.price-big { font-family: Georgia, serif; font-size: 32px; color: var(--gold-dark); font-weight: 700; }
.check-list { display: grid; gap: 8px; }
.check-list li { padding-left: 26px; position: relative; font-size: 15px; line-height: 1.5; color: #2A2A2A; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; color: #1DA851; font-weight: 700; }
.fees-grid { display: grid; gap: 22px; grid-template-columns: 1fr; max-width: 880px; margin: 0 auto; }
@media (min-width: 760px) { .fees-grid { grid-template-columns: 1fr 1fr; } }
.fee-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; box-shadow: var(--shadow); }
.fee-card-feature { border: 2px solid var(--navy); box-shadow: 0 8px 28px rgba(14,58,83,.12); }
.fee-card-tag { display: inline-block; padding: 4px 12px; background: var(--soft-bg); color: var(--muted); font-size: 12px; font-weight: 700; border-radius: 4px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.fee-card-tag-feature { background: var(--gold); color: #fff; }
.fee-card h3 { margin-bottom: 6px; }
.fee-card-note { font-size: 14px; color: var(--muted); margin-bottom: 22px; font-style: italic; }
.fee-tier { padding: 14px 0; border-top: 1px solid var(--border); }
.fee-tier:first-of-type { border-top: 0; }
.fee-tier-label { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.fee-tier-price { font-family: Georgia, serif; font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.fee-tier-price small { font-size: 13px; color: var(--muted); font-weight: normal; font-family: -apple-system, sans-serif; }
.fee-tier-meta { font-size: 13px; color: var(--muted); }
.fee-card-bonus { margin-top: 20px; padding: 12px 14px; background: var(--soft-bg); border-radius: 8px; font-size: 14px; line-height: 1.5; color: var(--navy); font-weight: 500; }
.fees-rationale { margin: 32px auto 0; max-width: 720px; padding: 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); border-left: 4px solid var(--navy); }
.fees-rationale h4 { color: var(--navy); margin-bottom: 8px; font-size: 15px; }
.fees-rationale p { font-size: 15px; line-height: 1.65; color: #2A2A2A; }
.fees-footnote { text-align: center; margin-top: 28px; font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---------- Founder + team ---------- */
.founder-card { display: grid; gap: 24px; padding: 32px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); margin-bottom: 40px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .founder-card { grid-template-columns: 220px 1fr; gap: 32px; } }
.founder-card-photo { width: 100%; aspect-ratio: 1; max-width: 220px; border-radius: 12px; background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%); overflow: hidden; margin: 0 auto; }
.founder-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; border-radius: 12px; }
.founder-card-role { display: inline-block; padding: 4px 12px; background: var(--gold); color: #fff; font-size: 13px; font-weight: 700; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.founder-card-creds { color: var(--muted); margin-bottom: 16px; font-size: 14px; }
.founder-card-body p { font-size: 15px; line-height: 1.7; color: #2A2A2A; }
.team-section { margin-top: 40px; }
.team-heading { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; text-align: center; }
.team-heading-meta { font-size: 14px; font-weight: normal; color: var(--muted); font-family: -apple-system, sans-serif; font-style: italic; }
.team-grid { display: grid; gap: 18px; grid-template-columns: 1fr; justify-content: center; max-width: 720px; margin: 0 auto; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 280px)); } }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow); }
.team-card-photo { width: 80px; height: 80px; border-radius: 50%; background: var(--soft-bg); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; font-family: Georgia, serif; margin: 0 auto 12px; }
.team-card h4 { margin-bottom: 4px; color: var(--navy); }
.team-card-role { font-size: 13px; color: var(--gold-dark); font-weight: 600; margin-bottom: 4px; }
.team-card-creds { font-size: 13px; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.testi-stars { font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-size: 15px; line-height: 1.65; color: #2A2A2A; font-style: italic; flex: 1; margin-bottom: 20px; padding-left: 14px; border-left: 3px solid var(--gold); }
.testi-card .testi-desc { font-size: 15px; line-height: 1.65; color: #2A2A2A; flex: 1; margin: 0 0 20px; padding-left: 14px; border-left: 3px solid var(--gold); }
.testi-meta { padding-top: 16px; border-top: 1px solid var(--border); font-size: 14px; }
.testi-name { font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.testi-school { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.testi-result { font-size: 13px; color: #1DA851; font-weight: 600; }

/* ---------- Curriculum tabs ---------- */
.tabs { width: 100%; }
.tabs-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; border-bottom: 2px solid var(--border); padding-bottom: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tabs-list-sub { border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.tab { padding: 12px 18px; border-radius: 0; font-size: 15px; font-weight: 600; color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all .15s ease; white-space: nowrap; min-height: 44px; }
.tab:hover { color: var(--navy); }
.tab[aria-selected="true"] { color: var(--navy); border-bottom-color: var(--gold); }
.tab-sub { padding: 8px 14px; font-size: 14px; }
.tab small { font-size: 12px; font-weight: normal; color: var(--muted); margin-left: 4px; }
.tab-panel { animation: fadeIn .25s ease; }
.tab-panel[hidden] { display: none !important; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.chapter-list { display: grid; gap: 8px 18px; grid-template-columns: 1fr; padding: 8px 0; }
@media (min-width: 600px) { .chapter-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .chapter-list { grid-template-columns: 1fr 1fr 1fr; } }
.chapter-list li { padding: 8px 0 8px 26px; position: relative; font-size: 15px; color: #2A2A2A; border-bottom: 1px solid var(--border); }
.chapter-list li::before { content: ""; position: absolute; left: 6px; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.chapter-note { padding: 18px 20px; background: var(--soft-bg); border-radius: 10px; font-size: 15px; line-height: 1.65; color: #2A2A2A; }

/* ---------- Location & timings ---------- */
.location-grid { display: grid; gap: 28px; grid-template-columns: 1fr; max-width: 980px; margin: 0 auto; }
@media (min-width: 820px) { .location-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
.location-block { margin-bottom: 22px; }
.location-block h3 { color: var(--navy); margin-bottom: 10px; font-size: 18px; }
.location-block p { font-size: 15px; line-height: 1.65; }
.location-block a { color: var(--navy); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.timings-window { padding: 12px 14px; background: var(--soft-bg); border-radius: 8px; line-height: 1.6; }
.timings-window strong { color: var(--navy); }
.map-embed { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); background: var(--soft-bg); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-direction-cta { margin-top: 12px; font-size: 14px; text-align: center; }
.map-direction-cta a { color: var(--navy); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.map-direction-cta a:hover { color: var(--gold-dark); }

/* ---------- Areas we serve ---------- */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 920px; margin: 0 auto; }
.area-pill { padding: 10px 18px; background: var(--card); border: 1px solid var(--border); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--navy); box-shadow: 0 1px 2px rgba(14,58,83,.04); transition: all .15s ease; }
.area-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-1px); }
.areas-note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 8px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: box-shadow .15s ease; }
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary { padding: 18px 22px; font-weight: 600; color: var(--navy); cursor: pointer; list-style: none; position: relative; padding-right: 50px; font-size: 16px; line-height: 1.4; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 300; color: var(--gold); transition: transform .2s ease; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: var(--soft-bg); }
.faq-item p { padding: 0 22px 22px; color: #2A2A2A; font-size: 15px; line-height: 1.7; }
.faq-item p strong { color: var(--navy); }

/* ---------- Final CTA ---------- */
.final-cta { padding: 64px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; text-align: center; }
.final-cta h2 { color: #fff; margin-bottom: 14px; font-size: clamp(26px, 4.5vw, 38px); }
.final-cta p { font-size: clamp(15px, 2vw, 17px); color: rgba(255,255,255,.85); margin-bottom: 32px; }
.hero-ctas-center { justify-content: center; }
.final-cta .btn-call { background: var(--gold); color: #fff; }
.final-cta .btn-call:hover { background: var(--gold-dark); }

/* ---------- Footer ---------- */
.site-footer { background: #0a2a3e; color: rgba(255,255,255,.82); padding: 48px 0 90px; font-size: 14px; }
@media (min-width: 768px) { .site-footer { padding-bottom: 32px; } }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; margin-bottom: 32px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; } }
.site-footer .brand { color: #fff; font-size: 18px; margin-bottom: 12px; }
.site-footer .brand-mark { background: var(--gold); color: var(--navy); }
.site-footer .brand-name { display: inline; }
.footer-tag { margin-bottom: 8px; font-size: 13px; }
.site-footer h4 { color: #fff; margin-bottom: 14px; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; font-family: -apple-system, sans-serif; }
.site-footer p { color: rgba(255,255,255,.72); margin-bottom: 6px; line-height: 1.6; }
.site-footer a { color: rgba(255,255,255,.92); text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 3px; transition: color .15s; }
.site-footer a:hover { color: var(--gold); }
.site-footer .muted { color: rgba(255,255,255,.55); }
.footer-copy { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: 13px; }

/* ---------- Sticky mobile bottom bar ---------- */
.sticky-bottom { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); padding: 0; box-shadow: 0 -4px 20px rgba(0,0,0,.08); }
@media (min-width: 768px) { .sticky-bottom { display: none; } }
.sticky-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 12px; min-height: 56px; font-weight: 700; font-size: 15px; color: #fff; }
.sticky-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.sticky-btn-call { background: var(--navy); }
.sticky-btn-wa { background: var(--green); }
.sticky-btn:active { opacity: .85; }

/* ---------- Accessibility & focus ---------- */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.cta-icon:focus-visible, .btn:focus-visible, .sticky-btn:focus-visible, .tab:focus-visible, .area-pill:focus-visible, .faq-item summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

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

/* ---------- Honesty strip (Section 2A) ---------- */
.honesty-strip { padding: 40px 0; }
@media (min-width: 768px) { .honesty-strip { padding: 56px 0; } }
.honesty-h2 {
  text-align: center;
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 6px;
}
.honesty-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 0 auto 28px;
  max-width: 560px;
  line-height: 1.6;
}
.honesty-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .honesty-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.honesty-col {
  padding: 22px 22px 22px 26px;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 4px solid;
}
.honesty-yes { border-left-color: #1da851; }
.honesty-no { border-left-color: var(--gold-dark); }
.honesty-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.honesty-yes .honesty-tag { background: #e5f7ec; color: #1da851; }
.honesty-no .honesty-tag { background: #faf0e0; color: var(--gold-dark); }
.honesty-col ul { display: grid; gap: 10px; list-style: none; margin: 0; padding: 0; }
.honesty-col li {
  padding-left: 26px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: #2a2a2a;
}
.honesty-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  width: 18px;
}
.honesty-yes li::before { content: "✓"; color: #1da851; }
.honesty-no li::before { content: "✕"; color: var(--gold-dark); }

/* ---------- Home-tutor right-fit section (4A) ---------- */
.hometutor-grid {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.hometutor-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hometutor-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--soft-bg);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid var(--gold);
}
.hometutor-body h3 {
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.25;
}
.hometutor-body p {
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 520px) {
  .hometutor-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  .hometutor-num {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* ---------- Print ---------- */
@media print {
  .sticky-top, .sticky-bottom, .hero-ctas, .inline-cta, .final-cta { display: none !important; }
  body { background: #fff; }
  .section { padding: 16px 0; page-break-inside: avoid; }
}
