:root {
  --bg: #f4f8fc;
  --bg-soft: #eaf6f7;
  --surface: #ffffff;
  --surface-strong: #e6faf8;
  --text: #0a1f29;
  --text-soft: #2c4654;
  --muted: #5a6d79;
  --line: rgba(10, 31, 41, 0.08);
  --line-strong: rgba(10, 31, 41, 0.14);
  --primary: #00a7a7;
  --primary-strong: #047d82;
  --primary-deep: #053b44;
  --accent: #6c63ff;
  --accent-soft: #ede9ff;
  --warning: #ffb547;
  --shadow-sm: 0 4px 14px rgba(10, 31, 41, 0.05);
  --shadow-md: 0 18px 44px rgba(10, 31, 41, 0.08);
  --shadow-lg: 0 30px 80px rgba(4, 125, 130, 0.18);
  --radius: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1200px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: -10% -10% auto auto;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 167, 167, 0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: auto auto -10% -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.16), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

main,
.site-header,
.footer {
  position: relative;
  z-index: 1;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

ul {
  padding: 0;
  margin: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 50;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--primary-deep);
  color: white;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--primary);
}

.text-gradient {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 167, 167, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 167, 167, 0.18);
}

.muted {
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(244, 248, 252, 0.85);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(10, 31, 41, 0.06);
  backdrop-filter: saturate(180%) blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 12px 26px rgba(0, 167, 167, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--primary-strong);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 18px;
  color: white !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 12px 26px rgba(0, 167, 167, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 167, 167, 0.36);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  padding-top: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -10% 5% auto auto;
  width: 56vw;
  max-width: 720px;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 167, 167, 0.45), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(108, 99, 255, 0.38), transparent 60%);
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-content h1 {
  margin-bottom: 22px;
  max-width: 22ch;
  overflow-wrap: break-word;
  hyphens: auto;
  word-break: normal;
}

.hero-content h1 .text-gradient {
  display: inline;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 60ch;
  margin-bottom: 32px;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-soft);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
  white-space: nowrap;
}

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

.button:focus-visible {
  outline: 3px solid rgba(0, 167, 167, 0.35);
  outline-offset: 2px;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 38px rgba(0, 167, 167, 0.32);
}

.button-primary:hover {
  box-shadow: 0 24px 50px rgba(0, 167, 167, 0.4);
}

.button-secondary {
  color: var(--primary-strong);
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  box-shadow: var(--shadow-md);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--primary-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-row svg {
  color: var(--primary);
}

/* Hero card */

.hero-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: calc(var(--radius) + 16px);
  background: linear-gradient(135deg, rgba(0, 167, 167, 0.18), rgba(108, 99, 255, 0.18));
  filter: blur(2px);
}

.dashboard-top,
.progress-card,
.metric-grid,
.timeline {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  margin-bottom: 14px;
}

.dashboard-top strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.dashboard-top small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 167, 167, 0.2);
}

.progress-card {
  padding: 20px;
  margin-bottom: 14px;
}

.progress-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text-soft);
}

.progress-head strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
}

.progress-bar {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: #dff2f2;
  overflow: hidden;
}

.progress-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.progress-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 14px;
}

.metric-grid > div {
  padding: 18px 12px;
  text-align: center;
}

.metric-grid > div + div {
  border-left: 1px solid var(--line);
}

.metric-grid strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.timeline {
  list-style: none;
  padding: 18px 20px;
  display: grid;
  gap: 16px;
}

.timeline li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}

.timeline strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.timeline p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 167, 167, 0.18);
}

/* ---------- Trust strip ---------- */

.trust-strip {
  padding: 32px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.trust-strip-grid > div {
  padding: 28px 20px;
  text-align: center;
}

.trust-strip-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-strip-grid strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--primary-strong);
  letter-spacing: -0.05em;
}

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

/* ---------- Section heading ---------- */

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

/* ---------- Cards ---------- */

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

.feature-card,
.profile-card,
.testimonial-card,
.mission-list > div,
.module-row,
.specialty-grid > li {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card {
  padding: 28px;
}

.feature-card:hover,
.profile-card:hover,
.testimonial-card:hover,
.specialty-grid > li:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 167, 167, 0.3);
  box-shadow: var(--shadow-md);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--surface-strong);
  color: var(--primary-strong);
}

.feature-card p {
  margin: 0;
}

/* ---------- Modules ---------- */

.modules-section {
  background: linear-gradient(180deg, transparent, rgba(0, 167, 167, 0.04), transparent);
}

.module-list {
  display: grid;
  gap: 22px;
}

.module-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 38px;
  padding: clamp(28px, 4vw, 44px);
}

.module-row.reverse .module-text {
  order: 2;
}

.module-tag {
  display: inline-flex;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-soft);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--surface-strong);
  background-image:
    linear-gradient(45deg, transparent 36%, var(--primary) 36% 56%, transparent 56%),
    linear-gradient(-45deg, transparent 56%, var(--primary) 56% 76%, transparent 76%);
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.profile-card.highlighted .check-list li {
  color: rgba(255, 255, 255, 0.92);
}

.profile-card.highlighted .check-list li::before {
  background: rgba(255, 255, 255, 0.18);
  background-image:
    linear-gradient(45deg, transparent 36%, white 36% 56%, transparent 56%),
    linear-gradient(-45deg, transparent 56%, white 56% 76%, transparent 76%);
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.module-art {
  display: grid;
  gap: 14px;
  align-content: center;
}

.mini-card {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.mini-card span,
.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.mini-card-a {
  background: linear-gradient(135deg, rgba(0, 167, 167, 0.08), rgba(108, 99, 255, 0.06));
}

.mini-bar {
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: #dff2f2;
  overflow: hidden;
}

.mini-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.mini-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.mini-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--primary-strong);
  font-size: 0.75rem;
  font-weight: 700;
}

.chart-card {
  padding: 18px 20px 12px;
}

.schedule-card .schedule-list {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.schedule-card .schedule-list li {
  display: flex;
  gap: 12px;
}

.schedule-card .schedule-list span {
  min-width: 60px;
  font-weight: 800;
  color: var(--primary-strong);
}

.family-card {
  padding: 22px;
}

.family-card p {
  margin-top: 8px;
  font-style: italic;
}

.mini-cta {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-deep);
  color: white !important;
  font-size: 0.82rem;
  font-weight: 800;
}

/* ---------- Specialties ---------- */

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}

.specialty-grid > li {
  padding: 22px;
}

.specialty-grid strong {
  display: block;
  margin: 10px 0 6px;
  font-family: var(--font-display);
}

.specialty-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.specialty-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-strong);
  color: var(--primary-strong);
}

/* ---------- Profiles ---------- */

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

.profile-card {
  padding: 30px;
  display: grid;
  gap: 20px;
  align-content: start;
}

.profile-card.highlighted {
  color: white;
  background: linear-gradient(155deg, var(--primary-deep), var(--primary-strong) 55%, var(--primary));
  border: 0;
  box-shadow: var(--shadow-lg);
}

.profile-card.highlighted h3,
.profile-card.highlighted p {
  color: white;
}

.profile-card.highlighted p {
  color: rgba(255, 255, 255, 0.84);
}

.profile-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Mission ---------- */

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 50px;
  align-items: start;
}

.mission-list {
  display: grid;
  gap: 16px;
}

.mission-list > div {
  padding: 24px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--primary-strong);
  font-weight: 800;
}

.link-arrow svg {
  transition: transform 0.2s ease;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

/* ---------- Testimonials ---------- */

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 32px;
  margin: 0;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.testimonial-card figcaption {
  display: grid;
  gap: 4px;
  margin-top: 30px;
}

.testimonial-card figcaption span {
  color: var(--muted);
}

/* ---------- FAQ ---------- */

.faq-section {
  background: linear-gradient(180deg, transparent, rgba(108, 99, 255, 0.04), transparent);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: start;
}

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

.faq-list details {
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.faq-list details[open] {
  border-color: rgba(0, 167, 167, 0.3);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--primary-strong);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0 0 22px;
}

/* ---------- CTA ---------- */

.cta-section {
  padding-top: 32px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 38px;
  padding: clamp(28px, 4vw, 56px);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.32), transparent 22rem),
    linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-strong) 55%, var(--primary) 100%);
  color: white;
  box-shadow: var(--shadow-lg);
  align-items: center;
  overflow: hidden;
}

.cta-card .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.cta-card .eyebrow::before {
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.cta-card h2,
.cta-card p {
  color: white;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}

.cta-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.92);
}

.cta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  background-image:
    linear-gradient(45deg, transparent 36%, white 36% 56%, transparent 56%),
    linear-gradient(-45deg, transparent 56%, white 56% 76%, transparent 76%);
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Form ---------- */

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-md);
  background: white;
  color: var(--text);
  box-shadow: 0 24px 50px rgba(4, 30, 36, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 167, 167, 0.14);
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--primary);
}

.consent a {
  color: var(--primary-strong);
  text-decoration: underline;
}

.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  margin-top: 6px;
}

.form-submit[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-note.is-success {
  color: var(--primary-strong);
  font-weight: 700;
}

.form-note.is-error {
  color: #c0392b;
  font-weight: 700;
}

/* ---------- Footer ---------- */

.footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.footer-grid p {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
}

.footer-grid nav a,
.footer-grid > div a:not(.brand) {
  color: var(--text-soft);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-grid nav a:hover,
.footer-grid > div a:not(.brand):hover {
  color: var(--primary-strong);
}

.footer-copy {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .nav-links {
    gap: 18px;
    font-size: 0.9rem;
  }

  .specialty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 80px 16px auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 12px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: var(--surface-strong);
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .mission-grid,
  .faq-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .module-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .module-row.reverse .module-text {
    order: 0;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-grid > div:nth-child(3),
  .trust-strip-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .trust-strip-grid > div:nth-child(3) {
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .specialty-grid,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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