:root {
  --green: #00733f;
  --green-dark: #005b32;
  --green-deep: #003d25;
  --ink: #111111;
  --muted: #555f5a;
  --line: #e7ebe8;
  --soft: #f6f8f7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 32px;
  height: 32px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.icon-fill {
  padding: 6px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
}

.wa-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.wa-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
  overflow: hidden;
}

.wa-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-badge-small {
  width: 18px;
  height: 18px;
  margin-right: 0;
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 12px clamp(28px, 6vw, 76px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.brand img {
  width: 196px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  font-size: 14px;
  font-weight: 700;
  flex: 1;
}

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

.nav-dropdown {
  position: relative;
}

.nav-services-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-services-link span {
  color: var(--green);
  font-size: 14px;
  line-height: 1;
}

.services-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 220px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.services-menu a {
  padding: 11px 12px;
  border-radius: 6px;
  color: #15251d;
  font-size: 13px;
  white-space: nowrap;
}

.services-menu a:hover {
  color: var(--green);
  background: #edf7f2;
}

.nav-dropdown:hover .services-menu,
.nav-dropdown:focus-within .services-menu,
.nav-dropdown.is-open .services-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.btn-primary,
.btn-whatsapp {
  color: var(--white);
  background: var(--green);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  background: #008c4d;
  box-shadow: 0 10px 22px rgba(0, 91, 50, 0.22);
  transform: translateY(-2px);
}

.btn-primary:hover .wa-badge,
.btn-whatsapp:hover .wa-badge {
  transform: translateY(-1px) scale(1.03);
}

.btn-secondary:hover,
.btn-dark:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid #222;
}

.btn-dark {
  color: var(--white);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.section {
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(520px, 1.08fr);
  align-items: stretch;
  gap: 18px;
  padding: 20px 0 10px;
}

.hero-copy h1 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(39px, 4vw, 50px);
  line-height: 1.02;
}

.hero-copy h1 span {
  color: var(--green);
}

.hero-copy p {
  max-width: 500px;
  margin: 18px 0 0;
  color: #181818;
  font-size: 15px;
  line-height: 1.46;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: #1b3d2e;
  font-size: 12px;
  font-weight: 700;
}

.price-card li::before,
.plan-band li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
}

.trust-row span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 7px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.hero-media {
  position: relative;
  min-height: 360px;
  border-radius: 0;
  background: #f7faf8;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 61, 37, 0.82) 0%, rgba(0, 115, 63, 0.52) 34%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(270deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
}

.hero-media > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.price-card {
  position: absolute;
  z-index: 2;
  left: 28px;
  top: 50%;
  width: 250px;
  min-height: 238px;
  padding: 20px 22px 19px;
  color: var(--white);
  background: rgba(0, 115, 63, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 42, 24, 0.18);
  transform: translateY(-50%);
  backdrop-filter: blur(3px);
}

.price-card::before {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 79, 45, 0.16);
}

.price-card::after {
  content: "●●●";
  position: absolute;
  right: -8px;
  top: -1px;
  color: var(--green);
  font-size: 13px;
  letter-spacing: -2px;
  font-weight: 900;
}

.price-card strong,
.price-card b {
  display: block;
}

.price-card strong {
  font-size: 19px;
  margin-bottom: 8px;
}

.price-card b {
  margin-top: 10px;
  font-size: 32px;
}

.price-card small {
  display: block;
  margin: 4px 0 20px;
  font-size: 12.5px;
  font-weight: 700;
}

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

.price-card li,
.plan-band li,
.check-list li {
  margin: 10px 0;
  font-size: 12.5px;
  font-weight: 700;
}

.clinic {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 36px;
  padding: 18px 0 18px;
}

.clinic-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  object-fit: cover;
  object-position: center top;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 12px;
  background: var(--green);
}

.clinic p,
.nr p,
.trainings p,
.section-heading p,
.faq p {
  color: #222;
  font-size: 17px;
  line-height: 1.55;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-heading p {
  margin: 14px 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
  text-align: center;
  color: #102d20;
  font-weight: 800;
}

.feature-grid span {
  display: grid;
  justify-items: center;
  gap: 9px;
  line-height: 1.25;
}

.services {
  padding: 18px 0;
  text-align: center;
}

.services h2::after,
.trainings h2::after {
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.service-grid article,
.training-grid article {
  display: grid;
  align-items: center;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  justify-content: center;
  min-height: 76px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  color: #111;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
}

.plan-band {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr minmax(340px, 430px);
  align-items: center;
  gap: 28px;
  margin-top: 14px;
  min-height: 160px;
  padding: 22px 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 26% 15%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(125deg, #008449 0%, #006d3e 44%, #004b2e 100%);
  border-radius: 10px;
  overflow: hidden;
}

.plan-price {
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.48);
}

.plan-band h2 {
  font-size: 28px;
  line-height: 1.08;
}

.plan-band h2::after {
  display: none;
}

.plan-band p {
  margin: 8px 0;
  line-height: 1.45;
}

.plan-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  max-width: 310px;
  font-size: 13px;
}

.plan-copy p {
  margin: 0;
}

.plan-band strong {
  display: block;
  font-size: 40px;
  line-height: 1;
}

.plan-price small {
  display: block;
  margin-top: 6px;
  font-weight: 700;
}

.plan-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 10px;
  padding: 17px 22px;
  color: #123326;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 54, 29, 0.18);
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  margin: 0;
  line-height: 1.25;
}

.plan-list li::before {
  flex: 0 0 auto;
  margin-top: 4px;
}

.budget-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.budget-actions .btn {
  min-width: 0;
  flex: 1 1 160px;
}

.plan-band .btn {
  position: relative;
  z-index: 3;
  min-height: 34px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 12px;
}

.nr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  padding: 34px 0 14px;
}

.nr h2 {
  max-width: 560px;
}

.check-list {
  columns: 2;
  margin-top: 22px;
}

.budget-box {
  padding: 30px 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(237, 247, 242, 0.96)),
    #edf7f2;
  border: 1px solid rgba(0, 115, 63, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 88, 48, 0.08);
}

.budget-box h3 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 20px;
}

.budget-box li {
  margin: 12px 0;
  font-size: 14px;
}

.budget-box li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-right: 9px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.budget-box .btn {
  margin-top: 22px;
  min-height: 38px;
  min-width: 270px;
  border-radius: 8px;
}

.trainings {
  padding: 10px 0 24px;
  text-align: center;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.training-grid article {
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 88px;
  text-align: center;
}

.training-grid .icon {
  width: 34px;
  height: 34px;
}

.faq {
  padding: 16px 0 28px;
}

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

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  color: #13251d;
  font-size: 16px;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 20px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0 0 12px;
  padding: 0 22px;
  font-size: 14px;
}

.faq details p:last-child {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.location-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
  padding: 18px 0 0;
}

.location-map-wrap {
  overflow: hidden;
  background: #eaf2ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.location-map {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.location-card {
  width: 100%;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.location-card h2 {
  font-size: 26px;
}

.location-card p {
  position: relative;
  margin: 8px 0;
  padding-left: 26px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.location-icon {
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--green);
}

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

.location-card .btn {
  min-height: 36px;
  margin-top: 4px;
  padding: 0 22px;
  font-size: 12px;
}

.site-footer {
  margin-top: 0;
  color: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 34px 0 28px;
  grid-auto-flow: row dense;
}

.footer-brand img {
  width: 205px;
}

.footer-brand p {
  max-width: 360px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer-info {
  display: grid;
  align-content: start;
  gap: 6px;
  padding-top: 6px;
}

.footer-info small {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-info a,
.footer-info span {
  color: #19241f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-contact-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-link > span:last-child {
  display: grid;
  gap: 2px;
}

.footer-contact-link > span:last-child span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 18px;
  height: 18px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-info strong {
  font-size: 15px;
  line-height: 1.2;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px max(28px, calc((100% - 1120px) / 2));
  color: var(--white);
  background: linear-gradient(90deg, #00733f, #005b32);
}

.footer-cta strong {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px clamp(28px, 6vw, 76px);
  background: linear-gradient(90deg, #1a1a1a, #0f0f0f);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.92);
}

.legal-page {
  background: #f6f8f7;
  padding: 42px 0 64px;
}

.legal-content {
  width: min(100% - 48px, 860px);
  margin: 0 auto;
  padding: 34px 38px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.legal-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.legal-content h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

.legal-content h2 {
  margin-top: 28px;
  font-size: 22px;
}

.legal-content h2::after {
  width: 30px;
  margin-top: 8px;
}

.legal-content p {
  color: #202820;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
    gap: 14px;
    min-height: auto;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .clinic,
  .nr {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 18px;
  }

  .hero-media {
    min-height: 380px;
  }

  .price-card {
    left: 22px;
    width: 250px;
  }

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

  .plan-band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .plan-price {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  }

  .plan-copy {
    max-width: none;
  }

  .plan-list {
    columns: 1;
    padding-right: 130px;
  }

  .plan-band .btn {
    justify-self: start;
  }

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

  .feature-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-main {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 1120px);
  }

  .footer-bottom {
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .section,
  .location-section {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    align-items: center;
    padding: 12px 14px;
  }

  .brand img {
    width: 150px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
    scrollbar-width: none;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .services-menu {
    position: fixed;
    top: 104px;
    left: 14px;
    right: 14px;
    min-width: 0;
    transform: translateY(8px);
  }

  .nav-dropdown:hover .services-menu,
  .nav-dropdown:focus-within .services-menu,
  .nav-dropdown.is-open .services-menu {
    transform: translateY(0);
  }

  .btn-whatsapp {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .actions {
    gap: 10px;
  }

  .actions .btn {
    flex: 1 1 150px;
    padding: 0 14px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-media {
    min-height: 440px;
  }

  .hero-media > img {
    object-position: 76% center;
  }

  .price-card {
    left: 14px;
    right: auto;
    top: 18px;
    width: min(260px, calc(100% - 80px));
    min-height: 232px;
    padding: 24px 24px 20px;
    transform: none;
  }

  .price-card strong {
    font-size: 20px;
  }

  .price-card b {
    font-size: 32px;
  }

  .price-card small {
    margin-bottom: 14px;
  }

  .price-card li {
    margin: 8px 0;
    font-size: 11.5px;
  }

  .clinic {
    gap: 22px;
    padding-top: 18px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }

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

  .service-grid article {
    grid-template-columns: 34px 1fr;
    min-height: 74px;
    padding: 12px;
    font-size: 13px;
  }

  .service-grid .icon,
  .training-grid .icon {
    width: 28px;
    height: 28px;
  }

  .plan-band {
    padding: 22px 18px;
  }

  .plan-band h2 {
    font-size: 26px;
  }

  .plan-band strong {
    font-size: 38px;
  }

  .plan-list {
    grid-template-columns: 1fr;
    row-gap: 9px;
    padding: 16px 18px;
  }

  .check-list {
    columns: 1;
  }

  .budget-box {
    padding: 24px;
  }

  .budget-box .btn {
    min-width: 0;
    width: 100%;
  }

  .training-grid article {
    min-height: 92px;
    font-size: 13px;
  }

  .location-section {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 14px;
  }

  .location-map {
    height: 180px;
    border-radius: 0 0 8px 8px;
  }

  .location-map-wrap {
    border-radius: 0 0 8px 8px;
    border-top: 0;
  }

  .location-card {
    border-radius: 8px 8px 0 0;
  }

  .footer-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 18px;
  }

  .footer-cta strong {
    font-size: 22px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100% - 36px, 1120px);
    padding: 28px 0 24px;
  }

  .footer-brand img {
    width: 170px;
  }

  .footer-bottom {
    gap: 14px;
    padding: 18px;
  }
}
