/*
Theme Name: Medha Compass
Theme URI: https://medhacompass.in
Author: Medha Compass Career Guidance
Author URI: https://medhacompass.in
Description: Career counselling website for Swathi Kadur — Medha Compass Career Guidance. Designed for students in Grades 8–12 and their parents.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: #
Text Domain: medha-compass
Tags: career-counselling, education, one-page, responsive
*/

/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: #f8fafb;
  color: #0f2028;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── CSS Variables ─────────────────────────────────────────────── */
:root {
  --teal:        #1a7a8a;
  --teal-dark:   #155f6e;
  --teal-light:  #e6f3f5;
  --orange:      #e8502a;
  --orange-dark: #d04420;
  --dark:        #0f2028;
  --dark-mid:    #0a1518;
  --body-bg:     #f8fafb;
  --white:       #ffffff;
  --text-main:   #0f2028;
  --text-muted:  #4a6872;
  --border:      rgba(26,122,138,.15);
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --radius-sm:   2px;
  --radius:      4px;
  --max-w:       1200px;
  --section-pad: 6rem 2rem;
}

/* ─── Layout ────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
.section-label span {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-body);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.section-heading--white { color: var(--white); }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-size: .875rem;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 4px 16px rgba(232,80,42,.3); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal-dark); }

.btn-outline {
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); color: var(--white); }

.btn-outline-teal {
  border: 1px solid var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }

/* ─── NAV ───────────────────────────────────────────────────────── */
.site-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
}

.site-nav__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
  font-family: var(--font-body);
}
.site-nav__links a:hover { color: var(--white); }

.site-nav__cta { font-size: .875rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .site-nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 1.5rem 2rem; gap: 1.25rem; }
  .site-nav__links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .site-nav__cta { display: none; }
}

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .15;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,32,40,.95) 0%, rgba(15,32,40,.8) 55%, rgba(26,122,138,.4) 100%);
}

.hero__body {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  max-width: 680px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: '';
  width: 2rem; height: 1px;
  background: var(--orange);
}
.hero__eyebrow span {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-body);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero__heading em {
  font-style: italic;
  color: #5cc8d8;
}

.hero__lead {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
}
.hero__stat-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: .2rem;
  font-family: var(--font-body);
}

/* ─── ASSESSMENT ─────────────────────────────────────────────────── */
.assessment { padding: var(--section-pad); background: var(--body-bg); }

.assessment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.quiz-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.quiz-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--teal-light);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.quiz-progress-bar__fill {
  height: 100%;
  background: var(--teal);
  border-radius: 99px;
  transition: width .5s ease;
}

.quiz-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5rem;
  font-size: .75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.quiz-question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 1.75rem;
}

.quiz-options { display: flex; flex-direction: column; gap: .75rem; }

.quiz-option {
  text-align: left;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(26,122,138,.15);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--text-main);
  font-family: var(--font-body);
  transition: border-color .2s, background .2s;
  width: 100%;
}
.quiz-option:hover { border-color: var(--teal); background: var(--teal-light); }

.quiz-result { display: none; }
.quiz-result.is-visible { display: block; }
.quiz-questions.is-hidden { display: none; }

.quiz-result__icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  background: rgba(26,122,138,.1);
}
.quiz-result__label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
  font-family: var(--font-body);
}
.quiz-result__heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}
.quiz-result__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}
.quiz-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.quiz-tag {
  padding: .375rem .75rem;
  font-size: .75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  background: rgba(26,122,138,.1);
  color: var(--teal);
}
.quiz-result__actions { display: flex; gap: .75rem; }

.process-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.process-step { display: flex; gap: 1.25rem; }
.process-step__num {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
  padding-top: 2px;
  min-width: 1.5rem;
  flex-shrink: 0;
}
.process-step__title {
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: .25rem;
  font-family: var(--font-body);
  font-size: .9rem;
}
.process-step__desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: var(--font-body);
}

.process-quote {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--teal-light);
  border: 1px solid rgba(26,122,138,.2);
  border-radius: var(--radius-sm);
}
.process-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--teal);
}

@media (max-width: 900px) {
  .assessment__grid { grid-template-columns: 1fr; }
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials { padding: var(--section-pad); background: var(--dark); }

.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.testimonials__dots { display: flex; gap: .5rem; align-items: center; }
.testimonials__dot {
  height: .5rem;
  border-radius: 99px;
  border: none;
  background: rgba(255,255,255,.2);
  width: .5rem;
  transition: width .3s, background .3s;
  cursor: pointer;
  padding: 0;
}
.testimonials__dot.is-active { width: 2.5rem; background: var(--orange); }

.testimonials__featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testi-main {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.testi-main__open-quote {
  font-size: 2rem;
  line-height: 1;
  color: #5cc8d8;
  margin-bottom: 1.25rem;
}
.testi-main__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}
.testi-main__author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: var(--white);
  flex-shrink: 0;
  font-family: var(--font-body);
}
.testi-main__name { font-weight: 500; color: var(--white); font-family: var(--font-body); font-size: .9rem; }
.testi-main__role { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: .2rem; font-family: var(--font-body); }

.testi-outcome {
  background: rgba(232,80,42,.18);
  border: 1px solid rgba(232,80,42,.3);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testi-outcome__label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #ff8a6a;
  margin-bottom: .75rem;
  font-family: var(--font-body);
}
.testi-outcome__text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}
.testi-outcome__stars {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.testi-outcome__stars-label { font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: .4rem; font-family: var(--font-body); }
.stars { color: var(--orange); letter-spacing: .1rem; }

.testimonials__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.testi-thumb {
  text-align: left;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03);
  transition: border-color .2s, background .2s;
  cursor: pointer;
  width: 100%;
}
.testi-thumb.is-active {
  border-color: var(--orange);
  background: rgba(232,80,42,.08);
}
.testi-thumb__name { font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.8); font-family: var(--font-body); margin-top: .6rem; }
.testi-thumb__role { font-size: .7rem; color: rgba(255,255,255,.35); margin-top: .15rem; font-family: var(--font-body); }

@media (max-width: 900px) {
  .testimonials__featured { grid-template-columns: 1fr; }
  .testimonials__thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* ─── COUNSELOR PROFILE ──────────────────────────────────────────── */
.profile { padding: var(--section-pad); background: var(--white); }

.profile__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.profile__image-wrap {
  position: relative;
}
.profile__image-border {
  position: absolute;
  top: -1rem; left: -1rem;
  width: 100%; height: 100%;
  border: 2px solid rgba(26,122,138,.2);
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.profile__photo {
  position: relative;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-sm);
}
.profile__quote-badge {
  position: absolute;
  bottom: -1.5rem; right: -1rem;
  background: var(--teal);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  max-width: 240px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(26,122,138,.35);
}
.profile__quote-mark { font-size: 1.4rem; color: #5cc8d8; margin-bottom: .25rem; line-height: 1; }
.profile__quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .8rem;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
}

.profile__content { padding-top: 1rem; }
.profile__name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: .25rem;
  line-height: 1.1;
}
.profile__title { font-size: .875rem; color: var(--teal); font-weight: 500; font-family: var(--font-body); margin-bottom: .5rem; }
.profile__org { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; }
.profile__org img { height: 20px; width: auto; object-fit: contain; opacity: .8; }
.profile__org span { font-size: .75rem; color: var(--text-muted); font-family: var(--font-body); }

.profile__bio { font-family: var(--font-body); line-height: 1.8; color: var(--text-muted); margin-bottom: 1.25rem; }

.profile__countries { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.profile__country {
  padding: .375rem .875rem;
  font-size: .75rem;
  border: 1px solid rgba(26,122,138,.25);
  color: var(--teal);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

.profile__section-title {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: .75rem;
  font-family: var(--font-body);
}

.profile__roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.profile__role-item { display: flex; align-items: flex-start; gap: .5rem; }
.profile__role-dot {
  width: .375rem; height: .375rem;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: .45rem;
}
.profile__role-text { font-size: .8rem; color: var(--text-muted); font-family: var(--font-body); line-height: 1.5; }

.profile__creds { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2.5rem; }
.profile__cred-item { display: flex; align-items: flex-start; gap: .75rem; }
.profile__cred-dot {
  width: .375rem; height: .375rem;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: .45rem;
}
.profile__cred-text { font-size: .8rem; color: var(--text-muted); font-family: var(--font-body); line-height: 1.5; }

@media (max-width: 900px) {
  .profile__grid { grid-template-columns: 1fr; }
  .profile__photo { height: 420px; }
  .profile__quote-badge { right: 0; }
}

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq { padding: var(--section-pad); background: var(--body-bg); }

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.faq__sidebar-contact {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--teal-light);
  border: 1px solid rgba(26,122,138,.15);
  border-radius: var(--radius-sm);
}
.faq__sidebar-contact h4 {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.faq__contact-link {
  display: block;
  font-size: .8rem;
  color: var(--text-main);
  margin-bottom: .6rem;
  font-family: var(--font-body);
  transition: color .2s;
}
.faq__contact-link:hover { color: var(--teal); }
.faq__contact-info { font-size: .8rem; color: var(--text-muted); font-family: var(--font-body); line-height: 1.6; }

.accordion { border-top: 1px solid rgba(26,122,138,.1); }
.accordion-item { border-bottom: 1px solid rgba(26,122,138,.1); }
.accordion-btn {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  color: var(--text-main);
  transition: color .2s;
  cursor: pointer;
  background: none;
  border: none;
}
.accordion-btn:hover { color: var(--teal); }
.accordion-icon {
  flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  border: 1px solid rgba(15,32,40,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform .3s;
  margin-top: .1rem;
  line-height: 1;
}
.accordion-item.is-open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding-bottom: 1.25rem;
  padding-right: 2.5rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: var(--font-body);
}
.accordion-item.is-open .accordion-body { display: block; }

@media (max-width: 900px) {
  .faq__grid { grid-template-columns: 1fr; }
}

/* ─── LEAD FORM ─────────────────────────────────────────────────── */
.lead-form { padding: var(--section-pad); background: var(--dark); }

.lead-form__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
}

.lead-form__info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.lead-form__info-emoji { font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }
.lead-form__info-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .2rem;
  font-family: var(--font-body);
}
.lead-form__info-value { font-size: .875rem; color: rgba(255,255,255,.7); font-family: var(--font-body); line-height: 1.6; }
.lead-form__info-value a { transition: color .2s; }
.lead-form__info-value a:hover { color: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-col { display: flex; flex-direction: column; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }

.form-label {
  font-size: .75rem;
  letter-spacing: .05em;
  color: rgba(255,255,255,.5);
  margin-bottom: .4rem;
  font-family: var(--font-body);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--white);
  border: 1px solid rgba(26,122,138,.15);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-family: var(--font-body);
  color: var(--text-main);
  transition: border-color .2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(74,104,114,.4); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); }
.form-textarea { resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a6872' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-error { font-size: .75rem; color: #ff6b6b; margin-top: .25rem; font-family: var(--font-body); display: none; }
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input,
.form-group.has-error .form-select { border-color: #ff6b6b; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: .875rem;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s;
  margin-top: .5rem;
}
.form-submit:hover { background: var(--orange-dark); }
.form-privacy { font-size: .75rem; color: rgba(255,255,255,.25); text-align: center; margin-top: .75rem; font-family: var(--font-body); }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(26,122,138,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #5cc8d8;
}
.form-success__heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.form-success__text { color: rgba(255,255,255,.55); line-height: 1.8; font-family: var(--font-body); margin-bottom: 2rem; }

@media (max-width: 900px) {
  .lead-form__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── CTA ───────────────────────────────────────────────────────── */
.cta { padding: var(--section-pad); background: var(--teal); position: relative; overflow: hidden; }

.cta__bg-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.05);
  user-select: none;
}

.cta__body { position: relative; text-align: center; max-width: 800px; margin-inline: auto; }

.cta__divider {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  margin-bottom: 1.5rem;
}
.cta__divider-line { width: 2rem; height: 1px; background: rgba(255,255,255,.3); }
.cta__divider-text { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); font-family: var(--font-body); }

.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.cta__lead { color: rgba(255,255,255,.7); line-height: 1.8; max-width: 540px; margin: 0 auto 2.5rem; font-family: var(--font-body); }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.cta__trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.cta__trust-item { font-size: .875rem; color: rgba(255,255,255,.65); font-family: var(--font-body); }

/* ─── FOOTER ────────────────────────────────────────────────────── */
.site-footer { background: var(--dark-mid); padding: 3rem 2rem; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer__logo img { height: 48px; width: auto; object-fit: contain; opacity: .85; margin-bottom: 1rem; }
.footer__tagline { font-size: .75rem; color: rgba(255,255,255,.3); line-height: 1.8; max-width: 260px; font-family: var(--font-body); }
.footer__contact-link { display: block; font-size: .75rem; color: rgba(255,255,255,.38); margin-bottom: .5rem; font-family: var(--font-body); transition: color .2s; }
.footer__contact-link:hover { color: rgba(255,255,255,.7); }
.footer__address { font-size: .75rem; color: rgba(255,255,255,.28); font-family: var(--font-body); line-height: 1.6; margin-top: .25rem; }

.footer__col-heading { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.22); margin-bottom: 1rem; font-family: var(--font-body); }
.footer__col-links a { display: block; font-size: .75rem; color: rgba(255,255,255,.38); margin-bottom: .5rem; font-family: var(--font-body); transition: color .2s; }
.footer__col-links a:hover { color: rgba(255,255,255,.7); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer__copy { font-size: .75rem; color: rgba(255,255,255,.2); font-family: var(--font-body); }
.footer__location { font-size: .75rem; color: rgba(255,255,255,.2); font-family: var(--font-body); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ─── WP Admin Bar ──────────────────────────────────────────────── */
.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-nav { top: 46px; } }

/* ─── Utilities ─────────────────────────────────────────────────── */
.mb-2  { margin-bottom: .5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mt-6  { margin-top: 1.5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
