@charset "UTF-8";
:root {
  --green: #2D6A4F;
  --green-light: #52B788;
  --green-pale: #D8F3DC;
  --green-dark: #1B4332;
  --cream: #FEFAE0;
  --warm: #F8F4EF;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --gold: #B5883E;
  --gold-light: #E8C97A;
  --white: #FFFFFF;
  --radius: 4px;
  --radius-lg: 12px;
}

:root {
  --about-bg: #FBF8F2;
  --about-bg-alt: #F3EFE4;
  --about-green-dark: #2E4B3C;
  --about-green: #3F6650;
  --about-green-light: #E7EEE7;
  --about-gold: #C8A04E;
  --about-gold-light: #F6EEDC;
  --about-text: #2B2B26;
  --about-text-muted: #6E6A5E;
  --about-border: #E2DCC9;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
}

:root {
  --border: #E2DCC9;
}

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

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

a {
  text-decoration: none;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.2;
}

.seo {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 48px;
}
.seo h2 {
  font-size: 30px;
  color: var(--green-dark);
  margin-bottom: 20px;
  text-align: left;
}
.seo p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 15px;
}
.seo strong {
  color: var(--green-dark);
  font-weight: 500;
}
.seo__content {
  position: relative;
  overflow: hidden;
  max-height: 130px;
  transition: max-height 0.5s ease;
}
.seo__content.is-expanded {
  max-height: 2400px;
}
.seo__content.is-expanded .seo__fade {
  opacity: 0;
}
.seo__list {
  list-style: none;
  margin: 12px 0 20px;
}
.seo__list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 15px;
  color: var(--text-muted);
}
.seo__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.seo__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 85%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.seo__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--green-dark);
}
.seo__toggle:hover {
  color: var(--gold);
}
.seo__toggle.is-expanded .seo__chevron {
  transform: rotate(180deg);
}
.seo__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}

section[class*=hero] {
  padding-top: 80px !important;
}

@media (max-width: 900px) {
  .seo {
    padding: 28px 22px;
  }
  .seo h2 {
    font-size: 24px;
  }
  section[class*=hero] {
    padding-top: 80px !important;
  }
}
.btn-primary {
  background: var(--green);
  color: white;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  background: var(--green);
  color: white;
}

.faq {
  background: var(--warm);
}

.faq__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.faq__image {
  display: flex;
  align-items: center;
}

.faq__image img {
  /*max-width: 700px;*/
  /*max-width: 800px;*/
  width: 100%;
  aspect-ratio: 3/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.faq-grid {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q:hover {
  color: var(--green);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--green);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.wpcf7 form p {
  margin: 0;
  padding: 0;
}

.wpcf7 form br {
  display: none;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7 form .wpcf7-response-output {
  margin: 16px 0 0 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  text-align: center;
  border: 2px solid var(--green);
  color: var(--green-dark);
  background: var(--green-pale);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-color: #e74c3c;
  color: #c0392b;
  background: #fadbd8;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

.wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}

input[type=submit].form-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #fff;
  padding: 40px 24px 24px;
  border-radius: var(--radius-lg, 16px);
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.popup-overlay.is-active .popup-content {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}

.popup-close:hover {
  color: var(--green-dark, #333);
}

.sticky-phone {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.sticky-phone a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.4);
  transition: background 0.2s, transform 0.15s;
  animation: bounce-soft 3s ease-in-out infinite;
}

.sticky-phone a:hover {
  background: var(--green-dark);
  transform: scale(1.04);
}

@keyframes bounce-soft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
nav {
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(45, 106, 79, 0.15);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo span {
  color: var(--green-light);
}

.nav-logo img {
  max-width: 50px;
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

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

.nav-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.burger span {
  width: 28px;
  height: 2px;
  background: var(--green-dark);
  transition: 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

footer {
  background: #0A1F14;
  padding: 40px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
}

.footer-logo span {
  color: var(--green-light);
}

footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

footer a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

footer a:hover {
  color: var(--green-light);
}

.notfound-main {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background: radial-gradient(circle at 15% 20%, rgba(200, 160, 78, 0.1) 0%, transparent 40%), radial-gradient(circle at 85% 80%, rgba(46, 75, 60, 0.06) 0%, transparent 40%), #FBF8F2;
}

.notfound-content {
  max-width: 640px;
  text-align: center;
}

.notfound-illustration {
  width: 220px;
  height: 220px;
  margin: 0 auto 32px;
  position: relative;
}

.notfound-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #E7EEE7;
}

.notfound-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 88px;
  font-weight: 700;
  color: #2E4B3C;
}

.notfound-leaf {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50% 0;
  background: #C8A04E;
  z-index: 2;
}

.notfound-leaf-1 {
  top: 8px;
  right: 14px;
  transform: rotate(45deg);
}

.notfound-leaf-2 {
  bottom: 16px;
  left: 6px;
  transform: rotate(-30deg);
  opacity: 0.6;
}

.notfound-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C8A04E;
}

.notfound-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #C8A04E;
}

.notfound-content h1 {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  color: #2E4B3C;
}

.notfound-lead {
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.65;
  color: #6E6A5E;
}

.notfound-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.notfound-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.notfound-btn-primary {
  background: #2E4B3C;
  color: #fff;
}

.notfound-btn-primary:hover {
  background: #3F6650;
}

.notfound-btn-secondary {
  border: 1px solid #2E4B3C;
  color: #2E4B3C;
}

.notfound-btn-secondary:hover {
  background: #E7EEE7;
}

.notfound-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.notfound-links a {
  padding: 10px 20px;
  border: 1px solid #E2DCC9;
  border-radius: 30px;
  background: #fff;
  font-size: 14px;
  color: #2B2B26;
  transition: border-color 0.2s, color 0.2s;
}

.notfound-links a:hover {
  border-color: #C8A04E;
  color: #2E4B3C;
}

.price {
  background: var(--warm);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}
.price * {
  box-sizing: border-box;
}
.price img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.price h1,
.price h2,
.price h3,
.price h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--green-dark);
  font-weight: 600;
  line-height: 1.2;
}
.price a {
  text-decoration: none;
}
.price section {
  padding: 32px 0;
}
.price .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.price__hero {
  padding: 64px 0 0;
}
.price__hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.price__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}
.price__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.price__hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}
.price__hero-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
}
.price__btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.price__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.price__btn-primary {
  background: var(--green-dark);
  color: #fff;
}
.price__btn-primary:hover {
  background: var(--green);
}
.price__btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
}
.price__btn-secondary:hover {
  background: var(--green-pale);
}
.price__hero-photo {
  border-radius: 18px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 24px 48px -24px rgba(46, 75, 60, 0.35);
  position: relative;
}
.price__hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 75, 60, 0) 55%, rgba(46, 75, 60, 0.45) 100%);
}
.price__hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.price__hero-badge .price__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
}
.price__hero-badge .price__txt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
}
.price__section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.price__section-head .price__eyebrow {
  display: inline-flex;
}
.price__section-head h2 {
  font-size: 38px;
  margin-bottom: 14px;
}
.price__section-head p {
  color: var(--text-muted);
  font-size: 16px;
}
.price__alt-bg {
  background: var(--warm);
}
.price__pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.price__card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 32px;
  border: 1px solid var(--border, #E2DCC9);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -28px rgba(46, 75, 60, 0.3);
}
.price__card.price__card--featured {
  border-color: var(--gold);
  position: relative;
  background: linear-gradient(180deg, var(--gold-light) 0%, #fff 38%);
}
.price__card.price__card--featured::before {
  content: "Популярний вибір";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.price__card h3 {
  font-size: 26px;
  margin-bottom: 6px;
}
.price__card .price__btn {
  justify-content: center;
  width: 100%;
}
.price__card-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.price__card-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.price__card-price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: "Jost", sans-serif;
}
.price__card-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.price__feature-list {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 28px;
}
.price__feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border, #E2DCC9);
}
.price__feature-list li:last-child {
  border-bottom: none;
}
.price__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}
.price__included-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.price__included-photo {
  border-radius: 18px;
  overflow: hidden;
  height: 420px;
}
.price__included-title {
  font-size: 34px;
  margin-bottom: 24px;
}
.price__included-list {
  list-style: none;
}
.price__included-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border, #E2DCC9);
}
.price__included-list li:last-child {
  border-bottom: none;
}
.price__included-list .price__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.price__included-list .txt h4,
.price__included-list .price__txt h4 {
  font-size: 18px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.price__included-list .txt p,
.price__included-list .price__txt p {
  font-size: 14px;
  color: var(--text-muted);
}
.price__addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price__addon-card {
  background: #fff;
  border: 1px solid var(--border, #E2DCC9);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
}
.price__addon-card .price__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.price__addon-card h4 {
  font-size: 17px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.price__addon-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}
.price__trust-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.price__trust-text h2 {
  font-size: 36px;
  margin-bottom: 18px;
}
.price__trust-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.price__trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.price__trust-stat {
  background: var(--warm);
  border-radius: 14px;
  padding: 22px;
}
.price__trust-stat .price__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green-dark);
}
.price__trust-stat .price__lbl {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.price__trust-photo {
  border-radius: 18px;
  overflow: hidden;
  height: 440px;
}
.price__faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.price__faq-item {
  background: #fff;
  border: 1px solid var(--border, #E2DCC9);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}
.price__faq-item.open .price__plus {
  transform: rotate(45deg);
}
.price__faq-item.open .price__faq-answer {
  max-height: 240px;
}
.price__faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  color: var(--green-dark);
}
.price__plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.25s;
}
.price__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.price__faq-answer-inner {
  padding: 0 26px 22px;
  color: var(--text-muted);
  font-size: 15px;
}
.price__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price__testimonial-card {
  background: #fff;
  border: 1px solid var(--border, #E2DCC9);
  border-radius: 16px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.price__testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.price__testimonial-text {
  font-size: 15px;
  color: var(--text);
  flex-grow: 1;
  margin-bottom: 20px;
}
.price__testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.price__testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--green-pale);
}
.price__testimonial-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--green-dark);
}
.price__testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}
.price__seo-card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border, #E2DCC9);
  border-radius: 20px;
  padding: 44px 48px;
}
.price__seo {
  color: var(--text-muted);
  font-size: 15px;
}
.price__seo h2 {
  font-size: 30px;
  color: var(--green-dark);
  margin-bottom: 20px;
  text-align: left;
}
.price__seo p {
  margin-bottom: 16px;
}
.price__seo strong {
  color: var(--green-dark);
  font-weight: 500;
}
.price__seo-list {
  list-style: none;
  margin: 12px 0 20px;
}
.price__seo-list li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: 15px;
}
.price__seo-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.price__seo-collapsible {
  position: relative;
  overflow: hidden;
  max-height: 130px;
  transition: max-height 0.5s ease;
}
.price__seo-collapsible.price__expanded {
  max-height: 2400px;
}
.price__seo-collapsible.price__expanded .price__seo-fade {
  opacity: 0;
}
.price__seo-collapsible p:last-of-type {
  margin-bottom: 0;
}
.price__seo-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 85%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.price__seo-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--green-dark);
}
.price__seo-toggle:hover {
  color: var(--gold);
}
.price__seo-toggle:hover .price__chevron {
  background: var(--cream);
}
.price__seo-toggle.price__expanded .price__chevron {
  transform: rotate(180deg);
}
.price__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.price__cta {
  background: var(--green-dark);
  border-radius: 24px;
  padding: 64px 56px;
  text-align: center;
  color: #fff;
  background-image: radial-gradient(circle at 15% 25%, rgba(200, 160, 78, 0.18) 0%, transparent 45%), radial-gradient(circle at 85% 75%, rgba(200, 160, 78, 0.14) 0%, transparent 45%);
}
.price__cta h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 14px;
}
.price__cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 32px;
}
.price__cta .price__btn-row {
  justify-content: center;
}
.price__cta .price__btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.price__cta .price__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
.price__cta .price__btn-primary {
  background: var(--gold);
}
.price__cta .price__btn-primary:hover {
  background: #b88e3c;
}
@media (max-width: 900px) {
  .price .container {
    padding: 0 20px;
  }
  .price section {
    padding: 24px 0;
  }
  .price__hero {
    padding: 32px 0 0;
  }
  .price__hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .price__hero h1 {
    font-size: 36px;
  }
  .price__hero-lead {
    margin: 0 auto 28px;
  }
  .price__btn-row {
    justify-content: center;
  }
  .price__hero-photo {
    height: 300px;
    order: -1;
  }
  .price__section-head h2 {
    font-size: 28px;
  }
  .price__pricing-grid {
    grid-template-columns: 1fr;
  }
  .price__card--featured {
    order: -1;
  }
  .price__included-wrap, .price__trust-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .price__included-photo, .price__trust-photo {
    height: 260px;
    order: -1;
  }
  .price__addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price__trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .price__cta {
    padding: 44px 24px;
  }
  .price__cta h2 {
    font-size: 28px;
  }
  .price__cta .price__btn-row {
    flex-direction: column;
  }
  .price__cta .price__btn {
    width: 100%;
    justify-content: center;
  }
  .price__testimonials-grid {
    grid-template-columns: 1fr;
  }
  .price__seo-card {
    padding: 28px 22px;
  }
  .price__seo h2 {
    font-size: 24px;
  }
}
@media (max-width: 540px) {
  .price__addons-grid {
    grid-template-columns: 1fr;
  }
}

.contacts {
  background: var(--warm);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}
.contacts img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts h1,
.contacts h2,
.contacts h3,
.contacts h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--green-dark);
  font-weight: 600;
  line-height: 1.2;
}
.contacts a {
  color: inherit;
  text-decoration: none;
}
.contacts section {
  padding: 32px 0;
}
.contacts__section--alt {
  background: var(--warm);
}
.contacts__hero {
  padding: 64px 0 0;
  text-align: center;
}
.contacts__hero h1 {
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: 48px;
}
.contacts__lead {
  max-width: 620px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-muted);
}
.contacts__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.contacts__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.contacts__section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.contacts__section-head .contacts__eyebrow {
  display: inline-flex;
}
.contacts__section-head h2 {
  margin-bottom: 14px;
  font-size: 38px;
}
.contacts__section-head p {
  font-size: 16px;
  color: var(--text-muted);
}
.contacts__wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #E2DCC9;
  border-radius: 20px;
}
.contacts__form {
  padding: 48px;
}
.contacts__form h2 {
  margin-bottom: 8px;
  font-size: 30px;
}
.contacts__form-subtitle {
  margin-bottom: 28px;
  font-size: 15px;
  color: var(--text-muted);
}
.contacts__form-row {
  margin-bottom: 18px;
}
.contacts__form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.contacts__form-row input,
.contacts__form-row select,
.contacts__form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #E2DCC9;
  border-radius: 10px;
  font-family: "Jost", sans-serif;
  font-size: 14.5px;
  background: var(--warm);
}
.contacts__form-row textarea {
  min-height: 100px;
  resize: vertical;
}
.contacts__form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contacts__form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  border: none;
}
.contacts__form-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  color: var(--white);
  background: var(--green-dark);
}
.contacts__info h3 {
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--white);
}
.contacts__info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.contacts__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  font-size: 19px;
}
.contacts__label {
  margin-bottom: 2px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.contacts__value {
  font-size: 15px;
}
.contacts__value a:hover {
  color: var(--gold);
}
.contacts__hours {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.contacts__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.contacts__hours-row strong {
  color: var(--white);
  font-weight: 500;
}
.contacts__map {
  overflow: hidden;
  height: 420px;
  border: 1px solid #E2DCC9;
  border-radius: 18px;
}
.contacts__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.contacts__map-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.contacts__directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contacts__direction-card {
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid #E2DCC9;
  border-radius: 16px;
}
.contacts__direction-card .contacts__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--green-dark);
  background: var(--green-pale);
  font-size: 22px;
}
.contacts__direction-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
}
.contacts__direction-card p {
  font-size: 14px;
  color: var(--text-muted);
}
.contacts__faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.contacts__faq-item {
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--white);
  border: 1px solid #E2DCC9;
  border-radius: 14px;
}
.contacts__faq-item.open .contacts__faq-plus {
  transform: rotate(45deg);
}
.contacts__faq-item.open .contacts__faq-answer {
  max-height: 240px;
}
.contacts__faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--green-dark);
}
.contacts__faq-plus {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 18px;
  transition: transform 0.25s;
}
.contacts__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.contacts__faq-answer-inner {
  padding: 0 26px 22px;
  color: var(--text-muted);
  font-size: 15px;
}
@media (max-width: 900px) {
  .contacts section {
    padding: 24px 0;
  }
  .contacts__hero {
    padding: 32px 0 0;
  }
  .contacts__hero h1 {
    font-size: 32px;
  }
  .contacts__section-head h2 {
    font-size: 28px;
  }
  .contacts__wrap {
    grid-template-columns: 1fr;
  }
  .contacts__form {
    padding: 28px 22px;
  }
  .contacts__form h2 {
    font-size: 24px;
  }
  .contacts__form-row--two {
    grid-template-columns: 1fr;
  }
  .contacts__info {
    padding: 32px 22px;
  }
  .contacts__map {
    height: 280px;
  }
  .contacts__directions-grid {
    grid-template-columns: 1fr;
  }
}

.about {
  color: var(--about-text);
  background: var(--about-bg);
  line-height: 1.65;
  font-size: 16px;
}
.about img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about h1,
.about h2,
.about h3,
.about h4 {
  font-family: var(--font-display);
  color: var(--about-green-dark);
  font-weight: 600;
  line-height: 1.2;
}
.about a {
  color: inherit;
  text-decoration: none;
}
.about section {
  padding: 88px 0;
}
.about .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.about .hero {
  padding: 64px 0 0;
  min-height: initial;
  display: block;
  grid-template-columns: initial;
  overflow: visible;
}
.about .hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.about .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--about-gold);
  font-weight: 500;
  margin-bottom: 18px;
}
.about .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--about-gold);
}
.about .hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}
.about .hero p.lead {
  font-size: 18px;
  color: var(--about-text-muted);
  max-width: 480px;
  margin-bottom: 32px;
}
.about .btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.about .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.about .btn-primary {
  background: var(--about-green-dark);
  color: var(--white);
}
.about .btn-primary:hover {
  background: var(--about-green);
}
.about .btn-secondary {
  background: transparent;
  color: var(--about-green-dark);
  border: 1px solid var(--about-green-dark);
}
.about .btn-secondary:hover {
  background: var(--about-green-light);
}
.about .hero-photo {
  border-radius: 18px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 24px 48px -24px rgba(46, 75, 60, 0.35);
  position: relative;
}
.about .hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 75, 60, 0) 55%, rgba(46, 75, 60, 0.45) 100%);
}
.about .hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about .hero-badge .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--about-gold);
}
.about .hero-badge .txt {
  font-size: 13px;
  color: var(--about-text-muted);
  line-height: 1.3;
}
.about .section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.about .section-head .eyebrow {
  display: inline-flex;
}
.about .section-head h2 {
  font-size: 38px;
  margin-bottom: 14px;
}
.about .section-head p {
  color: var(--about-text-muted);
  font-size: 16px;
}
.about .alt-bg {
  background: var(--about-bg-alt);
}
.about .mission-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about .mission-photo {
  border-radius: 18px;
  overflow: hidden;
  height: 440px;
}
.about .mission-text p {
  color: var(--about-text-muted);
  margin-bottom: 16px;
}
.about .mission-title {
  font-size: 34px;
  margin-bottom: 16px;
}
.about .mission-quote {
  border-left: 3px solid var(--about-gold);
  padding-left: 20px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--about-green-dark);
}
.about .values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about .value-card {
  background: var(--white);
  border: 1px solid var(--about-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.about .value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -28px rgba(46, 75, 60, 0.3);
}
.about .value-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--about-green-light);
  color: var(--about-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px;
}
.about .value-card h4 {
  font-size: 19px;
  margin-bottom: 8px;
}
.about .value-card p {
  font-size: 14px;
  color: var(--about-text-muted);
}
.about .history-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.about .history-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--about-border);
  z-index: 0;
}
.about .history-item {
  position: relative;
  z-index: 1;
}
.about .history-item h4 {
  font-size: 17px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--about-text);
  text-align: center;
  margin-bottom: 6px;
}
.about .history-item p {
  font-size: 13.5px;
  color: var(--about-text-muted);
  text-align: center;
}
.about .history-year {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--about-gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.about .trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about .trust-card {
  background: var(--white);
  border: 1px solid var(--about-border);
  border-radius: 16px;
  padding: 30px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.about .trust-card .icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--about-gold-light);
  color: var(--about-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.about .trust-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.about .trust-card p {
  font-size: 14px;
  color: var(--about-text-muted);
}
.about .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 16px;
}
.about .gallery-grid .g1 {
  grid-column: 1/3;
  grid-row: 1/3;
}
.about .gallery-grid .g2 {
  grid-column: 3/5;
  grid-row: 1/2;
}
.about .gallery-grid .g3 {
  grid-column: 3/4;
  grid-row: 2/3;
}
.about .gallery-grid .g4 {
  grid-column: 4/5;
  grid-row: 2/3;
}
.about .gallery-grid > div {
  border-radius: 14px;
  overflow: hidden;
}
.about .cta-band {
  background: var(--about-green-dark);
  border-radius: 24px;
  padding: 64px 56px;
  text-align: center;
  color: var(--white);
  background-image: radial-gradient(circle at 15% 25%, rgba(200, 160, 78, 0.18) 0%, transparent 45%), radial-gradient(circle at 85% 75%, rgba(200, 160, 78, 0.14) 0%, transparent 45%);
}
.about .cta-band h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 14px;
}
.about .cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 32px;
}
.about .cta-band .btn-row {
  justify-content: center;
}
.about .cta-band .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.about .cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
.about .cta-band .btn-primary {
  background: var(--about-gold);
}
.about .cta-band .btn-primary:hover {
  background: #b88e3c;
}
@media (max-width: 900px) {
  .about .container {
    padding: 0 20px;
  }
  .about section {
    padding: 56px 0;
  }
  .about .hero {
    padding: 32px 0 0;
  }
  .about .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .about .hero h1 {
    font-size: 36px;
  }
  .about .hero p.lead {
    margin: 0 auto 28px;
  }
  .about .btn-row {
    justify-content: center;
  }
  .about .hero-photo {
    height: 300px;
    order: -1;
  }
  .about .section-head h2 {
    font-size: 28px;
  }
  .about .mission-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about .mission-photo {
    height: 260px;
    order: -1;
  }
  .about .mission-quote {
    font-size: 19px;
  }
  .about .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about .history-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .about .history-timeline::before {
    display: none;
  }
  .about .trust-strip {
    grid-template-columns: 1fr;
  }
  .about .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 140px);
  }
  .about .gallery-grid .g1 {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .about .gallery-grid .g2 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .about .gallery-grid .g3 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .about .gallery-grid .g4 {
    grid-column: 1/3;
    grid-row: 3/4;
  }
  .about .cta-band {
    padding: 44px 24px;
  }
  .about .cta-band h2 {
    font-size: 28px;
  }
  .about .cta-band .btn-row {
    flex-direction: column;
  }
  .about .cta-band .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .about .values-grid {
    grid-template-columns: 1fr;
  }
  .about .history-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review {
  color: var(--text);
  background: var(--warm);
  line-height: 1.65;
  font-size: 16px;
}
.review img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.review h1,
.review h2,
.review h3,
.review h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--green-dark);
  font-weight: 600;
  line-height: 1.2;
}
.review a {
  color: inherit;
  text-decoration: none;
}
.review .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.review .btn-primary {
  background: var(--green-dark);
  color: #fff;
}
.review .btn-primary:hover {
  background: var(--green);
}
.review .btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
}
.review .btn-secondary:hover {
  background: var(--green-pale);
}
.review__hero-simple {
  padding: 64px 0 0;
  text-align: center;
}
.review__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}
.review__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.review__hero-simple h1 {
  font-size: 48px;
  margin: 0 auto 16px;
  max-width: 760px;
}
.review__lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 28px;
}
.review__rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 32px;
  margin: 0 auto;
}
.review__rating-score {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--green-dark);
}
.review__rating-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.review__rating-count {
  font-size: 13px;
  color: var(--text-muted);
}
.review__section {
  padding: 32px 0;
}
.review__section--alt {
  background: var(--cream);
}
.review__section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.review__section-head h2 {
  font-size: 38px;
  margin-bottom: 14px;
}
.review__section-head p {
  color: var(--text-muted);
  font-size: 16px;
}
.review__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.review__card--featured {
  grid-column: span 2;
  background: linear-gradient(180deg, var(--gold-light) 0%, #fff 45%);
  border-color: var(--gold);
}
.review__card--featured .review__text {
  font-size: 17px;
}
.review__stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review__text {
  font-size: 15px;
  color: var(--text);
  flex-grow: 1;
  margin-bottom: 18px;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--green-pale);
}
.review__name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--green-dark);
}
.review__role {
  font-size: 12.5px;
  color: var(--text-muted);
}
.review__date {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}
.review__video-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.review__video-frame {
  border-radius: 18px;
  overflow: hidden;
  height: 360px;
  position: relative;
  background: var(--green-dark);
}
.review__video-frame img {
  opacity: 0.6;
}
.review__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
}
.review__video-text h2 {
  font-size: 34px;
  margin-bottom: 16px;
}
.review__video-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.review__video-note {
  font-size: 13px;
  color: var(--text-muted);
}
.review__form-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 48px;
}
.review__form-card h2 {
  font-size: 30px;
  margin-bottom: 8px;
  text-align: center;
}
.review__form-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}
.review__star-picker {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: var(--border);
}
.review__star-picker span {
  cursor: pointer;
  transition: color 0.15s;
}
.review__star-picker span.is-active {
  color: var(--gold);
}
.review__form-row {
  margin-bottom: 18px;
}
.review__form-row label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.review__form-row input,
.review__form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: "Jost", sans-serif;
  font-size: 14.5px;
  background: var(--warm);
}
.review__form-row textarea {
  resize: vertical;
  min-height: 110px;
}
.review__form-submit {
  width: 100%;
  justify-content: center;
  border: none;
}
.review__cta-band {
  background: var(--green-dark);
  border-radius: 24px;
  padding: 64px 56px;
  text-align: center;
  color: #fff;
  background-image: radial-gradient(circle at 15% 25%, rgba(181, 136, 62, 0.18) 0%, transparent 45%), radial-gradient(circle at 85% 75%, rgba(181, 136, 62, 0.14) 0%, transparent 45%);
}
.review__cta-band h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 14px;
}
.review__cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 32px;
}
.review__cta-band .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.review__cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
.review__cta-band .btn-primary {
  background: var(--gold);
}
.review__cta-band .btn-primary:hover {
  background: #b88e3c;
}
.review__btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 900px) {
  .review .container {
    padding: 0 20px;
  }
  .review__section {
    padding: 24px 0;
  }
  .review__hero-simple {
    padding: 32px 0 0;
  }
  .review__hero-simple h1 {
    font-size: 32px;
  }
  .review__rating-summary {
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
    text-align: center;
  }
  .review__section-head h2 {
    font-size: 28px;
  }
  .review__grid {
    grid-template-columns: 1fr;
  }
  .review__card--featured {
    grid-column: span 1;
  }
  .review__video-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .review__video-frame {
    height: 240px;
    order: -1;
  }
  .review__form-card {
    padding: 28px 22px;
  }
  .review__form-card h2 {
    font-size: 24px;
  }
  .review__cta-band {
    padding: 44px 24px;
  }
  .review__cta-band h2 {
    font-size: 28px;
  }
  .review__cta-band .review__btn-row {
    flex-direction: column;
  }
  .review__cta-band .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
  padding-bottom: 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5% 80px 6%;
  background: var(--warm);
  position: relative;
  z-index: -2;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  width: -moz-fit-content;
  width: fit-content;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero h1 {
  font-size: clamp(34px, 7vw, 42px);
  color: var(--green-dark);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-light);
}

.hero-lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 480px;
}

.hero-offer {
  background: var(--green-dark);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  margin: 24px 0 32px;
  font-size: 15px;
  font-weight: 500;
  max-width: 480px;
  border-left: 4px solid var(--gold);
}

.hero-offer strong {
  display: block;
  font-size: 17px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(45, 106, 79, 0.2);
}

.hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-right {
  position: relative;
  /*background: var(--green-dark);*/
  overflow: hidden;
  /*background:url('../img/car.jpg') center center/contain no-repeat;*/
  /*background: linear-gradient(160deg, #2D6A4F 0%, #1B4332 40%, #0A2218 100%);*/
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  /*background: linear-gradient(160deg, #2D6A4F 0%, #1B4332 40%, #0A2218 100%);*/
  background: url("../../assets/img/hero-desktop.PNG") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/*.hero-image-placeholder::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    !*inset: 0;*!*/
/*    !*background-image:*!*/
/*    !*        radial-gradient(circle at 30% 40%, rgba(82,183,136,0.2) 0%, transparent 50%),*!*/
/*    !*        radial-gradient(circle at 70% 70%, rgba(181,136,62,0.15) 0%, transparent 40%);*!*/
/*    background: linear-gradient(160deg, #2D6A4F 0%, #1B4332 40%, #0A2218 100%);*/
/*}*/
.hero-img-text {
  position: relative;
  text-align: center;
  padding: 40px;
}

.hero-img-text .icon-big {
  font-size: 80px;
  margin-bottom: 24px;
  display: block;
  opacity: 0.9;
}

.hero-img-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  max-width: 320px;
  line-height: 1.5;
}

.trust-bar {
  background: var(--green-dark);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.trust-icon {
  width: 28px;
  height: 28px;
  background: rgba(82, 183, 136, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

section {
  padding: 96px 5%;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 5vw, 52px);
  color: var(--green-dark);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
}

.empathy {
  background: var(--warm);
}

.empathy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.empathy-content .section-sub {
  margin-bottom: 32px;
}

.pain-list {
  list-style: none;
  margin-bottom: 32px;
}

.pain-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--text-muted);
}

.pain-list li::before {
  content: "—";
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.empathy-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.empathy-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 180px;
  color: rgba(82, 183, 136, 0.15);
  line-height: 1;
}

.empathy-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
  position: relative;
}

.empathy-card cite {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}

.services-swiper {
  padding-bottom: 60px;
  margin-top: 12px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  border: 1px solid rgba(45, 106, 79, 0.15);
  border-radius: var(--radius-lg);
  height: auto;
}

.service-card:hover {
  background: var(--warm);
  box-shadow: 0 8px 32px rgba(45, 106, 79, 0.08);
}

.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 26px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
}

.service-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-features li::before {
  content: "✓";
  color: var(--green-light);
  font-weight: 600;
  flex-shrink: 0;
}

.numbers {
  background: var(--green-dark);
}

.numbers .section-title {
  color: white;
}

.numbers .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.numbers .section-label {
  color: var(--gold-light);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.number-item {
  padding: 40px 8px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.number-item:last-child {
  border-right: none;
}

.number-big {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 8px;
}

.number-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 15px;
}

.offer-section {
  background: var(--cream);
}

.offer-box {
  background: white;
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.offer-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--green);
}

.offer-tag {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 5px 16px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.offer-box h2 {
  font-size: clamp(28px, 3vw, 36px);
  color: var(--green-dark);
  margin-bottom: 16px;
}

.offer-box p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 500px;
}

.offer-includes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 32px;
}

.offer-includes li {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-includes li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

.offer-cta-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  align-items: center;
}

.offer-cta-block .btn-primary {
  width: 100%;
  text-align: center;
  padding: 15px 24px;
  font-size: 14px;
}

.offer-cta-block .btn-outline {
  width: 100%;
  text-align: center;
  padding: 15px 24px;
  font-size: 14px;
}

.offer-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.how {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  rightright: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green));
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.step h4 {
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.conditions {
  background: var(--warm);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.condition-tag {
  background: white;
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.condition-tag:hover {
  border-color: var(--green-light);
  background: var(--green-pale);
}

.condition-tag::before {
  content: "◆";
  font-size: 8px;
  color: var(--green-light);
  flex-shrink: 0;
}

.transport {
  background: var(--white);
}

.transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.transport-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
}

.transport-card h3 {
  font-size: 28px;
  color: white;
  margin-bottom: 16px;
}

.transport-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.transport-list {
  list-style: none;
}

.transport-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.transport-list li::before {
  content: "→";
  color: var(--green-light);
  flex-shrink: 0;
}

.transport-free {
  background: var(--gold);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
  text-align: center;
}

.transport-info h3 {
  font-size: 28px;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.transport-benefit {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  align-items: flex-start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.transport-benefit h4 {
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 4px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
}

.transport-benefit p {
  font-size: 14px;
  color: var(--text-muted);
}

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

.rehab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.rehab-card {
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: white;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.rehab-card:hover {
  box-shadow: 0 8px 32px rgba(45, 106, 79, 0.12);
  transform: translateY(-2px);
}

.rehab-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.rehab-card h4 {
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.rehab-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--warm);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  color: var(--green-pale);
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
}

.author-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 12px;
}

.final-cta {
  background: var(--green-dark);
  padding: 96px 5%;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.final-cta .section-label {
  color: var(--gold-light);
}

.final-cta .section-title {
  color: white;
}

.final-cta .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.contact-details {
  margin-bottom: 32px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-ico {
  width: 40px;
  height: 40px;
  background: rgba(82, 183, 136, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-row a {
  color: var(--green-light);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.contact-row a:hover {
  color: white;
}

.contact-row span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  font-size: 24px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.contact-form p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

.transport__header {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.transport__header-block img {
  max-width: 800px;
  width: 100%;
  aspect-ratio: 3/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.empathy-image img {
  max-width: 800px;
  width: 100%;
  height: 570px;
  -o-object-fit: cover;
  object-fit: cover;
}

.numbers__header {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.numbers__header-block img {
  max-width: 800px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img img {
  border-radius: 24px;
}

@media (max-width: 993px) {
  .hero-right {
    display: none;
  }
}
.service-page {
  --service-green: var(--about-green-dark);
  --service-green-mid: var(--about-green);
  --service-green-soft: var(--about-green-light);
  --service-gold: var(--about-gold);
  --service-gold-soft: var(--about-gold-light);
  --service-bg: var(--about-bg);
  --service-bg-alt: var(--about-bg-alt);
  --service-text: var(--about-text);
  --service-muted: var(--about-text-muted);
  --service-border: var(--about-border);
  --service-radius-sm: 6px;
  --service-radius-md: 14px;
  --service-radius-lg: 22px;
  --service-radius-xl: 32px;
  --service-shadow-sm: 0 2px 10px rgba(46, 75, 60, 0.07);
  --service-shadow-md: 0 8px 28px rgba(46, 75, 60, 0.11);
  --service-shadow-lg: 0 18px 54px rgba(46, 75, 60, 0.14);
  color: var(--service-text);
  background: var(--white);
}
.service-page img,
.service-page svg {
  display: block;
}
.service-page svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.service-page__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: var(--service-radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.service-page__button:hover {
  transform: translateY(-1px);
}

.service-page__button--gold {
  background: var(--service-gold);
  color: var(--white);
}
.service-page__button--gold:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(181, 136, 62, 0.28);
}

.service-page__button--green {
  background: var(--service-green);
  color: var(--white);
}
.service-page__button--green:hover {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--service-shadow-md);
}

.service-page__button--outline {
  border-color: var(--service-green);
  background: transparent;
  color: var(--service-green);
}
.service-page__button--outline:hover {
  background: var(--service-green-soft);
  color: var(--service-green);
}

.service-page__button--light-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}
.service-page__button--light-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.service-breadcrumb {
  border-bottom: 1px solid var(--service-border);
  background: var(--service-bg);
}

.service-breadcrumb__container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 13px;
  color: var(--service-muted);
}

.service-breadcrumb__link {
  color: var(--service-muted);
}
.service-breadcrumb__link:hover {
  color: var(--service-green);
}

.service-breadcrumb__separator {
  color: rgba(110, 106, 94, 0.55);
}

.service-breadcrumb__current {
  color: var(--service-text);
  font-weight: 600;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding-right: 0;
  padding-bottom: 72px;
  padding-left: 0;
  background: linear-gradient(135deg, #f2ede4 0%, #e7eee7 62%, #fbf8f2 100%);
}
.service-hero::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 75, 60, 0.1) 0%, rgba(46, 75, 60, 0) 70%);
  pointer-events: none;
}

.service-hero__container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.service-hero__content {
  max-width: 590px;
}

.service-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 6px 16px 6px 7px;
  border: 1px solid rgba(46, 75, 60, 0.18);
  border-radius: 999px;
  background: var(--service-green-soft);
  color: var(--service-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-hero__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--service-green);
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}

.service-hero__eyebrow,
.service-section__eyebrow,
.service-main-cta__eyebrow,
.service-cities__title,
.service-team-card__role {
  color: var(--service-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-hero__eyebrow {
  margin-bottom: 14px;
}

.service-hero__title {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--service-text);
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.02em;
}
.service-hero__title em {
  color: var(--service-green);
  font-style: italic;
}

.service-hero__lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--service-muted);
  font-size: 17px;
  line-height: 1.75;
}

.service-hero__buttons {
  margin-bottom: 34px;
}

.service-hero__trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.service-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--service-muted);
  font-size: 14px;
  font-weight: 600;
}
.service-hero__trust-item svg {
  color: var(--service-green);
  font-size: 17px;
  flex-shrink: 0;
}

.service-hero__media {
  position: relative;
}

.service-hero__image-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: var(--service-radius-xl);
  background: var(--service-green-soft);
  box-shadow: var(--service-shadow-lg);
}

.service-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-hero__floating-card {
  position: absolute;
  bottom: -18px;
  left: -18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
  padding: 16px 20px;
  border-radius: var(--service-radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--service-shadow-lg);
}

.service-hero__floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--service-radius-sm);
  background: var(--service-gold-soft);
  color: var(--service-gold);
  font-size: 23px;
  flex-shrink: 0;
}

.service-hero__floating-text strong,
.service-hero__floating-text span {
  display: block;
}
.service-hero__floating-text strong {
  color: var(--service-text);
  font-size: 14px;
  line-height: 1.25;
}
.service-hero__floating-text span {
  margin-top: 2px;
  color: var(--service-muted);
  font-size: 12px;
  line-height: 1.35;
}

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

.service-stats__container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-stats__item {
  padding: 30px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}
.service-stats__item:last-child {
  border-right: 0;
}

.service-stats__number {
  margin-bottom: 7px;
  color: var(--service-gold);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.service-stats__label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.service-section {
  padding: 76px 0;
}

.service-section--warm {
  background: var(--service-bg-alt);
}

.service-section--soft {
  background: var(--service-bg);
}

.service-section--gold {
  background: var(--service-gold-soft);
}

.service-section__header {
  max-width: 720px;
  margin-bottom: 50px;
}

.service-section__header--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.service-section__header--center .service-section__lead {
  margin-right: auto;
  margin-left: auto;
}

.service-section__eyebrow {
  margin-bottom: 10px;
}

.service-section__title {
  margin-bottom: 18px;
  color: var(--service-text);
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.01em;
}

.service-section__lead {
  max-width: 650px;
  color: var(--service-muted);
  font-size: 16px;
  line-height: 1.75;
}

.service-about__grid,
.service-safety__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: start;
}

.service-about__text p {
  margin-bottom: 18px;
  color: var(--service-muted);
  font-size: 16px;
  line-height: 1.8;
}
.service-about__text p:last-child {
  margin-bottom: 0;
}
.service-about__text strong {
  color: var(--service-text);
  font-weight: 700;
}

.service-about__stages {
  display: grid;
  gap: 14px;
}

.service-stage-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
  padding: 20px 22px;
  border: 1px solid var(--service-border);
  border-left: 4px solid var(--service-gold);
  border-radius: var(--service-radius-md);
  background: var(--white);
  box-shadow: var(--service-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-stage-card:hover {
  transform: translateX(3px);
  box-shadow: var(--service-shadow-md);
}

.service-stage-card--2 {
  border-left-color: var(--green-light);
}

.service-stage-card--3 {
  border-left-color: var(--service-green);
}

.service-stage-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--service-gold-soft);
  color: var(--service-gold);
  font-weight: 800;
  line-height: 1;
}

.service-stage-card--2 .service-stage-card__number {
  background: var(--green-pale);
  color: var(--green);
}

.service-stage-card--3 .service-stage-card__number {
  background: var(--service-green-soft);
  color: var(--service-green);
}

.service-stage-card__title {
  margin-bottom: 6px;
  color: var(--service-text);
  font-size: 22px;
}

.service-stage-card__text {
  margin-bottom: 10px;
  color: var(--service-muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-stage-card__tag {
  display: inline-flex;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--service-gold-soft);
  color: var(--service-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-stage-card--2 .service-stage-card__tag {
  background: var(--green-pale);
  color: var(--green);
}

.service-stage-card--3 .service-stage-card__tag {
  background: var(--service-green-soft);
  color: var(--service-green);
}

.service-media-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.service-about__media-text {
  margin-top: 54px;
}

.service-media-text__image-wrap {
  overflow: hidden;
  border-radius: var(--service-radius-lg);
  box-shadow: var(--service-shadow-md);
}

.service-media-text__image {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-media-text__content p {
  margin-bottom: 15px;
  color: var(--service-muted);
  font-size: 15px;
  line-height: 1.8;
}
.service-media-text__content p:last-child {
  margin-bottom: 0;
}
.service-media-text__content strong {
  color: var(--service-text);
}

.service-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 26px 32px;
  border: 1px solid rgba(46, 75, 60, 0.14);
  border-radius: var(--service-radius-lg);
  background: var(--service-green-soft);
}

.service-inline-cta--white {
  margin-top: 0;
  background: var(--white);
}

.service-inline-cta__content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-inline-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--service-green);
  color: var(--white);
  font-size: 23px;
  flex-shrink: 0;
}

.service-inline-cta__text strong,
.service-inline-cta__text span {
  display: block;
}
.service-inline-cta__text strong {
  margin-bottom: 3px;
  color: var(--service-text);
  font-size: 15px;
  line-height: 1.35;
}
.service-inline-cta__text span {
  color: var(--service-muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-inline-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.service-inline-cta__button {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 12px;
}

.service-care__grid,
.service-team__grid,
.service-family__grid,
.service-reviews__grid,
.service-related__grid {
  display: grid;
  gap: 24px;
}

.service-care__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-care-card,
.service-team-card,
.service-family-card,
.service-review-card,
.service-related-card,
.service-routine-card {
  border: 1px solid var(--service-border);
  background: var(--white);
  box-shadow: var(--service-shadow-sm);
}

.service-care-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 26px;
  border-radius: var(--service-radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-care-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--service-shadow-md);
}

.service-care-card__icon,
.service-family-card__icon,
.service-related-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--service-radius-sm);
  background: var(--service-green-soft);
  color: var(--service-green);
  font-size: 25px;
  flex-shrink: 0;
}

.service-care-card__title {
  margin-top: 16px;
  margin-bottom: 10px;
  color: var(--service-text);
  font-size: 23px;
}

.service-care-card__text {
  flex: 1;
  margin-bottom: 16px;
  color: var(--service-muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-care-card__tag {
  align-self: flex-start;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--service-gold-soft);
  color: var(--service-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-care__banner {
  margin-top: 56px;
}

.service-photo-banner {
  position: relative;
  overflow: hidden;
  height: 320px;
  border-radius: var(--service-radius-xl);
  background: var(--service-green);
}

.service-photo-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-photo-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 42px 48px;
  background: linear-gradient(90deg, rgba(46, 75, 60, 0.78) 0%, rgba(46, 75, 60, 0.25) 62%, rgba(46, 75, 60, 0) 100%);
}

.service-photo-banner__caption {
  max-width: 450px;
}
.service-photo-banner__caption p {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.service-photo-banner__caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.service-safety__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 38px;
  border-radius: var(--service-radius-xl);
  background: linear-gradient(135deg, var(--service-green) 0%, var(--service-green-mid) 100%);
  text-align: center;
}

.service-safety__shield {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 36px;
}

.service-safety__title {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 34px;
}

.service-safety__text {
  max-width: 430px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

.service-safety__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.service-safety__badge {
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.service-safety__list {
  display: grid;
  gap: 20px;
}

.service-safety-item {
  display: flex;
  gap: 15px;
}

.service-safety-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--service-green-soft);
  color: var(--service-green);
  font-size: 20px;
  flex-shrink: 0;
}

.service-safety-item__title {
  margin-bottom: 5px;
  color: var(--service-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
}

.service-safety-item__text {
  color: var(--service-muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.service-routine-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border-radius: var(--service-radius-md);
}
.service-routine-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--service-green);
}

.service-routine-card__time {
  margin-bottom: 9px;
  color: var(--service-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-routine-card__title {
  margin-bottom: 10px;
  color: var(--service-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
}

.service-routine-card__list {
  display: grid;
  gap: 7px;
  list-style: none;
}
.service-routine-card__list li {
  position: relative;
  padding-left: 14px;
  color: var(--service-muted);
  font-size: 13px;
  line-height: 1.5;
}
.service-routine-card__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-light);
}

.service-cta-strip {
  padding: 0 0 8px;
  background: var(--service-bg-alt);
}

.service-team__grid,
.service-reviews__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-team-card {
  overflow: hidden;
  border-radius: var(--service-radius-lg);
}

.service-team-card__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  background: linear-gradient(135deg, var(--service-green-soft) 0%, var(--service-bg) 100%);
  color: rgba(46, 75, 60, 0.34);
  font-size: 70px;
}

.service-team-card__body {
  padding: 22px;
}

.service-team-card__role {
  margin-bottom: 7px;
}

.service-team-card__name {
  margin-bottom: 8px;
  color: var(--service-text);
  font-size: 24px;
}

.service-team-card__text {
  color: var(--service-muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-family__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-family-card {
  padding: 28px 18px;
  border-radius: var(--service-radius-md);
  text-align: center;
}

.service-family-card__icon {
  margin: 0 auto 15px;
  border-radius: 50%;
}

.service-family-card__title {
  margin-bottom: 8px;
  color: var(--service-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
}

.service-family-card__text {
  color: var(--service-muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-main-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--service-green) 0%, #0a1f14 100%);
  text-align: center;
}

.service-main-cta__container {
  max-width: 760px;
}

.service-main-cta__eyebrow {
  margin-bottom: 14px;
  color: var(--service-gold);
}

.service-main-cta__title {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(36px, 5vw, 54px);
}

.service-main-cta__text {
  max-width: 620px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.service-main-cta__buttons {
  justify-content: center;
}

.service-main-cta__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.service-main-cta__phone svg,
.service-main-cta__phone a {
  color: var(--service-gold);
}
.service-main-cta__phone svg {
  font-size: 17px;
}
.service-main-cta__phone a {
  font-weight: 800;
}

.service-main-cta__note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.service-review-card {
  position: relative;
  padding: 30px;
  border-radius: var(--service-radius-lg);
}

.service-review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--service-gold);
  font-size: 17px;
}

.service-review-card__text {
  margin-bottom: 20px;
  color: var(--service-muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
}

.service-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--service-green-soft);
  color: var(--service-green);
  font-size: 22px;
  flex-shrink: 0;
}

.service-review-card__meta strong,
.service-review-card__meta span {
  display: block;
  line-height: 1.35;
}
.service-review-card__meta strong {
  color: var(--service-text);
  font-size: 14px;
}
.service-review-card__meta span {
  margin-top: 3px;
  color: var(--service-muted);
  font-size: 12px;
}

.service-faq__list {
  max-width: 850px;
  margin: 0 auto;
}

.service-faq__item {
  border-bottom: 1px solid var(--service-border);
}
.service-faq__item:first-child {
  border-top: 1px solid var(--service-border);
}

.service-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 0;
  border: 0;
  background: none;
  color: var(--service-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}
.service-faq__question:hover {
  color: var(--service-green);
}

.service-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--service-green-soft);
  color: var(--service-green);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.service-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.service-faq__answer-inner {
  padding: 0 0 22px;
  color: var(--service-muted);
  font-size: 15px;
  line-height: 1.75;
}

.service-faq__item.open .service-faq__question {
  color: var(--service-green);
}
.service-faq__item.open .service-faq__icon {
  transform: rotate(45deg);
  background: var(--service-green);
  color: var(--white);
}
.service-faq__item.open .service-faq__answer {
  max-height: 420px;
}

.service-related__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--service-radius-md);
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 75, 60, 0.28);
  box-shadow: var(--service-shadow-md);
}

.service-related-card__icon,
.service-related-card__arrow {
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.service-related-card__content {
  flex: 1;
}
.service-related-card__content strong,
.service-related-card__content span {
  display: block;
  line-height: 1.35;
}
.service-related-card__content strong {
  margin-bottom: 4px;
  color: var(--service-text);
  font-size: 14px;
  font-weight: 800;
}
.service-related-card__content span {
  color: var(--service-muted);
  font-size: 12px;
}

.service-related-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--service-green-soft);
  color: var(--service-green);
  flex-shrink: 0;
}

.service-related__cities {
  margin-top: 36px;
}

.service-cities__title {
  margin-bottom: 14px;
  color: var(--service-muted);
}

.service-cities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-cities__link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 15px;
  border: 1px solid var(--service-border);
  border-radius: 999px;
  background: var(--service-bg-alt);
  color: var(--service-muted);
  font-size: 13px;
  font-weight: 600;
}
.service-cities__link:hover {
  background: var(--service-green-soft);
  color: var(--service-green);
}

.service-faq__link {
  color: var(--service-green);
  font-weight: 800;
}
.service-faq__link:hover {
  color: var(--service-gold);
}

.service-seo__subtitle {
  margin: 22px 0 8px;
  color: var(--service-text);
  font-size: 22px;
}

@media (max-width: 1100px) {
  .service-hero__container,
  .service-about__grid,
  .service-safety__grid {
    grid-template-columns: 1fr;
  }
  .service-hero__content {
    max-width: none;
  }
  .service-care__grid,
  .service-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-routine__grid,
  .service-family__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .service-hero {
    padding-right: 0;
    padding-bottom: 48px;
    padding-left: 0;
  }
  .service-section {
    padding: 52px 0;
  }
  .service-hero__container {
    gap: 30px;
  }
  .service-hero__title {
    font-size: 36px;
  }
  .service-hero__lead {
    font-size: 15px;
  }
  .service-stats__container {
    display: flex;
    overflow-x: auto;
    max-width: 100vw;
    padding-right: 18px;
    padding-left: 18px;
    scrollbar-width: none;
  }
  .service-stats__container::-webkit-scrollbar {
    display: none;
  }
  .service-stats__item {
    min-width: 132px;
    padding: 22px 18px;
    flex: 0 0 auto;
  }
  .service-stats__number {
    font-size: 30px;
  }
  .service-section__header {
    margin-bottom: 32px;
  }
  .service-section__title {
    font-size: 32px;
  }
  .service-inline-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px;
  }
  .service-inline-cta__content {
    align-items: flex-start;
  }
  .service-inline-cta__actions,
  .service-page__buttons {
    width: 100%;
  }
  .service-inline-cta__button,
  .service-page__button {
    flex: 1 1 0;
  }
  .service-team__grid,
  .service-reviews__grid {
    grid-template-columns: 1fr;
  }
  .service-team-card {
    display: flex;
    align-items: stretch;
  }
  .service-team-card__photo {
    width: 110px;
    height: auto;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .service-breadcrumb__container {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }
  .service-hero__badge {
    font-size: 10px;
  }
  .service-hero__title {
    font-size: 31px;
  }
  .service-hero__image-wrap {
    aspect-ratio: 16/10;
    border-radius: var(--service-radius-lg);
  }
  .service-hero__floating-card {
    right: 0;
    bottom: -14px;
    left: auto;
    min-width: 0;
    padding: 12px 14px;
  }
  .service-hero__floating-icon {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }
  .service-section {
    padding: 46px 0;
  }
  .service-section__title {
    font-size: 29px;
  }
  .service-section__lead,
  .service-about__text p {
    font-size: 14px;
  }
  .service-media-text,
  .service-care__grid,
  .service-related__grid {
    grid-template-columns: 1fr;
  }
  .service-about__media-text {
    margin-top: 34px;
  }
  .service-media-text__image {
    height: 220px;
  }
  .service-photo-banner {
    height: 220px;
    border-radius: var(--service-radius-lg);
  }
  .service-photo-banner__overlay {
    padding: 24px 20px;
    background: linear-gradient(180deg, rgba(46, 75, 60, 0.66) 0%, rgba(46, 75, 60, 0.36) 100%);
  }
  .service-photo-banner__caption p {
    font-size: 23px;
  }
  .service-safety__visual {
    padding: 32px 22px;
    border-radius: var(--service-radius-lg);
  }
  .service-safety__title {
    font-size: 28px;
  }
  .service-safety-item__title,
  .service-faq__question {
    font-size: 15px;
  }
  .service-routine__grid,
  .service-family__grid {
    grid-template-columns: 1fr;
  }
  .service-main-cta {
    padding: 52px 0;
  }
  .service-main-cta__title {
    font-size: 32px;
  }
  .service-main-cta__phone {
    flex-wrap: wrap;
    font-size: 13px;
  }
  .service-main-cta__note {
    line-height: 1.7;
  }
}
@media (max-width: 480px) {
  .service-page__buttons {
    flex-direction: column;
  }
  .service-page__button {
    width: 100%;
  }
  .service-hero__title br,
  .service-section__title br,
  .service-main-cta__title br {
    display: none;
  }
  .service-hero__floating-card {
    display: none;
  }
  .service-stage-card {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 16px;
  }
  .service-stage-card__number {
    width: 30px;
    height: 30px;
  }
  .service-team-card {
    display: block;
  }
  .service-team-card__photo {
    width: auto;
    height: 120px;
  }
}
@media (max-width: 1440px) {
  .faq__wrapper {
    justify-content: normal;
  }
  .faq__image img {
    max-width: 100%;
  }
}
@media (max-width: 993px) {
  .faq__wrapper {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }
  .hero-left {
    padding: 40px 5% 60px;
  }
  .hero-right {
    min-height: 400px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-submit {
    font-size: 12px;
    padding: 14px 10px;
  }
  .empathy-grid, .transport-grid, .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .rehab-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .steps::before {
    display: none;
  }
  .conditions-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .offer-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  .offer-includes {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  section {
    padding: 36px 5%;
  }
  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 5%;
  }
  .burger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 32px;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding-bottom: 80px;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .nav-links a {
    font-size: 18px;
  }
  .nav-cta {
    flex-direction: column;
    margin-top: 8px;
    gap: 20px;
    width: 100%;
    padding: 0 5%;
  }
  .nav-cta .btn-primary {
    width: 100%;
    text-align: center;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-cta a {
    width: 100%;
    text-align: center;
  }
  .service-card, .empathy-card, .transport-card, .contact-form, .testimonial {
    padding: 24px;
  }
  .hero-img-text .icon-big {
    font-size: 64px;
  }
  .hero-img-text p {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .faq__image img {
    aspect-ratio: 2/1;
  }
}
@media (max-width: 993px) {
  .hero {
    padding-bottom: 24px;
  }
  .hero-image-placeholder {
    background: url("../img/hero.PNG") center center/contain no-repeat;
  }
  .hero-right {
    background: none;
  }
  .transport__header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
  }
  .section-sub {
    margin-bottom: 0 !important;
  }
  .empathy-grid {
    grid-template-columns: 1fr;
  }
  .numbers__header {
    flex-direction: column;
  }
  .hero-image-placeholder {
    background-size: cover;
  }
  .step {
    padding: 0;
    margin-top: 24px;
  }
  .empathy-image img {
    height: unset;
  }
  .transport__header-block img {
    aspect-ratio: 2/1;
  }
}
@media (max-width: 576px) {
  .number-label {
    font-size: 10px;
  }
  .transport-free {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .notfound-main {
    padding: 72px 20px;
  }
  .notfound-illustration {
    width: 160px;
    height: 160px;
    margin-bottom: 24px;
  }
  .notfound-num {
    font-size: 64px;
  }
  .notfound-content h1 {
    font-size: 28px;
  }
  .notfound-buttons {
    flex-direction: column;
  }
  .notfound-btn {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */
