:root {
  --bg: #f7f3ec;
  --panel: #fffbf4;
  --text: #1f1f1f;
  --text-soft: #4f4a43;
  --border: #050505;
  --accent: #ceb07b;
  --accent-soft: #d4ba8d;
  --accent-deep: #b99659;
  --line: rgba(31, 31, 31, 0.1);
  --shadow: 0 20px 50px rgba(31, 31, 31, 0.08);
  --shadow-soft: 0 8px 20px rgba(31, 31, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(206, 176, 123, 0.14), transparent 28%),
    linear-gradient(180deg, #f8f4ec 0%, #efe7d7 100%);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  padding: 0;
}

.site-frame {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.landing-stage {
  display: grid;
  gap: 100px;
  padding-bottom: 60px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 46px 20px 52px;
  min-height: 104px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(31, 31, 31, 0.05);
}

.brand {
  width: 170px;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
  color: rgba(31, 31, 31, 0.86);
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 300;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary {
  background: var(--accent-soft);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #dec7a0;
}

.header-cta {
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("./assets/hero-calculator-bg.png") center center / cover no-repeat;
  opacity: 0.4;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(220, 220, 220, 0.65) 43.827%,
    rgba(153, 153, 153, 0) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 26px;
  padding: 28px 24px 36px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.1;
}

.hero-copy-block {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.hero h1,
.section-heading h2,
.text-column h2,
.contact-copy h2 {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy,
.text-column p,
.section-heading p,
.review-card p,
.contact-copy p,
.benefit-card p,
.benefits-note,
.contact-form span,
.contact-form input,
.contact-form textarea,
.site-footer p,
.site-footer a {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
}

.hero-copy {
  margin: 0;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
}

.hero-copy-wide {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.hero-copy strong {
  font-weight: 500;
}

.hero-check-list,
.hero-mobile-cta {
  display: none !important;
}

.calculator-card {
  width: min(624px, calc(100% - 48px));
  border-radius: 10px;
  background: #312d29;
  color: #f7f1e7;
  overflow: hidden;
}

.calculator-placeholder-card {
  display: none;
}

.calculator-embed-card {
  display: block;
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.calculator-embed-frame {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  background: #fff;
}

.calculator-progress {
  padding: 12px 17px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calculator-progress-row,
.calculator-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calculator-progress-row {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 245, 232, 0.9);
}

.calculator-progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(206, 176, 123, 0.16);
  overflow: hidden;
}

.calculator-progress-value {
  width: 17%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.calculator-body {
  padding: 28px 24px 24px;
}

.calculator-body h2 {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #f3ede3;
}

.calculator-body p {
  margin: 0 0 24px;
  color: rgba(243, 237, 227, 0.68);
  font-size: 16px;
  line-height: 1.45;
}

.calculator-add-room {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px dashed rgba(212, 186, 141, 0.18);
  background: rgba(255, 255, 255, 0.01);
  color: rgba(243, 237, 227, 0.72);
}

.calculator-plus {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.calculator-actions {
  justify-content: flex-end;
  padding: 0 24px 20px;
}

.calculator-next {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 32px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: #937b4d;
  color: #2f2a24;
  font-size: 16px;
  font-weight: 500;
}

.shadow-card {
  box-shadow: var(--shadow-soft);
}

.benefits-section {
  display: grid;
  gap: 35px;
  justify-items: center;
  padding: 60px 100px;
  background: #fffbf4;
}

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

.check-list li {
  position: relative;
  padding-left: 37px;
  font-size: 16px;
  line-height: 1.2;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  background: url("./assets/checkmark-56-2309.svg") center / contain no-repeat;
  transform: scaleY(-1);
}

.section-heading {
  display: grid;
  gap: 11px;
  max-width: 538px;
  text-align: center;
}

.section-heading p {
  margin: 0;
}

.benefits-heading {
  gap: 11px;
  width: 538px;
  max-width: 100%;
  color: var(--text);
}

.benefits-heading h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}

.benefits-heading p {
  width: 524px;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.2;
  color: var(--text);
}

.benefit-grid {
  width: 1166px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 269px);
  gap: 30px;
  justify-content: center;
}

.benefit-card {
  display: grid;
  justify-items: center;
  gap: 15px;
  min-height: 222px;
  padding: 25px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 71.019px;
  height: 71.019px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 1.11px 3.329px rgba(0, 0, 0, 0.1),
    0 1.11px 2.219px rgba(0, 0, 0, 0.1);
}

.benefit-icon img {
  width: 44px;
  max-height: 55px;
}

.benefit-copy {
  display: grid;
  gap: 10px;
  width: 100%;
}

.benefit-copy h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.benefit-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
}

.benefits-note {
  width: 1166px;
  max-width: 100%;
  padding: 25px;
  border-radius: 10px;
  background: var(--accent-soft);
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.benefits-note strong {
  font-weight: 700;
}

.contact-section {
  position: relative;
  display: grid;
  gap: 0;
  background: #fff;
  overflow: hidden;
}

.contact-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 660px;
  gap: 61px;
  align-items: start;
  padding: 0 80px 0 68px;
}

.contact-copy {
  padding-top: 77px;
  max-width: 497px;
  color: #212529;
}

.contact-copy h2 {
  margin: 0 0 36px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.contact-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  color: #212529;
}

.contact-form-card {
  position: relative;
  z-index: 3;
  width: 660px;
  max-width: 100%;
  min-height: 522px;
  padding: 36px 48px 48px;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.field span {
  font-size: 18px;
  line-height: 1.43;
  font-weight: 300;
  color: #3d4043;
}

.field em {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: #c02b0a;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #fff;
  background: #f3f3f3;
  color: #212529;
}

.field input {
  height: 38px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 227.8px;
  min-height: 46.78px;
  margin-top: 14px;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 3.2px;
  background: #ceb07b;
  color: #fff;
  font-size: 16px;
  font-weight: 200;
}

.contact-footer {
  position: relative;
  z-index: 1;
  margin-top: -154px;
}

.contact-footer-main {
  position: relative;
  min-height: 510px;
  padding-top: 348px;
  background: #ceb07b;
  overflow: hidden;
}

.footer-ornament-mask {
  left: 0;
  top: 0;
  width: 1034px;
  height: 742.21px;
  position: absolute;
  overflow: hidden;
  opacity: 0.15;
  mix-blend-mode: screen;
  pointer-events: none;
}

.footer-ornament-shape {
  position: absolute;
  left: -129px;
  top: 201px;
  width: 1007px;
  height: 1054.514px;
  max-width: none;
}

.footer-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: start;
  padding: 22px 60px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
}

.footer-column {
  display: grid;
  justify-items: center;
  gap: 16px;
  color: #fff;
  text-align: center;
}

.footer-column-social {
  gap: 23.99px;
}

.footer-column h3 {
  margin: 0;
  font-size: 26.4px;
  line-height: 1.2;
  font-weight: 600;
}

.footer-column p,
.footer-column a {
  margin: 0;
  font-size: 17.6px;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: #fff;
  color: #ceb07b;
  position: relative;
  text-decoration: none;
}

.social-link::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid #fff;
  border-radius: 21px;
}

.social-icon {
  display: block;
  color: #ceb07b;
}

.social-icon-facebook {
  width: 10.9px;
  height: 20px;
}

.social-icon-instagram {
  width: 19px;
  height: 19px;
}

.contact-footer-bottom {
  display: grid;
  justify-items: center;
  gap: 9.5px;
  min-height: 85.019px;
  padding: 8px 60px 12px;
  background: #ceb07b;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
}

.footer-bottom-links {
  display: flex;
  gap: 20.62px;
}

.footer-bottom-links a,
.contact-footer-bottom p {
  margin: 0;
  font-size: 15.4px;
  line-height: 1.5;
  font-weight: 300;
  color: #3b3b3b;
}

.contact-footer-bottom p {
  color: rgba(33, 37, 41, 0.5);
}

.review-meta h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  color: inherit;
}

.reviews-section {
  padding: 60px 80px;
  background: #fff;
  display: grid;
  gap: 20px;
}

.compact {
  max-width: 100%;
  width: 100%;
}

.reviews-heading {
  width: 1206px;
  max-width: 100%;
  justify-self: center;
  gap: 16px;
}

.reviews-heading h2 {
  color: #1a1d24;
  font-size: 36px;
  line-height: 1.05;
}

.reviews-heading p {
  font-weight: 300;
  line-height: 1.55;
  color: #1d1d1d;
}

.review-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 382px);
  gap: 30px;
}

.review-card {
  display: grid;
  gap: 12px;
  min-height: 283px;
  padding: 20px 25px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.review-meta {
  display: grid;
  gap: 4px;
}

.review-meta p {
  margin: 0;
  font-size: 14px;
  color: #d1d4d8;
  line-height: 1.55;
}

.review-card h3 {
  font-size: 18px;
  line-height: 1.55;
}

.review-card p:last-child {
  margin: 0;
}

.review-text {
  width: 332px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  color: #1d1d1d;
}

.stars {
  color: #fbbc05;
  font-size: 18px;
}

.section-action {
  display: flex;
  justify-content: center;
}

.reviews-cta {
  padding-top: 4px;
}

.reviews-cta .button {
  min-width: 274px;
  min-height: 44px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 300;
  box-shadow: 0 1.11px 3.329px rgba(0, 0, 0, 0.1), 0 1.11px 2.219px rgba(0, 0, 0, 0.1);
}

.fade-up {
  animation: fadeUp 700ms ease both;
}

.benefits-section,
.reviews-section {
  animation-delay: 120ms;
}

.benefit-card,
.review-card,
.button {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.benefit-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .site-header,
  .benefits-section,
  .contact-top,
  .reviews-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .site-header {
    padding-top: 22px;
    padding-bottom: 22px;
    gap: 18px;
  }

  .site-nav {
    gap: 18px 22px;
    font-size: 14px;
  }

  .brand {
    width: 150px;
  }

  .landing-stage {
    gap: 72px;
  }

  .hero-inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-copy-wide {
    max-width: 680px;
  }

  .benefit-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(280px, 382px));
  }

  .contact-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 40px 0;
  }

  .contact-footer {
    margin-top: 0;
  }

  .contact-footer-main {
    padding-top: 120px;
    min-height: auto;
  }

  .footer-ornament-mask {
    width: 760px;
    height: 545px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .contact-footer-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 860px) {
  .page-shell {
    padding: 0;
  }

  .site-frame {
    border-radius: 0;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    gap: 16px;
    justify-content: flex-start;
  }

  .header-cta {
    align-self: stretch;
  }

  .hero {
    min-height: 560px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 42%, rgba(255, 255, 255, 0.38) 100%);
  }

  .hero-inner {
    padding: 30px 24px 32px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .eyebrow {
    font-size: 18px;
  }

  .hero-copy-wide {
    font-size: 15px;
    line-height: 1.45;
  }

  .calculator-body h2 {
    font-size: 22px;
  }

  .calculator-body p,
  .calculator-add-room,
  .calculator-next {
    font-size: 15px;
  }

  .benefits-section,
  .contact-top,
  .reviews-section {
    padding: 60px 24px;
  }

  .contact-copy {
    padding-top: 0;
  }

  .benefit-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .benefits-heading p,
  .benefits-note {
    max-width: 100%;
  }

  .reviews-heading p {
    white-space: normal;
  }

  .benefit-grid,
  .review-grid {
    justify-items: center;
  }

  .benefit-card,
  .review-card {
    width: min(100%, 382px);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px;
    min-height: auto;
  }

  .field span {
    font-size: 17px;
  }

  .contact-footer-main {
    padding-top: 88px;
  }

  .footer-column h3 {
    font-size: 22px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 16px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 540px) {
  body {
    background: #fff;
  }

  .text-column h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 28px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .page-shell {
    padding: 0;
  }

  .site-frame {
    border-radius: 0;
  }

  .site-header {
    min-height: 0;
    padding: 12px 16px 8px;
    background: #fff;
    border-bottom: 0;
  }

  .brand {
    width: 86px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .landing-stage {
    gap: 80px;
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
    background: #fff;
  }

  .hero-media,
  .hero-overlay {
    inset: 0 0 auto;
    height: 122px;
  }

  .hero-media {
    background: url("./assets/hero-airco.png") center top / cover no-repeat;
    opacity: 0.92;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.88) 70%, #fff 100%);
  }

  .hero-inner {
    gap: 30px;
    padding: 59px 20px 0;
  }

  .hero-copy-block {
    width: 335px;
    max-width: 100%;
    gap: 14px;
  }

  .eyebrow {
    margin: 0;
    font-size: 15px;
    line-height: 1.1;
  }

  .hero h1 {
    max-width: 320px;
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-copy-wide {
    max-width: 335px;
    font-size: 16px;
    line-height: 1.2;
  }

  .hero-check-list {
    display: grid !important;
    gap: 10px;
    width: 100%;
    margin-top: 2px;
    justify-items: center;
  }

  .hero-check-list li {
    width: 224px;
    padding-left: 37px;
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
  }

  .calculator-card {
    width: 335px;
    max-width: 100%;
  }

  .calculator-embed-frame {
    height: 340px;
  }

  .calculator-progress {
    padding: 10px 12px 7px;
  }

  .calculator-progress-row {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .calculator-progress-track {
    height: 4px;
  }

  .calculator-body {
    padding: 18px 14px 14px;
  }

  .calculator-body h2 {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.2;
  }

  .calculator-body p {
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.35;
  }

  .calculator-add-room {
    min-height: 34px;
    font-size: 11px;
    border-radius: 8px;
  }

  .calculator-plus {
    font-size: 18px;
  }

  .calculator-actions {
    padding: 0 14px 14px;
  }

  .calculator-next {
    min-height: 26px;
    padding: 0 16px;
    border-radius: 5px;
    font-size: 12px;
  }

  .section-action {
    align-items: center;
  }

  .reviews-section,
  .benefits-section,
  .contact-top {
    padding-left: 24px;
    padding-right: 24px;
  }

  .reviews-section {
    gap: 20px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .reviews-heading {
    width: 287px;
    gap: 16px;
  }

  .reviews-heading h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .reviews-heading p {
    font-size: 16px;
    line-height: 1.55;
  }

  .review-grid {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 335px;
    width: 335px;
    min-height: 283px;
    padding: 20px;
    scroll-snap-align: start;
  }

  .review-meta h3 {
    font-size: 18px;
  }

  .review-meta p {
    font-size: 14px;
  }

  .review-text {
    width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .reviews-cta .button {
    width: auto;
    min-width: 174px;
    font-size: 16px;
  }

  .benefits-section {
    gap: 35px;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .benefits-heading {
    width: 287px;
    gap: 11px;
  }

  .benefits-heading h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .benefits-heading p {
    width: 100%;
    font-size: 16px;
    line-height: 1.2;
  }

  .benefit-grid {
    width: 287px;
    gap: 30px;
  }

  .benefit-card {
    width: 100%;
    min-height: auto;
    grid-template-columns: 45px minmax(0, 1fr);
    justify-items: stretch;
    align-items: start;
    gap: 15px;
    padding: 20px;
    text-align: left;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
  }

  .benefit-icon img {
    width: 28px;
    max-height: 33px;
  }

  .benefit-copy {
    gap: 10px;
  }

  .benefit-copy h3,
  .benefit-card p,
  .benefits-note {
    font-size: 16px;
    line-height: 1.2;
  }

  .benefits-note {
    width: 287px;
    padding: 20px;
  }

  .contact-top {
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .contact-copy {
    width: 335px;
    max-width: 100%;
    padding-top: 0;
  }

  .contact-copy h2 {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.2;
  }

  .contact-copy p {
    font-size: 16px;
    line-height: 1.2;
  }

  .contact-form-card {
    width: 100%;
    min-height: auto;
    padding: 16px 21px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .field {
    gap: 8px;
    margin-bottom: 20px;
  }

  .field span {
    font-size: 18px;
    line-height: 1.43;
  }

  .field input {
    height: 38px;
  }

  .field textarea {
    min-height: 130px;
  }

  .contact-submit {
    width: auto;
    min-width: 174px;
    margin-top: 0;
  }

  .contact-footer {
    margin-top: 0;
  }

  .contact-footer-main {
    min-height: auto;
    padding-top: 49px;
  }

  .footer-ornament-mask {
    top: auto;
    bottom: 0;
    width: 293px;
    height: 238px;
  }

  .footer-ornament-shape {
    left: -136px;
    top: -478px;
    width: 620px;
    height: auto;
  }

  .footer-columns {
    gap: 24px;
    padding: 0 12px 16px;
  }

  .footer-column {
    gap: 7px;
  }

  .footer-column-social {
    gap: 23.99px;
  }

  .footer-column h3 {
    font-size: 26.4px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 17.6px;
    line-height: 1.5;
  }

  .footer-socials {
    gap: 24px;
  }

  .social-link::after {
    inset: -5px;
  }

  .contact-footer-bottom {
    gap: 9.5px;
    min-height: auto;
    padding: 8px 12px;
  }

  .footer-bottom-links {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .footer-bottom-links a,
  .contact-footer-bottom p {
    font-size: 15.4px;
    line-height: 1.5;
  }
}
