:root {
  --bg: #fff;
  --bg-alt: #f7f8fa;
  --text: #0f172a;
  --muted: #5b6472;
  --line: #e6e8ee;
  --card: #fff;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --accent: #d90429;
  --accent-2: #ef233c;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

a:hover {
  opacity: 0.88;
}

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

.muted {
  color: var(--muted);
}

.fineprint {
  font-size: 0.88rem;
  color: var(--muted);
}

.accent {
  color: var(--accent);
}

@keyframes pulseText {
  0% {
    color: #ff2d55;
    text-shadow: 0 0 6px rgba(255, 45, 85, 0.6);
  }

  50% {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  }

  100% {
    color: #ff2d55;
    text-shadow: 0 0 6px rgba(255, 45, 85, 0.6);
  }
}

.eyebrow {
  display: inline-block;
  font-size: 16px;
  color: var(--muted);
  padding: 0.35rem 0.6rem;
  animation: pulseText 6s ease-in-out infinite;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  gap: 12px;
  font-size: 0.92rem;
}

.topbar__right {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar__link {
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  margin-top: 20px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  width: 220px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

.brand__mark {
  width: 14px;
  height: 28px;
  background: var(--accent);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(217, 4, 41, 0.22);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__text small {
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 6px 8px;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #d61b2a;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #000;
}

.nav a:hover::after {
  width: 100%;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang {
  position: relative;
}

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.lang__chev {
  font-size: 0.85rem;
  color: var(--muted);
}

.lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 140px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
}

.lang__menu.is-open {
  display: block;
}

.lang__item {
  display: flex;
  padding: 0.6rem 0.7rem;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}

.lang__item:hover {
  background: var(--bg-alt);
  opacity: 1;
}

.lang__item.is-active {
  color: var(--text);
  background: var(--bg-alt);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 0.08s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(217, 4, 41, 0.22);
}

.btn--ghost {
  background: #fff;
}

.btn--block {
  width: 100%;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(217, 4, 41, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  border-color: var(--accent);
}

.hero {
  padding: 44px 0 26px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/wp13216916-8k-mountain-wallpapers.jpg');
  background-repeat: round;
  background-size: auto;
  filter: blur(3px);
  transform: scale(1.05);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.hero h1 {
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  line-height: 1.08;
  margin: 12px 0 12px;
  letter-spacing: -0.02em;
  color: white;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 58ch;
}

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

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

.trust__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
}

.trust__item strong {
  display: block;
  font-size: 0.98rem;
}

.trust__item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero__card h2 {
  margin: 2px 0 6px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  font: inherit;
  font-weight: 500;
  padding: 0.78rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  outline: none;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217, 4, 41, 0.5);
  box-shadow: 0 0 0 4px rgba(217, 4, 41, 0.12);
}

.section {
  padding: 52px 0;
}

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

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

.section__head h2 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
}

.section__head_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  margin-top: 30px;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #fff;
  margin-bottom: 10px;
  font-size: 1.2rem;
  margin-left: 57px;
}

.card h3 {
  margin: 6px 0 8px;
}

.card__footer {
  margin-top: 12px;
}

.link {
  color: var(--accent);
  font-weight: 700;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin: 6px 0;
}

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

.list--check li {
  padding-left: 26px;
  position: relative;
  margin: 10px 0;
  color: var(--muted);
}

.list--check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.pill {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.garden {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: start;
}

.garden__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  width: fit-content;
  margin-bottom: 10px;
  margin-right: auto;
}

.garden__intro h3 {
  margin: 6px 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.garden__actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.quote__stars {
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 900;
}

.quote__text {
  margin: 10px 0 12px;
  color: var(--text);
  font-weight: 600;
}

.quote__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.review-cta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 16px;
}

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

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__a {
  margin-top: 10px;
  padding-left: 2px;
}

.price {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  border-color: rgba(217, 4, 41, 0.35);
}

.price__value {
  margin: 10px 0 8px;
  color: var(--muted);
}

.price__value strong {
  font-size: 1.35rem;
  color: var(--text);
}

.price--featured {
  border-color: rgba(217, 4, 41, 0.35);
  box-shadow: 0 18px 34px rgba(217, 4, 41, 0.12);
}

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

.mini {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
}

.mini strong {
  display: block;
  margin-bottom: 6px;
}

.mini a {
  color: var(--accent);
  font-weight: 700;
  word-break: break-all;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 12px;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
}

.footer__copy {
  text-align: right;
}

.sticky-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: grid;
  gap: 10px;
}

.sticky-contact__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-width: 210px;
}

.sticky-contact__btn:hover {
  opacity: 1;
  transform: translateY(-1px);
  transition: transform 0.12s ease;
}

.sticky-contact__icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  font-size: 18px;
}

.sticky-contact__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.sticky-contact__text strong {
  font-size: 0.95rem;
}

.sticky-contact__text small {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.sticky-contact__btn--wa {
  border-left: 4px solid rgba(37, 211, 102, 0.55);
}

.sticky-contact__btn--mail {
  border-left: 4px solid rgba(217, 4, 41, 0.55);
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ch-flag {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.ch-flag__svg {
  width: 16px;
  height: 16px;
  display: block;
}

.ch-flag__svg rect {
  fill: #d52b1e;
}

.ch-flag__svg path {
  fill: #fff;
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: #1f7a1f;
}

.toast.error {
  background: #b42318;
}

.brand__logo {
  max-height: 160px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: 40px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

.modal.active {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}

.modal__content {
  position: relative;
  max-width: 420px;
  margin: 10vh auto;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

#languages option {
  font-size: 14px;
}

.lang-switch {
  position: relative;
  z-index: 1000;
}

.lang-switch__btn {
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 78px;
  padding: 6px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
  display: none;
}

.lang-switch.is-open .lang-switch__menu {
  display: grid;
  gap: 4px;
}

.lang-switch__item {
  border: 0;
  background: transparent;
  padding: 9px 10px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.lang-switch__item:hover {
  background: #f5f5f5;
  color: #d90429;
}

.promo-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.promo-modal.is-open {
  display: block;
}

.promo-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.promo-modal__card {
  position: relative;
  width: min(900px, calc(100% - 28px));
  margin: 7vh auto 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: promoIn 0.28s ease;
}

.promo-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition:
    transform 0.08s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.promo-modal__close:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  border-color: var(--accent);
}

.promo-modal__media {
  position: relative;
  background: var(--bg-alt);
  min-height: 430px;
}

.promo-modal__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.promo-modal__media::after {
  content: '';
  position: absolute;
  inset: 0;
}

.promo-modal__media-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-weight: 800;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.promo-modal__content {
  padding: 28px;
}

.promo-modal__pill {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--accent);
  border: 1px solid rgba(217, 4, 41, 0.22);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(217, 4, 41, 0.06);
  font-weight: 700;
}

.promo-modal__content h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.promo-modal__content .muted {
  line-height: 1.6;
}

.promo-modal__highlight {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.promo-modal__highlight strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.promo-modal__highlight span {
  color: var(--muted);
  font-size: 0.92rem;
}

.promo-modal__list {
  margin-top: 12px;
}

.promo-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.promo-modal .btn {
  min-width: 150px;
}

@keyframes promoIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

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

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .nav {
    display: none;
  }

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

  .footer__links {
    justify-content: flex-start;
  }

  .footer__copy {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .topbar {
    border-bottom: none;
    background: #fff;
  }

  .topbar__inner {
    padding: 8px 0;
    justify-content: center;
  }

  .topbar-location,
  .topbar__item:first-child {
    display: none;
  }

  .topbar__right {
    width: 100%;
    justify-content: center;
    gap: 18px;
    font-size: 14px;
  }

  .header {
    margin-top: 0;
  }

  .header__inner {
    padding: 10px 0;
    gap: 8px;
  }

  .brand {
    width: 150px;
    height: 72px;
  }

  .brand__logo {
    max-height: 110px;
    margin-right: 45px;
  }

  .header__cta {
    gap: 8px;
  }

  .header__cta .btn--ghost {
    display: none;
  }

  .header__cta .btn--primary {
    padding: 0.72rem 0.9rem;
    font-size: 0.9rem;
    max-width: 150px;
    text-align: center;
    line-height: 1.2;
  }

  .lang-switch__btn {
    height: 46px;
    min-width: 46px;
    padding: 0 12px;
  }

  .hero {
    padding: 28px 0 22px;
  }

  .hero::after {
    background: rgba(0, 0, 0, 0.62);
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.05;
    margin-top: 30px;
    margin-bottom: 100px;
  }

  .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 15px;
    padding-left: 0;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .promo-modal__card {
    grid-template-columns: 1fr;
    margin-top: 3vh;
    max-height: 94vh;
    overflow-y: auto;
  }

  .promo-modal__media,
  .promo-modal__media img {
    min-height: 220px;
  }

  .promo-modal__content {
    padding: 22px;
  }

  .promo-modal__actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .form__row {
    grid-template-columns: 1fr;
  }

  .header__right {
    gap: 8px;
  }

  .header__cta {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sticky-contact {
    right: 12px;
    bottom: 12px;
  }

  .sticky-contact__btn {
    min-width: auto;
    padding: 10px;
    border-radius: 16px;
  }

  .sticky-contact__text {
    display: none;
  }

  .sticky-contact__icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
  }
}

/* @media (max-width: 768px) {
  .hero::before {
    background-size: contain;
    background-image: url(../images//mobile.img.png);

    filter: blur(0);
    background-repeat: repeat-y;
    transform: scale(1);
  }
} */

@media (max-width: 768px) {
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;

    background-image: url('../images/mobile.img.png');
    background-size: contain;
    background-position: top;
    background-repeat: round;

    filter: none;
    transform: scale(1);

    z-index: 0;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.38);

    z-index: 0;
  }
}

@media (max-width: 768px) {
  .section__head {
    /* display: block; */
    margin-bottom: 22px;
    justify-content: unset;
    display: flex;
  }

  .section__head h2 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 10px;
    margin-left: 40px;
  }

  .section__head .muted {
    font-size: 18px;
    line-height: 1.45;
    display: none;
  }

  .two-col {
    gap: 18px;
  }

  .panel {
    padding: 20px;
    border-radius: 22px;
  }

  .panel h3 {
    font-size: 28px;
    line-height: 1.2;
    margin-top: 12px;
  }

  .panel p {
    font-size: 17px;
    line-height: 1.65;
  }

  .pill-row {
    gap: 8px;
  }

  .pill {
    font-size: 15px;
    padding: 0.45rem 0.8rem;
  }

  .panel .btn {
    width: 100%;
    margin-top: 8px;
  }
  .section__head .rei {
    margin-left: 0%;
  }
  .section__head .montage_rep {
    font-size: 20px;
    margin-right: 40px;
    padding: 0.35rem 0.6rem;
    /* border: none; */
    margin-bottom: 28px;
  }
  .section__head .trans {
    font-size: 20px;
    margin-right: 58px;
    padding: 0.35rem 0.6rem;
    /* border: none; */
  }
  .montage_rep {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;

    margin-left: 20px;
  }

  .garden__intro h3 {
    display: none;
  }

  .section__head .tit_price {
    margin-left: 115px;
  }
}
