:root {
  --deep-navy: #16324f;
  --navy-950: #071f38;
  --childcare-teal: #21b7c7;
  --teal-700: #128f9b;
  --warm-coral: #ff7a5a;
  --warm-white: #fafaf8;
  --teal-tint: #e9f8fa;
  --coral-tint: #fff0eb;
  --navy-tint: #edf3f8;
  --soft-white: #ffffff;
  --charcoal: #404040;
  --muted: #697a8d;
  --muted-2: #8491a0;
  --hairline: rgba(22, 50, 79, 0.08);
  --shadow-soft: 0 20px 60px rgba(22, 50, 79, 0.08);
  --shadow-hover: 0 24px 62px rgba(22, 50, 79, 0.12);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: linear-gradient(180deg, var(--warm-white) 0%, #f6fbfc 42%, var(--warm-white) 100%);
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

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

:focus-visible {
  outline: 3px solid rgba(33, 183, 199, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--soft-white);
  background: var(--deep-navy);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 98px;
  padding: 14px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(250, 250, 248, 0.93);
  box-shadow: 0 1px 0 rgba(22, 50, 79, 0.06), 0 16px 48px rgba(22, 50, 79, 0.045);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 286px;
  width: 286px;
  height: 76px;
  background: url("assets/childcare-accountants-logo-lockup.png") left center / contain no-repeat;
  color: var(--deep-navy);
}

.brand-mark,
.brand-text {
  display: none;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex: 1;
  color: rgba(22, 50, 79, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.nav a,
.header-cta,
.button,
.contact-card button {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav a:hover {
  color: var(--deep-navy);
}

.nav a {
  position: relative;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: var(--warm-coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a[aria-current="page"] {
  color: var(--deep-navy);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta,
.button,
.contact-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  padding-inline: 18px;
  font-size: 13.5px;
}

.header-cta,
.button.primary,
.contact-card button {
  border: 1px solid var(--deep-navy);
  color: var(--soft-white);
  background: var(--deep-navy);
  box-shadow: 0 12px 30px rgba(22, 50, 79, 0.16);
}

.header-cta:hover,
.button.primary:hover,
.contact-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(22, 50, 79, 0.22);
}

.button.secondary {
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.18);
  border: 0;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.92);
}

.button.secondary:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.32), 0 14px 34px rgba(22, 50, 79, 0.12);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 98px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal-tint);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  background:
    radial-gradient(circle at 17% 32%, rgba(33, 183, 199, 0.2) 0%, rgba(33, 183, 199, 0) 34%),
    linear-gradient(90deg, rgba(250, 250, 248, 0.98) 0%, rgba(250, 250, 248, 0.92) 36%, rgba(250, 250, 248, 0.54) 60%, rgba(250, 250, 248, 0.06) 100%),
    linear-gradient(0deg, rgba(255, 122, 90, 0.08), rgba(250, 250, 248, 0.01));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  padding: 92px 0 104px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--deep-navy);
  background: rgba(33, 183, 199, 0.14);
  letter-spacing: 0.14em;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 999px;
  background: var(--warm-coral);
}

.hero h1,
.section-heading h2,
.section-copy h2,
.insight-copy h2,
.proof-top h2,
.contact-copy h2 {
  margin: 0;
  color: var(--deep-navy);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(48px, 5.9vw, 82px);
  line-height: 1;
  font-weight: 800;
}

.hero h1 span {
  position: relative;
  color: var(--teal-700);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0.03em;
  right: 0.03em;
  bottom: 0.05em;
  z-index: -1;
  height: 0.18em;
  border-radius: 999px;
  background: rgba(255, 122, 90, 0.26);
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(64, 64, 64, 0.86);
  font-size: 20px;
  line-height: 1.58;
  font-weight: 500;
}

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

.button {
  min-width: 156px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof span,
.logo-strip span,
.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(22, 50, 79, 0.055);
  font-size: 13px;
  font-weight: 800;
}

.hero-proof span {
  min-height: 34px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.7);
}

.logo-strip {
  padding: 24px 0;
  background: var(--deep-navy);
  box-shadow: 0 1px 0 rgba(22, 50, 79, 0.06), 0 -1px 0 rgba(22, 50, 79, 0.04);
}

.logo-strip span {
  color: var(--soft-white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.logo-strip span:nth-child(2),
.logo-strip span:nth-child(4) {
  color: #dffbff;
  background: rgba(33, 183, 199, 0.15);
}

.logo-strip span:nth-child(5) {
  color: #fff0eb;
  background: rgba(255, 122, 90, 0.15);
}

.logo-strip .aat-strip-logo {
  width: 168px;
  max-width: 100%;
  height: auto;
  align-self: center;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.section {
  padding: 108px 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0;
  color: var(--soft-white);
  background:
    radial-gradient(circle at 84% 20%, rgba(33, 183, 199, 0.22), rgba(33, 183, 199, 0) 28%),
    linear-gradient(135deg, #071c30 0%, var(--deep-navy) 62%, #203f60 100%),
    var(--deep-navy);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--childcare-teal), var(--warm-coral));
  z-index: -1;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(16px, 9vw, 150px);
  width: clamp(90px, 14vw, 220px);
  height: 100%;
  background:
    linear-gradient(180deg, rgba(33, 183, 199, 0.12), rgba(33, 183, 199, 0)),
    linear-gradient(90deg, rgba(255, 122, 90, 0.2), rgba(255, 122, 90, 0));
  transform: skewX(-12deg);
  opacity: 0.72;
  z-index: -1;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.narrow {
  max-width: 860px;
}

.page-hero h1 {
  margin: 0;
  color: var(--soft-white);
  font-size: clamp(48px, 5.4vw, 80px);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.62;
}

.page-hero .eyebrow {
  padding: 0;
  border-radius: 0;
  color: #a8f4fb;
  background: transparent;
  box-shadow: none;
}

.page-hero .eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--warm-coral);
}

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

.page-hero .holding-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--soft-white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.page-hero .holding-actions .button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.14);
}

.error-page {
  padding: clamp(72px, 9vw, 128px) 0;
  background:
    linear-gradient(180deg, rgba(33, 183, 199, 0.08), rgba(33, 183, 199, 0)),
    var(--warm-white);
}

.error-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.error-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: 0;
}

.error-copy p:not(.section-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.68;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.error-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(30px, 4vw, 44px);
  border-radius: var(--radius-lg);
  color: var(--soft-white);
  background:
    radial-gradient(circle at 88% 18%, rgba(33, 183, 199, 0.2), rgba(33, 183, 199, 0) 34%),
    linear-gradient(145deg, #071c30, var(--deep-navy) 74%, #25425e);
  box-shadow: var(--shadow-soft);
}

.error-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--childcare-teal), var(--warm-coral));
}

.error-card span {
  display: block;
  margin-bottom: 28px;
  color: #a8f4fb;
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 800;
  line-height: 0.9;
}

.error-card h2 {
  max-width: 360px;
  margin: 0 0 24px;
  color: var(--soft-white);
  font-size: 28px;
  line-height: 1.2;
}

.error-card a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: var(--soft-white);
  font-weight: 800;
  text-decoration: none;
}

.error-card a:hover {
  color: #a8f4fb;
}

.split,
.insight-grid,
.proof-top,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 88px;
  align-items: start;
}

.opening {
  background: var(--warm-white);
}

.section-copy h2,
.section-heading h2,
.insight-copy h2,
.proof-top h2,
.contact-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 800;
}

.opening-panel {
  display: grid;
  gap: 24px;
  padding: 10px 0 0;
}

.opening-panel p,
.section-heading p,
.insight-copy p,
.proof-top > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.section-prompt {
  margin: 22px 0 0;
  color: var(--teal-700);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 56px;
}

.section-heading p {
  max-width: 680px;
  margin-top: 22px;
}

.services {
  background: linear-gradient(180deg, var(--soft-white) 0%, #f4fbfc 100%);
}

.service-catalog-section,
.audience-catalog-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(33, 183, 199, 0.13) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, var(--warm-white) 0%, #effbfc 46%, #fff7f3 100%);
  background-size: 84px 100%, auto;
}

.service-catalog-section::before,
.audience-catalog-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: linear-gradient(90deg, var(--childcare-teal), var(--warm-coral));
}

.service-catalog-section .container,
.audience-catalog-section .container {
  position: relative;
}

.service-catalog-shell {
  display: grid;
  gap: 42px;
}

.service-group {
  display: grid;
  gap: 30px;
  padding: 42px;
  border-radius: calc(var(--radius-md) + 4px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(22, 50, 79, 0.08);
}

.service-group-featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(33, 183, 199, 0.14), rgba(33, 183, 199, 0) 34%),
    rgba(255, 255, 255, 0.84);
}

.service-group-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 920px;
}

.service-group-intro span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--deep-navy);
  background: var(--teal-tint);
  font-size: 14px;
  font-weight: 800;
}

.service-group:nth-of-type(odd) .service-group-intro span {
  background: var(--coral-tint);
}

.service-group-intro h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.service-group-intro p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.mini-grid,
.problem-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.problem-grid,
.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-grid article,
.mini-grid .audience-tile,
.problem-grid article,
.category-grid article,
.service-detail-grid article,
.audience-list article {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--soft-white);
  box-shadow: 0 14px 38px rgba(22, 50, 79, 0.055);
}

.mini-grid .audience-tile {
  color: inherit;
  text-decoration: none;
  transform: translateY(0) scale(1);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.mini-grid .audience-tile:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 22px 54px rgba(22, 50, 79, 0.12);
  background: #ffffff;
}

.mini-grid .audience-tile:focus-visible {
  outline: 3px solid rgba(33, 183, 199, 0.45);
  outline-offset: 4px;
}

.mini-grid article::before,
.mini-grid .audience-tile::before,
.problem-grid article::before,
.category-grid article::before,
.service-detail-grid article::before,
.audience-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--childcare-teal);
}

.mini-grid article:nth-child(3n)::before,
.mini-grid .audience-tile:nth-child(3n)::before,
.problem-grid article:nth-child(3n)::before,
.category-grid article:nth-child(3n)::before,
.service-detail-grid article:nth-child(3n)::before,
.audience-list article:nth-child(3n)::before {
  background: var(--warm-coral);
}

.mini-grid article:nth-child(3n + 2)::before,
.mini-grid .audience-tile:nth-child(3n + 2)::before,
.problem-grid article:nth-child(3n + 2)::before,
.category-grid article:nth-child(3n + 2)::before,
.service-detail-grid article:nth-child(3n + 2)::before,
.audience-list article:nth-child(3n + 2)::before {
  background: var(--deep-navy);
}

.services .mini-grid article,
.services .mini-grid .audience-tile,
.services .problem-grid article,
.services .category-grid article,
.services .service-detail-grid article,
.services .audience-list article {
  background: rgba(255, 255, 255, 0.86);
}

.mini-grid h3,
.mini-grid .audience-tile h3,
.problem-grid h3,
.category-grid h3,
.service-detail-grid h2,
.service-detail-grid h3,
.audience-list h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: 21px;
  line-height: 1.2;
}

.mini-grid p,
.mini-grid .audience-tile p,
.problem-grid p,
.category-grid p,
.service-detail-grid p,
.audience-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.62;
}

.service-detail-grid,
.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-catalog-section .service-detail-grid {
  counter-reset: service-card;
  gap: 18px;
}

.service-group .service-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-catalog-section .service-detail-grid article,
.audience-catalog-section .audience-list article {
  isolation: isolate;
  padding: 26px;
  border: 1px solid rgba(22, 50, 79, 0.05);
  box-shadow: 0 16px 42px rgba(22, 50, 79, 0.06);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.service-catalog-section .service-detail-grid article {
  counter-increment: service-card;
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88)),
    var(--soft-white);
}

.service-catalog-section .service-detail-grid article:nth-child(4n + 2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 252, 254, 0.92)),
    #eafafb;
}

.service-catalog-section .service-detail-grid article:nth-child(4n + 3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 241, 0.94)),
    #fff5ef;
}

.service-catalog-section .service-detail-grid h2,
.service-catalog-section .service-detail-grid h3,
.service-catalog-section .service-detail-grid p {
  position: relative;
  z-index: 1;
}

.service-detail-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-catalog-section .service-detail-grid article:hover,
.audience-catalog-section .audience-list article:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 72px rgba(22, 50, 79, 0.13);
}

.service-detail-grid p strong,
.audience-list p strong {
  display: inline-flex;
  align-items: center;
  margin: 0 6px 5px 0;
  padding: 3px 9px;
  border-radius: 999px;
  color: #107e8b;
  background: rgba(33, 183, 199, 0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.audience-catalog-section .audience-list {
  counter-reset: audience-card;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.audience-catalog-section .audience-list article {
  counter-increment: audience-card;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
    #ffffff;
}

.audience-catalog-section .audience-list article:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 251, 253, 0.94)),
    #effcfd;
}

.audience-catalog-section .audience-list article:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 242, 0.94)),
    #fff5ef;
}

.audience-catalog-section .audience-list article::after {
  content: counter(audience-card, decimal-leading-zero);
  margin-top: auto;
  padding-top: 26px;
  color: rgba(22, 50, 79, 0.16);
  font-size: 46px;
  font-weight: 800;
  line-height: 0.9;
}

.audience-catalog-section .audience-list h2 {
  max-width: 8.5em;
  font-size: clamp(24px, 2vw, 30px);
}

.audience-catalog-section .audience-list p {
  border-top: 1px solid rgba(22, 50, 79, 0.07);
  padding-top: 16px;
}

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

.service-list a,
.service-list span {
  display: block;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  color: var(--deep-navy);
  background: var(--soft-white);
  box-shadow: 0 10px 28px rgba(22, 50, 79, 0.05);
  font-weight: 800;
}

.service-list a {
  position: relative;
  text-decoration: none;
  transform: translateY(0) scale(1);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.service-list a:hover {
  transform: translateY(-3px) scale(1.018);
  box-shadow: 0 18px 44px rgba(22, 50, 79, 0.12);
}

.service-list a:focus-visible {
  outline: 3px solid rgba(33, 183, 199, 0.45);
  outline-offset: 4px;
}

.values-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.values-grid article {
  grid-column: span 2;
  min-height: 260px;
  padding: 34px;
}

.values-grid article:nth-child(4),
.values-grid article:nth-child(5) {
  grid-column: span 3;
}

.values-grid h3 {
  font-size: clamp(24px, 2vw, 30px);
}

.values-grid p {
  font-size: 16px;
  line-height: 1.68;
}

.about-founder-section {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--coral-tint) 100%);
}

.about-founder-card {
  align-items: stretch;
}

.about-founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-founder-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--deep-navy);
  background: var(--teal-tint);
  font-size: 13px;
  font-weight: 800;
}

.about-founder-points span:nth-child(2) {
  background: var(--coral-tint);
}

.about-values-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(33, 183, 199, 0.13), rgba(33, 183, 199, 0) 28%),
    linear-gradient(180deg, var(--soft-white) 0%, #f2fbfc 100%);
}

.about-values-shell {
  display: grid;
  gap: 42px;
}

.values-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.values-feature-grid article {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  min-height: 280px;
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--soft-white);
  box-shadow: 0 18px 50px rgba(22, 50, 79, 0.07);
}

.values-feature-grid article:nth-child(4),
.values-feature-grid article:nth-child(5) {
  grid-column: span 3;
  min-height: 238px;
}

.values-feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--childcare-teal);
}

.values-feature-grid article:nth-child(2n)::before {
  background: var(--warm-coral);
}

.values-feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-tint);
  font-size: 13px;
  font-weight: 800;
}

.values-feature-grid h3 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.14;
}

.values-feature-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.credential-section {
  background: linear-gradient(180deg, #f2fbfc 0%, var(--soft-white) 100%);
}

.credential-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 58px;
  align-items: center;
  padding: 46px;
  border-radius: calc(var(--radius-md) + 4px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 90, 0.1), rgba(255, 122, 90, 0) 30%),
    var(--deep-navy);
  box-shadow: 0 26px 74px rgba(22, 50, 79, 0.16);
}

.credential-intro h2 {
  margin: 0;
  color: var(--soft-white);
}

.credential-intro p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.credential-panel {
  display: grid;
  gap: 22px;
}

.credential-section .credential-logo-panel {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.credential-list span {
  padding: 15px 16px;
  border-radius: var(--radius-sm);
  color: var(--soft-white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.credential-list span:nth-child(odd) {
  background: rgba(33, 183, 199, 0.14);
}

.about-faq-section {
  background:
    linear-gradient(180deg, var(--soft-white) 0%, var(--warm-white) 100%);
}

.service-list a:nth-child(odd),
.service-list span:nth-child(odd) {
  background: var(--teal-tint);
}

.service-list a:nth-child(3n),
.service-list span:nth-child(3n) {
  background: var(--coral-tint);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--teal-700);
  font-weight: 800;
}

.placeholder-note {
  color: var(--muted);
  font-style: normal;
}

.placeholder-card {
  background: var(--warm-white);
}

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

.faq-list details {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--soft-white), #f6fcfd);
  box-shadow: 0 12px 34px rgba(22, 50, 79, 0.055);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover,
.faq-list details:focus-within {
  background: linear-gradient(135deg, #e8fbfd, #fff5ef);
  box-shadow: 0 18px 44px rgba(22, 50, 79, 0.09);
  transform: translateY(-2px);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  color: var(--deep-navy);
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.resource-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-bottom: 32px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-tint), var(--warm-white) 72%);
  box-shadow: 0 16px 44px rgba(22, 50, 79, 0.06);
}

.resource-feature h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.08;
}

.resource-feature p:not(.section-kicker) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.tools-section {
  background: linear-gradient(180deg, var(--warm-white) 0%, #eefbfc 100%);
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--deep-navy);
  background: var(--soft-white);
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.1), 0 12px 34px rgba(22, 50, 79, 0.06);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.tool-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 3;
  min-height: 360px;
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--soft-white);
  box-shadow: 0 18px 50px rgba(22, 50, 79, 0.075);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tool-card:hover,
.tool-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--childcare-teal);
}

.tool-card:nth-child(3n)::before {
  background: var(--warm-coral);
}

.tool-card-featured {
  grid-column: span 6;
  min-height: 310px;
  display: grid;
  grid-template-columns: auto minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 30px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 90, 0.12), rgba(255, 122, 90, 0) 32%),
    linear-gradient(135deg, var(--deep-navy), #0a2744);
}

.tool-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-tint);
  font-size: 13px;
  font-weight: 800;
}

.tool-card-featured .tool-number {
  margin-bottom: 0;
  color: var(--soft-white);
  background: rgba(255, 255, 255, 0.12);
}

.tool-card h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.12;
}

.tool-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.tool-card-featured h2,
.tool-card-featured p {
  color: var(--soft-white);
}

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

.tool-note {
  display: grid;
  gap: 9px;
  margin-top: 34px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal-tint), var(--warm-white));
}

.tool-card:nth-child(3n) .tool-note {
  background: linear-gradient(135deg, var(--coral-tint), var(--warm-white));
}

.tool-card-featured .tool-note {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.tool-note strong {
  color: var(--deep-navy);
  line-height: 1.35;
}

.tool-card-featured .tool-note strong {
  color: var(--soft-white);
}

.tool-note span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.tool-card-featured .tool-note span {
  color: rgba(255, 255, 255, 0.74);
}

.tool-note a {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: var(--teal-700);
  font-weight: 800;
}

.tool-card-featured .tool-note a {
  color: #a9f4fb;
}

.tool-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--soft-white);
  background: var(--deep-navy);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tool-card-featured .tool-open {
  color: var(--deep-navy);
  background: var(--soft-white);
}

.tool-open:hover,
.tool-open:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(22, 50, 79, 0.18);
}

.has-tool-modal {
  overflow: hidden;
}

.tool-modal[hidden] {
  display: none;
}

.tool-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
}

.tool-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 56, 0.62);
  backdrop-filter: blur(10px);
}

.tool-modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  overflow: auto;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--soft-white);
  box-shadow: 0 34px 100px rgba(7, 31, 56, 0.28);
}

.tool-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  color: var(--deep-navy);
  background: var(--teal-tint);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.tool-modal-panel h2 {
  margin: 0;
  padding-right: 72px;
  color: var(--deep-navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.tool-modal-panel > p:not(.section-kicker):not(.tool-disclaimer) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.tool-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.tool-form label {
  display: grid;
  gap: 8px;
  color: var(--deep-navy);
  font-size: 14px;
  font-weight: 800;
}

.tool-form input,
.tool-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(22, 50, 79, 0.12);
  border-radius: var(--radius-sm);
  color: var(--deep-navy);
  background: var(--warm-white);
  outline: none;
}

.tool-form input:focus,
.tool-form select:focus {
  border-color: rgba(33, 183, 199, 0.7);
  box-shadow: 0 0 0 4px rgba(33, 183, 199, 0.12);
}

.tool-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1 / -1;
  margin-top: 6px;
}

.tool-result {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal-tint), var(--warm-white));
}

.tool-result[hidden] {
  display: none;
}

.tool-result h3 {
  margin: 0 0 8px;
  color: var(--deep-navy);
  font-size: 24px;
  line-height: 1.22;
}

.tool-result-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(22, 50, 79, 0.08);
  color: var(--muted);
}

.tool-result-row strong {
  color: var(--deep-navy);
  white-space: nowrap;
}

.tool-result p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.tool-disclaimer {
  margin: 20px 0 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.55;
}

.guides-section {
  background: linear-gradient(180deg, #eefbfc 0%, var(--warm-white) 100%);
}

.guides-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 58px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background: var(--soft-white);
  box-shadow: 0 20px 58px rgba(22, 50, 79, 0.07);
}

.guides-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guides-list span {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 18px;
  border-radius: var(--radius-sm);
  color: var(--deep-navy);
  background: var(--teal-tint);
  font-weight: 800;
}

.guides-list span:nth-child(2n) {
  background: var(--coral-tint);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.credential-card,
.testimonial-card,
.contact-card,
.metric-panel,
.pricing-card,
.founder-card {
  border-radius: var(--radius-md);
  background: var(--soft-white);
  box-shadow: 0 18px 50px rgba(22, 50, 79, 0.075);
}

.service-card,
.credential-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.founder-section {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--coral-tint) 100%);
}

.founder-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 58px;
  align-items: center;
  padding: 42px;
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 90, 0.1);
  pointer-events: none;
}

.founder-card h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.founder-card h2 span {
  white-space: nowrap;
}

.founder-card p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.founder-photo {
  margin: 0;
  height: clamp(340px, 32vw, 430px);
  min-height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--warm-white);
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.08);
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 44% 24%;
}

.pricing-section {
  background: linear-gradient(180deg, var(--soft-white) 0%, var(--teal-tint) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 36px 34px 38px;
}

.pricing-card::before,
.testimonial-card::before,
.credential-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--childcare-teal);
}

.pricing-card:nth-child(3n)::before,
.testimonial-card:nth-child(2n)::before,
.credential-card:nth-child(2n)::before {
  background: var(--warm-coral);
}

.pricing-card.featured {
  background:
    radial-gradient(circle at 88% 8%, rgba(33, 183, 199, 0.24), rgba(33, 183, 199, 0) 36%),
    var(--deep-navy);
  color: var(--soft-white);
  box-shadow: 0 24px 64px rgba(22, 50, 79, 0.16);
}

.pricing-card span {
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-card.featured span {
  color: #aef4fb;
}

.pricing-card h3 {
  margin: 18px 0 0;
  color: var(--deep-navy);
  font-size: 30px;
  line-height: 1.12;
}

.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured li {
  color: var(--soft-white);
}

.pricing-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 28px 0 34px;
  list-style: none;
}

.pricing-card li {
  color: var(--deep-navy);
  font-weight: 700;
  line-height: 1.38;
}

.pricing-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--childcare-teal);
}

.pricing-card:nth-child(1) li::before {
  background: var(--warm-coral);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 12px;
  color: var(--soft-white);
  background: var(--deep-navy);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(22, 50, 79, 0.16);
}

.pricing-card.featured .pricing-cta {
  color: var(--deep-navy);
  background: var(--soft-white);
}

.pricing-note {
  max-width: 780px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-card {
  min-height: 282px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  box-shadow: 0 16px 44px rgba(22, 50, 79, 0.065);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card h3 {
  max-width: 250px;
}

.service-card p {
  margin-top: auto;
  padding-top: 18px;
}

@media (hover: hover) {
  .service-card:hover,
  .credential-card:hover,
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 14px;
  color: var(--teal-700);
  background: var(--teal-tint);
}

.service-card:nth-child(3n) .service-icon {
  color: #c74d32;
  background: var(--coral-tint);
}

.service-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.process-grid h3 {
  margin: 0;
  color: var(--deep-navy);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
}

.service-card p,
.process-grid p,
.credential-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.64;
}

.insight-section {
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--navy-tint) 100%);
}

.support-section {
  background:
    linear-gradient(180deg, var(--warm-white) 0%, var(--soft-white) 44%, var(--teal-tint) 100%);
}

.support-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 52px;
  align-items: start;
}

.support-intro {
  position: sticky;
  top: 132px;
}

.support-intro h2 {
  max-width: 620px;
}

.support-intro > p:not(.section-kicker) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.support-grid {
  display: grid;
  gap: 18px;
}

.support-grid article {
  position: relative;
  overflow: hidden;
  padding: 34px 36px;
  border-radius: var(--radius-md);
  background: var(--soft-white);
  box-shadow: 0 20px 55px rgba(22, 50, 79, 0.08);
}

.support-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--childcare-teal);
}

.support-grid article:nth-child(2)::before {
  background: var(--warm-coral);
}

.support-grid span {
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-grid h3 {
  margin: 12px 0 0;
  color: var(--deep-navy);
  font-size: 24px;
  line-height: 1.18;
}

.support-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.metric-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--deep-navy);
  box-shadow: 0 22px 56px rgba(22, 50, 79, 0.12);
}

.metric-panel div {
  padding: 32px 38px;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.12) inset;
}

.metric-panel div:last-child {
  box-shadow: none;
}

.metric-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--childcare-teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-panel strong {
  color: var(--soft-white);
  font-size: 26px;
  line-height: 1.2;
}

.proof-section {
  background: var(--soft-white);
}

.proof-top {
  margin-bottom: 42px;
  align-items: end;
}

.proof-top > p {
  max-width: 500px;
}

.credential-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.credential-card {
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.credential-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 42px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--soft-white);
  background: var(--deep-navy);
  font-weight: 800;
}

.credential-card:nth-child(2) span {
  background: var(--childcare-teal);
}

.credential-card:nth-child(3) span {
  background: var(--warm-coral);
}

.credential-card strong {
  display: block;
  color: var(--deep-navy);
  font-size: 21px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.testimonial-card {
  padding: 36px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stars {
  color: var(--warm-coral);
  font-size: 15px;
  letter-spacing: 0.08em;
}

blockquote {
  margin: 20px 0 26px;
  color: var(--deep-navy);
  font-size: 22px;
  line-height: 1.42;
  font-weight: 700;
}

.testimonial-card p {
  margin: 0;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--deep-navy);
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--muted);
}

.process-section {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--coral-tint) 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.process-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  padding: 30px 0 0;
  box-shadow: 0 -2px 0 rgba(33, 183, 199, 0.26);
}

.process-grid article:nth-child(even) {
  box-shadow: 0 -2px 0 rgba(255, 122, 90, 0.34);
}

.process-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--warm-coral);
  font-size: 18px;
  font-weight: 800;
}

.contact-section {
  background: linear-gradient(180deg, var(--soft-white), var(--navy-tint));
}

.contact-shell {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 4.2vw, 52px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 122, 90, 0.16), rgba(255, 122, 90, 0) 30%),
    linear-gradient(135deg, var(--deep-navy), var(--navy-950));
  box-shadow: 0 26px 70px rgba(22, 50, 79, 0.16);
}

.contact-shell .contact-copy {
  max-width: 760px;
}

.contact-shell .contact-copy h2 {
  max-width: 680px;
  font-size: clamp(34px, 4.2vw, 64px);
}

.contact-shell .cta-actions {
  justify-self: stretch;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.contact-shell .cta-actions .button {
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
}

.contact-section#enquiry .contact-shell {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.contact-section#enquiry .contact-card {
  width: 100%;
}

.contact-section#enquiry .contact-copy h2 {
  max-width: 820px;
  font-size: clamp(44px, 3.9vw, 80px);
  line-height: 1.05;
}

.contact-shell .section-kicker,
.contact-shell h2,
.contact-shell p {
  color: var(--soft-white);
}

.contact-shell .section-kicker {
  color: #aef4fb;
}

.contact-shell .cta-actions .button.primary,
.contact-shell .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--soft-white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.contact-shell .cta-actions .button.primary:hover,
.contact-shell .button.secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.contact-copy > p {
  max-width: 620px;
  margin-top: 22px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-points span {
  color: var(--soft-white);
  background: rgba(255, 255, 255, 0.1);
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 32px;
}

.contact-card label {
  display: grid;
  gap: 9px;
  color: var(--deep-navy);
  font-size: 14px;
  font-weight: 800;
}

.required-mark {
  color: #d94b32;
  font-weight: 900;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 14px 15px;
  color: var(--charcoal);
  background: var(--warm-white);
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.1);
}

.contact-card label.is-invalid input,
.contact-card label.is-invalid select,
.contact-card label.is-invalid textarea,
.checkbox-group.is-invalid {
  box-shadow: inset 0 0 0 2px rgba(217, 75, 50, 0.74);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(250, 250, 248, 0.82);
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.1);
}

.checkbox-group legend {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  padding: 0;
  color: var(--deep-navy);
  font-size: 14px;
  font-weight: 800;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.checkbox-group label:hover {
  color: var(--deep-navy);
  background: rgba(232, 251, 253, 0.92);
  box-shadow: inset 0 0 0 1px rgba(33, 183, 199, 0.22);
}

.checkbox-group input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--teal);
  box-shadow: none;
}

.contact-copy a {
  color: var(--deep-navy);
  font-weight: 800;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus,
.checkbox-group input:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(33, 183, 199, 0.56);
  outline: none;
}

.contact-card textarea {
  resize: vertical;
}

.contact-card button {
  min-height: 52px;
}

.contact-card button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.quote-page {
  padding: clamp(54px, 7vw, 92px) 0;
  background:
    linear-gradient(90deg, rgba(33, 183, 199, 0.1) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, var(--warm-white) 0%, #effbfc 52%, #fff6f0 100%);
  background-size: 88px 100%, auto;
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 126px;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--soft-white);
  background:
    linear-gradient(145deg, rgba(22, 50, 79, 0.96), rgba(7, 31, 56, 0.98)),
    var(--deep-navy);
  box-shadow: 0 24px 70px rgba(22, 50, 79, 0.16);
}

.quote-intro .section-kicker {
  color: #aef4fb;
}

.quote-intro h1 {
  max-width: 540px;
  margin: 0;
  color: var(--soft-white);
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: 1.02;
}

.quote-intro p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.68;
}

.quote-card {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 72px rgba(22, 50, 79, 0.12);
}

.quote-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.quote-progress::before {
  content: "";
  position: absolute;
  left: calc(16.666% + 20px);
  right: calc(16.666% + 20px);
  top: 21px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--childcare-teal) var(--quote-progress, 0%), rgba(22, 50, 79, 0.12) 0);
}

.quote-progress li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.quote-progress span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--warm-white);
  box-shadow: inset 0 0 0 2px rgba(22, 50, 79, 0.1);
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quote-progress li.is-active span,
.quote-progress li.is-complete span {
  color: var(--soft-white);
  background: var(--childcare-teal);
  box-shadow: 0 12px 28px rgba(33, 183, 199, 0.28);
}

.quote-progress li.is-complete span {
  background: var(--deep-navy);
}

.quote-progress li.is-active,
.quote-progress li.is-complete {
  color: var(--deep-navy);
}

.quote-card:has([data-step="1"].is-active) .quote-progress {
  --quote-progress: 0%;
}

.quote-card:has([data-step="2"].is-active) .quote-progress {
  --quote-progress: 50%;
}

.quote-card:has([data-step="3"].is-active) .quote-progress {
  --quote-progress: 100%;
}

.quote-step {
  display: none;
}

.quote-step.is-active {
  display: block;
}

.quote-step-heading {
  max-width: 680px;
  margin-bottom: 26px;
}

.quote-step-heading span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--warm-coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-step-heading h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.08;
}

.quote-step-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.quote-fields {
  display: grid;
  gap: 18px;
}

.quote-fields.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.phone-field {
  display: grid;
  gap: 9px;
}

.phone-combined {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: stretch;
  min-height: 54px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.12);
}

.phone-combined select,
.phone-combined input {
  min-height: 54px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone-combined select {
  border-right: 1px solid rgba(22, 50, 79, 0.1);
  color: var(--deep-navy);
  font-weight: 800;
}

.phone-combined:focus-within {
  box-shadow: inset 0 0 0 2px rgba(33, 183, 199, 0.56);
}

.quote-fields label,
.quote-services label {
  color: var(--deep-navy);
  font-size: 14px;
  font-weight: 800;
}

.quote-fields label {
  display: grid;
  gap: 9px;
}

.quote-fields label[hidden] {
  display: none;
}

.quote-fields input,
.quote-fields select {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 14px 15px;
  color: var(--charcoal);
  background: var(--warm-white);
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.12);
}

.quote-fields input:focus,
.quote-fields select:focus {
  box-shadow: inset 0 0 0 2px rgba(33, 183, 199, 0.56);
  outline: none;
}

.quote-fields .phone-combined select,
.quote-fields .phone-combined input {
  min-height: 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quote-fields .phone-combined select {
  width: 82px;
  border-right: 1px solid rgba(22, 50, 79, 0.1);
  color: var(--deep-navy);
  font-weight: 800;
  padding-inline: 13px 22px;
}

.phone-combined input:focus,
.phone-combined select:focus {
  box-shadow: none;
}

.quote-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-services legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--deep-navy);
  font-size: 15px;
  font-weight: 800;
}

.quote-services label {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 14px 15px;
  border-radius: var(--radius-sm);
  background: rgba(250, 250, 248, 0.86);
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.1);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.quote-services label[hidden] {
  display: none;
}

.quote-services label:hover {
  color: var(--deep-navy);
  background: #effcfd;
  box-shadow: inset 0 0 0 1px rgba(33, 183, 199, 0.28), 0 12px 30px rgba(22, 50, 79, 0.06);
  transform: translateY(-1px);
}

.quote-services input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--childcare-teal);
}

.quote-service-followups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.service-followup {
  display: grid;
  gap: 9px;
  padding: 18px;
  border-radius: var(--radius-sm);
  color: var(--deep-navy);
  background: rgba(232, 251, 253, 0.74);
  box-shadow: inset 0 0 0 1px rgba(33, 183, 199, 0.18);
  font-size: 14px;
  font-weight: 800;
}

.service-followup[hidden] {
  display: none;
}

.service-followup input,
.service-followup select {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--charcoal);
  background: var(--soft-white);
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.12);
}

.service-followup input:focus,
.service-followup select:focus {
  box-shadow: inset 0 0 0 2px rgba(33, 183, 199, 0.56);
  outline: none;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 0;
}

.quote-consent {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(22, 50, 79, 0.08);
}

.quote-actions .button {
  min-width: 150px;
  border: 0;
}

.quote-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.quote-card.has-result .quote-step[data-step="3"] .quote-step-heading,
.quote-card.has-result .quote-step[data-step="3"] .quote-services,
.quote-card.has-result .quote-step[data-step="3"] .quote-service-followups,
.quote-card.has-result .quote-consent,
.quote-card.has-result .quote-actions {
  display: none;
}

.quote-result {
  margin-top: 0;
  padding: 30px;
  border-radius: var(--radius-md);
  color: var(--soft-white);
  background: linear-gradient(135deg, var(--deep-navy), #123f56);
  box-shadow: 0 22px 58px rgba(22, 50, 79, 0.18);
}

.quote-result-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 22px;
}

.quote-result-top .button {
  min-height: 44px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--soft-white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.quote-result-top .button:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
}

.quote-result h2 {
  margin: 0;
  color: var(--soft-white);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
}

.quote-result p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.62;
}

.quote-result .section-kicker {
  color: #aef4fb;
}

.quote-breakdown {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.quote-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.quote-breakdown-row span {
  display: grid;
  gap: 3px;
}

.quote-breakdown-row strong,
.quote-breakdown-row b {
  color: var(--soft-white);
}

.quote-breakdown-row small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.4;
}

.quote-catchup-row {
  background: rgba(33, 183, 199, 0.18);
  box-shadow: inset 0 0 0 1px rgba(174, 244, 251, 0.24);
}

.quote-catchup-row b {
  color: #aef4fb;
}

.quote-breakdown-note {
  margin: 4px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.quote-note {
  font-size: 13px;
}

.quote-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.quote-result-actions[hidden] {
  display: none;
}

.quote-result .quote-signup-cta {
  color: var(--deep-navy);
  background: var(--childcare-teal);
  box-shadow: 0 18px 32px rgba(33, 183, 199, 0.26);
}

.quote-result .quote-signup-cta:hover {
  background: #35cddd;
  box-shadow: 0 22px 40px rgba(33, 183, 199, 0.34);
}

.quote-result.is-review-only .quote-result-actions {
  display: none;
}

.quote-result .button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--soft-white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.matrix-page {
  min-height: 70vh;
}

.matrix-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.matrix-login,
.matrix-editor {
  display: grid;
  gap: 22px;
}

.matrix-login[hidden],
.matrix-editor[hidden] {
  display: none;
}

.matrix-passcode {
  display: grid;
  gap: 9px;
  color: var(--deep-navy);
  font-size: 14px;
  font-weight: 800;
}

.matrix-passcode input,
.matrix-card input:not([type="checkbox"]),
.matrix-card select {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--charcoal);
  background: var(--warm-white);
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.12);
}

.matrix-passcode input:focus,
.matrix-card input:not([type="checkbox"]):focus,
.matrix-card select:focus {
  box-shadow: inset 0 0 0 2px rgba(33, 183, 199, 0.56);
  outline: none;
}

.matrix-editor-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.matrix-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.matrix-signout {
  border-color: rgba(255, 122, 90, 0.5);
  color: var(--deep-navy);
  background: rgba(255, 122, 90, 0.12);
}

.matrix-signout:hover {
  border-color: rgba(255, 122, 90, 0.72);
  background: rgba(255, 122, 90, 0.2);
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.matrix-card {
  display: grid;
  gap: 13px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(250, 250, 248, 0.86);
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.08), 0 14px 34px rgba(22, 50, 79, 0.06);
}

.matrix-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.matrix-card-wide h2,
.matrix-card-wide p {
  grid-column: 1 / -1;
}

.matrix-card h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: 20px;
  line-height: 1.15;
}

.matrix-card p {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.matrix-card label {
  display: grid;
  gap: 7px;
  color: var(--deep-navy);
  font-size: 13px;
  font-weight: 800;
}

.matrix-card .matrix-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border-radius: var(--radius-sm);
  background: rgba(232, 251, 253, 0.78);
  box-shadow: inset 0 0 0 1px rgba(33, 183, 199, 0.18);
}

.matrix-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--childcare-teal);
}

.matrix-check span {
  line-height: 1.35;
}

.matrix-message {
  min-height: 24px;
  margin: 0;
  color: var(--childcare-teal);
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 12% 18%, rgba(33, 183, 199, 0.18), rgba(33, 183, 199, 0) 30%),
    linear-gradient(135deg, var(--deep-navy), var(--navy-950));
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--childcare-teal), var(--warm-coral));
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.22fr) minmax(150px, 0.58fr) minmax(170px, 0.68fr) minmax(320px, 1.08fr);
  gap: 62px;
  align-items: start;
}

.footer-brand-panel {
  max-width: 440px;
  margin-left: -18px;
}

.footer-brand {
  min-width: 380px;
  width: 380px;
  height: 126px;
  margin-bottom: 24px;
  border-radius: 0;
  background: url("assets/childcare-accountants-logo-footer.png") -60px center / 416px auto no-repeat;
  box-shadow: none;
}

.footer-brand-panel p,
.footer-column p,
.footer-bottom p {
  margin: 0;
  line-height: 1.62;
}

.footer-brand-panel p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.footer-credentials {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  margin-left: -10px;
}

.footer-aat-logo {
  width: min(190px, 100%);
  height: auto;
}

.footer-credentials p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.credential-logo-panel {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--deep-navy), var(--navy-950));
  box-shadow: 0 18px 46px rgba(22, 50, 79, 0.14);
}

.credential-logo-panel img {
  width: min(190px, 100%);
  height: auto;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--soft-white);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--soft-white);
  transform: translateX(3px);
}

.footer-contact {
  gap: 18px;
  padding: 34px 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.footer-contact a:not(.footer-cta) {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 10px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  color: var(--deep-navy) !important;
  background: var(--soft-white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  font-weight: 800;
}

.footer-cta:hover {
  transform: translateY(-2px) !important;
}

.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 58px;
  padding-top: 24px;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

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

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  width: 100%;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  transition: color 180ms ease;
}

.footer-legal-links a:hover {
  color: var(--soft-white);
}

.footer-company {
  flex-basis: 100%;
  max-width: 1080px;
}

.form-privacy-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.form-privacy-note a {
  color: var(--deep-navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.marketing-opt-in {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.marketing-opt-in input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--childcare-teal);
}

.form-status {
  min-height: 22px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status[data-tone="error"] {
  color: #b43722;
}

.form-status[data-tone="success"] {
  color: #087f8f;
}

.form-status[data-tone="neutral"] {
  color: var(--deep-navy);
}

.resource-disclaimer {
  max-width: 920px;
  margin: -16px auto 42px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  color: var(--muted);
  background: rgba(33, 183, 199, 0.08);
  box-shadow: inset 0 0 0 1px rgba(33, 183, 199, 0.12);
  font-size: 15px;
  line-height: 1.65;
}

.legal-page {
  padding: 76px 0 100px;
  background:
    radial-gradient(circle at 8% 12%, rgba(33, 183, 199, 0.12), transparent 28%),
    var(--warm-white);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.legal-intro {
  position: sticky;
  top: 110px;
}

.legal-intro h1 {
  margin: 18px 0 20px;
  color: var(--deep-navy);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-intro p {
  max-width: 440px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-card {
  display: grid;
  gap: 34px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 76px rgba(22, 50, 79, 0.11);
}

.legal-card section {
  display: grid;
  gap: 12px;
}

.legal-card h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-card p {
  margin: 0;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.reveal {
  animation: fadeUp 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px 24px;
    min-height: auto;
    padding: 16px 24px 18px;
  }

  .brand {
    flex: 1 1 300px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-top: 4px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(250, 250, 248, 0.98) 0%, rgba(250, 250, 248, 0.94) 54%, rgba(250, 250, 248, 0.5) 100%);
  }

  .hero-content {
    padding: 78px 0;
  }

  .split,
  .insight-grid,
  .proof-top,
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-shell .cta-actions {
    max-width: 520px;
  }

  .service-grid,
  .credential-row,
  .process-grid,
  .process-grid.four,
  .problem-grid,
  .category-grid,
  .service-group,
  .service-detail-grid,
  .service-detail-grid-three,
  .audience-list,
  .audience-catalog-section .audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-group {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .service-group .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-group-intro {
    position: static;
  }

  .mini-grid,
  .resource-feature {
    grid-template-columns: 1fr;
  }

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

  .values-grid article,
  .values-grid article:nth-child(4),
  .values-grid article:nth-child(5) {
    grid-column: auto;
  }

  .testimonial-grid,
  .pricing-grid,
  .credential-shell,
  .guides-shell {
    grid-template-columns: 1fr;
  }

  .tool-card,
  .tool-card-featured {
    grid-column: span 6;
  }

  .tool-card-featured {
    grid-template-columns: 1fr;
  }

  .values-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-feature-grid article,
  .values-feature-grid article:nth-child(4),
  .values-feature-grid article:nth-child(5) {
    grid-column: auto;
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quote-shell {
    grid-template-columns: 1fr;
  }

  .matrix-shell {
    grid-template-columns: 1fr;
  }

  .matrix-editor-head {
    display: grid;
  }

  .matrix-actions {
    justify-content: flex-start;
  }

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

  .matrix-card-wide {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    position: relative;
    top: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand-panel {
    max-width: 620px;
    margin-left: 0;
  }

  .footer-credentials {
    margin-left: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    position: static;
    gap: 14px 16px;
    padding: 14px 16px 15px;
  }

  .brand {
    min-width: 0;
    width: 246px;
    height: 66px;
    flex: 0 0 246px;
  }

  .footer-brand {
    min-width: 286px;
    width: 286px;
    height: 108px;
    flex: 0 0 286px;
    background-position: -42px center;
    background-size: 318px auto;
  }

  .brand-mark {
    display: none;
  }

  .brand-text {
    display: none;
  }

  .header-cta {
    order: 2;
    width: auto;
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .nav {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    gap: 10px 18px;
    font-size: 13px;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-image {
    object-position: 73% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(250, 250, 248, 0.96) 0%, rgba(250, 250, 248, 0.9) 58%, rgba(250, 250, 248, 0.68) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 56px 0 62px;
  }

  .hero h1 {
    color: var(--deep-navy);
    max-width: 350px;
    font-size: clamp(40px, 11.6vw, 52px);
    line-height: 1.02;
  }

  .hero-copy {
    color: rgba(64, 64, 64, 0.9);
  }

  .hero-copy,
  .opening-panel p,
  .section-heading p,
  .insight-copy p,
  .proof-top > p,
  .contact-copy > p {
    font-size: 18px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .service-grid,
  .credential-row,
  .process-grid,
  .process-grid.four,
  .mini-grid,
  .problem-grid,
  .support-shell,
  .category-grid,
  .service-group,
  .service-detail-grid,
  .service-detail-grid-three,
  .audience-list,
  .service-catalog-section .service-detail-grid,
  .audience-catalog-section .audience-list,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-catalog-shell {
    gap: 34px;
  }

  .service-group {
    padding: 24px;
    gap: 24px;
  }

  .service-group-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-group .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-catalog-section .service-detail-grid article,
  .audience-catalog-section .audience-list article {
    min-height: auto;
    padding: 28px;
  }

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

  .values-feature-grid,
  .credential-list {
    grid-template-columns: 1fr;
  }

  .values-feature-grid article {
    min-height: auto;
    padding: 26px;
  }

  .credential-shell {
    gap: 30px;
    padding: 28px;
  }

  .credential-panel {
    padding: 22px;
  }

  .support-intro {
    position: static;
  }

  .support-grid article {
    padding: 28px;
  }

  .service-card,
  .credential-card,
  .testimonial-card,
  .contact-card {
    padding: 26px;
  }

  .contact-shell {
    gap: 28px;
    padding: 28px;
  }

  .contact-shell .cta-actions {
    max-width: none;
    padding: 18px;
  }

  .contact-section#enquiry .contact-copy h2 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .quote-page {
    padding: 36px 0 58px;
  }

  .quote-card,
  .quote-intro {
    padding: 26px;
  }

  .quote-progress {
    gap: 8px;
  }

  .quote-progress strong {
    font-size: 12px;
  }

  .quote-fields.two-column,
  .quote-services,
  .quote-service-followups {
    grid-template-columns: 1fr;
  }

  .quote-actions {
    flex-direction: column-reverse;
  }

  .quote-actions .button,
  .quote-result-actions .button {
    width: 100%;
  }

  .quote-breakdown-row {
    display: grid;
  }

  .site-footer {
    padding: 58px 0 24px;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-contact {
    padding: 28px 24px;
  }

  .footer-bottom {
    margin-top: 38px;
  }

  .footer-legal-links {
    gap: 9px 14px;
  }

  .legal-page {
    padding: 44px 0 72px;
  }

  .legal-card {
    padding: 26px 22px;
  }

  .founder-card {
    padding: 26px;
  }

  .founder-photo {
    height: 320px;
  }

  .page-hero {
    padding: 70px 0 64px;
  }

  .page-hero::after {
    opacity: 0.34;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 18px;
  }

  .error-page {
    padding: 52px 0 72px;
  }

  .error-shell {
    grid-template-columns: 1fr;
  }

  .error-copy h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .error-card {
    min-height: auto;
  }

  .resource-feature {
    padding: 28px;
  }

  .resource-feature,
  .guides-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .coming-soon-pill {
    width: fit-content;
  }

  .tool-grid,
  .guides-list,
  .tool-form {
    grid-template-columns: 1fr;
  }

  .tool-card,
  .tool-card-featured {
    grid-column: auto;
    min-height: auto;
    padding: 28px;
  }

  .tool-note {
    margin-top: 28px;
  }

  .tool-modal {
    align-items: end;
    padding: 14px;
  }

  .tool-modal-panel {
    max-height: calc(100vh - 28px);
    padding: 30px 22px 24px;
    border-radius: 20px;
  }

  .tool-modal-panel h2 {
    padding-right: 58px;
  }

  .tool-form-actions .button {
    width: 100%;
  }

  .tool-result-row {
    display: grid;
    gap: 4px;
  }

  blockquote {
    font-size: 21px;
  }
}
