.home-page .nav-menu a:hover,
.home-page .nav-menu a.active {
  background: rgba(255, 255, 255, 0.04);
}

.home-page .site-header {
  padding-top: 14px;
}

.home-main {
  padding-bottom: 12px;
}

.home-page .hero {
  padding-top: 28px;
}

.home-page .hero-shell {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  min-height: calc(100vh - 180px);
}

.home-page .hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.home-page .hero-copy h1 {
  max-width: 15ch;
  margin: 0 auto;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  line-height: 0.94;
  text-wrap: balance;
}

.home-page .hero-copy p {
  max-width: 38ch;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-page .hero-actions {
  justify-content: center;
  width: 100%;
  margin-top: 18px;
}

.offers-heading {
  margin-bottom: 22px;
}

.home-page .section-alt {
  background: transparent;
}

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

.offer {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  min-height: 430px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(14, 21, 38, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 20px 45px rgba(0, 0, 0, 0.24);
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
}

.offer.site::before {
  background: radial-gradient(circle, rgba(95, 143, 255, 0.18), transparent 68%);
}

.offer.support::before {
  background: radial-gradient(circle, rgba(240, 193, 109, 0.18), transparent 68%);
}

.offer-premium {
  border-color: rgba(240, 193, 109, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 52px rgba(0, 0, 0, 0.28);
}

.offer-top {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(2.6rem, auto) auto;
  align-content: start;
  gap: 10px;
}

.offer-badge {
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-premium .offer-badge {
  border-color: rgba(240, 193, 109, 0.18);
  background: rgba(240, 193, 109, 0.08);
  color: var(--gold);
}

.offer h3 {
  margin: 0;
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  font-size: clamp(1.42rem, 1.45vw + 0.72rem, 1.68rem);
  line-height: 1.06;
  white-space: nowrap;
}

.offer-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.offer-price {
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.offer-price.is-quote {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.offer-cycle {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.details {
  display: grid;
  gap: 12px;
}

.detail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  column-gap: 12px;
  color: var(--text);
  line-height: 1.6;
}

.detail::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: currentColor;
}

.detail-copy {
  display: grid;
  gap: 2px;
}

.detail-label {
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.detail-text {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.detail.is-muted {
  color: rgba(245, 247, 251, 0.42);
}

.detail.is-muted .detail-label,
.detail.is-muted .detail-text {
  color: rgba(165, 178, 200, 0.58);
}

.offer-footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  margin-top: auto;
}

.cta {
  display: inline-flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  outline: none;
}

.cta-primary {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #ffffff;
}

.cta-secondary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #17110a;
}

.offer-note-mark {
  color: var(--gold);
}

.offer-note {
  margin: 16px 4px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.offer-note span {
  color: var(--gold);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 20px;
}

.contact-form-wide,
.map-card-feature {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%),
    rgba(14, 21, 38, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.contact-form-wide {
  display: grid;
  align-content: start;
  height: 100%;
}

.form-grid-simple {
  gap: 18px;
}

.map-card-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  height: 100%;
}

.map-frame-feature {
  min-height: 560px;
  height: 100%;
}

.map-frame-feature::after {
  display: none;
}

.map-frame-feature iframe {
  filter: none;
  transform: none;
}

.site-footer {
  padding: 8px 14px 24px;
}

.footer-shell {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-grid {
  justify-self: end;
  width: 240px;
  grid-template-columns: 1fr;
}

.footer-column {
  justify-items: start;
  text-align: left;
}

.footer-bottom {
  grid-column: 1 / -1;
  width: 100%;
  display: block;
}

.footer-bottom-copy {
  display: grid;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}

@media (max-width: 1240px) {
  .offers-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .map-frame-feature {
    min-height: 420px;
  }
}

@media (max-width: 920px) {
  .offer {
    min-height: auto;
  }

  .offer h3 {
    white-space: normal;
  }

  .footer-grid {
    justify-self: start;
    width: auto;
  }

  .footer-bottom-copy {
    width: 100%;
    margin: 0;
    justify-items: start;
    text-align: left;
  }

  .footer-bottom p {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .contact-form-wide,
  .map-card-feature,
  .offer {
    padding: 22px;
    border-radius: 26px;
  }

  .home-page .hero-shell {
    min-height: calc(100vh - 150px);
  }

  .home-page .hero-copy h1 {
    max-width: 10ch;
  }
}

@media (max-width: 560px) {
  .home-page .site-header {
    padding-top: 10px;
  }

  .home-page .hero {
    padding-top: 18px;
  }

  .home-page .hero-shell {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .home-page .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.5rem, 10vw, 3.7rem);
  }

  .home-page .hero-copy p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .contact-form-wide,
  .map-card-feature,
  .offer {
    padding: 18px;
    border-radius: 22px;
  }

  .offer {
    gap: 18px;
  }

  .offer-top {
    grid-template-rows: none;
    gap: 6px;
  }

  .offer h3 {
    white-space: normal;
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .offer-price {
    font-size: 2.2rem;
  }

  .detail-label {
    font-size: 0.93rem;
  }

  .detail-text {
    font-size: 0.9rem;
  }

  .hero-actions .button,
  .form-actions .button,
  .cta {
    width: 100%;
  }

  .map-frame-feature {
    min-height: 320px;
  }
}
