:root {
  --ink: #17212b;
  --muted: #5a6572;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --cream: #f3eee4;
  --teal: #177e89;
  --teal-dark: #0f5961;
  --navy: #21384a;
  --coral: #d86b56;
  --gold: #e3b65c;
  --line: #dde4e3;
  --shadow: 0 18px 45px rgba(23, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(221, 228, 227, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span:last-child {
  overflow-wrap: anywhere;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: white;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(20px, 5vw, 72px) 70px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/education-consultant-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.84) 34%, rgba(251, 250, 247, 0.24) 66%, rgba(23, 33, 43, 0.14) 100%),
    linear-gradient(180deg, rgba(251, 250, 247, 0.3), rgba(251, 250, 247, 0.16));
}

.hero-content {
  position: relative;
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 670px;
  margin-bottom: 22px;
  font-size: 5.25rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3.45rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 610px;
  color: #344150;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-note span {
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
  color: #344150;
  font-size: 0.88rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  text-align: center;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 12px 24px rgba(23, 126, 137, 0.24);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  color: var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 40px));
  margin: -44px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  background: white;
  padding: 24px;
}

.trust-strip strong {
  display: block;
  color: var(--teal-dark);
  font-size: 2rem;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 700;
}

.section,
.audience-section,
.split-section,
.contact-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.compact {
  padding-top: 58px;
  padding-bottom: 58px;
}

.page-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 58px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: 4.65rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid,
.outcome-grid,
.audience-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--teal-dark);
  font-weight: 900;
}

.text-link:hover {
  color: var(--coral);
}

.service-card,
.outcome-grid article,
.audience-grid article,
.program-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 26px;
  box-shadow: 0 8px 22px rgba(23, 33, 43, 0.05);
}

.card-icon {
  display: inline-grid;
  min-width: 42px;
  height: 34px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 8px;
  background: #f2c86e;
  color: #312611;
  font-size: 0.86rem;
  font-weight: 900;
}

.service-card p,
.outcome-grid p,
.audience-grid p,
.program-card p,
.split-section p,
.contact-section p {
  color: var(--muted);
}

.service-card ul,
.program-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: #40505f;
}

.service-card li,
.program-card li {
  padding-left: 2px;
}

.audience-section {
  padding-top: 36px;
}

.audience-grid article {
  min-height: 230px;
  background: var(--navy);
  color: white;
}

.audience-grid article:nth-child(2) {
  background: var(--teal-dark);
}

.audience-grid article:nth-child(3) {
  background: #7d5748;
}

.audience-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div {
  border-left: 5px solid var(--teal);
  background: white;
  padding: 20px 22px;
  box-shadow: 0 8px 22px rgba(23, 33, 43, 0.05);
}

.programs {
  border-bottom: 1px solid var(--line);
}

.program-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.program-card.featured {
  background: var(--ink);
  color: white;
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.program-card.featured p,
.program-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.program-label {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band,
.interactive-panel,
.detail-panel,
.destination-explorer,
.readiness-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 8px 22px rgba(23, 33, 43, 0.05);
}

.cta-band h3,
.interactive-panel h3,
.detail-panel h2,
.destination-explorer h3,
.readiness-panel h3 {
  margin-bottom: 8px;
}

.cta-band p,
.interactive-panel p,
.detail-panel p,
.destination-explorer p,
.readiness-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.destination-explorer {
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
}

.destination-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.destination-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  padding: 10px 16px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.destination-button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.destination-result,
.readiness-score {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 220px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 28px;
}

.destination-result span,
.readiness-score span:first-child {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.destination-result p,
.readiness-score span {
  color: rgba(255, 255, 255, 0.78);
}

.readiness-panel {
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.75fr) minmax(220px, 0.45fr);
  align-items: stretch;
  margin-top: 18px;
}

.readiness-checklist {
  display: grid;
  gap: 10px;
}

.readiness-checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  padding: 12px 14px;
  color: #344150;
  font-size: 0.92rem;
  font-weight: 800;
}

.readiness-checklist input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.readiness-score {
  min-height: auto;
}

.readiness-score strong {
  font-size: 2.5rem;
}

.tab-controls,
.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tab-button,
.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  padding: 10px 16px;
  min-height: 44px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.tab-button.is-active,
.filter-button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.detail-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  border-left: 5px solid var(--gold);
  background: #fffdf9;
  padding: 20px 20px 20px 38px;
  color: #40505f;
}

.interactive-panel {
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.65fr) minmax(280px, 0.65fr);
  align-items: stretch;
}

.matcher-form {
  display: grid;
  gap: 14px;
}

.matcher-result,
.form-preview {
  display: grid;
  align-content: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 24px;
}

.matcher-result span,
.form-preview span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.matcher-result p,
.form-preview p {
  color: rgba(255, 255, 255, 0.78);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(23, 33, 43, 0.05);
}

.resource-card.is-hidden {
  display: none;
}

.resource-card span {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--cream);
  padding: 7px 11px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card p {
  color: var(--muted);
}

.process-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 900;
}

.process-list p {
  margin: 0;
}

.outcomes {
  padding-top: 92px;
}

.outcome-grid article {
  min-height: 190px;
}

.outcome-grid article:nth-child(2) {
  border-top: 6px solid var(--coral);
}

.outcome-grid article:nth-child(1) {
  border-top: 6px solid var(--teal);
}

.outcome-grid article:nth-child(3) {
  border-top: 6px solid var(--gold);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 96px;
}

.quote-block {
  border-radius: 8px;
  background: var(--cream);
  padding: clamp(28px, 5vw, 48px);
}

.quote-block p {
  color: var(--ink);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.14;
}

.quote-block span {
  color: var(--muted);
  font-weight: 800;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 22px;
}

.proof-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 1.08rem;
}

.proof-list p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  border-top: 1px solid var(--line);
  padding-top: 86px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 20px 22px;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.85fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  padding-top: 80px;
}

.contact-section.standalone {
  padding-top: 32px;
}

.contact-aside {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  border-left: 5px solid var(--gold);
  background: white;
  padding: 20px 22px;
}

.contact-aside strong {
  margin-bottom: 4px;
}

.contact-aside span {
  color: var(--muted);
  font-weight: 700;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-details div {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px 20px;
}

.contact-details strong {
  color: var(--ink);
}

.contact-details span,
.contact-details a {
  color: var(--muted);
  font-weight: 700;
}

.contact-details a:hover {
  color: var(--teal-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #344150;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd6d5;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fffdf9;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(23, 126, 137, 0.18);
  border-color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.smart-form .form-preview {
  min-height: 128px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 32px clamp(20px, 4vw, 56px);
  background: var(--ink);
  color: white;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  font-weight: 800;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #128c7e;
  color: white;
  padding: 0 18px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(18, 140, 126, 0.28);
}

.whatsapp-float::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: inset 0 0 0 5px #128c7e;
}

.whatsapp-float:hover {
  background: #0f756a;
  transform: translateY(-1px);
}

@media (max-width: 1120px) {
  .site-header {
    gap: 18px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 4rem;
  }

  .trust-strip,
  .service-grid,
  .outcome-grid,
  .audience-grid,
  .program-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interactive-panel {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  }

  .matcher-result {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 20px;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 64px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.88) 62%, rgba(251, 250, 247, 0.45) 100%);
  }

  h1 {
    font-size: 3.35rem;
    line-height: 1;
  }

  h2,
  .page-hero h1 {
    font-size: 2.6rem;
    line-height: 1.05;
  }

  .hero-content,
  .hero-copy {
    max-width: 100%;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .quote-block p {
    font-size: 1.65rem;
  }

  .trust-strip,
  .service-grid,
  .outcome-grid,
  .audience-grid,
  .program-grid,
  .proof-section,
  .cta-band,
  .interactive-panel,
  .detail-panel,
  .destination-explorer,
  .readiness-panel,
  .resource-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    padding: 20px;
  }

  .section,
  .audience-section,
  .page-hero,
  .split-section,
  .contact-section {
    padding: 72px 0;
  }

  .page-hero {
    padding-top: 120px;
  }

  .compact {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .cta-band,
  .interactive-panel,
  .detail-panel,
  .destination-explorer,
  .readiness-panel {
    gap: 18px;
  }

  .site-footer {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .program-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .trust-strip,
  .service-grid,
  .outcome-grid,
  .audience-grid,
  .program-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    width: calc(100% - 28px);
    margin-top: 0;
  }

  .section,
  .audience-section,
  .split-section,
  .contact-section,
  .page-hero,
  .proof-section {
    width: calc(100% - 28px);
  }

  .tab-controls,
  .filter-controls,
  .destination-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tab-button,
  .filter-button,
  .destination-button {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-form,
  .service-card,
  .program-card,
  .resource-card,
  .outcome-grid article,
  .audience-grid article {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 155px;
    line-height: 1.05;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .quote-block p {
    font-size: 1.35rem;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-note {
    display: grid;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .site-footer {
    padding-bottom: 84px;
  }

  .service-card,
  .outcome-grid article,
  .program-card,
  .resource-card,
  .audience-grid article {
    min-height: auto;
  }
}

@media (max-width: 380px) {
  .brand span:last-child {
    max-width: 126px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2,
  .page-hero h1 {
    font-size: 1.95rem;
  }

  .tab-controls,
  .filter-controls,
  .destination-buttons {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 52px;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float::before {
    margin-right: 0;
  }
}
