:root {
  --ink: #08213f;
  --muted: #6c7787;
  --gold: #ffad17;
  --gold-dark: #f39a00;
  --panel: #f4f7fa;
  --line: #e7ebf0;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 33, 63, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 18px auto 0;
  padding: 12px 14px 12px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(231, 235, 240, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 255px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  color: #34455b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a:first-child {
  color: var(--gold-dark);
}

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

.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 13px;
  font-weight: 800;
}

.phone-dot {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
}

.login-icon {
  position: relative;
  width: 42px;
  height: 42px;
  color: #758193;
  background: linear-gradient(180deg, #f9fafb, #edf1f5);
  border: 1px solid #d8dee7;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 18px rgba(8, 33, 63, 0.08);
}

.login-glyph {
  position: relative;
  width: 15px;
  height: 11px;
  margin-top: 7px;
  background: linear-gradient(180deg, #f2f4f7, #dfe5ec);
  border: 2px solid #7a8595;
  border-radius: 3px;
}

.login-glyph::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 10px;
  height: 8px;
  border: 2px solid #7a8595;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transform: translateX(-50%);
}

.login-glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  background: #7a8595;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 0 0 #7a8595;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-gold {
  color: #fff;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}

.button-outline {
  min-height: 42px;
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero {
  margin-top: 26px;
}

.hero-media {
  position: relative;
  min-height: 420px;
  aspect-ratio: 2.45 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #101a2b;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 43, 0.84), rgba(8, 20, 43, 0.42) 48%, rgba(8, 20, 43, 0.04));
}

.hero-content {
  position: absolute;
  left: clamp(28px, 6vw, 70px);
  top: 50%;
  width: min(570px, calc(100% - 56px));
  transform: translateY(-50%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.gold {
  color: var(--gold-dark);
}

.hero h1,
.section-intro h2,
.about-card h2,
.gallery-head h2,
.section-title-row h2,
.pricing-copy h2,
.section-title-center h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(38px, 5.2vw, 64px);
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.62fr 1.05fr;
  gap: 22px;
  margin-top: 22px;
}

.promo-card {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 35px rgba(8, 33, 63, 0.05);
}

.promo-card h2 {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.1;
}

.promo-photo {
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.promo-photo img {
  position: absolute;
  inset: 0;
}

.promo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
}

.promo-photo > div,
.promo-photo .round-link {
  position: relative;
  z-index: 1;
}

.mini-label {
  display: block;
  margin-bottom: 34px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.round-link {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 20px;
}

.promo-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  color: #fff;
  background: var(--gold);
}

.promo-stat strong {
  display: block;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 0.9;
}

.promo-stat span {
  color: var(--ink);
}

.promo-stat p {
  max-width: 240px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.promo-booking {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  padding: 30px;
}

.promo-booking h2 {
  color: var(--gold-dark);
  margin-bottom: 34px;
}

.promo-booking img {
  align-self: end;
  height: 190px;
  object-position: center top;
  border-radius: 5px;
}

.features {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr;
  gap: clamp(44px, 8vw, 120px);
  padding: 104px 0 80px;
}

.section-intro h2,
.about-card h2,
.gallery-head h2,
.section-title-row h2,
.pricing-copy h2,
.section-title-center h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.section-intro {
  position: relative;
}

.section-intro::after {
  content: "";
  display: block;
  width: 210px;
  height: 210px;
  margin-top: 24px;
  opacity: 0.08;
  border: 4px solid var(--ink);
  border-radius: 14px;
  transform: rotate(-12deg);
}

.section-intro .button {
  margin-top: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 76px;
  align-content: center;
}

.feature-grid article {
  min-width: 0;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  color: var(--ink);
  background: var(--panel);
  border-radius: 50%;
  font-size: 22px;
}

.feature-grid h3,
.about-card h3,
.service-card h3,
.blog-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
}

.feature-grid p,
.about-card p,
.service-card p,
.pricing-copy p {
  margin: 0;
  color: var(--muted);
}

.word-strip {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  padding: 18px 0 36px;
  color: rgba(8, 33, 63, 0.07);
  font-size: clamp(34px, 4.8vw, 66px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.word-strip b {
  color: var(--gold);
  font-size: 36px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: stretch;
  padding-bottom: 92px;
}

.about-photo,
.about-card {
  min-height: 700px;
  overflow: hidden;
  border-radius: 8px;
}

.about-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 84px);
  background: var(--panel);
}

.about-card > p {
  margin-top: 22px;
}

.company-copy {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.company-copy p {
  margin: 0;
  color: var(--muted);
}

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

.company-contact-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.company-contact-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-contact-card a,
.company-contact-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.circle-stats {
  display: flex;
  gap: 34px;
  margin: 48px 0;
}

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

.circle span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 7px solid rgba(255, 173, 23, 0.35);
  border-top-color: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.circle p {
  max-width: 95px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.about-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0 0 34px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold-dark);
  font-weight: 900;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-title-row h2 {
  max-width: 680px;
}

.service-grid,
.testimonial-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.blog-grid article,
.price-card,
blockquote {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.service-card {
  padding: 16px 16px 24px;
}

.service-card img,
.blog-grid img {
  height: 240px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.service-card h3,
.service-card p,
.blog-grid h3 {
  padding-inline: 6px;
}

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

.service-list-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-list-card span {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
}

.service-list-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.gallery {
  padding: 78px 0 8px;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.gallery-head > div {
  max-width: 620px;
}

.gallery-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  grid-column: span 3;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef2f6;
  cursor: pointer;
}

.gallery-card.featured {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 458px;
}

.gallery-card img {
  transition: transform 0.35s ease;
}

.gallery-card::after {
  content: "Open";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(8, 33, 63, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(255, 173, 23, 0.55);
  outline-offset: 2px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 34, 0.78);
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  width: min(1080px, 100%);
  max-height: min(88vh, 820px);
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(8, 23, 44, 0.32);
}

.gallery-lightbox-media {
  min-height: 420px;
  background: #dfe6ef;
}

.gallery-lightbox-media img {
  object-fit: cover;
}

.gallery-lightbox-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(26px, 4vw, 42px);
}

.gallery-lightbox-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.gallery-lightbox-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(8, 33, 63, 0.82);
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 72px 0;
}

.stats div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.stats strong {
  color: var(--gold-dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

.estimate {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: stretch;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
}

.estimate-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 68px);
  color: #fff;
  background: var(--ink);
}

.estimate-form h2 {
  margin: 0 0 28px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.06;
}

.estimate-notice {
  margin: -8px 0 18px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.estimate-notice-success {
  color: #dff7e8;
  background: rgba(67, 168, 112, 0.22);
  border: 1px solid rgba(132, 221, 170, 0.3);
}

.estimate-notice-error {
  color: #ffe4e0;
  background: rgba(196, 80, 72, 0.24);
  border: 1px solid rgba(255, 178, 171, 0.28);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.form-grid input,
.form-grid select,
.newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  outline: 0;
}

.testimonials {
  padding-top: 96px;
}

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

blockquote {
  margin: 0;
  padding: 34px;
}

blockquote span {
  color: var(--gold);
  font-size: 44px;
  line-height: 0.7;
}

blockquote p {
  margin: 12px 0 24px;
  color: var(--muted);
}

blockquote cite {
  font-style: normal;
  font-weight: 900;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding: 30px 0;
  color: #9aa5b4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 900;
  text-align: center;
}

.pricing {
  display: grid;
  grid-template-columns: 0.78fr 0.78fr 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 72px 0;
}

.price-card {
  padding: 34px;
}

.price-card.featured {
  color: #fff;
  background: var(--ink);
}

.price-card p,
.price-card h3 {
  margin: 0;
}

.price-card h3 {
  margin-top: 8px;
  font-size: 36px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  color: var(--muted);
  list-style: none;
}

.price-card.featured ul {
  color: rgba(255, 255, 255, 0.78);
}

.price-card li::before {
  content: "•";
  margin-right: 10px;
  color: var(--gold);
}

.pricing-copy {
  align-self: center;
  padding-left: 20px;
}

.pricing-copy p:last-child {
  margin-top: 18px;
}

.section-title-center {
  text-align: center;
  margin-bottom: 34px;
}

.blog {
  margin-top: 42px;
  padding-top: 24px;
}

.blog-grid article {
  padding: 14px 14px 24px;
}

.blog-card-link {
  display: block;
}

.blog-grid img {
  height: 190px;
}

.blog-grid time {
  display: block;
  margin: 6px 6px 12px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-grid h3 {
  font-size: 17px;
}

.footer {
  margin-top: 88px;
  padding: 30px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 42px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px 8px 0 0;
}

.footer-brand {
  align-self: center;
  justify-self: start;
  padding: 10px 14px;
  background: #fff;
  border-radius: 5px;
}

.footer-logo {
  width: 285px;
  height: 74px;
}

.newsletter label {
  display: block;
  margin-bottom: 12px;
  font-weight: 900;
}

.newsletter div {
  display: flex;
  gap: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    border-radius: 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex: auto;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 6px 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .brand-logo {
    width: 220px;
    height: 48px;
  }

  .phone span:last-child {
    display: none;
  }

  .promo-grid,
  .features,
  .about,
  .estimate,
  .pricing,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .promo-booking {
    grid-template-columns: 1fr 0.55fr;
  }

  .about-photo,
  .about-card {
    min-height: 520px;
  }

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

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

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

  .gallery-card,
  .gallery-card.featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .gallery-lightbox-panel {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-media {
    min-height: 360px;
  }

  .pricing-copy {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    margin-top: 10px;
    gap: 14px;
  }

  .header-actions .button {
    display: none;
  }

  .brand-logo {
    width: 178px;
    height: 44px;
  }

  .hero-media {
    min-height: 440px;
    aspect-ratio: 1.15 / 1;
    border-radius: 8px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 20, 43, 0.25), rgba(8, 20, 43, 0.88));
  }

  .hero-content {
    top: auto;
    bottom: 34px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .promo-grid,
  .feature-grid,
  .service-grid,
  .service-list-grid,
  .gallery-grid,
  .testimonial-grid,
  .blog-grid,
  .form-grid,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .promo-booking {
    grid-template-columns: 1fr;
  }

  .promo-booking img {
    height: 220px;
  }

  .features {
    padding: 76px 0 54px;
  }

  .feature-grid {
    gap: 32px;
  }

  .section-title-row {
    align-items: start;
    flex-direction: column;
  }

  .gallery-head {
    align-items: start;
    flex-direction: column;
  }

  .gallery-head > p {
    max-width: none;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox-media {
    min-height: 250px;
  }

  .gallery-lightbox-copy p:last-child {
    font-size: 15px;
  }

  .circle-stats {
    flex-direction: column;
  }

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

  .stats {
    grid-template-columns: 1fr;
    padding: 54px 0;
  }

  .estimate img {
    min-height: 280px;
  }

  .newsletter div {
    flex-direction: column;
  }
}
