:root {
  --teal: #0d5c53;
  --teal-700: #08463f;
  --teal-900: #04312c;
  --yellow: #f4c430;
  --yellow-soft: #fff3bd;
  --coral: #ef7b65;
  --blue: #2f73b7;
  --sage: #e7f1ed;
  --cream: #fbfaf3;
  --white: #ffffff;
  --ink: #132522;
  --muted: #657571;
  --line: #dce8e3;
  --shadow: 0 18px 50px rgba(7, 60, 54, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(231, 241, 237, 0.7), rgba(251, 250, 243, 0)),
    var(--cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(220, 232, 227, 0.92);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--teal-900);
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(244, 196, 48, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

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

.site-nav a {
  transition: color 0.2s ease;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--teal);
}

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

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

.button-primary {
  color: var(--teal-900);
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(244, 196, 48, 0.28);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.13);
}

.button-outline {
  color: var(--teal);
  border-color: rgba(13, 92, 83, 0.35);
  background: var(--white);
}

.button-danger {
  color: #982817;
  border-color: #f0b7ac;
  background: #fff2ef;
}

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 92px 42px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 49, 44, 0.94) 0%, rgba(13, 92, 83, 0.82) 44%, rgba(13, 92, 83, 0.2) 100%),
    url("assets/kidsgo-hero.png") center right / cover no-repeat;
}

.hero-copy {
  width: min(680px, 100%);
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.06rem, 2vw, 1.38rem);
}

.hero-actions,
.manager-tools,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.hero-metrics div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--yellow);
  font-size: 1.55rem;
}

.hero-metrics span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.service-strip {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  overflow-x: auto;
  color: var(--teal-900);
  background: var(--yellow);
  font-weight: 950;
  white-space: nowrap;
}

.service-strip span {
  padding: 8px 10px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.section-heading,
.section-copy,
.request-copy {
  max-width: 760px;
}

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

.section h2,
.manager-hero h1,
.manager-board h2,
.contact-band h2 {
  margin: 0;
  color: var(--teal-900);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section p,
.manager-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 54px;
  align-items: center;
}

.route-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.route-map {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 92, 83, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(13, 92, 83, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #f9fcfa 0%, #e8f3ee 52%, #fff4c6 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.map-line {
  position: absolute;
  height: 9px;
  border-radius: 999px;
}

.map-line-main {
  left: 14%;
  top: 58%;
  width: 72%;
  background: var(--yellow);
  box-shadow: 0 0 0 8px rgba(244, 196, 48, 0.22);
  transform: rotate(-17deg);
}

.map-line-side {
  left: 32%;
  top: 47%;
  width: 32%;
  background: var(--coral);
  transform: rotate(19deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-width: 78px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(7, 60, 54, 0.16);
}

.map-pin-home {
  left: 10%;
  bottom: 20%;
}

.map-pin-school {
  right: 9%;
  top: 22%;
  color: var(--teal-900);
  background: var(--yellow);
}

.map-pin-child {
  left: 38%;
  top: 34%;
  background: var(--blue);
}

.route-preview-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.route-preview-footer span {
  padding: 18px;
  color: var(--muted);
  font-weight: 850;
}

.route-preview-footer span + span {
  border-left: 1px solid var(--line);
}

.section-soft {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background: var(--white);
}

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

.step-card {
  min-height: 258px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fcfa;
}

.step-card:nth-child(2) {
  background: #fff9df;
}

.step-card:nth-child(3) {
  background: #f1f7ff;
}

.step-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--teal-900);
  background: var(--yellow);
  font-weight: 950;
}

.step-card h3 {
  margin: 22px 0 10px;
  color: var(--teal-900);
  font-size: 1.26rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 24px;
  align-items: stretch;
}

.trust-card,
.trust-list article {
  border-radius: 8px;
}

.trust-card {
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-card-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 92, 83, 0.96), rgba(4, 49, 44, 0.98)),
    var(--teal);
}

.trust-card h2,
.trust-card p {
  color: var(--white);
}

.trust-card p {
  opacity: 0.88;
}

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

.trust-list article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.trust-list strong {
  color: var(--teal-900);
  font-size: 1.16rem;
}

.trust-list span {
  color: var(--muted);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.65fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background: var(--teal);
}

.request-copy {
  position: sticky;
  top: 104px;
}

.request-copy h2,
.request-copy p {
  color: var(--white);
}

.request-copy p {
  opacity: 0.86;
}

.lead-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(4, 49, 44, 0.22);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--teal-900);
  font-size: 0.92rem;
  font-weight: 900;
}

.span-2 {
  grid-column: span 2;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cfded8;
  border-radius: 8px;
  color: var(--ink);
  background: #fbfdfc;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.24);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-weight: 700;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-submit {
  width: 100%;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal);
  font-weight: 900;
}

.contact-band {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 34px auto;
  padding: 32px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-900);
}

.contact-band h2 {
  color: var(--white);
}

.contact-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 42px;
  color: var(--muted);
  background: var(--white);
}

.site-footer a {
  color: var(--teal);
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  max-width: min(360px, calc(100% - 44px));
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-900);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.manager-page {
  background: #f3f7f5;
}

.manager-header-bar {
  background: rgba(255, 255, 255, 0.94);
}

.manager-shell {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.manager-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 92, 83, 0.98), rgba(4, 49, 44, 0.96)),
    var(--teal);
}

.manager-hero h1 {
  max-width: 760px;
  color: var(--white);
}

.manager-hero p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.stat-card {
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.stat-card span {
  color: var(--muted);
  font-weight: 850;
}

.stat-card strong {
  margin-top: 16px;
  color: var(--teal);
  font-size: 2.5rem;
  line-height: 1;
}

.stat-card-accent {
  border-color: rgba(244, 196, 48, 0.6);
  background: var(--yellow-soft);
}

.manager-board {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.board-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.board-note {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--teal);
  background: var(--sage);
  font-size: 0.88rem;
  font-weight: 900;
}

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

.route-card,
.lead-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.route-card {
  padding: 20px;
}

.route-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.route-index {
  display: inline-flex;
  min-width: 58px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--teal-900);
  background: var(--yellow);
  font-weight: 950;
}

.route-card-head strong {
  color: var(--teal-900);
  font-size: 1.12rem;
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.route-meta span {
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 850;
}

.address-stack {
  display: grid;
  gap: 10px;
}

.address-stack div {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
}

.address-stack span,
.address-stack small,
.lead-date,
.lead-address-grid span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.address-stack strong {
  color: var(--ink);
}

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

.lead-card {
  padding: 20px;
}

.lead-card-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.lead-card h3 {
  margin: 4px 0 2px;
  color: var(--teal-900);
  font-size: 1.16rem;
}

.lead-card p {
  margin: 0;
  color: var(--muted);
}

.lead-card select {
  max-width: 170px;
}

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

.lead-address-grid div {
  min-height: 94px;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
}

.lead-address-grid strong,
.lead-address-grid span {
  display: block;
}

.lead-address-grid strong {
  margin-top: 6px;
  color: var(--ink);
}

.lead-comment {
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  color: var(--muted);
  background: #fff9df;
}

.empty-state {
  margin: 0;
  padding: 28px;
  border: 1px dashed #bfd0ca;
  border-radius: 8px;
  color: var(--muted);
  background: #fbfdfc;
  text-align: center;
  font-weight: 900;
}

body.landing-page {
  min-height: 100vh;
  color: #111a18;
  background:
    radial-gradient(circle at 80% 2%, rgba(244, 196, 48, 0.22), transparent 24rem),
    linear-gradient(180deg, #fbfaf3 0%, #fffdf7 48%, #fbfaf3 100%);
}

.landing-shell {
  width: min(940px, calc(100% - 44px));
  margin: 0 auto;
  padding: 24px 0 34px;
}

.poster-hero,
.compact-benefits,
.price-card,
.work-flow,
.note-grid,
.landing-contact,
.application-card {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.poster-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(300px, 1.12fr);
  gap: 16px;
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  padding: 38px 30px;
  border-radius: 8px 8px 0 0;
  background: var(--white);
}

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

.poster-logo {
  display: flex;
  align-items: baseline;
  margin-bottom: 14px;
  color: var(--teal-900);
  font-size: clamp(3.8rem, 9vw, 6.5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.88;
}

.poster-logo strong {
  color: #f4a900;
}

.poster-copy h1 {
  max-width: 420px;
  margin: 0;
  color: #111;
  font-size: clamp(1.58rem, 3.6vw, 2.28rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.poster-copy p {
  max-width: 430px;
  margin: 16px 0 0;
  color: #202826;
  font-size: 1.12rem;
  font-weight: 650;
}

.poster-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 8px;
}

.poster-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.88) 0%, rgba(255, 253, 247, 0.26) 24%, rgba(255, 253, 247, 0) 54%),
    linear-gradient(0deg, #fffdf7 0%, rgba(255, 253, 247, 0) 24%);
}

.poster-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fffdf7;
}

.compact-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 30px 26px;
  background: #fffdf7;
}

.compact-benefits article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 118px;
}

.compact-benefits h2 {
  margin: 0;
  color: var(--teal-900);
  font-size: 1.38rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.compact-benefits p {
  margin: 8px 0 0;
  color: #202826;
  font-size: 1rem;
}

.benefit-icon {
  position: relative;
  display: inline-grid;
  width: 68px;
  height: 68px;
  place-items: center;
}

.shield-icon::before {
  width: 48px;
  height: 56px;
  border: 6px solid var(--teal-900);
  border-radius: 24px 24px 28px 28px;
  content: "";
}

.shield-icon::after {
  position: absolute;
  width: 22px;
  height: 12px;
  border-bottom: 6px solid var(--teal-900);
  border-left: 6px solid var(--teal-900);
  content: "";
  transform: rotate(-45deg);
}

.clock-icon::before {
  width: 58px;
  height: 58px;
  border: 7px solid #f4a900;
  border-radius: 50%;
  content: "";
}

.clock-icon::after {
  position: absolute;
  width: 6px;
  height: 24px;
  border-radius: 999px;
  background: #f4a900;
  box-shadow: 10px 16px 0 -1px #f4a900;
  content: "";
}

.pin-icon::before {
  width: 56px;
  height: 56px;
  border-radius: 50% 50% 50% 0;
  background: var(--teal-900);
  content: "";
  transform: rotate(-45deg);
}

.pin-icon::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fffdf7;
  content: "";
}

.price-card {
  overflow: hidden;
  border: 1px solid rgba(4, 49, 44, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 60, 54, 0.09);
}

.price-head,
.price-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  text-align: center;
}

.price-head {
  min-height: 64px;
  color: var(--white);
  background: var(--teal-900);
  font-size: 1.05rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-head span,
.price-row span,
.price-row strong {
  padding: 0 24px;
}

.price-head span + span,
.price-row strong {
  border-left: 1px solid rgba(4, 49, 44, 0.18);
}

.price-row {
  min-height: 82px;
  border-top: 1px solid rgba(4, 49, 44, 0.14);
}

.price-row span {
  color: #111;
  font-size: 1.18rem;
  font-weight: 850;
}

.price-row strong {
  color: #f4a900;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.work-flow {
  margin-top: 22px;
  padding: 26px 28px 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(7, 60, 54, 0.08);
}

.work-flow h2 {
  margin: 0 0 18px;
  color: var(--teal-900);
  font-size: clamp(1.8rem, 3.4vw, 2.35rem);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

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

.flow-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  top: 45px;
  left: calc(50% + 46px);
  width: calc(100% - 70px);
  border-top: 3px dashed var(--teal-900);
  content: "";
  opacity: 0.85;
}

.flow-number {
  position: absolute;
  top: -6px;
  left: calc(50% - 54px);
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-900);
  background: #f4a900;
  font-size: 1.05rem;
  font-weight: 950;
}

.flow-icon {
  position: relative;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.24), transparent 38%),
    var(--teal-900);
  box-shadow: 0 10px 22px rgba(4, 49, 44, 0.16);
}

.flow-icon::before,
.flow-icon::after {
  position: absolute;
  content: "";
}

.flow-form::before {
  width: 36px;
  height: 44px;
  border: 3px solid var(--white);
  border-radius: 4px;
}

.flow-form::after {
  width: 22px;
  height: 3px;
  background: var(--white);
  box-shadow: 0 10px 0 var(--white), 0 20px 0 var(--white);
}

.flow-route::before {
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  transform: rotate(-45deg);
}

.flow-route::after {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--teal-900);
}

.flow-phone::before {
  width: 34px;
  height: 34px;
  border: 6px solid var(--white);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-38deg);
}

.flow-school::before {
  bottom: 25px;
  width: 46px;
  height: 34px;
  border: 3px solid var(--white);
  border-radius: 3px;
}

.flow-school::after {
  top: 22px;
  width: 34px;
  height: 24px;
  border-top: 3px solid var(--white);
  border-left: 3px solid var(--white);
  transform: rotate(45deg);
}

.flow-step p {
  max-width: 150px;
  margin: 0;
  color: #111;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.22;
}

.note-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 22px;
  padding: 22px 0;
}

.info-note,
.discount-note {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 8px;
}

.info-note {
  background: #fff4e2;
}

.discount-note {
  color: var(--teal-900);
  background: #f4a900;
}

.info-note span,
.discount-note span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-900);
  font-size: 2rem;
  font-weight: 950;
}

.discount-note span {
  color: var(--teal-900);
  background: transparent;
  font-size: 2.8rem;
}

.info-note p,
.discount-note p {
  margin: 0;
  font-size: 1rem;
  font-weight: 850;
}

.landing-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 26px 28px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(100deg, var(--teal-900) 0%, var(--teal-900) 56%, #f4a900 56%, #f4a900 100%),
    var(--teal-900);
  box-shadow: 0 18px 44px rgba(7, 60, 54, 0.14);
}

.landing-contact p,
.landing-contact h2 {
  margin: 0;
}

.landing-contact p {
  color: var(--yellow);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.08;
}

.landing-contact h2 {
  color: var(--white);
  margin-top: 4px;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.08;
}

.landing-contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.landing-contact-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.landing-contact-links a:last-child {
  color: var(--teal-900);
  border-color: var(--white);
  background: var(--white);
}

.landing-contact-links .instagram-link {
  color: var(--teal-900);
  border-color: var(--teal-900);
  background: var(--yellow);
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.application-card {
  display: grid;
  overflow: hidden;
  border-radius: 8px;
  background: var(--teal-900);
  box-shadow: 0 22px 54px rgba(7, 60, 54, 0.18);
}

.application-copy {
  padding: 28px 30px 24px;
  color: var(--white);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.application-copy p {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.application-copy h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.contact-mini {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  font-weight: 800;
}

.compact-form {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.application-card .lead-form {
  padding: 30px;
}

.landing-page .toast {
  background: var(--teal-900);
}

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

  .site-nav {
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .menu-button {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 74vh;
    padding: 70px 20px;
    background:
      linear-gradient(90deg, rgba(4, 49, 44, 0.95), rgba(13, 92, 83, 0.8), rgba(13, 92, 83, 0.46)),
      url("assets/kidsgo-hero.png") center right / cover no-repeat;
  }

  .intro-grid,
  .trust-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .request-copy {
    position: static;
  }

  .steps-grid,
  .stat-grid,
  .route-groups,
  .lead-address-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poster-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .poster-visual {
    height: 320px;
    width: 100%;
    opacity: 1;
  }

  .compact-benefits,
  .application-card {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
  }

  .flow-step::after {
    display: none;
  }

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

  .landing-contact {
    align-items: flex-start;
    flex-direction: column;
    background:
      linear-gradient(135deg, var(--teal-900), var(--teal-700)),
      var(--teal-900);
  }

  .landing-contact-links {
    justify-content: flex-start;
  }

  .manager-hero,
  .board-heading,
  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .section {
    width: min(100% - 28px, 1180px);
    padding: 66px 0;
  }

  .section-soft,
  .request-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero {
    min-height: auto;
    padding: 58px 14px 68px;
  }

  .hero-metrics,
  .steps-grid,
  .form-grid,
  .stat-grid,
  .route-groups,
  .lead-address-grid,
  .route-preview-footer {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: span 1;
  }

  .lead-form,
  .manager-hero,
  .manager-board {
    padding: 20px;
  }

  .landing-shell {
    width: min(100% - 20px, 940px);
    padding-top: 10px;
  }

  .poster-hero {
    min-height: auto;
    padding: 26px 18px 18px;
  }

  .poster-visual {
    height: 250px;
  }

  .compact-benefits {
    padding: 18px;
  }

  .compact-benefits article {
    grid-template-columns: 62px 1fr;
  }

  .benefit-icon {
    width: 58px;
    height: 58px;
    transform: scale(0.82);
    transform-origin: left center;
  }

  .price-head,
  .price-row {
    grid-template-columns: 1fr;
  }

  .price-head {
    gap: 4px;
    padding: 14px 0;
  }

  .price-head span,
  .price-row span,
  .price-row strong {
    padding: 0 22px;
    border-left: 0;
  }

  .price-head span + span,
  .price-row strong {
    border-left: 0;
  }

  .price-row {
    gap: 8px;
    min-height: 110px;
    padding: 18px 0;
  }

  .price-row span {
    font-size: 1.22rem;
  }

  .work-flow {
    padding: 22px 16px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-icon {
    width: 78px;
    height: 78px;
  }

  .flow-number {
    left: calc(50% - 48px);
  }

  .info-note,
  .discount-note {
    align-items: flex-start;
    padding: 18px;
  }

  .landing-contact {
    padding: 22px 18px;
  }

  .landing-contact-links {
    width: 100%;
  }

  .landing-contact-links a {
    width: 100%;
  }

  .application-copy {
    padding: 26px 20px;
  }

  .manager-shell {
    width: calc(100% - 28px);
    padding-top: 20px;
  }

  .lead-card-main {
    flex-direction: column;
  }

  .lead-card select {
    max-width: none;
  }

  .contact-band {
    width: calc(100% - 28px);
    padding: 24px;
  }

  .route-preview-footer span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

/* KidsGo 2026 premium landing redesign */
body.landing-page {
  --kg-green: #0d5c53;
  --kg-green-dark: #063d36;
  --kg-yellow: #f7b91e;
  --kg-yellow-soft: #fff3c8;
  --kg-cream: #fffaf0;
  --kg-paper: #ffffff;
  --kg-ink: #151d1b;
  --kg-muted: #65726f;
  --kg-line: #e7ebe6;
  --kg-pink: #f35c9b;
  --kg-coral: #de4b2a;
  margin: 0;
  color: var(--kg-ink);
  background:
    linear-gradient(180deg, #fff6d8 0, #fffaf0 430px, #ffffff 920px),
    #ffffff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.landing-page main {
  width: min(980px, calc(100% - 96px));
  margin: 0 auto;
  padding: 18px 0 44px;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: 100%;
  min-height: 70px;
  margin: 0 auto;
  padding: 10px max(48px, calc((100vw - 980px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(13, 92, 83, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(13, 92, 83, 0.11);
  backdrop-filter: blur(22px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  color: var(--kg-green-dark);
  font-size: 1.16rem;
  font-weight: 950;
}

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--kg-green-dark);
  background: var(--kg-yellow);
  font-size: 0.95rem;
  box-shadow: 0 10px 28px rgba(247, 185, 30, 0.34);
}

.landing-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--kg-muted);
  font-size: 0.94rem;
  font-weight: 820;
}

.landing-nav a:hover {
  color: var(--kg-green);
}

.header-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
}

.header-button {
  padding: 0 18px;
  color: var(--kg-green-dark);
  background: var(--kg-yellow);
}

.hero-saas {
  padding-top: 20px;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
  min-height: 670px;
  overflow: hidden;
  padding: 46px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 244, 204, 0.92), rgba(255, 255, 255, 0.94)),
    var(--kg-paper);
  box-shadow: 0 26px 80px rgba(13, 92, 83, 0.12);
}

.hero-panel::before,
.hero-panel::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-panel::before {
  right: 8%;
  bottom: 38px;
  width: 420px;
  height: 170px;
  border-bottom: 2px dashed rgba(13, 92, 83, 0.36);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-panel::after {
  left: 45%;
  top: 76px;
  width: 72px;
  height: 72px;
  border: 14px solid rgba(247, 185, 30, 0.36);
  border-radius: 50%;
}

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

.hero-kicker,
.section-heading span,
.story-copy span,
.contact-section span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--kg-green);
  font-size: 0.86rem;
  font-weight: 940;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 640px;
  margin: 0;
  color: var(--kg-ink);
  font-size: 2.82rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #38413f;
  font-size: 1.24rem;
  font-weight: 650;
}

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

.primary-action {
  padding: 0 24px;
  border: 0;
  color: var(--kg-green-dark);
  background: var(--kg-yellow);
  box-shadow: 0 14px 30px rgba(247, 185, 30, 0.26);
  cursor: pointer;
}

.secondary-action {
  padding: 0 22px;
  color: var(--kg-green-dark);
  border: 1px solid rgba(13, 92, 83, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  margin-top: 38px;
}

.hero-proof div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(13, 92, 83, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--kg-green-dark);
  font-size: 1.18rem;
  font-weight: 950;
}

.hero-proof span {
  margin-top: 4px;
  color: var(--kg-muted);
  font-size: 0.92rem;
  font-weight: 740;
}

.hero-media {
  position: relative;
  z-index: 2;
  min-height: 560px;
}

.hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border: 10px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: 0 28px 64px rgba(13, 92, 83, 0.19);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(13, 92, 83, 0.16);
  backdrop-filter: blur(18px);
}

.floating-card span,
.floating-card small {
  color: var(--kg-muted);
  font-size: 0.82rem;
  font-weight: 820;
}

.floating-card strong {
  color: var(--kg-green-dark);
  font-size: 1rem;
  font-weight: 950;
}

.route-widget {
  left: -22px;
  bottom: 74px;
}

.safety-widget {
  right: -18px;
  top: 72px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.trust-strip div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--kg-line);
  border-radius: 8px;
  background: var(--kg-paper);
  box-shadow: 0 14px 38px rgba(13, 92, 83, 0.06);
}

.trust-strip strong {
  color: var(--kg-green-dark);
  font-size: 1.02rem;
  font-weight: 950;
}

.trust-strip p {
  grid-column: 2;
  margin: 3px 0 0;
  color: var(--kg-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.mini-icon,
.feature-icon,
.process-icon {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.mini-icon {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  background: var(--kg-yellow-soft);
}

.check-icon::before {
  width: 21px;
  height: 12px;
  border-bottom: 4px solid var(--kg-green);
  border-left: 4px solid var(--kg-green);
  content: "";
  transform: rotate(-45deg);
}

.time-icon::before {
  width: 29px;
  height: 29px;
  border: 4px solid var(--kg-yellow);
  border-radius: 50%;
  content: "";
}

.time-icon::after {
  position: absolute;
  width: 4px;
  height: 16px;
  border-radius: 999px;
  background: var(--kg-yellow);
  content: "";
  transform: translateY(-3px);
}

.location-icon::before {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--kg-green);
  content: "";
  transform: rotate(-45deg);
}

.location-icon::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--kg-paper);
  content: "";
}

.section-block {
  margin-top: 80px;
  scroll-margin-top: 68px;
}

#top,
#why,
#process,
#pricing,
#request {
  scroll-margin-top: 68px;
}

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

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

.section-heading h2,
.story-copy h2,
.contact-section h2 {
  margin: 0;
  color: var(--kg-ink);
  font-size: 2.05rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p,
.story-copy p {
  margin: 16px 0 0;
  color: var(--kg-muted);
  font-size: 1.15rem;
  line-height: 1.62;
}

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

.feature-grid article {
  min-height: 285px;
  padding: 26px;
  border: 1px solid var(--kg-line);
  border-radius: 8px;
  background: var(--kg-paper);
  box-shadow: 0 16px 44px rgba(13, 92, 83, 0.06);
}

.feature-grid article:nth-child(2) {
  background: #fff9e9;
}

.feature-grid article:nth-child(3) {
  background: #f7fbfa;
}

.feature-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  background: var(--kg-yellow-soft);
}

.route-icon::before,
.chat-icon::before,
.shield-soft-icon::before,
.route-icon::after,
.chat-icon::after,
.shield-soft-icon::after {
  position: absolute;
  content: "";
}

.route-icon::before {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--kg-green);
  transform: rotate(-45deg);
}

.route-icon::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--kg-paper);
}

.chat-icon::before {
  width: 38px;
  height: 28px;
  border: 4px solid var(--kg-green);
  border-radius: 8px;
}

.chat-icon::after {
  left: 43px;
  top: 44px;
  width: 12px;
  height: 12px;
  border-right: 4px solid var(--kg-green);
  border-bottom: 4px solid var(--kg-green);
  transform: rotate(45deg);
}

.shield-soft-icon::before {
  width: 42px;
  height: 48px;
  border: 5px solid var(--kg-green);
  border-radius: 24px 24px 30px 30px;
}

.shield-soft-icon::after {
  width: 20px;
  height: 11px;
  border-bottom: 5px solid var(--kg-green);
  border-left: 5px solid var(--kg-green);
  transform: rotate(-45deg);
}

.feature-grid h3 {
  margin: 0;
  color: var(--kg-green-dark);
  font-size: 1.08rem;
}

.feature-grid p {
  margin: 12px 0 0;
  color: var(--kg-muted);
  font-size: 1.04rem;
  line-height: 1.58;
}

.photo-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
  border-radius: 8px;
  background: #fff5d8;
}

.story-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border: 10px solid var(--kg-paper);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(13, 92, 83, 0.11);
}

.district-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.district-pills span,
.pricing-note span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--kg-green-dark);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 870;
}

.process-section {
  padding: 54px 44px;
  border: 1px solid var(--kg-line);
  border-radius: 8px;
  background: var(--kg-paper);
  box-shadow: 0 18px 52px rgba(13, 92, 83, 0.07);
}

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

.process-track article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-track article:not(:last-child)::after {
  position: absolute;
  top: 48px;
  left: calc(50% + 54px);
  width: calc(100% - 64px);
  border-top: 2px dashed rgba(13, 92, 83, 0.36);
  content: "";
}

.process-track article > span {
  position: absolute;
  top: -4px;
  left: calc(50% - 56px);
  z-index: 3;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--kg-green-dark);
  background: var(--kg-yellow);
  font-weight: 950;
}

.process-icon {
  width: 94px;
  height: 94px;
  margin-bottom: 18px;
  background: var(--kg-green);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.08);
}

.process-icon::before,
.process-icon::after {
  position: absolute;
  content: "";
}

.form-step::before {
  width: 34px;
  height: 44px;
  border: 3px solid var(--kg-paper);
  border-radius: 4px;
}

.form-step::after {
  width: 20px;
  height: 3px;
  background: var(--kg-paper);
  box-shadow: 0 10px 0 var(--kg-paper), 0 20px 0 var(--kg-paper);
}

.route-step::before {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 0;
  background: var(--kg-paper);
  transform: rotate(-45deg);
}

.route-step::after {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--kg-green);
}

.call-step::before {
  width: 34px;
  height: 34px;
  border: 6px solid var(--kg-paper);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-38deg);
}

.school-step::before {
  bottom: 28px;
  width: 46px;
  height: 34px;
  border: 3px solid var(--kg-paper);
  border-radius: 4px;
}

.school-step::after {
  top: 25px;
  width: 34px;
  height: 24px;
  border-top: 3px solid var(--kg-paper);
  border-left: 3px solid var(--kg-paper);
  transform: rotate(45deg);
}

.process-track h3 {
  margin: 0;
  color: var(--kg-green-dark);
  font-size: 0.98rem;
}

.process-track p {
  margin: 8px 0 0;
  color: var(--kg-muted);
  font-size: 1rem;
  line-height: 1.48;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
}

.pricing-grid {
  display: grid;
  gap: 12px;
}

.pricing-grid article {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--kg-line);
  border-radius: 8px;
  background: var(--kg-paper);
  box-shadow: 0 14px 38px rgba(13, 92, 83, 0.06);
}

.pricing-grid span {
  color: var(--kg-muted);
  font-size: 1.08rem;
  font-weight: 880;
}

.pricing-grid strong {
  color: var(--kg-yellow);
  font-size: 1.82rem;
  font-weight: 950;
}

.pricing-note {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-note span {
  background: var(--kg-yellow-soft);
}

.application-section {
  padding: 52px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--kg-green-dark), var(--kg-green)),
    var(--kg-green);
}

.application-section .section-heading span,
.application-section .section-heading h2,
.application-section .section-heading p {
  color: var(--kg-paper);
}

.application-section .section-heading span {
  color: var(--kg-yellow);
}

.landing-page .lead-form {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(4, 49, 44, 0.22);
}

.landing-page .form-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.landing-page label {
  display: grid;
  grid-column: span 3;
  gap: 7px;
  color: var(--kg-green-dark);
  font-size: 0.9rem;
  font-weight: 870;
}

.landing-page .field-third {
  grid-column: span 2;
}

.landing-page .span-2 {
  grid-column: span 6;
}

.landing-page input,
.landing-page select,
.landing-page textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d7e1dd;
  border-radius: 8px;
  color: var(--kg-ink);
  background: #fbfdfc;
  outline: 0;
}

.landing-page textarea {
  resize: vertical;
}

.landing-page input:focus,
.landing-page select:focus,
.landing-page textarea:focus {
  border-color: var(--kg-yellow);
  box-shadow: 0 0 0 3px rgba(247, 185, 30, 0.22);
}

.address-field {
  position: relative;
  z-index: 20;
}

.address-field.is-active,
.address-field:focus-within {
  z-index: 35;
}

.address-pair-field {
  align-content: start;
}

.address-pair-field .field-title {
  display: flex;
  min-height: 20px;
  align-items: flex-end;
  white-space: nowrap;
}

.address-pair-field input {
  height: 50px;
}

.address-pair-field.is-active .field-title {
  color: var(--kg-green);
}

.address-pair-field.is-active input {
  border-color: rgba(13, 92, 83, 0.45);
  box-shadow: 0 0 0 3px rgba(13, 92, 83, 0.1);
}

.address-pair-field input:disabled {
  color: rgba(38, 55, 51, 0.58);
  background: #eef3f1;
  cursor: not-allowed;
}

.address-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: -6px;
  padding: 10px 12px;
  border: 1px solid rgba(13, 92, 83, 0.1);
  border-radius: 8px;
  background: rgba(13, 92, 83, 0.045);
}

.address-status {
  color: var(--kg-muted);
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.35;
}

.address-actions {
  display: flex;
  justify-content: flex-start;
}

.address-actions button {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: var(--kg-green-dark);
  background: var(--kg-yellow);
  box-shadow: 0 10px 20px rgba(247, 185, 30, 0.2);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
}

.address-actions button:hover {
  background: var(--kg-yellow-dark);
}

.address-actions button:disabled,
.map-helper button:disabled {
  color: rgba(38, 55, 51, 0.55);
  background: #e4ebe8;
  box-shadow: none;
  cursor: not-allowed;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 12;
  overflow: hidden;
  border: 1px solid var(--kg-line);
  border-radius: 8px;
  background: var(--kg-paper);
  box-shadow: 0 18px 42px rgba(6, 61, 54, 0.16);
}

.suggestion-item {
  display: grid;
  width: 100%;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 14px;
  border: 0;
  border-bottom: 1px solid var(--kg-line);
  color: var(--kg-ink);
  background: var(--kg-paper);
  text-align: left;
  cursor: pointer;
}

.suggestion-item:last-child {
  border-bottom: 0;
}

.suggestion-item:hover {
  background: #fff8e5;
}

.suggestion-icon {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--kg-yellow-soft);
}

.suggestion-icon::before {
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  background: var(--kg-green);
  content: "";
  transform: rotate(-45deg);
}

.suggestion-icon::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kg-paper);
  content: "";
}

.suggestion-item strong,
.suggestion-item small {
  display: block;
}

.suggestion-item strong {
  color: var(--kg-green-dark);
  font-size: 0.96rem;
  font-weight: 920;
}

.suggestion-item small {
  margin-top: 3px;
  color: var(--kg-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.suggestion-empty {
  padding: 16px;
  color: var(--kg-muted);
  font-size: 0.92rem;
  font-weight: 780;
}

.address-map-shell {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--kg-line);
  border-radius: 8px;
  background: var(--kg-paper);
}

.address-map {
  position: relative;
  z-index: 0;
  height: 310px;
  min-height: 310px;
  background:
    linear-gradient(135deg, rgba(13, 92, 83, 0.08), rgba(247, 185, 30, 0.08)),
    #f4f7f4;
}

.map-helper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-top: 1px solid var(--kg-line);
  color: var(--kg-muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.map-helper button {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: var(--kg-green-dark);
  background: var(--kg-yellow);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
}

.leaflet-container {
  z-index: 0;
  font-family: inherit;
}

.address-map .leaflet-pane,
.address-map .leaflet-control-container {
  z-index: 1;
}

.address-map .leaflet-top,
.address-map .leaflet-bottom {
  z-index: 2;
}

.address-marker {
  display: grid;
  width: 36px !important;
  height: 36px !important;
  place-items: center;
  background: transparent;
}

.address-marker span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 3px solid var(--kg-paper);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 22px rgba(6, 61, 54, 0.24);
  transform: rotate(-45deg);
}

.address-marker b {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
  transform: rotate(45deg);
}

.address-marker.home-pin span {
  background: var(--kg-green);
}

.address-marker.school-pin span {
  background: var(--kg-yellow);
}

.address-marker.home-pin b {
  color: var(--kg-paper);
  background: var(--kg-green-dark);
}

.address-marker.school-pin b {
  color: var(--kg-green-dark);
  background: var(--kg-paper);
}

.landing-page .form-submit {
  width: 100%;
  margin-top: 18px;
}

.landing-page .form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--kg-green);
  font-weight: 880;
  text-align: center;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 30px 34px;
  border-radius: 8px;
  color: var(--kg-paper);
  background:
    linear-gradient(100deg, var(--kg-green-dark) 0%, var(--kg-green-dark) 58%, var(--kg-yellow) 58%, var(--kg-yellow) 100%),
    var(--kg-green-dark);
}

.contact-section h2 {
  color: var(--kg-paper);
  font-size: 1.28rem;
}

.contact-section span {
  color: var(--kg-yellow);
  margin-bottom: 6px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--kg-paper);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.13);
  font-weight: 900;
}

.contact-actions .instagram-link {
  color: var(--kg-green-dark);
  border-color: var(--kg-green-dark);
  background: var(--kg-yellow);
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.landing-page .toast {
  background: var(--kg-green-dark);
}

@media (max-width: 1040px) {
  .landing-header,
  .landing-page main {
    width: min(100% - 44px, 980px);
  }

  .landing-header {
    grid-template-columns: 1fr auto;
    width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .landing-nav {
    display: none;
  }

  .hero-panel,
  .photo-story,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 34px;
  }

  .hero-content h1 {
    font-size: 2.28rem;
  }

  .hero-media,
  .hero-media img {
    min-height: auto;
    height: 430px;
  }

  .pricing-note {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .landing-page main {
    width: min(100% - 24px, 980px);
    padding-bottom: 28px;
  }

  .landing-header {
    top: 0;
    width: 100%;
    min-height: 62px;
    padding: 8px 12px;
  }

  .brand-lockup {
    font-size: 1.05rem;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .header-button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero-panel {
    min-height: auto;
    padding: 24px;
  }

  .hero-content h1 {
    font-size: 1.82rem;
  }

  .hero-content p,
  .section-heading p,
  .story-copy p {
    font-size: 1.04rem;
    line-height: 1.55;
  }

  .hero-proof,
  .trust-strip,
  .feature-grid,
  .process-track,
  .landing-page .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    height: 330px;
  }

  .floating-card {
    position: static;
    margin-top: 10px;
  }

  .section-block {
    margin-top: 54px;
  }

  .section-heading h2,
  .story-copy h2 {
    font-size: 1.65rem;
  }

  .photo-story,
  .process-section,
  .application-section {
    padding: 22px;
  }

  .story-photo img {
    height: 300px;
  }

  .process-track article:not(:last-child)::after {
    display: none;
  }

  .process-track article > span {
    left: calc(50% - 50px);
  }

  .pricing-grid article,
  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-grid strong {
    font-size: 1.72rem;
  }

  .landing-page .span-2 {
    grid-column: span 1;
  }

  .landing-page label,
  .landing-page .field-third {
    grid-column: span 1;
  }

  .landing-page .lead-form {
    padding: 18px;
  }

  .address-pair-field .field-title {
    min-height: 0;
    white-space: normal;
  }

  .address-support {
    align-items: stretch;
    flex-direction: column;
    margin-top: 0;
  }

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

  .address-suggestions {
    position: static;
    margin-top: 8px;
  }

  .address-map {
    height: 260px;
    min-height: 260px;
  }

  .map-helper {
    align-items: stretch;
    flex-direction: column;
  }

  .map-helper button {
    width: 100%;
  }

  .contact-section {
    background:
      linear-gradient(135deg, var(--kg-green-dark), var(--kg-green)),
      var(--kg-green-dark);
  }

  .contact-actions,
  .contact-actions a {
    width: 100%;
  }

  .contact-actions a {
    justify-content: center;
  }
}
