:root {
  --navy: #061d35;
  --teal: #00a8b5;
  --deep-teal: #087883;
  --soft-teal: #bff3f3;
  --coral-pink: #ff4f7b;
  --coral-deep: #f23e67;
  --soft-pink: #ffdce8;
  --peach: #ffe1c2;
  --soft-yellow: #ffe9a8;
  --lavender: #e2d4ff;
  --soft-blue: #d8eef8;
  --soft-mint: #d7f5e8;
  --white: #ffffff;
  --off-white: #f8fbff;
  --text-dark: #061d35;
  --text-muted: #4b6175;
  --shadow: 0 24px 55px rgba(6, 29, 53, 0.13);
  --shadow-soft: 0 16px 34px rgba(6, 29, 53, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-dark);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 56%, #ffffff 100%);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before,
body::after {
  content: none;
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.9;
}

body::before {
  width: 520px;
  height: 520px;
  right: -230px;
  top: 210px;
  background: radial-gradient(circle, rgba(255, 233, 168, 0.58), transparent 65%);
}

body::after {
  width: 470px;
  height: 470px;
  left: -210px;
  bottom: 60px;
  background: radial-gradient(circle, rgba(191, 243, 243, 0.72), transparent 64%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

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

.anchor-target {
  display: block;
  height: 0;
  visibility: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6, 29, 53, 0.06);
}

.header-inner {
  width: min(1240px, calc(100% - 28px));
  min-height: 96px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 278px;
}

.brand picture {
  display: block;
  width: 100%;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 1rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  padding: 8px 0;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button-primary {
  color: var(--white);
  background: #ff5a68;
  box-shadow: 0 14px 24px rgba(255, 90, 104, 0.22);
}

.button-secondary {
  color: var(--deep-teal);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(6, 29, 53, 0.08);
  box-shadow: var(--shadow-soft);
}

.button:hover,
.button:focus-visible,
.service-card:hover,
.process-step:hover {
  transform: translateY(-3px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.service-card a:focus-visible,
.contact-link:focus-visible {
  outline: 3px solid rgba(0, 168, 181, 0.45);
  outline-offset: 4px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 29, 53, 0.12);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(3) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  width: min(1280px, calc(100% - 64px));
  min-height: 610px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 64px;
  padding: 64px 0 58px;
}

.hero::before {
  content: none;
  position: absolute;
  left: -130px;
  bottom: 42px;
  width: 760px;
  height: 150px;
  border: 5px solid transparent;
  border-bottom-color: rgba(0, 168, 181, 0.53);
  border-radius: 50%;
  transform: rotate(-7deg);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-pink);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 500px;
  margin-bottom: 8px;
  font-size: 4.2rem;
  line-height: 0.97;
  font-weight: 900;
}

h1 span,
.script-note,
.confidence-note span,
.footer-inner h2 {
  font-family: "Caveat", "Segoe Print", cursive;
}

h1 span {
  display: block;
  max-width: 500px;
  margin-top: 14px;
  color: var(--coral-pink);
  font-size: 4.22rem;
  line-height: 0.86;
  font-weight: 600;
}

.marker-line {
  width: min(320px, 70%);
  height: 16px;
  margin: -2px 0 20px 12px;
  border-bottom: 7px solid var(--teal);
  border-radius: 0 0 70% 60%;
  transform: rotate(-3deg);
}

.hero-text {
  max-width: 475px;
  margin-bottom: 34px;
  color: var(--text-dark);
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-visual {
  position: relative;
  align-self: center;
  min-height: 0;
  aspect-ratio: 1.44;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  border-radius: 6px;
  filter: drop-shadow(0 22px 34px rgba(6, 29, 53, 0.035));
}

.hero-image-script {
  display: none;
}

.hero-line-icons {
  display: none;
}

.hero-line-icons::before,
.hero-line-icons::after {
  content: "";
  position: absolute;
  display: block;
  border-top: 2px dotted rgba(0, 168, 181, 0.35);
  border-left: 2px dotted rgba(0, 168, 181, 0.35);
}

.hero-line-icons::before {
  width: 125px;
  height: 92px;
  left: 104px;
  top: 86px;
}

.hero-line-icons::after {
  width: 90px;
  height: 88px;
  left: 212px;
  top: 132px;
  border-left: 0;
}

.hero-line-icons span {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid rgba(0, 168, 181, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--deep-teal);
  backdrop-filter: blur(2px);
}

.hero-line-icons svg {
  width: 58%;
  height: 58%;
  fill: currentColor;
}

.line-shield {
  width: 92px;
  height: 92px;
  left: 78px;
  top: 8px;
  border-radius: 30% 30% 45% 45% !important;
}

.line-wifi {
  width: 64px;
  height: 64px;
  left: 28px;
  top: 142px;
}

.line-lock {
  width: 72px;
  height: 72px;
  right: 42px;
  top: 130px;
  opacity: 0.5;
}

.float-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px 10px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(6, 29, 53, 0.12);
  animation: floaty 5.8s ease-in-out infinite;
}

.pill-one {
  left: 24px;
  top: 116px;
}

.pill-two {
  right: 58px;
  bottom: 112px;
  animation-delay: 800ms;
}

.pill-three {
  left: 80px;
  bottom: 60px;
  animation-delay: 1200ms;
}

.pill-four {
  right: 220px;
  top: 34px;
  animation-delay: 1600ms;
}

.mini-icon,
.benefit-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-weight: 900;
}

.mini-icon {
  width: 32px;
  height: 32px;
}

.teal {
  background: var(--soft-teal);
  color: var(--deep-teal);
}

.pink {
  background: var(--soft-pink);
  color: var(--coral-pink);
}

.peach {
  background: var(--peach);
  color: #bb6d18;
}

.yellow {
  background: var(--soft-yellow);
  color: #936400;
}

.lavender {
  background: var(--lavender);
  color: #6a43c4;
}

.benefit-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: min(1040px, calc(100% - 72px));
  margin-top: 2px;
  padding: 24px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
}

.benefit-bar article {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 9px;
  padding: 8px 13px;
  text-align: center;
}

.benefit-bar article + article {
  border-left: 1px solid rgba(6, 29, 53, 0.12);
}

.benefit-icon {
  width: 48px;
  height: 48px;
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.benefit-bar p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.15;
  font-weight: 900;
}

.review-scope,
.home-intro,
.credentials,
.parent-concerns,
.process,
.intake {
  padding: 106px 0 58px;
}

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

.section-heading h2,
.section-heading h1,
.reassurance h2,
.resource-card h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: 2.5rem;
  line-height: 1.05;
  font-weight: 900;
}

.home-intro {
  display: grid;
  grid-template-columns: 0.78fr 0.78fr 0.78fr 1.12fr;
  gap: 34px;
  align-items: stretch;
}

.home-intro .section-heading {
  grid-column: 1 / -1;
}

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

.review-grid article,
.concern-grid article {
  position: relative;
  min-height: 92px;
  padding: 22px 22px 22px 58px;
  border: 1px solid rgba(6, 29, 53, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
}

.review-grid article::before,
.concern-grid article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 25px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(0, 168, 181, 0.12);
}

.review-grid article:nth-child(3n + 2)::before,
.concern-grid article:nth-child(3n + 2)::before {
  background: var(--coral-pink);
  box-shadow: 0 0 0 7px rgba(255, 79, 123, 0.14);
}

.review-grid article:nth-child(3n)::before,
.concern-grid article:nth-child(3n)::before {
  background: #f1b13b;
  box-shadow: 0 0 0 7px rgba(241, 177, 59, 0.16);
}

.service-grid {
  display: contents;
}

.service-card {
  min-height: 318px;
  display: flex;
  flex-direction: column;
  padding: 18px 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(6, 29, 53, 0.09);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  box-shadow: 0 26px 54px rgba(6, 29, 53, 0.14);
}

.service-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 146px;
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 220, 232, 0.86), transparent 54%),
    linear-gradient(135deg, rgba(191, 243, 243, 0.82), rgba(255, 255, 255, 0.72));
}

.service-art svg {
  width: 88px;
  height: 88px;
  color: var(--deep-teal);
}

.service-art.peach {
  background:
    radial-gradient(circle at 72% 18%, rgba(226, 212, 255, 0.74), transparent 45%),
    linear-gradient(135deg, rgba(255, 225, 194, 0.9), rgba(255, 255, 255, 0.76));
}

.service-art.peach svg {
  color: var(--coral-pink);
}

.service-art.lavender {
  background:
    radial-gradient(circle at 62% 18%, rgba(191, 243, 243, 0.72), transparent 54%),
    linear-gradient(135deg, rgba(226, 212, 255, 0.82), rgba(255, 255, 255, 0.76));
}

.service-art.lavender svg {
  color: #6a43c4;
}

.service-card h3 {
  margin-bottom: 6px;
  font-size: 1.22rem;
  line-height: 1.05;
  font-weight: 900;
}

.service-card p {
  min-height: 78px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-weight: 700;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--deep-teal);
  font-weight: 900;
  text-decoration: none;
}

.service-card:nth-child(2) a {
  color: var(--coral-pink);
}

.service-card:nth-child(3) a {
  color: #774fd8;
}

.reassurance {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto auto;
  align-content: space-between;
  justify-items: center;
  gap: 20px;
  min-height: 318px;
  padding: 0 0 0 28px;
  text-align: center;
}

.script-note {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 3.25rem;
  line-height: 0.92;
  font-weight: 700;
  transform: rotate(-3deg);
}

.reassurance h2 {
  max-width: 360px;
  margin-inline: auto;
  color: var(--text-dark);
  font-size: 1.02rem;
  line-height: 1.32;
  font-weight: 700;
  text-align: center;
}

.credentials-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(6, 29, 53, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 9% 20%, rgba(191, 243, 243, 0.84), transparent 34%),
    radial-gradient(circle at 93% 86%, rgba(255, 220, 232, 0.72), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.credentials-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2.25rem;
  line-height: 1.04;
  font-weight: 900;
}

.credentials-card > p {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.12rem;
  font-weight: 800;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-width: 420px;
  margin-top: 18px;
}

.trust-badges article {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  aspect-ratio: auto;
  padding: 6px 12px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.trust-badges article + article {
  border-left: 1px solid rgba(6, 29, 53, 0.14);
}

.trust-badges span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 0;
  border-radius: 50%;
  background: var(--soft-pink);
  color: var(--coral-pink);
  font-size: 1.85rem;
  font-weight: 900;
}

.trust-badges article:nth-child(2) span {
  background: var(--soft-teal);
  color: var(--deep-teal);
}

.trust-badges article:nth-child(3) span {
  background: var(--soft-yellow);
  color: #936400;
}

.trust-badges p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.15;
  font-weight: 900;
}

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

.process-step {
  position: relative;
  padding: 26px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 180ms ease;
}

.process-step::before {
  content: "";
  position: absolute;
  right: -38px;
  top: -44px;
  width: 150px;
  height: 150px;
  border-radius: 44% 56% 51% 49%;
  background: var(--soft-teal);
  opacity: 0.65;
}

.process-step:nth-child(2)::before {
  background: var(--soft-pink);
}

.process-step:nth-child(3)::before {
  background: var(--peach);
}

.process-step:nth-child(4)::before {
  background: var(--soft-blue);
}

.process-step:nth-child(5)::before {
  background: var(--soft-mint);
}

.process-step span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 19px;
  color: var(--deep-teal);
  background: var(--soft-teal);
  font-weight: 900;
}

.process-step:nth-child(2) span {
  color: var(--coral-pink);
  background: var(--soft-pink);
}

.process-step:nth-child(3) span {
  color: #936400;
  background: var(--soft-yellow);
}

.process-step:nth-child(4) span {
  color: #4f2bc2;
  background: var(--lavender);
}

.process-step:nth-child(5) span {
  color: var(--deep-teal);
  background: var(--soft-mint);
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-weight: 700;
}

.intake-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.intake-note {
  display: grid;
  grid-template-columns: minmax(360px, 0.52fr) minmax(280px, 0.48fr);
  gap: 44px;
  align-items: end;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(191, 243, 243, 0.72), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.9));
  box-shadow: var(--shadow-soft);
}

.intake-note .script-note {
  color: var(--coral-pink);
  font-size: 3.15rem;
  margin-bottom: 10px;
  transform: rotate(-3deg) translateY(-8px);
}

.intake-note p:not(.script-note),
.intake-note li {
  color: var(--text-muted);
  font-weight: 800;
}

.intake-note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intake-note li {
  position: relative;
  padding-left: 28px;
}

.intake-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0, 168, 181, 0.12);
}

.intake-form {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(6, 29, 53, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

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

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

.intake-form label,
.intake-form fieldset {
  min-width: 0;
}

.intake-form label {
  display: grid;
  gap: 8px;
}

.intake-form label span,
.intake-form legend {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 900;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 29, 53, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text-dark);
  font: inherit;
  font-weight: 750;
}

.intake-form input,
.intake-form select {
  min-height: 50px;
  padding: 12px 14px;
}

.intake-form textarea {
  resize: vertical;
  padding: 14px;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 3px solid rgba(0, 168, 181, 0.28);
  border-color: var(--teal);
}

.intake-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.intake-form legend {
  margin-bottom: 10px;
}

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

.choice-grid label,
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(6, 29, 53, 0.1);
  border-radius: 16px;
  background: var(--off-white);
  color: var(--text-muted);
  font-weight: 850;
}

.choice-grid input,
.consent-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--coral-pink);
}

.consent-row span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 800;
}

.form-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.form-actions .button {
  cursor: pointer;
}

.form-actions p {
  margin: 0;
  color: var(--deep-teal);
  font-weight: 900;
}

.resource-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(310px, 0.36fr);
  gap: 44px;
  align-items: stretch;
  padding: 96px 0 42px;
}

.resource-hero-copy {
  display: grid;
  align-content: center;
}

.resource-hero h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 7.4vw, 6.8rem);
  line-height: 0.86;
  font-weight: 900;
}

.resource-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--text-muted);
  font-size: 1.2rem;
  font-weight: 800;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.resource-brief {
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 420px;
  padding: 34px;
  border: 1px solid rgba(6, 29, 53, 0.07);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 16%, rgba(191, 243, 243, 0.86), transparent 43%),
    radial-gradient(circle at 86% 86%, rgba(255, 220, 232, 0.72), transparent 36%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.resource-visual {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 22px;
  min-height: 420px;
  padding: 34px 34px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(191, 243, 243, 0.86), transparent 43%),
    radial-gradient(circle at 86% 86%, rgba(255, 220, 232, 0.72), transparent 36%),
    rgba(255, 255, 255, 0.92);
}

.resource-visual picture {
  display: block;
  width: 100%;
  align-self: start;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 42px rgba(9, 38, 66, 0.08);
}

.resource-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.resource-brief .script-note {
  color: var(--coral-pink);
  font-size: 3.3rem;
}

.brief-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.brief-stat span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 26px;
  background: var(--navy);
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 900;
}

.brief-stat p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 850;
}

.visual-note {
  max-width: 420px;
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3.55rem);
  line-height: 0.94;
}

.resource-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 10px;
  border: 1px solid rgba(6, 29, 53, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.resource-band article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 20px;
}

.resource-band article + article {
  border-left: 1px solid rgba(6, 29, 53, 0.08);
}

.resource-band span,
.risk-row span,
.bullying-list span {
  color: var(--coral-pink);
  font-weight: 900;
}

.resource-band p {
  margin: 0;
  font-weight: 900;
}

.resource-panel,
.shield-section,
.bullying-section {
  padding: 76px 0 38px;
}

.resource-panel-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.resource-panel-heading h2,
.bullying-copy h2,
.resource-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.7vw, 4.8rem);
  line-height: 0.92;
  font-weight: 900;
}

.risk-list {
  display: grid;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.risk-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 26px 34px;
}

.risk-row + .risk-row {
  border-top: 1px solid rgba(6, 29, 53, 0.08);
}

.risk-row span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: var(--soft-teal);
  color: var(--deep-teal);
}

.risk-row:nth-child(2) span {
  background: var(--soft-pink);
  color: var(--coral-pink);
}

.risk-row:nth-child(3) span {
  background: var(--peach);
  color: #936400;
}

.risk-row:nth-child(4) span {
  background: var(--lavender);
  color: #6742c2;
}

.risk-row:nth-child(5) span {
  background: var(--soft-yellow);
  color: #936400;
}

.risk-row h3,
.shield-columns h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
  line-height: 1.05;
  font-weight: 900;
}

.risk-row p,
.shield-columns p,
.bullying-copy p,
.bullying-list p,
.resource-cta p,
.guide-source p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-weight: 780;
}

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

.shield-columns article {
  min-height: 222px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.bullying-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: 38px;
  align-items: start;
}

.bullying-copy {
  position: sticky;
  top: 124px;
}

.bullying-copy p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.05rem;
}

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

.bullying-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.bullying-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--soft-pink);
}

.resource-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-top: 52px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 220, 232, 0.68), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(191, 243, 243, 0.34));
  box-shadow: var(--shadow);
}

.resource-cta .script-note {
  color: var(--coral-pink);
  font-size: 3rem;
}

.guide-source {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 72px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(191, 243, 243, 0.32);
}

.guide-source div {
  display: grid;
  gap: 8px;
}

.guide-source a {
  color: var(--deep-teal);
  font-weight: 900;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.resources-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
  padding: 60px 0 28px;
}

.resource-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 236px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(191, 243, 243, 0.56));
  box-shadow: var(--shadow-soft);
}

.resource-card img {
  width: 190px;
}

.resource-card h2 {
  font-size: 2rem;
}

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

.resource-icons img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.final-cta {
  padding: 54px 0 74px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 233, 168, 0.82), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(191, 243, 243, 0.8), transparent 34%),
    linear-gradient(135deg, #fff8fb, #eefcff);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  content: "safe online";
  position: absolute;
  right: 36px;
  bottom: 12px;
  color: rgba(255, 79, 123, 0.17);
  font-family: "Caveat", "Segoe Print", cursive;
  font-size: 5.8rem;
  font-weight: 700;
  transform: rotate(-6deg);
}

.cta-panel h2,
.cta-panel p,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 740px;
}

.cta-panel p {
  max-width: 630px;
  margin: 16px 0 26px;
  color: var(--text-muted);
  font-size: 1.13rem;
  font-weight: 800;
}

.cta-panel .pricing-note {
  display: inline-block;
  width: fit-content;
  max-width: 680px;
  margin: 0 0 30px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--deep-teal);
  box-shadow: 0 10px 26px rgba(6, 29, 53, 0.08);
}

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

.contact-link {
  color: var(--deep-teal);
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.site-footer {
  background: #071f38;
  color: var(--white);
  padding: 44px 0 24px;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.7fr;
  gap: 38px;
}

.footer-inner img {
  width: 220px;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 18px;
  background: var(--white);
}

.footer-inner p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-inner h2 {
  margin-bottom: 12px;
  color: var(--soft-pink);
  font-size: 2rem;
  line-height: 1;
}

.footer-inner nav,
.footer-inner address {
  display: grid;
  align-content: start;
  gap: 8px;
  font-style: normal;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--soft-teal);
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.js-enabled .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal,
.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    width: 208px;
  }

  .site-nav {
    position: absolute;
    grid-column: 1 / -1;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    padding: 13px 16px;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--off-white);
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
    padding-top: 42px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
    aspect-ratio: 1.65;
  }

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

  .benefit-bar {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
  }

  .benefit-bar article:nth-child(4) {
    border-left: 0;
  }

  .benefit-bar article:nth-child(n + 4) {
    border-top: 1px solid rgba(6, 29, 53, 0.12);
  }

  .service-grid,
  .home-intro,
  .credentials-card,
  .resource-hero,
  .resource-band,
  .shield-columns,
  .bullying-section,
  .resource-cta,
  .guide-source,
  .intake-layout,
  .process-grid,
  .reassurance,
  .resources-strip,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .service-grid {
    max-width: 760px;
  }

  .trust-badges {
    max-width: 680px;
  }

  .reassurance {
    min-height: 0;
    padding: 0;
    align-content: center;
  }

  .resource-icons {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .bullying-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(100% - 24px, 580px);
  }

  .header-inner {
    min-height: 74px;
    width: calc(100% - 24px);
    gap: 10px;
  }

  .brand {
    width: 178px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    margin-top: 4px;
    overflow: hidden;
  }

  .hero::before {
    left: -260px;
    bottom: 300px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h1 span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    font-size: 3.7rem;
  }

  .marker-line {
    display: none;
  }

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

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-visual {
    order: -1;
    margin-top: 0;
    margin-bottom: 8px;
    aspect-ratio: 1.38;
  }

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

  .hero-image-script {
    position: absolute;
    left: 18px;
    top: 8px;
    z-index: 2;
    display: block;
    width: min(58%, 238px);
    margin: 0;
    color: var(--coral-pink);
    font-family: "Caveat", "Segoe Print", cursive;
    font-size: clamp(1.9rem, 9.4vw, 3rem);
    font-weight: 600;
    line-height: 0.86;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.9);
  }

  .hero-image-script::after {
    content: "";
    display: block;
    width: min(138px, 74%);
    height: 7px;
    margin: 8px 0 0 8px;
    border-bottom: 5px solid var(--teal);
    border-radius: 0 0 70% 60%;
    transform: rotate(-3deg);
  }

  .confidence-note {
    right: -6px;
    top: 28px;
    width: 132px;
    height: 132px;
  }

  .confidence-note span {
    font-size: 1.95rem;
  }

  .float-pill {
    font-size: 0.78rem;
    padding-right: 12px;
  }

  .pill-one {
    left: 2px;
    top: 62px;
  }

  .pill-two {
    right: 4px;
    bottom: 76px;
  }

  .pill-three {
    left: 12px;
    bottom: 24px;
  }

  .pill-four {
    display: none;
  }

  .benefit-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
    border-radius: 26px;
  }

  .benefit-bar article {
    min-height: 112px;
  }

  .benefit-bar article + article {
    border-left: 0;
  }

  .benefit-bar article:nth-child(even) {
    border-left: 1px solid rgba(6, 29, 53, 0.12);
  }

  .benefit-bar article:nth-child(n + 3) {
    border-top: 1px solid rgba(6, 29, 53, 0.12);
  }

  .home-intro,
  .review-scope,
  .credentials,
  .parent-concerns,
  .process,
  .intake,
  .resource-panel,
  .shield-section,
  .bullying-section {
    padding-top: 58px;
  }

  .review-grid,
  .concern-grid {
    grid-template-columns: 1fr;
  }

  .review-grid article,
  .concern-grid article {
    min-height: 0;
  }

  .credentials-card {
    padding: 26px;
    border-radius: 26px;
  }

  .credentials-card h2 {
    font-size: 2.05rem;
  }

  .resource-hero {
    gap: 22px;
    padding: 58px 0 30px;
  }

  .resource-hero h1 {
    font-size: 3.25rem;
  }

  .resource-brief,
  .risk-list,
  .resource-cta,
  .guide-source {
    border-radius: 24px;
  }

  .resource-brief {
    min-height: 0;
  }

  .resource-visual {
    min-height: 320px;
    gap: 18px;
    padding: 24px;
  }

  .resource-visual img {
    object-position: 48% center;
  }

  .visual-note {
    max-width: 310px;
    font-size: 2.65rem;
  }

  .resource-brief .script-note,
  .resource-cta .script-note {
    font-size: 2.7rem;
  }

  .resource-band,
  .shield-columns,
  .resource-cta {
    grid-template-columns: 1fr;
  }

  .resource-band article + article {
    border-left: 0;
    border-top: 1px solid rgba(6, 29, 53, 0.08);
  }

  .risk-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .risk-row span {
    width: 56px;
    height: 56px;
  }

  .shield-columns article {
    min-height: 0;
  }

  .bullying-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 16px;
  }

  .section-heading h2,
  .section-heading h1,
  .resource-panel-heading h2,
  .bullying-copy h2,
  .resource-cta h2,
  .reassurance h2,
  .final-cta h2 {
    font-size: 2.05rem;
  }

  .resource-card h2 {
    font-size: 1.7rem;
  }

  .service-card {
    min-height: 0;
    border-radius: 28px;
  }

  .service-art {
    height: 215px;
  }

  .service-card p {
    min-height: 0;
  }

  .intake-form,
  .intake-note {
    padding: 22px;
    border-radius: 24px;
  }

  .intake-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intake-note ul {
    margin-top: 2px;
  }

  .form-grid.two-columns,
  .choice-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

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

  .script-note {
    font-size: 3.4rem;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin-inline: auto;
  }

  .trust-badges article + article {
    border-left: 0;
    border-top: 1px solid rgba(6, 29, 53, 0.14);
  }

  .resource-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .resource-card img {
    margin-inline: auto;
  }

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

  .cta-panel {
    padding: 34px 22px;
    border-radius: 30px;
  }

  .cta-panel::after {
    content: none;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 152px;
  }

  h1 {
    font-size: 2.64rem;
  }

  h1 span {
    font-size: 3.08rem;
  }

  .hero-visual {
    aspect-ratio: 1.28;
  }

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

  .confidence-note {
    width: 118px;
    height: 118px;
  }

  .confidence-note span {
    font-size: 1.72rem;
  }

  .pill-two {
    bottom: 54px;
  }

  .pill-three {
    display: none;
  }

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

  .benefit-bar article:nth-child(even) {
    border-left: 1px solid rgba(6, 29, 53, 0.12);
  }

  .benefit-bar article:nth-child(n + 3) {
    border-top: 1px solid rgba(6, 29, 53, 0.12);
  }

  .benefit-bar article:last-child {
    grid-column: 1 / -1;
    border-left: 0;
  }
}
