
:root {
  --ink: #16333a;
  --muted: #587178;
  --line: #d8e4e6;
  --paper: #ffffff;
  --soft: #eef7f6;
  --soft-2: #fff7e8;
  --teal: #087d82;
  --teal-dark: #075f65;
  --rose: #b94862;
  --yellow: #f4bd44;
  --navy: #173f5f;
  --shadow: 0 18px 50px rgba(10, 46, 52, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fbfb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.top-bar {
  background: var(--ink);
  color: #ffffff;
  font-size: 0.88rem;
}

.top-inner,
.header-inner,
.wrap {
  width: calc(100% - 32px);
  max-width: 1160px;
  margin: 0 auto;
}

.top-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-inner strong {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 228, 230, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  width: 174px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  text-decoration: none;
  color: var(--teal-dark);
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
  text-align: center;
}

.btn-primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(8, 125, 130, 0.24);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.btn-ghost {
  color: var(--teal-dark);
  background: #ffffff;
  border-color: rgba(8, 125, 130, 0.35);
}

.hero {
  position: relative;
  min-height: clamp(560px, 74vh, 700px);
  display: grid;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 38, 42, 0.9) 0%, rgba(7, 38, 42, 0.72) 42%, rgba(7, 38, 42, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 38, 42, 0.18), rgba(7, 38, 42, 0.02));
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(260px, 360px);
  align-items: center;
  gap: 36px;
  padding: 56px 0 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ee3df;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(2.65rem, 6.4vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 2vw, 1.36rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-panel {
  align-self: end;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.panel-title {
  margin: 0 0 14px;
  font-size: 0.94rem;
  font-weight: 950;
  color: var(--teal-dark);
  text-transform: uppercase;
}

.offer-list {
  display: grid;
  gap: 12px;
}

.offer-item {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.offer-item:first-child {
  border-top: 0;
}

.offer-item strong {
  display: block;
  font-size: 1.07rem;
}

.offer-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 46px 0;
}

.intro {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.62;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(15, 58, 64, 0.06);
}

.card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.16;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.reviews {
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.reviews-head h2 {
  max-width: 760px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfb;
  box-shadow: 0 10px 28px rgba(15, 58, 64, 0.06);
}

.stars {
  color: #d49a16;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0;
}

.review-card blockquote {
  margin: 16px 0 14px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.48;
  font-weight: 750;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.media-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dce9ea;
  aspect-ratio: 4 / 3;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(8, 125, 130, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--teal);
}

.terms {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.term {
  padding: 8px 11px;
  border: 1px solid rgba(8, 125, 130, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.proof {
  background: var(--ink);
  color: #ffffff;
}

.proof h2,
.proof .section-kicker {
  color: #ffffff;
}

.proof .section-kicker {
  color: #9ee3df;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 38px;
  align-items: center;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.proof-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-row strong {
  color: #ffffff;
}

.proof-row span {
  color: rgba(255, 255, 255, 0.76);
}

.map-wrap {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.location-stack {
  display: grid;
  gap: 12px;
}

.facade-frame {
  position: relative;
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: #dce9ea;
}

.facade-frame img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center;
}

.facade-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 10px 12px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(7, 38, 42, 0.86);
  font-weight: 850;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  gap: 40px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 17px 18px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  color: #ffffff;
  background: var(--teal-dark);
}

.final-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.final-box h2 {
  color: #ffffff;
}

.final-box p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.sticky-mobile {
  display: none;
}

@media (max-width: 920px) {
  .top-bar {
    display: none;
  }

  .top-inner {
    justify-content: center;
    text-align: center;
  }

  .top-inner span:first-child {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .top-inner span:last-child,
  .phone-link {
    display: none;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 146px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(7, 38, 42, 0.94) 0%, rgba(7, 38, 42, 0.82) 49%, rgba(7, 38, 42, 0.08) 100%);
  }

  .hero::before {
    background: transparent;
  }

  .hero-bg {
    object-position: var(--hero-position-mobile, center top);
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 18px;
    padding: 220px 0 34px;
  }

  h1 {
    max-width: min(100%, 360px);
  }

  .hero-copy,
  .hero-actions,
  .hero-badges {
    max-width: min(100%, 360px);
  }

  .hero-panel {
    padding: 14px;
  }

  .intro-grid,
  .split,
  .proof-grid,
  .faq-grid,
  .final-box {
    grid-template-columns: 1fr;
  }

  .cards,
  .check-list,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .reviews-head {
    display: block;
  }

  .reviews-head .btn {
    width: 100%;
    margin-top: 18px;
  }

  .section {
    padding: 52px 0;
  }

  .proof-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .final-box .btn {
    width: 100%;
  }

  .sticky-mobile {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: flex;
    box-shadow: 0 14px 32px rgba(7, 38, 42, 0.32);
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 520px) {
  .top-inner,
  .header-inner,
  .wrap {
    width: calc(100% - 22px);
  }

  .header-actions .btn {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.9rem;
    max-width: 126px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.15rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
