:root {
  --bg: #f5ede2;
  --bg-strong: #163b31;
  --surface: rgba(255, 251, 247, 0.82);
  --surface-solid: #fffaf5;
  --surface-alt: #efe3d2;
  --surface-dark: #11352b;
  --text: #21352f;
  --text-soft: #607067;
  --text-inverse: rgba(255, 248, 241, 0.9);
  --title: #142f28;
  --line: rgba(23, 54, 45, 0.14);
  --line-strong: rgba(23, 54, 45, 0.24);
  --accent: #c26e42;
  --accent-soft: #f0c8b2;
  --accent-deep: #9d5330;
  --gold: #d4b37b;
  --shadow-lg: 0 24px 60px rgba(18, 45, 37, 0.12);
  --shadow-md: 0 12px 28px rgba(18, 45, 37, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(212, 179, 123, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(194, 110, 66, 0.18), transparent 24%),
    linear-gradient(180deg, #f8f2ea 0%, var(--bg) 48%, #efe5d8 100%);
}

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

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

img {
  max-width: 100%;
}

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

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

.site-shell {
  overflow: clip;
}

.service-ribbon {
  background: linear-gradient(90deg, #183d33, #234d40);
  color: rgba(255, 248, 241, 0.84);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.service-ribbon__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 241, 232, 0.84);
  border-bottom: 1px solid rgba(20, 47, 40, 0.08);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 245, 238, 0.95);
  box-shadow: 0 12px 30px rgba(18, 45, 37, 0.08);
}

.header-main,
.header-contacts,
.nav-bar__row,
.site-nav {
  display: flex;
  align-items: center;
}

.header-main {
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
}

.brand__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(18, 45, 37, 0.12));
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__copy strong,
.hero h1,
.section-heading h2,
.request-copy h2 {
  font-family: "Prata", Georgia, serif;
}

.brand__copy strong {
  font-size: 1.04rem;
  color: var(--title);
}

.brand__copy span {
  font-size: 0.94rem;
  color: var(--text-soft);
}

.header-contacts {
  gap: 14px;
}

.contact-chip {
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid rgba(20, 47, 40, 0.08);
  border-radius: 18px;
  background: rgba(255, 251, 247, 0.58);
}

.contact-chip__label,
.eyebrow,
.service-card__label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-chip__label,
.eyebrow {
  color: var(--accent-deep);
}

.contact-chip strong,
.contact-chip a {
  font-size: 0.94rem;
  color: var(--title);
}

.header-call,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-call,
.nav-cta,
.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff7ef;
  box-shadow: 0 14px 22px rgba(157, 83, 48, 0.18);
}

.header-call,
.nav-cta {
  padding: 0 20px;
}

.nav-bar {
  border-top: 1px solid rgba(20, 47, 40, 0.08);
}

.nav-bar__row {
  justify-content: space-between;
  gap: 20px;
}

.site-nav {
  gap: 8px;
  padding: 12px 0;
}

.site-nav__meta {
  display: none;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--title);
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 251, 247, 0.75);
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(20, 47, 40, 0.14);
  border-radius: 16px;
  background: rgba(255, 251, 247, 0.76);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--title);
  border-radius: 999px;
}

.hero {
  padding: 52px 0 36px;
}

.hero--inner {
  padding-top: 44px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: stretch;
}

.hero__content,
.hero-stage,
.metric-tile,
.service-card,
.timeline-step,
.zone-card,
.trust-card,
.request-form,
.faq-list details,
.split-panel__content {
  animation: rise-in 0.7s ease both;
}

.hero__content h1 {
  max-width: 11ch;
  margin: 0 0 20px;
  color: var(--title);
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1.05;
}

.hero__lead,
.section-heading p,
.split-panel__content p,
.request-copy p,
.footer-copy {
  color: var(--text-soft);
}

.hero__lead {
  max-width: 62ch;
  margin: 0;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}

.button {
  padding: 0 24px;
  border: 1px solid transparent;
}

.button:hover,
.header-call:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button--ghost {
  background: transparent;
  color: var(--title);
  border-color: rgba(20, 47, 40, 0.16);
  box-shadow: none;
}

.button--block {
  width: 100%;
}

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

.hero-points article,
.hero-stage__card,
.hero-stage__panel {
  position: relative;
  border: 1px solid rgba(20, 47, 40, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.88), rgba(244, 234, 221, 0.72));
  box-shadow: var(--shadow-md);
}

.hero-points article {
  padding: 20px;
}

.hero-points strong,
.hero-stage__panel strong,
.hero-stage__card strong,
.metric-tile strong,
.service-card h3,
.timeline-step h3,
.zone-card strong,
.trust-card h3,
.faq-list summary,
.request-note strong,
.footer-contacts a {
  color: var(--title);
}

.hero-points strong,
.service-card h3,
.timeline-step h3,
.trust-card h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-points span,
.hero-stage__panel span,
.hero-stage__card p,
.metric-tile span,
.service-card p,
.timeline-step p,
.zone-card p,
.trust-card p,
.faq-list p,
.request-note,
.form-disclaimer,
.footer-contacts span {
  color: var(--text-soft);
}

.hero-stage {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(212, 179, 123, 0.34), transparent 34%),
    linear-gradient(160deg, #173e34 0%, #11352b 56%, #0d2c24 100%);
  box-shadow: 0 28px 60px rgba(17, 53, 43, 0.2);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 248, 241, 0.1);
  border-radius: calc(var(--radius-xl) - 10px);
}

.hero-stage__panel,
.hero-stage__card {
  z-index: 1;
}

.hero-stage__panel {
  padding: 26px;
}

.hero-stage__panel p,
.hero-stage__card span {
  display: block;
  margin: 0 0 8px;
  color: rgba(17, 53, 43, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stage__panel strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Prata", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.2;
}

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

.hero-stage__card {
  padding: 22px;
}

.hero-stage__card strong {
  display: block;
  font-size: 1.34rem;
  margin-bottom: 6px;
}

.hero-stage__card--accent {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(194, 110, 66, 0.95), rgba(157, 83, 48, 0.95));
}

.hero-stage__card--accent span,
.hero-stage__card--accent strong,
.hero-stage__card--accent p {
  color: rgba(255, 247, 239, 0.94);
}

.metrics-band {
  padding: 10px 0 18px;
}

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

.metric-tile {
  padding: 22px 24px;
  border: 1px solid rgba(20, 47, 40, 0.09);
  border-radius: 22px;
  background: rgba(255, 251, 247, 0.68);
  box-shadow: var(--shadow-md);
}

.metric-tile span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.metric-tile strong {
  font-size: 1.12rem;
}

.section {
  padding: 54px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.66), rgba(242, 231, 217, 0.88));
}

.section--contrast {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top left, rgba(194, 110, 66, 0.16), transparent 24%),
    linear-gradient(135deg, #173e34 0%, #103228 100%);
}

.section--request {
  padding-top: 62px;
}

.section-grid,
.route-layout,
.request-layout,
.split-panel {
  display: grid;
  gap: 28px;
}

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

.section-heading h2,
.request-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.14;
  color: var(--title);
}

.section-heading--light h2,
.section-heading--light p,
.section--contrast .timeline-step h3,
.section--contrast .timeline-step p {
  color: var(--text-inverse);
}

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

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

.price-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(20, 47, 40, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(247, 237, 225, 0.82));
  box-shadow: 0 18px 34px rgba(18, 45, 37, 0.08);
}

.price-card--featured {
  transform: translateY(-8px);
  border-color: rgba(194, 110, 66, 0.22);
  background:
    radial-gradient(circle at top right, rgba(250, 214, 186, 0.86), transparent 28%),
    linear-gradient(180deg, rgba(255, 248, 241, 1), rgba(245, 227, 210, 0.95));
  box-shadow: 0 24px 44px rgba(157, 83, 48, 0.14);
}

.price-card__badge,
.price-card__label {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.price-card__badge {
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(194, 110, 66, 0.12);
  color: var(--accent-deep);
}

.price-card__label {
  color: var(--accent-deep);
}

.price-card h3 {
  margin: 14px 0 12px;
  color: var(--title);
  font-size: 1.28rem;
  line-height: 1.24;
}

.price-card__value {
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
}

.price-card p,
.pricing-note span {
  color: var(--text-soft);
}

.price-card__list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.price-card__list li {
  position: relative;
  padding-left: 22px;
}

.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(20, 47, 40, 0.08);
  border-radius: 24px;
  background: rgba(255, 251, 247, 0.76);
  box-shadow: var(--shadow-md);
}

.pricing-note strong {
  color: var(--title);
  font-size: 1.04rem;
}

.service-card,
.zone-card,
.trust-card,
.split-panel__content,
.request-form,
.faq-list details {
  padding: 26px;
  border: 1px solid rgba(20, 47, 40, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 247, 0.74);
  box-shadow: var(--shadow-md);
}

.service-card__label {
  display: inline-flex;
  margin-bottom: 16px;
}

.service-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent-deep);
  font-weight: 800;
}

.route-layout {
  gap: 26px;
}

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

.timeline-step {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 248, 241, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 241, 0.06);
  backdrop-filter: blur(8px);
}

.timeline-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(212, 179, 123, 0.2);
  color: #fff4ea;
  font-weight: 800;
}

.split-panel {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 0 0 5px rgba(194, 110, 66, 0.12);
}

.request-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  align-items: start;
}

.request-copy {
  padding-top: 10px;
}

.request-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 251, 247, 0.58);
}

.request-form {
  display: grid;
  gap: 16px;
}

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

.request-form span {
  color: var(--title);
  font-weight: 700;
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  outline: 2px solid rgba(194, 110, 66, 0.2);
  border-color: var(--accent);
}

.form-disclaimer {
  margin: -2px 0 0;
  font-size: 0.92rem;
}

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

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list p {
  margin: 12px 0 0;
}

.faq-list--compact details {
  padding: 22px;
}

.site-footer {
  color: var(--text-inverse);
  background: linear-gradient(180deg, #102f27 0%, #0d2720 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto auto;
  align-items: start;
  gap: 28px;
  padding: 38px 0 26px;
}

.footer-bottom__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.brand--footer .brand__copy strong,
.brand--footer .brand__copy span,
.footer-copy,
.footer-nav a,
.footer-contacts span,
.footer-bottom__row {
  color: rgba(255, 248, 241, 0.8);
}

.footer-nav,
.footer-contacts {
  display: grid;
  gap: 10px;
}

.footer-nav {
  grid-template-columns: repeat(2, max-content);
  gap: 10px 24px;
}

.footer-copy {
  max-width: 440px;
  margin: 16px 0 0;
}

.footer-contacts {
  justify-items: start;
}

.footer-nav a:hover,
.footer-contacts a:hover {
  color: #fff7ef;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 241, 0.08);
}

.footer-bottom__row {
  padding: 16px 0 24px;
  font-size: 0.94rem;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: calc(22px + var(--scroll-top-footer-offset, 0px));
  z-index: 45;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff7ef;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 18px 28px rgba(157, 83, 48, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .split-panel,
  .request-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-points,
  .service-grid,
  .trust-grid,
  .price-grid,
  .zones-grid,
  .metrics-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage__stack {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .service-ribbon {
    display: none;
  }

  .header-main {
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
  }

  .service-ribbon__row,
  .header-main,
  .footer-grid,
  .footer-bottom__row {
    align-items: flex-start;
  }

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

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom__row {
    justify-content: flex-start;
  }

  .header-contacts {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand__copy strong {
    font-size: 0.98rem;
  }

  .brand__copy span,
  .contact-chip--hours,
  .contact-chip--phone,
  .nav-cta {
    display: none;
  }

  .header-call {
    display: inline-flex;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .nav-bar__row {
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .site-nav.is-open {
    display: flex;
    margin-top: 8px;
    padding-bottom: 10px;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 251, 247, 0.72);
  }

  .site-nav.is-open .site-nav__meta {
    display: grid;
    gap: 4px;
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 251, 247, 0.72);
  }

  .site-nav__meta-label {
    color: var(--accent-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .site-nav__meta strong {
    color: var(--title);
    font-size: 0.96rem;
  }

  .hero {
    padding-top: 36px;
  }

  .hero__content h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 8vw, 3.6rem);
  }
}

@media (max-width: 640px) {
  .hero-points,
  .service-grid,
  .trust-grid,
  .price-grid,
  .zones-grid,
  .metrics-band__grid,
  .timeline,
  .hero-stage__stack {
    grid-template-columns: 1fr;
  }

  .header-call {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero-stage,
  .service-card,
  .zone-card,
  .trust-card,
  .price-card,
  .split-panel__content,
  .request-form,
  .faq-list details {
    padding: 22px;
  }

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

  .scroll-top {
    right: 14px;
    width: 46px;
    height: 46px;
  }
}
