:root {
  --blue: #004575;
  --blue-dark: #1e3f6a;
  --green: #789a78;
  --green-soft: #eef5ee;
  --mint: #f6faf7;
  --line: #dfe9e3;
  --text: #1e3350;
  --muted: #53647b;
  --white: #fff;
  --max-width: 1190px;
}

* { box-sizing: border-box; }
html { font-size: 17px; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Aptos", "Segoe UI", "Inter", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); }

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

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 35px rgba(30, 63, 106, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

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

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.footer-nav a {
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 650;
  padding: 9px 11px;
  border-bottom: 0;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active,
.footer-nav a:hover {
  color: #fff;
  background: var(--blue-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 22px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.95rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--blue-dark);
  padding: 0;
  place-items: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 3px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.hero {
  background:
    radial-gradient(circle at 78% 12%, rgba(120, 154, 120, 0.16), transparent 32%),
    linear-gradient(90deg, #fff 0%, #fff 54%, var(--mint) 100%);
  border-bottom: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.86fr);
  gap: 56px;
  align-items: center;
  padding: 60px 0 54px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-title,
.page-title {
  margin: 0;
  color: var(--blue-dark);
  font-family: "Aptos Display", "Segoe UI", Arial, sans-serif;
  line-height: 1.06;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.hero-title { font-size: clamp(2.55rem, 4.45vw, 4rem); }
.hero-title span { color: var(--green); }
.page-title { font-size: clamp(2.25rem, 4vw, 3.7rem); }

.hero-lead,
.page-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.42;
}

.hero-media {
  position: relative;
  min-height: 470px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(30, 63, 106, 0.18);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
}

.hero-note {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 18px 40px rgba(30, 63, 106, 0.14);
}

.hero-note img {
  width: 54px;
  height: 54px;
  min-height: auto;
  object-fit: contain;
}

.hero-note span {
  display: block;
  color: var(--muted);
}

.hero-note strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.route-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 310px;
  position: relative;
  box-shadow: 0 18px 45px rgba(8, 54, 84, 0.07);
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(111, 143, 112, 0.22);
  pointer-events: none;
}

.route-card-icon,
.step-icon {
  display: inline-grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
}

.route-card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
}

.route-card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.route-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.route-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-card li {
  padding: 9px 0 9px 24px;
  position: relative;
  border-top: 1px solid var(--line);
}

.route-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 2px;
  top: 19px;
}

.route-card svg,
.step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 16px;
  color: var(--blue-dark);
  background: #fff;
  text-decoration: none;
  font-weight: 650;
}

.hero-btn {
  min-height: 64px;
  min-width: 210px;
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 1.02rem;
  gap: 14px;
}

.btn.primary {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
}

.btn.secondary {
  border-color: var(--line);
  background: #fff;
}

.hero-ctas,
.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.section { padding: 54px 0; }

.section.alt {
  background: var(--mint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2,
.content-page h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: start;
}

.quick-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-list li,
.check-list li,
.steps li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.quick-list strong {
  display: block;
  color: var(--blue-dark);
}

.mini-list {
  margin: 12px 0 22px;
  padding-left: 18px;
}

.mini-list li {
  margin-bottom: 8px;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 32px;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
}

.price-list span {
  color: var(--blue-dark);
  font-weight: 700;
}

.price-list strong {
  color: var(--green);
  font-size: 1.25rem;
  white-space: nowrap;
}

.roadmap-section {
  background: linear-gradient(180deg, #fff 0%, var(--mint) 100%);
  border-top: 1px solid var(--line);
}

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

.roadmap::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: var(--line);
}

.roadmap-step {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  min-height: 245px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 52px;
  height: 52px;
  margin: 0 0 22px;
  border: 6px solid #fff;
  outline: 1px solid var(--line);
}

.roadmap-step h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.roadmap-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.detailed-steps {
  list-style: none;
  padding-left: 0;
}

.detailed-steps li {
  position: relative;
  padding-left: 70px;
  min-height: 58px;
}

.detail-icon {
  position: absolute;
  left: 0;
  top: 13px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid var(--line);
}

.detail-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detailed-steps strong,
.detailed-steps span {
  display: block;
}

.detailed-steps span {
  color: var(--muted);
  margin-top: 3px;
}

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

.card {
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.75), rgba(255, 255, 255, 0) 58%),
    #fff;
  border: 1px solid var(--line);
  padding: 26px;
  min-height: 210px;
  border-radius: 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 154, 120, 0.38);
  box-shadow: 0 16px 36px rgba(30, 63, 106, 0.08);
}

.treatment-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.treatment-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 1.14rem;
  line-height: 1.25;
}

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

.page-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 82% 15%, rgba(120, 154, 120, 0.18), transparent 30%),
    var(--mint);
  border-bottom: 1px solid var(--line);
}

.compact-hero {
  padding: 42px 0 34px;
}

.content-page { padding: 46px 0 60px; }

.notice {
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  padding: 18px 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-section-pro {
  padding: 48px 0 64px;
  background: #f3f5f3;
}

.contact-pro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.08fr);
  gap: 22px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 22px;
}

.info-panel,
.map-panel,
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(8, 54, 84, 0.08);
}

.info-panel h2,
.map-panel h2,
.form-panel h2 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #f5f8f5;
  color: var(--green);
  border: 1px solid var(--line);
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list strong,
.form-helpers strong {
  display: block;
  color: var(--blue-dark);
  font-size: 0.94rem;
}

.contact-list span,
.contact-list a,
.form-intro,
.form-helpers p {
  color: var(--muted);
  font-size: 0.92rem;
}

.map-frame {
  height: 250px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--mint);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-dark);
  font-weight: 650;
  text-decoration: none;
}

.form-intro {
  margin: 0 0 18px;
  max-width: 620px;
}

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

.contact-form label {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-weight: 650;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #cddbd4;
  padding: 12px 13px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.privacy-note,
.contact-result {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 10px;
}

.form-helpers {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-helpers div {
  position: relative;
  padding-left: 28px;
}

.form-helpers div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--green);
  background: var(--green-soft);
}

.form-helpers p {
  margin: 3px 0 0;
}

.site-footer {
  background: #1f3558;
  color: #eef5f0;
  padding: 0 0 20px;
}

.site-footer a {
  color: rgba(238, 245, 240, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.pre-footer-cta {
  background: #f7fbf8;
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.footer-cta {
  transform: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: transparent;
  color: var(--text);
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

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

.footer-cta > * {
  position: relative;
  z-index: 1;
}

.footer-cta-action {
  display: flex;
  justify-content: flex-end;
}

.footer-cta h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.4rem, 2.25vw, 1.95rem);
  line-height: 1.14;
  max-width: 760px;
}

.footer-cta p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 720px;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(31, 53, 88, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr 0.88fr minmax(280px, 1.22fr);
  gap: 34px;
  padding: 34px 0 24px;
}

.footer-brand-name {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.footer-brand-name span {
  color: var(--green);
}

.footer-brand-subtitle {
  color: rgba(238, 245, 240, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  margin-top: 6px;
  text-transform: lowercase;
}

.footer-brand p {
  max-width: 300px;
  margin: 14px 0 0;
  color: rgba(238, 245, 240, 0.82);
  font-size: 0.94rem;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 740;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 8px;
  background: var(--green);
}

.footer-column p {
  margin: 0;
  color: rgba(238, 245, 240, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-contact {
  gap: 8px;
}

.footer-email {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(238, 245, 240, 0.16);
  padding-top: 14px;
  color: rgba(238, 245, 240, 0.68);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 84px;
    position: relative;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-wrap {
    display: none;
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(30, 63, 106, 0.12);
    padding: 16px;
    z-index: 30;
  }

  .nav-wrap.is-open {
    display: grid;
    gap: 14px;
  }

  .nav {
    display: grid;
    gap: 6px;
    justify-content: stretch;
  }

  .nav a {
    display: block;
    padding: 12px 14px;
  }

  .header-cta {
    width: 100%;
  }

  .hero-inner,
  .intro-grid,
  .split,
  .contact-layout,
  .contact-pro-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 30px;
    padding: 44px 0 48px;
  }

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

  .hero-title {
    font-size: clamp(2.4rem, 7vw, 3.35rem);
  }

  .hero-lead {
    font-size: 1.12rem;
    max-width: 640px;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    transform: none;
    margin-bottom: 0;
    padding: 0;
    gap: 18px;
  }

  .footer-cta-button {
    width: 100%;
  }

  .footer-cta-action {
    justify-content: stretch;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 8px 0 22px;
  }

  .footer-contact {
    min-width: 0;
  }

  .footer-email {
    white-space: normal;
    overflow-wrap: anywhere;
  }

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

  .footer-bottom nav {
    justify-content: flex-start;
  }

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

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

  .roadmap::before {
    top: 0;
    bottom: 0;
    left: 44px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .roadmap-step {
    min-height: auto;
    display: grid;
    grid-template-columns: 68px 1fr;
    column-gap: 8px;
    align-items: start;
  }

  .step-icon {
    grid-row: 1 / span 3;
    margin: 0;
  }
}

@media (max-width: 620px) {
  html { font-size: 16px; }
  .container { width: min(var(--max-width), calc(100% - 24px)); }

  body {
    background: #f4f8f5;
  }

  .header-inner {
    min-height: 108px;
    padding: 12px 0 10px;
    justify-content: center;
    gap: 0;
  }

  .logo {
    width: 142px;
    height: 84px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 16px;
    right: 0;
    margin-left: 0;
  }

  .nav a,
  .footer-column a {
    padding: 6px 7px;
    font-size: 0.9rem;
  }

  .hero-inner {
    padding: 24px 0 28px;
    gap: 0;
  }

  .hero-title {
    font-size: clamp(1.72rem, 8.8vw, 2.24rem);
    line-height: 1.1;
  }

  .hero-lead,
  .page-lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-ctas {
    display: grid;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-btn {
    width: 100%;
    min-height: 54px;
    padding: 12px 18px;
    font-size: 0.96rem;
  }

  .hero-media {
    display: none;
  }

  .page-hero {
    padding: 22px 0 24px;
    text-align: left;
    background:
      radial-gradient(circle at 88% 0%, rgba(120, 154, 120, 0.14), transparent 38%),
      var(--mint);
  }

  .page-hero .container {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .page-hero .eyebrow {
    margin-bottom: 9px;
  }

  .page-lead {
    margin: 14px 0 0;
  }

  .section {
    padding: 26px 0;
  }

  .section:not(.alt):not(.roadmap-section) {
    background: #f4f8f5;
  }

  .intro-grid,
  .roadmap-section .container,
  .section.alt .container {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
  }

  .section h2,
  .content-page h2 {
    font-size: 1.48rem;
    line-height: 1.18;
    margin-bottom: 12px;
    text-align: left;
  }

  .content-page p,
  .content-page li {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .section.alt h2 {
    color: var(--blue-dark);
    font-family: "Aptos Display", "Segoe UI", Arial, sans-serif;
    font-size: 1.38rem;
    font-weight: 850;
    margin-bottom: 16px;
  }

  .section.alt {
    background: #f4f8f5;
    border: 0;
  }

  .quick-list {
    margin-top: 10px;
  }

  .quick-list li {
    padding: 11px 0;
  }

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

  .page-title {
    font-size: clamp(1.56rem, 7.35vw, 2rem);
    line-height: 1.12;
  }

  .content-page {
    width: min(var(--max-width), calc(100% - 24px));
    margin: 0 auto;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
  }

  .content-page.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-page + .pre-footer-cta,
  main + .pre-footer-cta {
    margin-top: 26px;
  }

  .notice {
    border-left: 0;
    border-top: 3px solid var(--green);
    border-radius: 18px;
    padding: 18px;
  }

  .notice h2,
  .notice strong {
    text-align: left;
  }

  .check-list li,
  .steps li {
    padding: 12px 0;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
  }

  .content-page > .cards {
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .card {
    background: #fff;
    border: 0;
    border-radius: 0;
    min-height: auto;
    display: block;
    padding: 15px 0;
    margin: 0 16px;
    box-shadow: none;
    transition: none;
  }

  .card + .card {
    border-top: 1px solid var(--line);
  }

  .card:hover {
    transform: none;
    box-shadow: none;
  }

  .treatment-icon {
    width: 34px;
    height: 34px;
    margin: 0 0 8px;
    border-radius: 11px;
  }

  .treatment-icon svg {
    width: 18px;
    height: 18px;
  }

  .content-page > .cards .card {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    margin: 0;
    padding: 14px 0;
  }

  .content-page > .cards .card:nth-child(n+4) {
    display: none;
  }

  .content-page > .cards .treatment-icon {
    grid-row: 1 / span 2;
    margin: 1px 0 0;
  }

  .content-page > .cards .card h3,
  .content-page > .cards .card p {
    grid-column: 2;
  }

  .card h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 0.98rem;
  }

  .card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .roadmap-section {
    background: #f4f8f5;
    border-top: 0;
  }

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

  .section-heading .eyebrow {
    margin-bottom: 8px;
  }

  .section-heading p:last-child {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .roadmap {
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
  }

  .roadmap::before {
    content: none;
  }

  .roadmap-step {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 14px;
    padding: 13px 0;
    margin: 0 16px;
    border: 0;
    min-height: auto;
  }

  .roadmap-step + .roadmap-step {
    border-top: 1px solid var(--line);
  }

  .step-icon {
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
    margin: 1px 0 0;
    border: 0;
    outline: 1px solid var(--line);
    border-radius: 12px;
  }

  .step-icon svg {
    width: 18px;
    height: 18px;
  }

  .roadmap-step h3 {
    font-size: 0.98rem;
    margin-bottom: 4px;
  }

  .roadmap-step p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .page-actions {
    margin-top: 20px;
  }

  .page-actions .btn {
    width: 100%;
  }

  .detailed-steps li {
    padding-left: 54px;
  }

  .detail-icon {
    width: 38px;
    height: 38px;
  }

  .detail-icon svg {
    width: 20px;
    height: 20px;
  }

  .form-row { grid-template-columns: 1fr; }
  .info-panel,
  .map-panel,
  .form-panel {
    padding: 18px;
  }

  .price-list {
    gap: 10px;
    margin: 14px 0 24px;
  }

  .price-list div {
    padding: 14px 16px;
    align-items: flex-start;
  }

  .price-list span {
    line-height: 1.35;
  }

  .price-list strong {
    font-size: 1.08rem;
  }

  .contact-section-pro {
    padding: 22px 0 34px;
    background: #f4f8f5;
  }

  .contact-pro-grid {
    gap: 16px;
  }

  .contact-list li {
    align-items: flex-start;
  }

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

  .pre-footer-cta {
    padding: 20px 0;
    background: #f4f8f5;
    border-top: 0;
  }

  .footer-cta-copy {
    text-align: left;
  }

  .footer-cta h2 {
    font-size: 1.22rem;
  }

  .footer-cta p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-cta-button {
    min-height: 48px;
  }

  .site-footer {
    padding-bottom: 16px;
  }

  .footer-cta {
    border-radius: 20px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 0 16px;
    text-align: left;
  }

  .footer-brand p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-brand-name {
    font-size: 1.28rem;
  }

  .footer-brand-subtitle {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .footer-column {
    gap: 5px;
  }

  .footer-column h3 {
    font-size: 0.92rem;
    margin-bottom: 4px;
  }

  .footer-column h3::after {
    margin-left: 0;
    margin-right: 0;
    margin-top: 7px;
  }

  .footer-column a {
    padding: 4px 0;
  }

  .footer-email {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    padding-top: 12px;
  }

  .footer-bottom nav {
    gap: 8px 12px;
    justify-content: flex-start;
  }
}
