:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-2: #f7faff;
  --text: #111827;
  --muted: #667085;
  --line: #e8edf7;
  --accent: #1167f2;
  --accent-hover: #0b56d9;
  --container: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.public-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-main {
  flex: 1;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer__top {
  padding: 40px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.site-footer__brand {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.site-footer__text {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__links a {
  color: var(--muted);
}

.site-footer__links a:hover {
  color: var(--text);
}

.site-footer__bottom {
  padding: 18px 0 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 72px 0;
}

.section--first {
  padding-top: 56px;
}

.hero {
  padding: 76px 0 56px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero__title {
  margin: 0 0 18px;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 700;
}

.hero__subtitle {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  max-width: 720px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--secondary {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.section-title {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.15;
}

.section-text {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 860px;
}

@media (max-width: 980px) {
  .hero__grid,
  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    min-height: 72px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

  .section {
    padding: 56px 0;
  }
}

.accent-text {
  color: var(--accent);
}

.section-caption {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.section-title--center {
  text-align: center;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-features {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf3ff;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  flex: 0 0 34px;
}

.hero-feature__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-feature__text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border-color: rgba(79, 124, 255, 0.16);
  box-shadow: 0 20px 60px rgba(80, 110, 170, 0.14);
}

.hero-visual__badge {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e6ebf5;
  box-shadow: 0 10px 30px rgba(31, 51, 89, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  z-index: 3;
}

.hero-visual__badge--vk {
  top: 24px;
  right: 24px;
}

.hero-visual__badge--aud {
  right: 8px;
  top: 145px;
}

.hero-visual__panel {
  position: absolute;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e8edf7;
  box-shadow: 0 18px 40px rgba(31, 51, 89, 0.08);
}

.hero-visual__panel--left {
  top: 54px;
  left: 24px;
  width: 220px;
  padding: 18px;
  z-index: 1;
}

.hero-visual__panel--right {
  right: 36px;
  top: 82px;
  width: 380px;
  padding: 18px;
  z-index: 2;
}

.hero-visual__panel-title,
.hero-visual__table-title {
  font-size: 15px;
  font-weight: 700;
  color: #172033;
  margin-bottom: 14px;
}

.hero-visual__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-visual__menu span {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f6f8fc;
  color: #4e5c79;
  font-size: 13px;
}

.hero-visual__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-visual__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8faff;
  color: #42506d;
  font-size: 12px;
}

.hero-visual__chart {
  margin-top: 18px;
  height: 110px;
  border-radius: 14px;
  background:
    linear-gradient(to top, rgba(79, 124, 255, 0.08), rgba(79, 124, 255, 0.02)),
    repeating-linear-gradient(to right, transparent, transparent 48px, rgba(79, 124, 255, 0.08) 48px, rgba(79, 124, 255, 0.08) 49px),
    repeating-linear-gradient(to top, transparent, transparent 30px, rgba(79, 124, 255, 0.06) 30px, rgba(79, 124, 255, 0.06) 31px);
  position: relative;
  overflow: hidden;
}

.hero-visual__line {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 4%,
    #4f7cff 8%,
    #4f7cff 18%,
    transparent 22%,
    transparent 28%,
    #4f7cff 34%,
    #4f7cff 46%,
    transparent 50%,
    transparent 56%,
    #4f7cff 64%,
    #4f7cff 76%,
    transparent 80%,
    transparent 86%,
    #4f7cff 94%,
    #4f7cff 100%);
  border-radius: 999px;
  transform: translateY(-50%);
}

.service-cards {
  margin-top: 28px;
}

.service-card {
  background: #fff;
  border: 1px solid #e8edf7;
  box-shadow: 0 10px 24px rgba(31, 51, 89, 0.04);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #f2f6ff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-card__title {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.35;
}

.service-card__text {
  margin: 0;
  color: #667089;
  line-height: 1.7;
  font-size: 20px;
}

.section-soft {
  background: #f7faff;
}

.advantages-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.advantage-item {
  text-align: center;
}

.advantage-item__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.advantage-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.advantage-item p {
  margin: 0;
  color: #667089;
  line-height: 1.65;
  font-size: 15px;
}

.steps-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8edf7;
  box-shadow: 0 10px 24px rgba(31, 51, 89, 0.04);
}

.step-card__num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.step-card p {
  margin: 0;
  color: #667089;
  line-height: 1.7;
  font-size: 18px;
}

.lead-card {
  background: #fff;
  border: 1px solid #e8edf7;
  box-shadow: 0 10px 24px rgba(31, 51, 89, 0.04);
}

.lead-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.lead-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eef3fb, #dde6f3);
  flex: 0 0 42px;
}

.lead-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.lead-card__meta {
  font-size: 13px;
  color: #7b879f;
  margin-top: 2px;
}

.lead-card__text {
  margin: 0 0 18px;
  color: #3f4d67;
  line-height: 1.75;
  font-size: 20px;
}

.lead-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lead-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
}

.section-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.cta-banner {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f3f7ff 0%, #eaf1ff 100%);
  border: 1px solid #dfe8fb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner__title {
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.2;
}

.cta-banner__text {
  margin: 0;
  color: #65708a;
  line-height: 1.7;
  max-width: 720px;
  font-size: 20px;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 1180px) {
  .cards-4,
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual__panel--right {
    width: 320px;
    right: 20px;
  }

  .hero-visual__panel--left {
    width: 190px;
  }
}

@media (max-width: 980px) {
  .cards-4,
  .advantages-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual__panel--left {
    left: 20px;
    right: 20px;
    width: auto;
    top: 20px;
  }

  .hero-visual__panel--right {
    left: 20px;
    right: 20px;
    top: 220px;
    width: auto;
  }

  .hero-visual__badge--vk {
    top: 160px;
    right: 22px;
  }

  .hero-visual__badge--aud {
    display: none;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-feature {
    width: 100%;
  }

  .service-card__title,
  .step-card h3,
  .cta-banner__title {
    font-size: 24px;
  }

  .service-card__text,
  .step-card p,
  .lead-card__text,
  .lead-card__tags span,
  .cta-banner__text {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-visual__row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 24px;
  }
}


.niche-page {
  overflow: hidden;
}

.niche-hero {
  position: relative;
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 18% 20%, rgba(17, 103, 242, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.niche-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: center;
}

.niche-badge {
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.niche-hero__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.niche-hero__subtitle {
  max-width: 720px;
  margin: 24px 0 0;
  color: #59657c;
  font-size: 21px;
  line-height: 1.65;
}

.niche-hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.niche-hero__facts {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.niche-hero__facts div {
  padding: 16px 18px;
  border: 1px solid #e5ecf8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 30px rgba(29, 58, 112, 0.05);
}

.niche-hero__facts strong {
  display: block;
  color: #111827;
  font-size: 15px;
  line-height: 1.25;
}

.niche-hero__facts span {
  display: block;
  margin-top: 5px;
  color: #728096;
  font-size: 13px;
  line-height: 1.35;
}

.niche-visual {
  position: relative;
  min-height: 460px;
  padding: 24px;
  border: 1px solid #e0e8f6;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(241,246,255,0.92)),
    radial-gradient(circle at 80% 12%, rgba(17, 103, 242, 0.22), transparent 28%);
  box-shadow: 0 30px 80px rgba(37, 77, 143, 0.16);
}

.niche-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(17, 103, 242, 0.10);
  pointer-events: none;
}

.niche-visual__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.niche-visual__top span {
  color: #162033;
  font-size: 19px;
  font-weight: 800;
}

.niche-visual__top b {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #1167f2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(17, 103, 242, 0.28);
}

.niche-visual__list {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.niche-visual__item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e6edf8;
  box-shadow: 0 14px 30px rgba(31, 55, 99, 0.07);
}

.niche-visual__item span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(17, 103, 242, 0.12);
  flex: 0 0 13px;
}

.niche-visual__item p {
  margin: 0;
  color: #283449;
  font-size: 17px;
  font-weight: 700;
}

.niche-visual__chart {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 145px;
  display: flex;
  align-items: end;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(245,248,255,0.92)),
    repeating-linear-gradient(to top, transparent, transparent 28px, rgba(17, 103, 242, 0.08) 29px);
  border: 1px solid #e5ecf8;
}

.niche-visual__bar {
  flex: 1;
  min-width: 24px;
  border-radius: 12px 12px 5px 5px;
  background: linear-gradient(180deg, #1167f2, #76a9ff);
  box-shadow: 0 14px 24px rgba(17, 103, 242, 0.18);
}

.niche-visual__bar--1 { height: 46%; }
.niche-visual__bar--2 { height: 68%; }
.niche-visual__bar--3 { height: 54%; }
.niche-visual__bar--4 { height: 82%; }
.niche-visual__bar--5 { height: 96%; }

.niche-section-head {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.niche-section-text {
  margin: 18px auto 0;
  max-width: 850px;
  color: #59657c;
  font-size: 21px;
  line-height: 1.75;
}

.niche-leads {
  margin-top: 34px;
}

.niche-plumbing .niche-badge,
.niche-plumbing .niche-visual__item span {
  color: #0891b2;
}

.niche-plumbing .niche-visual__top b,
.niche-plumbing .niche-visual__item span,
.niche-plumbing .niche-visual__bar {
  background: linear-gradient(180deg, #0891b2, #67e8f9);
}

.niche-repair .niche-badge,
.niche-repair .niche-visual__item span {
  color: #b45309;
}

.niche-repair .niche-visual__top b,
.niche-repair .niche-visual__item span,
.niche-repair .niche-visual__bar {
  background: linear-gradient(180deg, #d97706, #fbbf24);
}

@media (max-width: 980px) {
  .niche-hero__grid {
    grid-template-columns: 1fr;
  }

  .niche-hero__facts {
    grid-template-columns: 1fr;
  }

  .niche-visual {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .niche-hero {
    padding: 64px 0 52px;
  }

  .niche-hero__subtitle,
  .niche-section-text {
    font-size: 17px;
  }

  .niche-visual {
    min-height: 450px;
    padding: 18px;
    border-radius: 26px;
  }

  .niche-visual__chart {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 9px;
    padding: 16px;
  }
}

.site-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

@media (max-width: 760px) {
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-menu-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    z-index: 100;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  }

  body.public-menu-open .site-nav {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px 10px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: #f3f7ff;
  }
}

.site-nav-dropdown {
  position: relative;
}

.site-nav-dropdown__button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 15px;
  cursor: pointer;
  padding: 0;
}

.site-nav-dropdown__button::after {
  content: " ▾";
}

.site-nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 180px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  z-index: 120;
}

.site-nav-dropdown:hover .site-nav-dropdown__menu {
  display: grid;
  gap: 4px;
}

.site-nav-dropdown__menu a {
  padding: 10px 12px;
  border-radius: 10px;
}

.site-nav-dropdown__menu a:hover {
  background: #f3f7ff;
}

.site-nav-login {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px !important;
  border-radius: 12px !important;
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 700;
}

.site-nav-login:hover {
  background: var(--accent-hover) !important;
  color: #ffffff !important;
}

@media (max-width: 760px) {
  .site-nav-dropdown__button {
    width: 100%;
    padding: 12px 10px;
    text-align: left;
    color: var(--muted);
  }

  .site-nav-dropdown__menu {
    position: static;
    display: none;
    padding: 4px 0 4px 16px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav-dropdown:hover .site-nav-dropdown__menu {
    display: none;
  }

  .site-nav-dropdown.is-open .site-nav-dropdown__menu,
  .site-nav-dropdown.is-open:hover .site-nav-dropdown__menu {
    display: grid;
  }

  .site-nav-login {
    margin-top: 8px;
    width: 100%;
  }
}

.site-menu-overlay {
  display: none;
}

@media (max-width: 760px) {
  body.public-menu-open .site-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(15, 23, 42, 0.42);
  }

  body.public-menu-open .site-header {
    z-index: 120;
  }

  .site-nav a,
  .site-nav-dropdown__button {
    color: #1f2937;
    font-weight: 600;
  }

  .site-nav-dropdown__menu a {
    color: #334155;
    font-weight: 500;
  }
}

.niche-visual {
  min-height: auto;
  padding: 18px;
}

.niche-visual__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  object-fit: cover;
  border-radius: 24px;
}

@media (max-width: 640px) {
  .niche-visual {
    min-height: auto;
    padding: 16px;
  }

  .niche-visual__image {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }
}