:root {
  --navy: #0b1735;
  --navy-2: #111f43;
  --navy-3: #1b2b50;
  --blue: #2386ff;
  --blue-dark: #086ee8;
  --blue-soft: #e8f3ff;
  --yellow: #ffb735;
  --yellow-soft: #fff3ce;
  --green: #12a87d;
  --green-soft: #e4f8f1;
  --cream: #fffaf0;
  --surface: #ffffff;
  --ink: #12203d;
  --muted: #5e6c82;
  --line: #dce5ea;
  --shadow-sm: 0 10px 30px rgba(11, 23, 53, 0.09);
  --shadow-lg: 0 28px 80px rgba(11, 23, 53, 0.16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shell: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--navy);
  background: var(--yellow);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.product-bar {
  color: #dce8fa;
  background: var(--navy);
  font-size: 13px;
}

.product-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-bar p {
  margin: 0;
}

.product-bar a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.product-bar a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-bar__logo {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.22));
}

.product-bar__app {
  margin-left: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 229, 234, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(11, 23, 53, 0.07);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  text-decoration: none;
}

.brand__logo {
  width: 128px;
  height: 76px;
  display: block;
  object-fit: contain;
}

.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-soft);
}

.brand__mark svg {
  width: 42px;
  height: 42px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.brand__text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
}

.main-nav a {
  position: relative;
  color: #3c4a61;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #98a2b2;
  font-size: 12px;
}

.language-toggle button {
  min-width: 28px;
  min-height: 34px;
  padding: 0;
  border: 0;
  color: #7d899b;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.language-toggle button[aria-pressed="true"] {
  color: var(--blue-dark);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(35, 134, 255, 0.22);
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 32px rgba(35, 134, 255, 0.3);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 13px;
}

.button--yellow {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 10px 25px rgba(255, 183, 53, 0.2);
}

.button--yellow:hover {
  background: #ffc653;
  box-shadow: 0 14px 32px rgba(255, 183, 53, 0.28);
}

.button--light {
  min-width: 177px;
  justify-content: flex-start;
  padding: 9px 17px;
  color: var(--navy);
  background: #fff;
  box-shadow: none;
}

.button--light:hover {
  background: #f3f7ff;
}

.button--light > span:first-child {
  font-size: 25px;
}

.button--light > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.button--light small {
  font-size: 9px;
  font-weight: 700;
}

.button--light strong {
  font-size: 17px;
}

.button--full {
  width: 100%;
  justify-content: space-between;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.text-link span:last-child {
  color: var(--blue);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span:last-child {
  transform: translate(2px, 2px);
}

.text-link--light {
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) 0 88px;
  background: linear-gradient(145deg, #fff 0%, #f7fbff 54%, #eef7ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -260px;
  left: -260px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(255, 183, 53, 0.1);
  border-radius: 50%;
}

.hero__route {
  position: absolute;
  height: 12px;
  border-top: 3px dashed rgba(35, 134, 255, 0.14);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero__route--one {
  right: -10%;
  bottom: 11%;
  width: 56%;
}

.hero__route--two {
  top: 18%;
  left: -15%;
  width: 42%;
  transform: rotate(17deg);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 19px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid #cfe4fa;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.1px;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(18, 168, 125, 0.12);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 76px);
  font-weight: 900;
  letter-spacing: -3.5px;
}

h1 span {
  color: var(--blue-dark);
}

.hero__lead {
  max-width: 635px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero__actions {
  margin-top: 31px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__trust {
  margin: 35px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: #66758a;
  font-size: 12px;
  font-weight: 750;
  list-style: none;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__trust li span:first-child {
  color: var(--yellow);
}

.hero__visual {
  position: relative;
  min-height: 610px;
}

.map-card {
  position: absolute;
  inset: 17px 0 0 35px;
  overflow: hidden;
  border: 9px solid #fff;
  border-radius: 44px;
  background: #eff6f8;
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 78px;
  border-radius: 28px;
  background: #deefd9;
  transform: rotate(-18deg);
}

.map-card::before {
  top: 33px;
  left: 43px;
}

.map-card::after {
  right: 50px;
  bottom: 61px;
  width: 95px;
  height: 120px;
  background: #e8f2d9;
}

.route-map {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.map-road {
  fill: none;
  stroke: #d6e3e7;
  stroke-width: 31;
  stroke-linecap: round;
}

.map-road--b {
  stroke-width: 24;
}

.map-road--c {
  stroke-width: 21;
}

.map-route-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 2 15;
}

.map-stop {
  fill: #fff;
  stroke: var(--blue);
  stroke-width: 5;
}

.map-stop--start {
  fill: var(--green);
  stroke: #fff;
}

.map-stop--end {
  fill: var(--yellow);
  stroke: #fff;
}

.map-label {
  position: absolute;
  z-index: 3;
  color: #aab9c0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.map-label--boston {
  top: 14%;
  right: 22%;
}

.map-label--quincy {
  right: 11%;
  bottom: 28%;
}

.map-label--milton {
  bottom: 14%;
  left: 25%;
}

.phone-card {
  position: absolute;
  z-index: 4;
  right: -20px;
  bottom: -3px;
  width: 250px;
  min-height: 482px;
  overflow: hidden;
  border: 8px solid #f9fbff;
  border-radius: 42px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 32px 70px rgba(11, 23, 53, 0.3);
  transform: rotate(-3deg);
}

.phone-card__top {
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #c6d1e2;
  font-size: 10px;
  font-weight: 800;
}

.phone-card__top i {
  width: 64px;
  height: 19px;
  border-radius: 0 0 13px 13px;
  background: #050b19;
  transform: translateX(-63px);
}

.phone-card__body {
  padding: 9px 18px 18px;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.easykids-logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.22));
}

.easykids-logo--mini {
  width: 29px;
  height: 29px;
}

.trip-status {
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(35, 134, 255, 0.29);
  border-radius: 11px;
  color: #b9d8ff;
  background: rgba(35, 134, 255, 0.09);
  font-size: 10px;
  font-weight: 850;
}

.trip-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14d19b;
  box-shadow: 0 0 0 4px rgba(20, 209, 155, 0.1);
}

.trip-route {
  position: relative;
  margin: 29px 0 20px;
}

.trip-route__line {
  position: absolute;
  top: 15px;
  bottom: 27px;
  left: 14px;
  width: 2px;
  background: rgba(123, 154, 200, 0.25);
}

.trip-route > div {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.trip-route > div > i {
  width: 29px;
  height: 29px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #597095;
  border-radius: 50%;
  color: #8fa1be;
  background: var(--navy);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.trip-route > div > i.is-done {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.trip-route p {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trip-route strong {
  color: #f7faff;
  font-size: 11px;
}

.trip-route small {
  margin-top: 3px;
  color: #7f90ad;
  font-size: 9px;
}

.phone-card__notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 11px;
  color: #bcd9ff;
  background: rgba(255, 255, 255, 0.06);
}

.phone-card__notice span {
  color: var(--blue);
}

.visual-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.visual-note span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--green);
}

.visual-note--top {
  top: 45px;
  right: -7px;
  transform: rotate(2deg);
}

.visual-note--bottom {
  bottom: 55px;
  left: 2px;
  transform: rotate(-4deg);
}

.visual-note--bottom span {
  background: var(--blue);
}

.promise-strip {
  color: #fff;
  background: var(--navy);
}

.promise-strip__grid {
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.promise-strip p {
  position: relative;
  margin: 0;
  color: #dce7f7;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.3px;
  text-align: center;
}

.promise-strip p:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 28px;
  background: #30405f;
  transform: translateY(-50%);
}

.section {
  padding: clamp(82px, 10vw, 130px) 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.areas h2,
.contact h2,
.partners h2,
.easykids h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -2.3px;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 342px;
  overflow: hidden;
  padding: 31px;
  border-radius: var(--radius-md);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border: 35px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.service-card--yellow {
  background: var(--yellow-soft);
}

.service-card--blue {
  background: var(--blue-soft);
}

.service-card--green {
  background: var(--green-soft);
}

.service-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(11, 23, 53, 0.28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  font-size: 25px;
  font-weight: 900;
}

.service-card h3 {
  margin: 83px 0 13px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.7px;
}

.service-card p {
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin: 0;
  color: #536177;
  font-size: 14px;
  line-height: 1.7;
}

.easykids {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.easykids::after {
  content: "";
  position: absolute;
  top: -300px;
  right: -220px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 134, 255, 0.17), transparent 68%);
}

.easykids__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: clamp(60px, 8vw, 112px);
}

.easykids__visual {
  position: relative;
  min-height: 650px;
}

.easykids__orbit {
  position: absolute;
  border: 1px solid rgba(100, 162, 255, 0.17);
  border-radius: 50%;
}

.easykids__orbit--one {
  inset: 64px 12px 27px 11px;
}

.easykids__orbit--two {
  inset: 130px 76px 96px 76px;
}

.easykids-phone {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 315px;
  min-height: 625px;
  overflow: hidden;
  border: 8px solid #eef4ff;
  border-radius: 50px;
  color: #fff;
  background: #081124;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.35);
  transform: translateX(-50%) rotate(-2deg);
}

.easykids-phone__bar {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  color: #c5d2e5;
  font-size: 10px;
  font-weight: 900;
}

.easykids-phone__bar i {
  width: 86px;
  height: 22px;
  border-radius: 0 0 16px 16px;
  background: #02050b;
  transform: translateX(-76px);
}

.easykids-phone__content {
  padding: 15px 19px 24px;
}

.easykids-phone__heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.easykids-logo--phone {
  width: 40px;
  height: 40px;
}

.easykids-phone__heading div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.easykids-phone__heading small {
  color: #6aa9ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.easykids-phone__heading strong {
  margin-top: 3px;
  font-size: 15px;
}

.easykids-phone__map {
  position: relative;
  height: 224px;
  overflow: hidden;
  margin-top: 19px;
  border-radius: 22px;
  background-color: #edf3f5;
  background-image: linear-gradient(22deg, transparent 48%, #d4dfe3 49%, #d4dfe3 52%, transparent 53%), linear-gradient(112deg, transparent 46%, #dce6e9 47%, #dce6e9 50%, transparent 51%);
  background-size: 84px 84px, 105px 105px;
}

.easykids-phone__map svg {
  width: 100%;
  height: 100%;
}

.mini-bus {
  position: absolute;
  top: 87px;
  left: 137px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 6px 16px rgba(11, 23, 53, 0.25);
  font-size: 18px;
}

.easykids-phone__eta {
  margin-top: 12px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #213355;
  border-radius: 15px;
  background: #121e35;
}

.easykids-phone__eta small {
  color: #a8b6cd;
  font-size: 9px;
}

.easykids-phone__eta strong {
  color: #61a6ff;
  font-size: 20px;
}

.easykids-phone__alert {
  margin-top: 10px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 15px;
  color: #d9e5f4;
  background: rgba(18, 168, 125, 0.12);
}

.easykids-phone__alert > i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.easykids-phone__alert div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.easykids-phone__alert strong {
  font-size: 10px;
}

.easykids-phone__alert small {
  margin-top: 2px;
  color: #8191aa;
  font-size: 8px;
}

.easykids-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid #28395c;
  border-radius: 16px;
  background: rgba(17, 31, 67, 0.92);
  box-shadow: 0 17px 36px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.easykids-badge > span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(35, 134, 255, 0.16);
  font-size: 16px;
}

.easykids-badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.easykids-badge strong {
  font-size: 11px;
}

.easykids-badge small {
  margin-top: 3px;
  color: #8d9db6;
  font-size: 8px;
}

.easykids-badge--alert {
  top: 107px;
  right: -14px;
}

.easykids-badge--secure {
  bottom: 68px;
  left: -12px;
}

.easykids-badge--secure > span {
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.eyebrow--light {
  color: #8fc0ff;
}

.easykids__copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.powered-mark {
  width: 38px;
  height: 38px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.28));
}

.easykids h2,
.partners h2 {
  color: #fff;
}

.easykids__lead {
  margin: 23px 0 0;
  color: #aebcd2;
  font-size: 17px;
  line-height: 1.75;
}

.feature-list {
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 15px;
}

.feature-list li + li {
  margin-top: 22px;
}

.feature-list li > span {
  width: 33px;
  height: 33px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #36517c;
  border-radius: 10px;
  color: #78b4ff;
  font-size: 11px;
  font-weight: 900;
}

.feature-list strong {
  color: #f8faff;
  font-size: 14px;
}

.feature-list p {
  margin: 3px 0 0;
  color: #8f9fb7;
  font-size: 13px;
  line-height: 1.55;
}

.easykids__actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 23px;
}

.availability-note {
  margin: 18px 0 0;
  color: #7485a0;
  font-size: 10px;
}

.areas {
  background: var(--cream);
}

.areas__grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.areas__copy > p:not(.eyebrow) {
  margin: 23px 0 27px;
  color: var(--muted);
  line-height: 1.75;
}

.area-map {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid #e0e9e8;
  border-radius: var(--radius-lg);
  background-color: #f8fbfa;
  background-image: radial-gradient(#dfe7e4 1px, transparent 1px);
  background-size: 24px 24px;
  box-shadow: var(--shadow-sm);
}

.area-map > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.area-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid #e1e9ec;
  border-radius: 11px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 7px 17px rgba(11, 23, 53, 0.08);
  font-size: 11px;
}

.area-pin i {
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 2px var(--blue);
}

.area-pin--boston {
  top: 17%;
  left: 49%;
}

.area-pin--quincy {
  right: 18%;
  bottom: 24%;
}

.area-pin--milton {
  top: 46%;
  left: 39%;
}

.area-pin--dedham {
  bottom: 24%;
  left: 12%;
}

.area-pin--randolph {
  right: 9%;
  bottom: 7%;
}

.area-pin--braintree {
  right: 29%;
  bottom: 4%;
}

.partners {
  padding-top: 0;
  background: var(--cream);
}

.partners__panel {
  padding: clamp(42px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(60px, 9vw, 120px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--navy);
  box-shadow: 0 28px 70px rgba(11, 23, 53, 0.16);
}

.partners__intro > p:not(.eyebrow) {
  margin: 23px 0 28px;
  color: #aebcd2;
  line-height: 1.75;
}

.partners__points {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partners__points article {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #2a3a59;
}

.partners__points article:first-child {
  border-top: 1px solid #2a3a59;
}

.partners__points article > span {
  color: #6aa9ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.partners__points h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.partners__points p {
  margin: 5px 0 0;
  color: #8596af;
  font-size: 12px;
  line-height: 1.6;
}

.contact {
  background: #f7fafc;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.73fr 1.27fr;
  align-items: start;
  gap: clamp(55px, 8vw, 108px);
}

.contact__intro > p:not(.eyebrow, .contact__note) {
  margin: 22px 0 30px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-method {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-method > span {
  width: 43px;
  height: 43px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.contact-method div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.contact-method small {
  color: #7b899c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-method a {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.contact-method a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.contact-method--phone > span {
  color: var(--navy);
  background: var(--yellow-soft);
}

.contact__note {
  margin: 28px 0 0;
  padding-left: 15px;
  border-left: 3px solid var(--yellow);
  color: #738195;
  font-size: 11px;
  line-height: 1.6;
}

.request-form {
  padding: clamp(28px, 4vw, 43px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.form-heading {
  margin-bottom: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-heading > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-heading > div > span {
  color: var(--yellow);
}

.form-heading h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.form-heading > small {
  color: #8995a6;
  font-size: 10px;
}

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

.request-form label {
  margin-bottom: 17px;
  display: flex;
  flex-direction: column;
  color: #33415a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2px;
}

.request-form input,
.request-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d9e2e8;
  border-radius: 11px;
  color: var(--ink);
  background: #fbfdfe;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.request-form input {
  min-height: 48px;
  padding: 10px 13px;
}

.request-form textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(35, 134, 255, 0.1);
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #a1abb8;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.request-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 0;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="loading"] {
  color: var(--blue);
}

.form-status[data-state="success"] {
  padding: 11px 13px;
  border: 1px solid rgba(21, 144, 84, 0.22);
  border-radius: 10px;
  background: rgba(21, 144, 84, 0.08);
}

.form-status[data-state="error"] {
  padding: 11px 13px;
  border: 1px solid rgba(198, 52, 52, 0.22);
  border-radius: 10px;
  color: #a82727;
  background: rgba(198, 52, 52, 0.07);
}

.form-privacy {
  margin: 13px 0 0;
  color: #8793a3;
  font-size: 10px;
  line-height: 1.55;
}

.site-footer {
  color: #fff;
  background: #071127;
}

.footer__top {
  padding: 68px 0;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.1fr;
  align-items: center;
  gap: 65px;
}

.brand--footer {
  width: fit-content;
  padding: 7px 13px;
  border-radius: 17px;
  color: var(--navy);
  background: #fff;
}

.brand__logo--footer {
  width: 118px;
  height: 79px;
}

.footer__top > p {
  margin: 0;
  color: #8999b1;
  font-size: 13px;
  line-height: 1.7;
}

.footer-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #31415e;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.footer-email:hover {
  border-color: var(--blue);
}

.footer-email span {
  color: var(--blue);
  font-size: 18px;
}

.footer__bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #1d2b46;
  color: #6f7f98;
  font-size: 11px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom nav {
  display: flex;
  gap: 26px;
}

.footer__bottom a {
  text-decoration: none;
}

.footer__bottom a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .header__actions {
    margin-left: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
  }

  .hero__visual {
    min-height: 550px;
  }

  .phone-card {
    right: -5px;
    width: 224px;
    min-height: 454px;
  }

  .map-card {
    inset: 15px 0 0 0;
  }

  .easykids__grid {
    gap: 50px;
  }

  .easykids-badge--alert {
    right: -8px;
  }

  .easykids-badge--secure {
    left: -6px;
  }
}

@media (max-width: 850px) {
  .hero {
    padding-top: 72px;
  }

  .hero__grid,
  .easykids__grid,
  .areas__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 690px;
  }

  .hero__visual {
    width: min(100%, 610px);
    min-height: 590px;
    margin: 10px auto 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .section-heading > p {
    max-width: 640px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .easykids__visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .easykids__copy {
    max-width: 680px;
  }

  .areas__grid {
    gap: 50px;
  }

  .areas__copy {
    max-width: 650px;
  }

  .partners__panel {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__intro {
    max-width: 620px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-email {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .product-bar__inner {
    min-height: 43px;
  }

  .product-bar p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-bar__app {
    display: none;
  }

  .header__inner {
    min-height: 70px;
    gap: 10px;
  }

  .brand__logo {
    width: 92px;
    height: 58px;
  }

  .header__actions {
    gap: 7px;
  }

  .header__actions .button {
    display: none;
  }

  .language-toggle button {
    min-width: 27px;
    min-height: 40px;
  }

  .hero {
    padding: 57px 0 62px;
  }

  .hero .eyebrow {
    padding: 8px 10px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 58px);
    letter-spacing: -2.5px;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .hero__trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .hero__visual {
    min-height: 475px;
    margin-top: 19px;
  }

  .map-card {
    inset: 13px 0 0;
    border-width: 6px;
    border-radius: 32px;
  }

  .phone-card {
    right: -5px;
    bottom: -15px;
    width: 190px;
    min-height: 400px;
    border-width: 6px;
    border-radius: 34px;
  }

  .phone-card__body {
    padding-inline: 14px;
  }

  .trip-route > div {
    margin-bottom: 19px;
  }

  .visual-note {
    padding: 7px 10px 7px 7px;
    font-size: 10px;
  }

  .visual-note span {
    width: 25px;
    height: 25px;
  }

  .visual-note--top {
    top: 35px;
  }

  .visual-note--bottom {
    bottom: 30px;
  }

  .promise-strip__grid {
    min-height: 0;
    padding: 22px 0;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .promise-strip p:not(:last-child)::after {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .areas h2,
  .contact h2,
  .partners h2,
  .easykids h2 {
    font-size: 38px;
    letter-spacing: -1.7px;
  }

  .service-grid {
    margin-top: 37px;
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    min-height: 306px;
    grid-column: auto;
  }

  .service-card h3 {
    margin-top: 58px;
  }

  .easykids__visual {
    min-height: 570px;
  }

  .easykids-phone {
    width: 285px;
    min-height: 570px;
    border-radius: 43px;
  }

  .easykids-phone__map {
    height: 190px;
  }

  .easykids-badge--alert {
    top: 83px;
    right: -2px;
  }

  .easykids-badge--secure {
    bottom: 54px;
    left: -2px;
  }

  .easykids__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .area-map {
    min-height: 410px;
    border-radius: 27px;
  }

  .area-pin {
    padding: 6px 8px;
    font-size: 9px;
  }

  .area-pin--boston {
    left: 43%;
  }

  .area-pin--quincy {
    right: 9%;
  }

  .area-pin--dedham {
    left: 5%;
  }

  .area-pin--braintree {
    right: 21%;
  }

  .partners__panel {
    width: calc(100% - 18px);
    padding: 36px 24px;
    border-radius: 28px;
  }

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

  .request-form {
    padding: 25px 19px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .footer__top {
    padding: 53px 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-email {
    grid-column: auto;
    font-size: 11px;
  }

  .footer__bottom {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer__bottom nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
