@font-face {
  font-family: 'Circe';
  src:
    url('../../fonts/Circe-Regular.woff') format('woff'),
    url('../../fonts/Circe-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #1b1d21;
  --ink: #171b22;
  --muted: #596272;
  --line: #dfe5ed;
  --soft: #f4f7fb;
  --white: #ffffff;
  --red: #e30613;
  --red-dark: #bc0611;
  --blue: #174f9c;
  --cyan: #1997d4;
  --green: #16a566;
  --yellow: #ffce2e;
  --shadow: 0 20px 55px rgba(17, 24, 39, .14);
  --container-width: 1180px;
  --container-gutter: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'Circe', "Manrope", Arial, sans-serif;
  background: var(--soft);
  overflow-x: hidden;
}

.container {
  width: min(100% - var(--container-gutter), var(--container-width));
  margin: 0 auto;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  width: min(100% - 40px, 100%);
  min-height: 82px;
  padding: 12px 0;
  color: var(--white);
  background: linear-gradient(135deg, rgba(30, 35, 45, .98), rgba(14, 18, 25, .98));
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .14);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.header-container {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 58px;
  padding: 0;
}

.logo-link {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  justify-self: start;
  box-shadow: none;
}

.logo-link img {
  display: block;
  width: 134px;
  height: auto;
}

.mobile-nav-toggle {
  display: none;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 1.45vw, 26px);
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a {
  transition: color .18s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.main-nav__item--dropdown > a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.main-nav__chevron {
  font-size: 10px;
  line-height: 1;
  transition: transform .18s ease;
}

.main-nav__dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  z-index: 20;
  display: grid;
  min-width: 230px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .14);
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.main-nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.main-nav__dropdown a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 11px;
  color: #17202a;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  border-radius: 6px;
}

.main-nav__dropdown a:hover,
.main-nav__dropdown a.is-active {
  color: #fff;
  background: var(--red);
}

.main-nav__item--dropdown:hover .main-nav__chevron,
.main-nav__item--dropdown:focus-within .main-nav__chevron {
  transform: rotate(180deg);
}

.main-nav__item--dropdown:hover .main-nav__dropdown,
.main-nav__item--dropdown:focus-within .main-nav__dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-live {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--white);
}

a.nav-live {
  color: var(--red-dark);
}

.nav-live i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  font-size: 9px;
  background: var(--red);
  border-radius: 50%;
}

.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 0;
  justify-self: end;
  white-space: nowrap;
}

.phone {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.phone > i {
  color: var(--red);
  font-size: 18px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(227, 6, 19, .24);
}

.button-red:hover {
  background: var(--red-dark);
}

.button-muted {
  color: #17202a;
  background: #ffffff;
  border-color: #cfd8e5;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.button-muted:hover {
  color: var(--red);
  background: #f8fafc;
  border-color: rgba(232, 0, 18, .34);
}

.button-outline,
.button-white {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
}

.button-white {
  min-width: 214px;
  background: rgba(255, 255, 255, .94);
}

.hero-buttons .button-white {
  color: #10131a;
  border-color: #aeb7c4;
}

.button-large {
  min-height: 50px;
  min-width: 190px;
  padding: 0 18px;
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 132px 0 38px;
  isolation: isolate;
}

.hero-bg,
.hero-bg > * {
  position: absolute;
  pointer-events: none;
}

.hero-bg {
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 247, 251, .22) 0%, rgba(244, 247, 251, .54) 72%, rgba(244, 247, 251, .96) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .82) 36%, rgba(255, 255, 255, .2) 72%),
    url("../../img/hero-map-bg-realistic.png") center / cover no-repeat;
}

.sun {
  top: 148px;
  right: 390px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, .9), rgba(255, 210, 122, .32) 45%, transparent 70%);
  border-radius: 50%;
}

.wave {
  right: -130px;
  width: 900px;
  height: 560px;
  border: 2px solid rgba(255, 255, 255, .48);
  border-color: rgba(255, 255, 255, .52) transparent transparent rgba(255, 255, 255, .38);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.wave-one {
  top: 102px;
}

.wave-two {
  top: 190px;
  right: -16px;
  width: 720px;
  height: 440px;
  border-color: rgba(227, 6, 19, .22) transparent transparent rgba(227, 6, 19, .18);
}

.city {
  bottom: 255px;
  right: 0;
  height: 260px;
  opacity: .16;
}

.city::before,
.city::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(24, 35, 51, .85));
  box-shadow:
    78px 22px 0 -10px rgba(24, 35, 51, .76),
    156px -28px 0 -2px rgba(24, 35, 51, .68),
    238px 38px 0 -12px rgba(24, 35, 51, .72),
    318px -8px 0 rgba(24, 35, 51, .78),
    398px 58px 0 -20px rgba(24, 35, 51, .7),
    484px -46px 0 -8px rgba(24, 35, 51, .75);
}

.city-back {
  right: 430px;
  width: 620px;
}

.city-back::before {
  width: 58px;
  height: 160px;
}

.city-front {
  right: 0;
  width: 720px;
  opacity: .96;
}

.city-front::before {
  width: 72px;
  height: 250px;
}

.road {
  right: -40px;
  bottom: -80px;
  width: 980px;
  height: 420px;
  background:
    linear-gradient(103deg, transparent 0 42%, rgba(255, 255, 255, .82) 42.15% 42.45%, transparent 42.7%),
    linear-gradient(112deg, transparent 0 51%, rgba(227, 6, 19, .48) 51.1% 51.34%, transparent 51.6%),
    linear-gradient(118deg, rgba(15, 23, 42, .08), rgba(15, 23, 42, .5) 72%);
  clip-path: polygon(20% 100%, 58% 0, 100% 0, 100% 100%);
  opacity: .34;
}

.dashboard {
  right: -60px;
  bottom: -50px;
  width: 390px;
  height: 250px;
  background:
    linear-gradient(145deg, #151820, #07080c),
    linear-gradient(#2c1117, #2c1117);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 38px;
  box-shadow: -22px -18px 55px rgba(3, 7, 18, .38);
  transform: rotate(2deg);
}

.dashboard::before {
  content: "АВТОРАДИО\A 101.0 FM";
  position: absolute;
  top: 68px;
  left: 92px;
  width: 190px;
  height: 78px;
  display: grid;
  place-items: center;
  color: #ffe6e8;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
  white-space: pre;
  background: linear-gradient(180deg, #73161d, #341015);
  border: 1px solid rgba(255, 255, 255, .12);
}

.hero-content {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.hero-copy {
  display: grid;
  width: min(100%, 500px);
  justify-items: start;
  padding-top: 0;
}

.brand-pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 26px;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(197, 208, 222, .9);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(3, 7, 18, .08);
  backdrop-filter: blur(12px);
}

.brand-pill span {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(44px, 4.9vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
}

h1 span {
  display: block;
  color: var(--ink);
}

h1 .accent {
  display: inline;
  color: var(--red);
}

.lead {
  max-width: 540px;
  margin-bottom: 28px;
  color: #4d5868;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 22px;
}

.quick-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 22px;
}

.quick-contacts a {
  display: inline-flex;
  min-height: 38px;
  gap: 8px;
  align-items: center;
  padding: 0 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.quick-contacts i {
  color: var(--red);
}

.map-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: #4d5868;
  font-size: 16px;
  font-weight: 500;
}

.map-link:hover {
  color: var(--red);
}

.hero-media {
  display: grid;
  width: 100%;
  max-width: 560px;
  gap: 16px;
  align-content: center;
  justify-content: center;
  justify-items: center;
  min-height: auto;
  padding-top: 62px;
}

.on-air-card {
  display: grid;
  width: min(440px, 100%);
  grid-template-columns: 1fr 96px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(226, 232, 240, .92);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.air-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 10px;
}

.air-label {
  display: inline-flex;
  margin: 0;
  padding: 7px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--red);
  border-radius: 8px;
}

.air-wave {
  display: block;
  flex: 1;
  min-width: 120px;
  height: 28px;
  opacity: .9;
  background: url("../../img/air-wave.svg") left center / contain no-repeat;
}

.on-air-card h2 {
  margin-bottom: 10px;
  color: #111827;
  font-size: 20px;
}

.on-air-card p:not(.air-label) {
  margin-bottom: 6px;
  color: #4b5563;
  font-size: 15px;
}

.listen-link {
  display: inline-flex;
  width: fit-content;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.listen-link i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  font-size: 10px;
  background: var(--red);
  border-radius: 50%;
}

.microphone {
  position: relative;
  display: grid;
  width: 82px;
  height: 116px;
  place-items: center;
}

.microphone img {
  display: block;
  width: 108px;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, .22));
}

.station-slider {
  position: relative;
  display: grid;
  width: min(560px, 100%);
  gap: 12px;
  padding: 0;
}

.station-viewport {
  overflow-x: auto;
  border-radius: 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.station-viewport::-webkit-scrollbar {
  display: none;
}

.station-track {
  display: flex;
  gap: 10px;
  padding: 2px;
}

.station-tile {
  display: grid;
  flex: 0 0 104px;
  width: 104px;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  text-align: center;
  font-size: 19px;
  font-weight: 900;
  line-height: .95;
  background: radial-gradient(circle at 35% 28%, #ffffff, #eef2f6);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 8px;
  scroll-snap-align: start;
}

.station-tile img {
  display: block;
  max-width: 92%;
  max-height: 62px;
  object-fit: contain;
}

.station-text.station-red {
  color: var(--red);
}

.station-text.station-blue {
  color: #1682d4;
}

.station-text.station-yellow {
  color: #0f172a;
  background:
    linear-gradient(135deg, rgba(255, 206, 46, .96), rgba(255, 229, 118, .96));
}

.station-text.station-cyan {
  color: var(--white);
  background: linear-gradient(135deg, #35aee8, #1673ba);
  border-radius: 8px;
}

.station-text.station-wide {
  font-size: 20px;
}

.station-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
}

.station-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(255, 255, 255, .78);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(15, 23, 42, .18);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}

.station-dot.is-active {
  width: 22px;
  background: var(--red);
}

.listen-contexts {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  gap: 8px;
  justify-content: flex-end;
  margin: 2px 0 22px auto;
  padding-right: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: none;
}

.listen-contexts div {
  display: inline-flex;
  min-height: 42px;
  gap: 9px;
  align-items: center;
  padding: 7px 12px 7px 8px;
  color: #242b36;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, .94);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .1);
  backdrop-filter: blur(10px);
  text-shadow: none;
}

.listen-contexts span,
.stat-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.listen-contexts span {
  width: 28px;
  height: 28px;
  color: var(--red);
  font-size: 13px;
  background: rgba(227, 6, 19, .1);
  box-shadow: none;
}

.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(226, 232, 240, .88);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stats article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 8px 16px;
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stat-icon {
  width: 56px;
  height: 56px;
}

.stat-red {
  color: var(--red);
  background: rgba(227, 6, 19, .1);
}

.stat-blue {
  color: var(--blue);
  background: rgba(23, 79, 156, .1);
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 30px;
  line-height: 1;
}

.stats article:nth-child(2) strong {
  color: var(--blue);
}

.stats h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.stats p {
  margin-bottom: 0;
  color: #677285;
  font-size: 14px;
  line-height: 1.45;
}

.coverage-section {
  padding: 88px 0 100px;
  background:
    radial-gradient(circle at 12% 8%, rgba(227, 6, 19, .07), transparent 28%),
    linear-gradient(180deg, #f5f7fb 0%, #eef3f8 100%);
}

.coverage-head {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(320px, 460px);
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-kicker {
  width: fit-content;
  margin: 0 0 15px;
  padding: 8px 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(227, 6, 19, .08);
  border-radius: 8px;
}

.coverage-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

.coverage-head > p {
  margin: 0;
  color: #5b6575;
  font-size: 17px;
  line-height: 1.6;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.map-scheme,
.coverage-panel {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(17, 24, 39, .1);
}

.map-scheme {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .78)),
    radial-gradient(circle at 52% 46%, rgba(99, 116, 139, .18), transparent 15%),
    radial-gradient(circle at 52% 46%, rgba(227, 6, 19, .09), transparent 42%),
    linear-gradient(135deg, #e7edf6, #f8fafc);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(23, 79, 156, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 79, 156, .08) 1px, transparent 1px);
  background-size: 46px 46px;
}

.map-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(227, 6, 19, .2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.ring-one {
  width: 72%;
  height: 66%;
}

.ring-two {
  width: 54%;
  height: 48%;
  border-color: rgba(23, 79, 156, .16);
}

.ring-three {
  width: 88%;
  height: 78%;
  border-color: rgba(255, 255, 255, .8);
}

.moscow-muted {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  gap: 4px;
  min-width: 144px;
  padding: 14px 16px;
  color: #64748b;
  text-align: center;
  background: rgba(241, 245, 249, .92);
  border: 1px dashed rgba(100, 116, 139, .32);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
  transform: translate(-50%, -50%);
}

.moscow-muted span {
  font-size: 16px;
  font-weight: 900;
}

.moscow-muted strong {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.broadcast-pin {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 118px;
  padding: 10px 12px 10px 28px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .12);
}

.broadcast-pin::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 17px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(227, 6, 19, .1);
}

.broadcast-pin small {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.pin-dubna {
  left: 18%;
  top: 16%;
}

.pin-posad {
  right: 13%;
  top: 21%;
}

.pin-kolomna {
  right: 16%;
  bottom: 23%;
}

.pin-serpukhov {
  left: 46%;
  bottom: 13%;
}

.pin-naro {
  left: 13%;
  bottom: 27%;
}

.pin-orehovo {
  right: 8%;
  top: 50%;
}

.map-stats {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.map-stats span {
  padding: 14px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(226, 232, 240, .92);
  border-radius: 10px;
}

.map-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.coverage-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
}

.panel-eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-panel h3 {
  margin: 0;
  color: #111827;
  font-size: 26px;
  line-height: 1.12;
}

.zone-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 5px;
  background: #eef2f7;
  border-radius: 8px;
}

.zone-tabs button {
  min-height: 38px;
  color: #576273;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}

.zone-tabs .is-active {
  color: var(--white);
  background: var(--red);
}

.city-list {
  display: grid;
  gap: 10px;
}

.city-list a {
  display: grid;
  gap: 16px;
  padding: 14px;
  color: #1f2937;
  font-weight: 800;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, .92);
  border-radius: 8px;
}

.city-list span {
  color: var(--red);
  font-size: 13px;
}

.coverage-note {
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, #1f2632, #11151c);
  border-radius: 10px;
}

.coverage-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
}

.coverage-note p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.55;
}

.coverage-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(227, 6, 19, .24);
}

.about-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(227, 6, 19, .07), transparent 30%),
    #ffffff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 54px;
  align-items: center;
}

.about-copy h2 {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

.about-text {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin-bottom: 26px;
}

.about-text p {
  margin: 0;
  color: #5b6575;
  font-size: 17px;
  line-height: 1.7;
}

.about-link {
  display: inline-flex;
  min-height: 48px;
  gap: 10px;
  align-items: center;
  padding: 0 18px;
  color: var(--white);
  font-weight: 900;
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(227, 6, 19, .2);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-facts article {
  min-height: 190px;
  padding: 24px;
  background: rgba(248, 250, 252, .96);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, .08);
}

.about-facts strong {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 46px;
  line-height: .95;
}

.about-facts p {
  margin: 0;
  color: #475569;
  font-weight: 700;
  line-height: 1.5;
}

.services-section {
  padding: 90px 0 100px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(320px, 470px);
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.services-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

.services-head > p {
  margin: 0;
  color: #5b6575;
  font-size: 17px;
  line-height: 1.6;
}

.services-layout {
  display: block;
}

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

.service-card,
.services-offer,
.service-chips a {
  border-radius: 12px;
  box-shadow: 0 20px 55px rgba(17, 24, 39, .09);
}

.service-card {
  display: grid;
  min-height: 310px;
  align-content: start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(226, 232, 240, .95);
}

.service-card-primary {
  background:
    linear-gradient(180deg, rgba(227, 6, 19, .06), rgba(255, 255, 255, .96));
  border-color: rgba(227, 6, 19, .2);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--red);
  font-size: 20px;
  background: rgba(227, 6, 19, .1);
  border-radius: 12px;
}

.service-card h3,
.services-offer h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.12;
}

.service-card p,
.services-offer p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.service-card a {
  display: inline-flex;
  width: fit-content;
  gap: 9px;
  align-items: center;
  align-self: end;
  color: var(--red);
  font-weight: 900;
}

.services-offer-slider {
  position: relative;
  margin-top: 18px;
}

.services-offer {
  position: relative;
  display: none;
  min-height: 300px;
  grid-template-columns: minmax(0, 480px) 1fr;
  align-content: start;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 20, 27, .96) 0%, rgba(16, 20, 27, .84) 42%, rgba(16, 20, 27, .28) 100%),
    var(--offer-image) center / cover no-repeat;
}

.services-offer-radio-network {
  --offer-image: url("../../img/service-slide-radio-network.png");
}

.services-offer-news {
  --offer-image: url("../../img/service-slide-news.png");
}

.services-offer-interview {
  --offer-image: url("../../img/service-slide-interview.png");
}

.services-offer.is-active {
  display: grid;
}

.services-offer > div {
  display: grid;
  gap: 18px;
}

.services-offer::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.offer-label {
  width: fit-content;
  margin: 0 0 4px;
  padding: 8px 10px;
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--red);
  border-radius: 8px;
}

.services-offer h3 {
  color: var(--white);
  font-size: 28px;
}

.services-offer p:not(.offer-label) {
  color: rgba(255, 255, 255, .72);
}

.offer-dots {
  display: flex;
  position: absolute;
  right: 34px;
  bottom: 28px;
  gap: 7px;
  z-index: 3;
  margin: 0;
}

.offer-dots button,
.offer-dots span {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(255, 255, 255, .42);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.offer-dots .is-active {
  width: 24px;
  background: var(--red);
}

.services-offer .button {
  position: relative;
  z-index: 1;
  width: fit-content;
  grid-column: 1;
  justify-self: start;
  align-self: start;
  margin-top: 2px;
}

.services-offer-link {
  display: inline-flex;
  position: relative;
  z-index: 1;
  width: fit-content;
  grid-column: 1;
  align-items: center;
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.service-chips a {
  display: inline-flex;
  min-height: 72px;
  gap: 12px;
  align-items: center;
  padding: 0 18px;
  color: #1f2937;
  font-weight: 800;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(226, 232, 240, .95);
}

.service-chips i {
  flex: 0 0 auto;
  color: var(--red);
}

.cases-section {
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 88% 12%, rgba(23, 79, 156, .08), transparent 28%),
    #f4f7fb;
}

.cases-head {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(320px, 440px);
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.cases-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

.cases-head > p {
  margin: 0;
  color: #5b6575;
  font-size: 17px;
  line-height: 1.6;
}

.cases-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .72fr) minmax(300px, .78fr);
  gap: 18px;
  align-items: stretch;
}

.case-card,
.testimonial-card {
  border-radius: 12px;
  box-shadow: 0 20px 55px rgba(17, 24, 39, .09);
}

.case-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(226, 232, 240, .95);
}

.case-card-featured {
  min-height: 390px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 20, 27, .96) 0%, rgba(16, 20, 27, .88) 48%, rgba(16, 20, 27, .42) 100%),
    radial-gradient(circle at 92% 8%, rgba(227, 6, 19, .28), transparent 28%),
    url("../../img/case-retail-campaign.png") center / cover no-repeat,
    linear-gradient(145deg, #202633, #10141b);
  border-color: rgba(255, 255, 255, .08);
}

.case-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.case-top span,
.case-top strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 900;
  border-radius: 8px;
}

.case-top span {
  color: var(--white);
  background: var(--red);
}

.case-top strong {
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
}

.case-card h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.16;
}

.case-card-featured h3 {
  max-width: 460px;
  margin-top: 32px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.08;
}

.case-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.case-card-featured p {
  max-width: 520px;
  color: rgba(255, 255, 255, .72);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-self: end;
  margin-top: 18px;
}

.case-metrics span {
  padding: 14px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
}

.case-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.case-list {
  display: grid;
  gap: 18px;
}

.case-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--red);
  background: rgba(227, 6, 19, .1);
  border-radius: 12px;
}

.testimonial-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(226, 232, 240, .95);
}

.quote-mark {
  color: rgba(227, 6, 19, .18);
  font-size: 96px;
  font-weight: 900;
  line-height: .7;
}

.testimonial-card p {
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-author {
  display: grid;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-author span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-author strong {
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
}

.testimonial-card a {
  display: inline-flex;
  width: fit-content;
  gap: 9px;
  align-items: center;
  color: var(--red);
  font-weight: 900;
}

.partners-section {
  padding: 88px 0 96px;
  background: #ffffff;
}

.partners-head {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(320px, 440px);
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.partners-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

.partners-head > p {
  margin: 0;
  color: #5b6575;
  font-size: 17px;
  line-height: 1.6;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.partners-grid a {
  display: grid;
  min-height: 118px;
  place-items: center;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.partners-grid a:hover {
  border-color: rgba(227, 6, 19, .24);
  box-shadow: 0 22px 55px rgba(17, 24, 39, .1);
  transform: translateY(-2px);
}

.partners-grid img {
  display: block;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.partners-grid__more {
  gap: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.partners-grid__more span {
  display: block;
}

.partners-grid__more i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--red);
}

.partners-grid__more:hover {
  color: var(--red);
}

.contacts-section {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 20, 27, .96) 0%, rgba(16, 20, 27, .9) 42%, rgba(16, 20, 27, .7) 100%),
    radial-gradient(circle at 12% 18%, rgba(227, 6, 19, .28), transparent 32%),
    url("../../img/contacts-team.png") center / cover no-repeat,
    linear-gradient(145deg, #202633, #10141b);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: stretch;
}

.contacts-copy {
  display: grid;
  align-content: center;
}

.contacts-copy h2 {
  max-width: 640px;
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.04;
}

.contacts-copy > p {
  max-width: 590px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.65;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 14px;
  margin-bottom: 24px;
}

.contact-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
}

.contact-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 12px;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 16px;
}

.contact-card small {
  color: rgba(255, 255, 255, .62);
}

.team-strip {
  display: flex;
  max-width: 650px;
  gap: 10px;
  align-items: center;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
}

.team-strip:hover {
  border-color: rgba(227, 6, 19, .42);
  background: rgba(255, 255, 255, .09);
}

.team-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  overflow: hidden;
  place-items: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

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

.team-strip strong {
  display: block;
  margin-bottom: 4px;
}

.team-strip p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  line-height: 1.45;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: #111827;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(3, 7, 18, .24);
}

.request-form h3 {
  margin: 0 0 4px;
  font-size: 30px;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: #475569;
  font-size: 13px;
  font-weight: 900;
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: #111827;
  font: inherit;
  background: #f8fafc;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  outline: 0;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: rgba(227, 6, 19, .45);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, .08);
}

.request-form textarea {
  resize: vertical;
}

.request-form .button {
  width: 100%;
}

.request-form > p {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.45;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, .72);
  background: #10141b;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(150px, .7fr) minmax(320px, 1.4fr) minmax(210px, .8fr);
  gap: 36px;
  align-items: start;
}

.footer-brand img {
  display: block;
  width: 150px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  line-height: 1.6;
}

.footer-nav,
.footer-stations,
.footer-contacts {
  display: grid;
  gap: 10px;
}

.site-footer h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  transition: color .18s ease;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-stations > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-phone {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--white) !important;
  font-size: 18px !important;
  font-weight: 900;
}

.footer-phone i {
  color: var(--red);
}

.footer-contacts .button {
  width: fit-content;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .46);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.rc-request-modal[hidden] {
  display: none;
}

.rc-request-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.rc-request-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 24, .66);
  backdrop-filter: blur(7px);
}

.rc-request-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(3, 7, 18, .34);
}

.rc-request-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #17202a;
  background: #f4f7fb;
  border: 1px solid #dfe5ed;
  border-radius: 50%;
  cursor: pointer;
}

.rc-request-modal__close:hover {
  color: var(--red);
}

.rc-request-modal__form {
  display: grid;
  gap: 16px;
  padding: 34px;
}

.rc-request-modal__head {
  padding-right: 40px;
}

.rc-request-modal__head p {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 12px;
  padding: 8px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: #17202a;
  border-radius: 6px;
  text-transform: uppercase;
}

.rc-request-modal__head p::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.rc-request-modal__head h2 {
  margin: 0;
  color: #17202a;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.08;
}

.rc-request-modal label {
  display: grid;
  gap: 8px;
  color: #475569;
  font-size: 13px;
  font-weight: 900;
}

.rc-request-modal input,
.rc-request-modal textarea {
  width: 100%;
  padding: 14px 15px;
  color: #111827;
  font: inherit;
  background: #f8fafc;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  outline: 0;
}

.rc-request-modal input:focus,
.rc-request-modal textarea:focus {
  border-color: rgba(227, 6, 19, .45);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, .08);
}

.rc-request-modal textarea {
  resize: vertical;
}

.rc-request-modal .button {
  width: 100%;
}

.rc-request-modal__message {
  min-height: 18px;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
}

.rc-request-modal__message.is-success {
  color: #047857;
}

.rc-request-modal__message.is-error {
  color: var(--red);
}

.rc-modal-lock {
  overflow: hidden;
}

.phone-icon,
.download-icon,
.calc-icon,
.pin-icon,
.arrow-icon,
.car-icon,
.home-icon,
.office-icon,
.bag-icon,
.people-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.phone-icon::before {
  content: "";
  position: absolute;
  inset: 4px 7px;
  border: 3px solid var(--red);
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 10px 0;
  transform: rotate(45deg);
}

.download-icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 2px;
  width: 3px;
  height: 14px;
  background: currentColor;
}

.download-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 4px;
  width: 14px;
  height: 10px;
  border: 3px solid currentColor;
  border-top: 0;
  transform: skewY(-8deg);
}

.calc-icon::before {
  content: "";
  position: absolute;
  inset: 2px 4px;
  border: 3px solid currentColor;
  border-radius: 4px;
  box-shadow:
    inset 0 7px 0 rgba(255, 255, 255, .34),
    inset 7px 15px 0 -5px currentColor,
    inset -7px 15px 0 -5px currentColor;
}

.pin-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin-icon::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}

.arrow-icon::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 2px;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.arrow-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.car-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 18px;
  height: 9px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.car-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 3px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 9px 0 0 currentColor;
}

.home-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 16px;
  height: 12px;
  border: 3px solid currentColor;
  border-top: 0;
}

.home-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg);
}

.office-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 14px;
  height: 18px;
  border: 3px solid currentColor;
  box-shadow:
    inset 0 6px 0 -3px currentColor,
    inset 0 12px 0 -6px currentColor;
}

.bag-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 14px;
  height: 13px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.bag-icon::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 3px;
  width: 6px;
  height: 8px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.people-icon::before,
.people-icon::after {
  content: "";
  position: absolute;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.people-icon::before {
  left: 9px;
  top: 3px;
  width: 7px;
  height: 7px;
}

.people-icon::after {
  left: 4px;
  bottom: 3px;
  width: 16px;
  height: 10px;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

@media (max-width: 1320px) {
  .header-container {
    grid-template-columns: 150px minmax(0, 1fr);
    row-gap: 10px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    padding: 0;
  }

  .hero {
    padding-top: 188px;
  }
}

@media (max-width: 1180px) {
  .header-container {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-media {
    justify-items: center;
    min-height: auto;
    padding-top: 0;
  }

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

  .listen-contexts {
    justify-content: flex-start;
    padding-right: 0;
  }

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

  .coverage-layout {
    grid-template-columns: 1fr;
  }

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

  .zone-tabs,
  .coverage-panel > div:first-child,
  .coverage-note,
  .coverage-cta {
    grid-column: 1 / -1;
  }

  .coverage-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-head,
  .cases-head,
  .about-layout,
  .services-layout {
    grid-template-columns: 1fr;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

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

  .cases-layout {
    grid-template-columns: 1fr;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
  }

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

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

  .case-card-featured {
    min-height: auto;
  }

  .services-offer {
    min-height: 360px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .stats article:nth-child(2) {
    border-right: 0;
  }

  .stats article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 12px 16px;
    border-radius: 0;
    transform: none;
  }

  .header-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .logo-link {
    min-height: auto;
    justify-self: start;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    padding: 4px 0;
    white-space: normal;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0;
    white-space: normal;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 28px;
  }

  h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 18px;
  }

  .button-large {
    width: 100%;
    min-width: 0;
  }

  .on-air-card {
    grid-template-columns: 1fr;
  }

  .station-slider,
  .stats {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 28px;
  }

  .station-slider {
    padding: 0;
  }

  .station-tile {
    flex-basis: 98px;
    width: 98px;
    min-height: 98px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .listen-contexts div {
    color: var(--ink);
    text-shadow: none;
  }

  .stats {
    padding: 18px;
    border-radius: 16px;
  }

  .coverage-section {
    padding: 56px 0 64px;
  }

  .services-section {
    padding: 56px 0 64px;
  }

  .about-section {
    padding: 56px 0 64px;
  }

  .cases-section {
    padding: 56px 0 64px;
  }

  .contacts-section {
    padding: 56px 0;
  }

  .coverage-head h2,
  .about-copy h2,
  .services-head h2,
  .cases-head h2 {
    font-size: 34px;
  }

  .map-scheme {
    min-height: 560px;
  }

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

  .map-stats {
    grid-template-columns: 1fr;
  }

  .broadcast-pin {
    min-width: 104px;
    font-size: 12px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts article {
    min-height: auto;
  }

  .service-chips {
    grid-template-columns: 1fr;
  }

  .services-offer {
    min-height: 420px;
    padding: 24px;
  }

  .case-card-featured h3 {
    margin-top: 12px;
    font-size: 30px;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

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

  .team-strip {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-stations > div {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .offer-dots {
    right: 24px;
    bottom: 22px;
  }

  .stats article {
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats article:last-child {
    border-bottom: 0;
  }
}
/* Bitrix imported content pages */
.rc-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 64px;
}

.rc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 178px;
  margin-bottom: 14px;
  color: #6b7788;
  font-size: 14px;
  font-weight: 700;
}

.rc-breadcrumbs a {
  color: #17202a;
  text-decoration: none;
}

.rc-breadcrumbs a:hover {
  color: var(--red);
}

.rc-stations-page {
  padding-bottom: 72px;
  background: #f4f7fb;
}

.rc-stations-head {
  padding: 36px 0 20px;
}

.rc-stations-head h1 {
  max-width: 780px;
  margin: 0;
  color: #17202a;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.rc-stations-head p:last-child {
  max-width: 780px;
  margin: 18px 0 0;
  color: #4a5567;
  font-size: 18px;
  line-height: 1.6;
}

.rc-station-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 24px;
}

.rc-station-filter button {
  min-height: 38px;
  padding: 8px 13px;
  color: #17202a;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  border: 1px solid #dbe3ed;
  border-radius: 6px;
  cursor: pointer;
}

.rc-station-filter button:hover,
.rc-station-filter button.is-active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.rc-stations-catalog {
  display: grid;
  gap: 18px;
}

.rc-station-list-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .06);
}

.rc-station-list-card[hidden] {
  display: none;
}

.rc-station-list-card__media {
  display: grid;
  min-height: 160px;
  place-items: center;
  padding: 18px;
  background: #f4f7fb;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-station-list-card__media img {
  display: block;
  max-width: 160px;
  max-height: 110px;
  object-fit: contain;
}

.rc-station-list-card__body {
  display: grid;
  gap: 16px;
}

.rc-station-list-card__top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.rc-station-list-card h2 {
  margin: 0;
  color: #17202a;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.rc-station-list-card p {
  max-width: 760px;
  margin: 0;
  color: #4a5567;
  font-size: 16px;
  line-height: 1.55;
}

.rc-station-list-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.rc-station-frequency-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rc-station-frequency-list span,
.rc-station-frequency-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: #17202a;
  font-size: 13px;
  font-weight: 900;
  background: #f4f7fb;
  border: 1px solid #e2e6ec;
  border-radius: 6px;
}

.rc-station-frequency-list span::before,
.rc-station-frequency-list a::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--red);
  border-radius: 50%;
}

.rc-station-frequency-list a:hover {
  color: var(--red);
  border-color: rgba(232, 0, 18, .34);
}

.rc-station-frequency-panel {
  margin-bottom: 24px;
  padding: 20px;
  background: #f4f7fb;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-station-source-block {
  margin-bottom: 24px;
}

.rc-station-frequency-panel h2 {
  margin: 0 0 14px;
  color: #17202a;
  font-size: 28px;
  line-height: 1.12;
}

.rc-station-body {
  display: grid;
  gap: 18px;
}

.rc-station-body h2,
.rc-station-body h3,
.rc-station-body h4 {
  position: relative;
  margin: 18px 0 0;
  color: #17202a;
  line-height: 1.12;
}

.rc-station-body h2:first-child,
.rc-station-body h3:first-child,
.rc-station-body h4:first-child {
  margin-top: 0;
}

.rc-station-body h2 {
  padding-top: 18px;
  font-size: clamp(25px, 3vw, 36px);
  border-top: 1px solid #e2e6ec;
}

.rc-station-body h2:first-child {
  padding-top: 0;
  border-top: 0;
}

.rc-station-body h3 {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 9px 12px;
  color: #17202a;
  font-size: clamp(20px, 2.2vw, 26px);
  background: #f4f7fb;
  border-left: 4px solid var(--red);
  border-radius: 6px;
}

.rc-station-body h4 {
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.rc-station-body p {
  margin: 0;
}

.rc-station-city-inline {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #17202a;
  font-size: 15px;
  font-weight: 900;
  background: #f4f7fb;
  border: 1px solid #e2e6ec;
  border-radius: 6px;
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}

.rc-station-city-inline::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--red);
  border-radius: 50%;
}

.rc-station-city-inline:hover {
  color: var(--red);
  border-color: rgba(232, 0, 18, .34);
  transform: translateY(-1px);
}

.rc-station-text-list {
  display: grid;
  gap: 12px;
  margin: 4px 0;
  padding: 18px;
  background: #f4f7fb;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  list-style: none;
}

.rc-station-text-list li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: #344052;
  line-height: 1.55;
}

.rc-station-text-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.rc-header,
.rc-detail,
.rc-card {
  background: #ffffff;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-header {
  margin-bottom: 18px;
  padding: 28px;
}

.rc-header h1,
.rc-detail h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.05;
}

.rc-kicker {
  margin: 0 0 10px;
  color: #687386;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.rc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.rc-card {
  overflow: hidden;
  min-height: 180px;
}

.rc-card > :not(.rc-card__image) {
  margin-left: 18px;
  margin-right: 18px;
}

.rc-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  background: #e9edf2;
}

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

.rc-card__title {
  display: block;
  margin-top: 18px;
  color: #17202a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.rc-card p {
  margin-top: 12px;
  margin-bottom: 18px;
  color: #4a5567;
  line-height: 1.55;
}

.rc-page-blog {
  width: 100%;
  padding-top: 132px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 13% 22%, rgba(227, 6, 19, .08), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(13, 56, 132, .1), transparent 26%),
    #f4f7fb;
}

.rc-breadcrumbs + .rc-page-blog {
  padding-top: 56px;
}

.rc-page-blog > .container {
  width: min(1180px, calc(100% - 32px));
}

.rc-blog-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 28px;
  align-items: end;
  min-height: 360px;
  padding: clamp(30px, 5vw, 56px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 42%, rgba(227, 6, 19, .16), transparent 24%),
    radial-gradient(circle at 83% 36%, rgba(227, 6, 19, .18), transparent 20%),
    linear-gradient(145deg, #0b3884 0%, #0d131c 100%);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .18);
}

.rc-blog-hero::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .44), transparent);
  opacity: .55;
}

.rc-blog-hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rc-blog-hero__decor span {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, .42);
  transform: rotate(45deg);
  animation: rcBlogFloat 8s ease-in-out infinite;
}

.rc-blog-hero__decor span:nth-child(1) {
  left: 9%;
  top: 24%;
}

.rc-blog-hero__decor span:nth-child(2) {
  right: 18%;
  top: 18%;
  width: 16px;
  height: 16px;
  border-color: rgba(227, 6, 19, .65);
  animation-delay: -2.3s;
}

.rc-blog-hero__decor span:nth-child(3) {
  right: 8%;
  bottom: 22%;
  width: 54px;
  height: 3px;
  background: rgba(227, 6, 19, .72);
  border: 0;
  transform: none;
  animation-delay: -4s;
}

.rc-blog-hero__copy,
.rc-blog-hero__panel {
  position: relative;
  z-index: 1;
}

.rc-blog-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rc-blog-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.rc-blog-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
}

.rc-blog-hero__copy > p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.55;
}

.rc-blog-hero__panel {
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.rc-blog-hero__panel span {
  display: block;
  color: #fff;
  font-size: 54px;
  font-weight: 900;
  line-height: .9;
}

.rc-blog-hero__panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.rc-blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 22px;
}

.rc-blog-topics a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #17202a;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 6px;
}

.rc-blog-topics a::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--red);
  border-radius: 50%;
}

.rc-blog-topics a:hover,
.rc-blog-topics a.is-active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.rc-blog-topics a:hover::before,
.rc-blog-topics a.is-active::before {
  background: #fff;
}

.rc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.rc-blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.rc-blog-card:hover {
  border-color: rgba(227, 6, 19, .28);
  box-shadow: 0 20px 48px rgba(15, 23, 42, .12);
  transform: translateY(-3px);
}

.rc-blog-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 0;
  background:
    radial-gradient(circle at 28% 42%, rgba(227, 6, 19, .22), transparent 28%),
    linear-gradient(145deg, #0b3884, #0d131c);
}

.rc-blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-blog-card__placeholder {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.rc-blog-card__placeholder::before,
.rc-blog-card__placeholder::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, .42);
}

.rc-blog-card__placeholder::after {
  left: 22%;
  right: 22%;
  height: 70px;
  margin-top: -34px;
  background: repeating-linear-gradient(90deg, transparent 0 12px, rgba(227, 6, 19, .9) 12px 15px, transparent 15px 25px);
  filter: drop-shadow(0 0 14px rgba(227, 6, 19, .42));
}

.rc-blog-card__body {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  gap: 11px;
  min-height: 250px;
  padding: 20px;
}

.rc-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #687386;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rc-blog-card__meta span {
  color: var(--red);
}

.rc-blog-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: #17202a;
  font-size: 24px;
  line-height: 1.14;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.rc-blog-card__text {
  display: -webkit-box;
  overflow: hidden;
  color: #4a5567;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.rc-blog-card__more {
  align-self: end;
  width: fit-content;
  margin-top: 10px;
  color: #17202a;
  font-size: 14px;
  font-weight: 900;
}

.rc-blog-card:hover .rc-blog-card__more {
  color: var(--red);
}

.rc-blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
}

.rc-blog-pagination a,
.rc-blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  color: #17202a;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 6px;
}

.rc-blog-pagination a:hover,
.rc-blog-pagination .is-active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.rc-blog-pagination__dots {
  min-width: 28px;
  color: #7a8494;
  background: transparent;
  border-color: transparent;
}

.rc-blog-pagination__arrow.is-disabled {
  color: #a7b0bf;
  background: #eef2f7;
}

.rc-blog-detail-page {
  width: 100%;
  margin: 0;
  padding: 132px 0 72px;
  background:
    radial-gradient(circle at 12% 16%, rgba(227, 6, 19, .07), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(13, 56, 132, .1), transparent 26%),
    #f4f7fb;
}

.rc-breadcrumbs + .rc-blog-detail-page {
  padding-top: 36px;
}

.rc-blog-detail {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.rc-blog-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  color: #fff;
  background:
    radial-gradient(circle at 20% 42%, rgba(227, 6, 19, .17), transparent 24%),
    radial-gradient(circle at 84% 38%, rgba(227, 6, 19, .18), transparent 20%),
    linear-gradient(145deg, #0b3884 0%, #0d131c 100%);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .16);
}

.rc-blog-detail-hero::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  opacity: .6;
}

.rc-blog-detail-hero__copy,
.rc-blog-detail-hero__media {
  position: relative;
  z-index: 1;
}

.rc-blog-detail-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.rc-blog-detail-hero__copy > p:not(.rc-blog-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.55;
}

.rc-blog-detail-hero time {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
}

.rc-blog-detail-hero__media {
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
}

.rc-blog-detail-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.rc-blog-detail-content {
  max-width: 900px;
  margin: 22px auto 0;
  padding: clamp(24px, 4vw, 46px);
  color: #263142;
  font-size: 18px;
  line-height: 1.72;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .07);
}

.rc-blog-detail-content > *:first-child {
  margin-top: 0;
}

.rc-blog-detail-content > *:last-child {
  margin-bottom: 0;
}

.rc-blog-detail-content p,
.rc-blog-detail-content ul,
.rc-blog-detail-content ol {
  margin: 0 0 18px;
}

.rc-blog-detail-content h2,
.rc-blog-detail-content h3,
.rc-blog-detail-content h4 {
  margin: 34px 0 14px;
  color: #17202a;
  line-height: 1.12;
}

.rc-blog-detail-content h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.rc-blog-detail-content h3 {
  font-size: clamp(23px, 2.4vw, 30px);
}

.rc-blog-detail-content a {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.rc-blog-detail-content a:hover {
  text-decoration: underline;
}

.rc-blog-detail-content figure,
.rc-blog-detail-content img,
.rc-blog-detail-content table,
.rc-blog-detail-content blockquote,
.rc-blog-detail-content .wp-block-image,
.rc-blog-detail-content .wp-block-gallery,
.rc-blog-detail-content .wp-block-embed {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.rc-blog-detail-content figure,
.rc-blog-detail-content .wp-block-image,
.rc-blog-detail-content .wp-block-gallery,
.rc-blog-detail-content .wp-block-embed {
  margin-top: 22px;
  margin-bottom: 22px;
}

.rc-blog-detail-content img {
  height: auto;
  border-radius: 8px;
}

.rc-blog-detail-content blockquote {
  margin-top: 22px;
  margin-bottom: 22px;
  padding: 20px 22px;
  color: #17202a;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, .08), transparent),
    #f4f7fb;
  border-left: 4px solid var(--red);
  border-radius: 8px;
}

.rc-blog-detail-content table {
  width: 100%;
  margin-top: 22px;
  margin-bottom: 22px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.rc-blog-detail-content th,
.rc-blog-detail-content td {
  padding: 12px 14px;
  border: 1px solid #e2e6ec;
}

@keyframes rcBlogFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  50% {
    transform: translate3d(12px, -14px, 0) rotate(45deg);
  }
}

.rc-services-page {
  padding-bottom: 64px;
  background: #f4f7fb;
}

.rc-services-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: end;
  min-height: 430px;
  margin-top: 18px;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 18, 27, .92), rgba(13, 18, 27, .66) 52%, rgba(13, 18, 27, .28)),
    var(--services-hero-image, url("../../img/services-screen-concept.jpg")) center / cover no-repeat;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .12);
}

.rc-services-hero .eyebrow {
  width: fit-content;
  color: #fff;
  background: rgba(227, 6, 19, .95);
  border-color: rgba(255, 255, 255, .16);
}

.rc-services-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff;
}

.rc-services-hero__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.65;
}

.rc-services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.rc-services-hero__actions .button-white {
  color: #17202a;
  border-color: rgba(255, 255, 255, .8);
}

.rc-services-hero__stats {
  display: grid;
  gap: 12px;
}

.rc-services-hero__stats > div {
  padding: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.rc-services-hero__stats strong {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.rc-services-hero__stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.rc-services-catalog {
  margin-top: 32px;
}

.rc-services-catalog__head {
  margin-bottom: 20px;
}

.rc-services-catalog__head h2 {
  margin: 0;
  color: #17202a;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
}

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

.rc-service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .07);
}

.rc-service-card__image {
  display: block;
  overflow: hidden;
  background: #e9eef5;
}

.rc-service-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .24s ease;
}

.rc-service-card:hover .rc-service-card__image img {
  transform: scale(1.04);
}

.rc-service-card__body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.rc-service-card h3 {
  margin: 0;
  color: #17202a;
  font-size: 23px;
  line-height: 1.15;
}

.rc-service-card p {
  margin: 0;
  color: #586273;
  line-height: 1.55;
}

.rc-service-card .button {
  width: fit-content;
  margin-top: 4px;
}

.rc-service-detail-page {
  width: 100%;
  margin: 0;
  padding-bottom: 72px;
}

.rc-service-detail-hero {
  min-height: 430px;
  margin-bottom: 22px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 18, 27, .92), rgba(13, 18, 27, .68) 54%, rgba(13, 18, 27, .26)),
    var(--service-detail-image, url("../../img/services-screen-concept.jpg")) center / cover no-repeat;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .13);
}

.rc-service-detail-hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  padding: 9px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: #17202a;
  border-color: rgba(255, 255, 255, .16);
  border-radius: 6px;
  text-transform: uppercase;
}

.rc-service-detail-hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.rc-service-detail-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5.2vw, 66px);
  line-height: 1.03;
}

.rc-service-detail-hero__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.65;
}

.rc-service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rc-service-detail-actions .button-white {
  color: #17202a;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .18);
}

.rc-service-detail-actions .button-white:hover {
  color: var(--red);
}

.rc-service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.rc-service-detail-content,
.rc-service-detail-sidebar > *,
.rc-service-more {
  background: #fff;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
}

.rc-service-detail-content {
  padding: clamp(26px, 4vw, 44px);
}

.rc-service-detail-text {
  color: #344052;
  font-size: 17px;
  line-height: 1.7;
}

.rc-service-detail-text h2,
.rc-service-detail-text h3,
.rc-service-detail-text h4 {
  margin: 34px 0 16px;
  color: #17202a;
  line-height: 1.15;
}

.rc-service-detail-text h2:first-child,
.rc-service-detail-text h3:first-child,
.rc-service-detail-text h4:first-child {
  margin-top: 0;
}

.rc-service-detail-text h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.rc-service-detail-text h3 {
  font-size: 22px;
}

.rc-service-detail-text p {
  margin: 0 0 18px;
}

.rc-service-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.rc-service-benefit {
  position: relative;
  min-height: 145px;
  padding: 42px 20px 22px;
  background: #f7f9fc;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
}

.rc-service-benefit span {
  position: absolute;
  top: -18px;
  left: 20px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .10);
}

.rc-service-benefit h3 {
  margin: 0;
  font-size: 20px;
}

.rc-service-detail-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.rc-service-detail-sidebar .rc-side-contacts {
  padding: 30px;
}

.rc-service-detail-sidebar .rc-side-title {
  margin: 0 0 22px;
  color: #17202a;
  font-size: 24px;
  line-height: 1.12;
}

.rc-service-detail-sidebar .rc-side-contact-list {
  gap: 18px;
}

.rc-service-detail-sidebar .rc-side-contact-list a {
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  min-height: 28px;
  padding: 0;
  color: #17202a;
  font-size: 18px;
  font-weight: 400;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.rc-service-detail-sidebar .rc-side-contact-list a i {
  width: 22px;
  height: 22px;
  font-size: 18px;
  color: var(--red);
  background: transparent;
  border-radius: 0;
}

.rc-service-detail-sidebar .rc-side-contact-list a:hover {
  color: var(--red);
}

.rc-service-more {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.rc-service-more .eyebrow {
  margin-bottom: 4px;
}

.rc-service-more a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding: 8px 10px;
  color: #17202a;
  font-weight: 800;
  line-height: 1.25;
  background: #f4f7fb;
  border: 1px solid #dfe5ed;
  border-radius: 6px;
}

.rc-service-more a:not(:has(img)) {
  grid-template-columns: 1fr;
}

.rc-service-more a:hover {
  color: var(--red);
  border-color: rgba(232, 0, 18, .25);
}

.rc-service-more img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 6px;
}

.rc-samples-page {
  padding: 0 0 80px;
  background: #f4f7fb;
}

.rc-samples-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  min-height: 520px;
  margin-top: 24px;
  padding: clamp(44px, 6vw, 72px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 17, 27, .96) 0%, rgba(10, 17, 27, .82) 48%, rgba(10, 17, 27, .34) 100%),
    linear-gradient(135deg, rgba(232, 0, 18, .22), transparent 42%),
    url('../../img/samples-hero-bg.png') center / cover no-repeat;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(17, 24, 39, .16);
}

.rc-samples-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.rc-samples-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: .98;
  letter-spacing: 0;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .34);
}

.rc-samples-hero__copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
  line-height: 1.7;
}

.rc-samples-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rc-samples-hero__actions .button {
  gap: 12px;
  min-width: 190px;
}

.rc-samples-hero__secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .34);
}

.rc-samples-hero__secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

.rc-samples-hero__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.rc-samples-hero__panel div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.rc-samples-hero__panel i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--red);
  font-size: 22px;
  background: rgba(255, 255, 255, .1);
  border-radius: 8px;
}

.rc-samples-hero__panel span {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.rc-samples-section {
  margin-top: 28px;
  padding: clamp(34px, 5vw, 54px);
  background: #fff;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(17, 24, 39, .08);
}

.rc-samples-section__head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, .65fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.rc-samples-section__head .eyebrow {
  grid-column: 1 / -1;
  width: max-content;
  margin: 0;
}

.rc-samples-section__head h2 {
  margin: 0;
  color: #101722;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.rc-samples-section__head p:not(.eyebrow) {
  margin: 0;
  color: #4a5567;
  font-size: 17px;
  line-height: 1.65;
}

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

.rc-samples-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
  background: #f4f7fb;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
}

.rc-samples-column h3 {
  margin: 0;
  color: #101722;
  font-size: 28px;
  line-height: 1.1;
}

.rc-samples-column > p {
  margin: 14px 0 0;
  color: #4a5567;
  font-size: 15px;
  line-height: 1.55;
}

.rc-samples-column__list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.rc-sample-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .05);
}

.rc-sample-card strong {
  color: #17202a;
  font-size: 16px;
  line-height: 1.3;
}

.rc-sample-card p {
  margin: -4px 0 0;
  color: #596272;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.rc-sample-card audio {
  width: 100%;
  height: 40px;
}

.rc-samples-brief {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  margin-top: 28px;
  padding: clamp(36px, 5vw, 58px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(232, 0, 18, .22), transparent 28%),
    linear-gradient(135deg, #101722 0%, #112943 100%);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(17, 24, 39, .14);
}

.rc-samples-brief h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
}

.rc-samples-brief__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.7;
}

.rc-samples-brief__phone {
  display: inline-flex;
  margin-top: 30px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .28);
}

.rc-samples-brief__phone:hover {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

.rc-samples-brief-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  color: #101722;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .2);
}

.rc-samples-brief-form h3,
.rc-samples-brief-form h4,
.rc-samples-brief-form p {
  margin: 0;
}

.rc-samples-brief-form h3 {
  color: #101722;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}

.rc-samples-brief-form__note,
.rc-samples-brief-form__privacy {
  color: #687386;
  font-size: 15px;
  line-height: 1.55;
}

.rc-samples-brief-form__note span {
  color: var(--red);
}

.rc-samples-brief-form__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.rc-samples-brief-form__quick button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  background: var(--red);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.rc-samples-brief-form__quick button:hover {
  color: #fff;
  background: #c90010;
}

.rc-samples-brief-form__section {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #dfe5ed;
}

.rc-samples-brief-form h4 {
  color: var(--red);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.rc-samples-brief-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rc-samples-brief-form label {
  display: grid;
  gap: 8px;
}

.rc-samples-brief-form__label {
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
  width: fit-content;
  color: #17202a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.rc-samples-brief-form__label span {
  display: inline;
  color: var(--red);
}

.rc-samples-brief-form input,
.rc-samples-brief-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #17202a;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  background: #f7f9fc;
  border: 1px solid #d8e1ec;
  border-radius: 8px;
  outline: none;
}

.rc-samples-brief-form textarea {
  resize: vertical;
}

.rc-samples-brief-form input:focus,
.rc-samples-brief-form textarea:focus {
  background: #fff;
  border-color: rgba(232, 0, 18, .48);
  box-shadow: 0 0 0 3px rgba(232, 0, 18, .1);
}

.rc-samples-brief-form .button {
  justify-self: start;
  gap: 12px;
}

.rc-samples-brief-form [data-legacy-request-status] {
  margin: 0;
  color: var(--red);
  font-weight: 900;
}

.rc-online-air-page {
  padding-bottom: 76px;
}

.rc-online-air-hero {
  position: relative;
  display: grid;
  min-height: 460px;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: end;
  overflow: hidden;
  padding: 64px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 18, 27, .92), rgba(13, 56, 132, .64)),
    url('/local/templates/radio_city/img/samples-hero-bg.png') center / cover;
  border-radius: 8px;
}

.rc-online-air-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(227, 6, 19, .28), transparent 24%),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: auto, 86px 86px, 86px 86px;
  pointer-events: none;
}

.rc-online-air-hero__copy,
.rc-online-air-hero__panel {
  position: relative;
  z-index: 1;
}

.rc-online-air-hero h1 {
  max-width: 760px;
  margin: 22px 0;
  color: #fff;
  font-size: clamp(54px, 6vw, 86px);
  line-height: .98;
}

.rc-online-air-hero__copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
  line-height: 1.7;
}

.rc-online-air-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rc-online-air-hero__secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .06);
}

.rc-online-air-hero__secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .7);
}

.rc-online-air-hero__panel {
  display: grid;
  gap: 14px;
}

.rc-online-air-hero__panel div {
  display: grid;
  gap: 10px;
  min-height: 150px;
  align-content: end;
  padding: 24px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.rc-online-air-hero__panel i {
  color: var(--red);
  font-size: 30px;
}

.rc-online-air-hero__panel span {
  color: rgba(255, 255, 255, .74);
  font-weight: 800;
}

.rc-online-air-hero__panel strong {
  color: #fff;
  font-size: 44px;
  line-height: 1;
}

.rc-online-air-section {
  margin-top: 34px;
  padding: 44px;
  background: #fff;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(21, 37, 61, .08);
}

.rc-online-air-section__head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.rc-online-air-section__head h2 {
  grid-column: 1;
  margin: 0;
  color: #17202a;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.rc-online-air-section__head .eyebrow {
  grid-column: 1 / -1;
  width: fit-content;
  margin: 0;
}

.rc-online-air-section__head > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: #526173;
  font-size: 17px;
  line-height: 1.65;
}

.rc-online-air-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.rc-online-air-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  color: #17202a;
  font-weight: 900;
  background: #f4f7fb;
  border: 1px solid #dce4ef;
  border-radius: 8px;
}

.rc-online-air-nav a::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.rc-online-air-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.rc-online-air-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #f7f9fc;
  border: 1px solid #dce4ef;
  border-radius: 8px;
}

.rc-online-air-card__media {
  position: relative;
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  background: #101822;
}

.rc-online-air-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 16, 24, .42));
}

.rc-online-air-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-online-air-card__body {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
}

.rc-online-air-card h3 {
  margin: 0;
  color: #17202a;
  font-size: 30px;
  line-height: 1.12;
}

.rc-online-air-card__streams {
  display: grid;
  gap: 12px;
}

.rc-online-air-stream {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid #dce4ef;
  border-radius: 8px;
}

.rc-online-air-stream__top {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.rc-online-air-stream strong {
  color: #17202a;
  font-size: 17px;
}

.rc-online-air-stream span {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 16px;
  font-weight: 900;
}

.rc-online-air-stream audio {
  width: 100%;
  height: 40px;
}

.rc-online-air-empty {
  padding: 34px;
  color: #fff;
  background: linear-gradient(135deg, #101822, #17283d);
  border-radius: 8px;
}

.rc-online-air-empty h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 30px;
}

.rc-online-air-empty p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 1040px) {
  .rc-samples-hero,
  .rc-samples-section__head,
  .rc-samples-brief,
  .rc-online-air-hero,
  .rc-online-air-section__head {
    grid-template-columns: 1fr;
  }

  .rc-samples-hero,
  .rc-online-air-hero {
    min-height: auto;
  }

  .rc-samples-hero__panel,
  .rc-online-air-hero__panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rc-samples-columns {
    grid-template-columns: 1fr;
  }

  .rc-online-air-section__head > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .rc-online-air-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .rc-samples-hero,
  .rc-samples-section,
  .rc-samples-brief,
  .rc-online-air-hero,
  .rc-online-air-section,
  .rc-online-air-contact {
    padding: 28px 22px;
  }

  .rc-samples-hero__panel,
  .rc-online-air-hero__panel,
  .rc-samples-brief-form__row {
    grid-template-columns: 1fr;
  }

  .rc-samples-hero__actions .button,
  .rc-online-air-hero__actions .button,
  .rc-samples-brief-form .button {
    width: 100%;
  }

  .rc-online-air-hero h1 {
    font-size: 42px;
  }

  .rc-online-air-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-online-air-stream__top {
    display: grid;
    justify-content: stretch;
  }
}

.rc-date {
  display: block;
  margin-top: 10px;
  color: #7a8596;
  font-size: 14px;
}

.rc-detail {
  padding: clamp(22px, 4vw, 44px);
}

.rc-detail__image {
  margin: 24px 0 0;
}

.rc-detail__image img {
  display: block;
  width: min(100%, 960px);
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.rc-content {
  max-width: 900px;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.65;
}

.rc-content p {
  margin: 0 0 16px;
}

.rc-source {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #e2e6ec;
  color: #687386;
  font-size: 14px;
  word-break: break-word;
}

.rc-media {
  margin: 18px 0;
  padding: 14px;
  background: #f1f3f6;
  border: 1px solid #dde2e8;
  border-radius: 8px;
}

.rc-media audio,
.rc-media video {
  display: block;
  width: 100%;
}

.rc-audio-stack {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.rc-audio-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #f4f7fb;
  border: 1px solid #dde2e8;
  border-radius: 8px;
}

.rc-audio-card strong,
.rc-audio-card span {
  display: block;
}

.rc-audio-card strong {
  color: #17202a;
  font-size: 17px;
}

.rc-audio-card span {
  margin-top: 4px;
  color: #687386;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rc-audio-card audio {
  display: block;
  width: 100%;
}

.rc-station-page {
  width: 100%;
  margin: 0;
  padding-bottom: 72px;
}

.rc-station-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 470px);
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 247, 251, .9)),
    url("../../img/hero-bg.png") center / cover no-repeat;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-station-hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
  margin: 0 0 16px;
  padding: 9px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: #17202a;
  border-radius: 6px;
  text-transform: uppercase;
}

.rc-station-hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.rc-station-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #17202a;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.03;
}

.rc-station-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: #4a5567;
  font-size: 18px;
  line-height: 1.65;
}

.rc-station-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.rc-station-actions .button-white {
  color: #17202a;
  background: #fff;
  border: 1px solid #cfd8e5;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.rc-station-actions .button-white:hover {
  color: var(--red);
  border-color: rgba(232, 0, 18, .34);
}

.rc-station-hero-frequencies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.rc-station-hero-frequencies a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: #17202a;
  font-size: 14px;
  font-weight: 900;
  background: #fff;
  border: 1px solid #dbe3ed;
  border-radius: 6px;
}

.rc-station-card .rc-station-hero-frequencies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-height: none;
  overflow: visible;
  justify-content: stretch;
  align-content: start;
  gap: 8px;
  padding-right: 0;
}

.rc-station-card .rc-station-hero-frequencies a {
  justify-content: center;
  min-height: 36px;
  padding: 8px 10px;
  font-size: 13px;
  background: #f8fafc;
  white-space: nowrap;
}

.rc-station-hero-frequencies a::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--red);
  border-radius: 50%;
}

.rc-station-hero-frequencies a:hover {
  color: var(--red);
  border-color: rgba(232, 0, 18, .34);
}

.rc-station-source {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-weight: 900;
}

.rc-station-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  min-height: 0;
  padding: clamp(30px, 4vw, 44px);
  text-align: center;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(221, 226, 232, .9);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(15, 23, 42, .08);
}

.rc-station-card img {
  display: block;
  width: min(260px, 100%);
  max-height: 150px;
  object-fit: contain;
  justify-self: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.rc-station-card > span {
  color: #17202a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.rc-station-card-stats {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rc-station-card-stats div {
  display: grid;
  gap: 5px;
  min-height: 82px;
  align-content: center;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-station-card-stats strong {
  color: #17202a;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.rc-station-card-stats span {
  color: #596272;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.rc-station-card-more {
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 100;
  background: #17202a;
}

.rc-station-card-more:hover {
  color: #fff;
  background: #101722;
}

.rc-station-cities-block {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .05);
}

.rc-station-cities-block__head .eyebrow {
  display: inline-flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
  margin: 0 0 12px;
  padding: 9px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: #17202a;
  border-radius: 6px;
  text-transform: uppercase;
}

.rc-station-cities-block__head .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.rc-station-cities-block h2 {
  margin: 0;
  color: #17202a;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.rc-station-frequency-list.rc-station-frequency-list-wide {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
}

.rc-station-frequency-list.rc-station-frequency-list-wide a,
.rc-station-frequency-list.rc-station-frequency-list-wide span {
  justify-content: center;
  padding: 9px 15px;
  background: #f8fafc;
  text-align: center;
  white-space: nowrap;
  line-height: 1.25;
}

.rc-ratings-page {
  padding-bottom: 72px;
  background: #f4f7fb;
}

.rc-ratings-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(90deg, rgba(16, 23, 34, .98) 0%, rgba(16, 23, 34, .92) 48%, rgba(16, 23, 34, .84) 100%),
    radial-gradient(circle at 18% 28%, rgba(232, 0, 18, .16), transparent 30%),
    linear-gradient(135deg, #101722 0%, #17202a 100%);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(15, 23, 42, .16);
}

.rc-ratings-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(94, 230, 176, .14) 58% 59%, transparent 59% 100%),
    radial-gradient(circle at 75% 24%, rgba(94, 230, 176, .16), transparent 24%);
  mix-blend-mode: screen;
}

.rc-ratings-hero::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -12%;
  bottom: -18%;
  left: -12%;
  pointer-events: none;
  z-index: 0;
  background:
    url("../../img/ratings-analytics-bg.png") center center / cover no-repeat;
  opacity: .58;
  transform-origin: center;
  filter: saturate(.9) contrast(.94);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 76%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 76%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.rc-ratings-hero__copy,
.rc-ratings-hero__panel {
  position: relative;
  z-index: 2;
}

.rc-ratings-hero .eyebrow,
.rc-ratings-table-head .eyebrow {
  display: inline-flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  padding: 9px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, .12);
  border-radius: 6px;
  text-transform: uppercase;
}

.rc-ratings-hero .eyebrow::before,
.rc-ratings-table-head .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.rc-ratings-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1;
}

.rc-ratings-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.65;
}

.rc-ratings-hero a {
  color: #fff;
  font-weight: 900;
}

.rc-ratings-hero__panel {
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 24px;
  background: rgba(12, 22, 33, .62);
  border: 1px solid rgba(94, 230, 176, .22);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.rc-ratings-hero__source-logo {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin: 0 0 clamp(28px, 5vw, 60px);
  padding: 14px;
  align-self: start;
  background: rgba(255, 255, 255, .94);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

.rc-ratings-hero__panel span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rc-ratings-hero__panel strong {
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.rc-ratings-hero__panel p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.rc-ratings-table-section,
.rc-ratings-content {
  margin-top: 22px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .06);
}

.rc-ratings-table-head {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.rc-ratings-table-head .eyebrow {
  color: #fff;
  background: #17202a;
}

.rc-ratings-table-head h2 {
  max-width: none;
  margin: 0;
  color: #17202a;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  white-space: nowrap;
}

.rc-ratings-table {
  display: grid;
  gap: 10px;
}

.rc-ratings-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(112px, 150px) 130px;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-ratings-row--head {
  min-height: 42px;
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  background: transparent;
  border: 0;
  text-transform: uppercase;
}

.rc-ratings-row__index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 50%;
}

.rc-ratings-row__station {
  display: flex;
  min-width: 0;
  gap: 14px;
  align-items: center;
  color: #17202a;
  text-decoration: none;
}

.rc-ratings-row__station:hover {
  color: var(--red);
}

.rc-ratings-row__station img {
  display: block;
  width: 72px;
  height: 44px;
  object-fit: contain;
}

.rc-ratings-row__station strong {
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.25;
}

.rc-ratings-row__reach {
  color: #17202a;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.rc-ratings-row__button {
  min-height: 42px;
  justify-content: center;
  box-shadow: none;
}

.rc-ratings-empty {
  padding: 28px;
  color: #596272;
  font-weight: 800;
  background: #f8fafc;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-ratings-content {
  display: grid;
  gap: 18px;
  color: #4a5567;
  font-size: 17px;
  line-height: 1.65;
}

.rc-ratings-content h2,
.rc-ratings-content h3,
.rc-ratings-content p,
.rc-ratings-content ul {
  margin: 0;
}

.rc-ratings-content h2 {
  color: #17202a;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
}

.rc-ratings-content h3 {
  color: #17202a;
  font-size: 22px;
  line-height: 1.2;
}

.rc-ratings-content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.rc-ratings-content strong {
  color: #17202a;
}

.rc-ratings-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rc-ratings-metrics div {
  padding: 20px;
  background: #f8fafc;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-ratings-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rc-ratings-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.rc-map-page {
  padding-bottom: 76px;
}

.rc-map-page > .container,
.rc-map-page .coverage-section > .container {
  width: min(100% - 40px, 1180px);
}

.rc-map-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  margin-top: 22px;
  padding: 54px 58px 52px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 12, 20, .96) 0%, rgba(9, 20, 35, .9) 42%, rgba(10, 34, 59, .72) 100%),
    radial-gradient(circle at 24% 28%, rgba(227, 6, 19, .3), transparent 30%),
    url("../../img/map-hero-bg-20260610.png") center / cover no-repeat,
    linear-gradient(135deg, #0e1622 0%, #123967 100%);
  border-radius: 8px;
  box-shadow: 0 26px 52px rgba(15, 23, 42, .22);
}

.rc-map-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  pointer-events: none;
}

.rc-map-hero__copy,
.rc-map-hero__metrics {
  position: relative;
  z-index: 1;
}

.rc-map-hero .eyebrow,
.rc-map-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .1);
  border-radius: 6px;
}

.rc-map-hero .eyebrow::before,
.rc-map-content .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.rc-map-hero h1 {
  max-width: 660px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 58px;
  line-height: 1.02;
}

.rc-map-hero p {
  max-width: 690px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.65;
}

.rc-map-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.rc-map-hero__actions .button {
  min-width: 182px;
  justify-content: center;
}

.rc-map-hero__secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: none;
}

.rc-map-hero__secondary:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .36);
  transform: translateY(-1px);
}

.rc-map-hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

.rc-map-hero__metrics div {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 146px;
  padding: 22px 22px 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.rc-map-hero__metrics i {
  color: rgba(227, 6, 19, .92);
  font-size: 26px;
}

.rc-map-hero__metrics span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.rc-map-hero__metrics strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 37px;
  line-height: 1;
}

.rc-map-hero__metrics div:nth-child(3) strong {
  font-size: clamp(30px, 2.45vw, 37px);
}

.coverage-section--map-page {
  margin-top: 34px;
}

.coverage-section--map-page > .container {
  width: min(100% - 40px, 1180px);
  padding: 32px;
}

.coverage-section--map-page .coverage-map-layout {
  grid-template-columns: minmax(0, 1.35fr) 390px;
}

.rc-map-content {
  display: grid;
  gap: 30px;
  margin-top: 34px;
  padding: 38px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .07);
}

.rc-map-content .eyebrow {
  color: #fff;
  background: #111827;
}

.rc-map-content h2 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 38px;
  line-height: 1.12;
}

.rc-map-content p {
  max-width: 1040px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.rc-map-content__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rc-map-content__grid article {
  min-height: 208px;
  padding: 24px 22px;
  background: #f5f7fb;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
}

.rc-map-content__grid i {
  color: var(--red);
  font-size: 28px;
}

.rc-map-content__grid h3 {
  margin: 24px 0 12px;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.18;
}

.rc-map-content__grid p {
  max-width: none;
  font-size: 16px;
  line-height: 1.65;
}

.rc-map-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  margin-top: 34px;
  padding: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(227, 6, 19, .22), transparent 24%),
    linear-gradient(135deg, #101822 0%, #17283d 100%);
  border-radius: 8px;
}

.rc-map-info > * {
  min-width: 0;
}

.rc-map-info h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 36px;
  line-height: 1.12;
}

.rc-map-info p {
  max-width: 820px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.7;
}

.rc-map-info aside {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
}

.rc-map-info aside strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 26px;
}

.rc-map-info aside span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.rc-map-info aside span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
}

.rc-interaction-page {
  padding-bottom: 76px;
}

.rc-interaction-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: end;
  overflow: hidden;
  margin-top: 22px;
  padding: 58px 62px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 19, 28, .94) 0%, rgba(13, 19, 28, .74) 48%, rgba(13, 19, 28, .34) 100%),
    url('../../img/interaction/hero.jpg') center / cover no-repeat;
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(15, 23, 42, .18);
}

.rc-interaction-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(227, 6, 19, .24), transparent 26%),
    linear-gradient(90deg, rgba(10, 18, 30, .18), transparent 62%);
  pointer-events: none;
}

.rc-interaction-hero__copy,
.rc-interaction-hero__panel {
  position: relative;
  z-index: 1;
}

.rc-interaction-hero .eyebrow,
.rc-interaction-steps .eyebrow,
.rc-interaction-contact .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .1);
  border-radius: 6px;
}

.rc-interaction-steps .eyebrow {
  color: var(--dark);
  background: #fff0f1;
}

.rc-interaction-hero .eyebrow::before,
.rc-interaction-steps .eyebrow::before,
.rc-interaction-contact .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
}

.rc-interaction-hero h1 {
  max-width: 740px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 1.02;
}

.rc-interaction-hero__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
  line-height: 1.65;
}

.rc-interaction-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.rc-interaction-hero__secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
}

.rc-interaction-hero__panel {
  display: grid;
  min-height: 190px;
  align-content: end;
  gap: 12px;
  padding: 28px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.rc-interaction-hero__panel strong {
  color: #fff;
  font-size: 76px;
  font-weight: 900;
  line-height: .9;
}

.rc-interaction-hero__panel span {
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
}

.rc-interaction-intro {
  margin-top: 28px;
  padding: 34px 38px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
}

.rc-interaction-intro p {
  max-width: 1040px;
  margin: 0;
  color: #384253;
  font-size: 18px;
  line-height: 1.72;
}

.rc-interaction-steps {
  margin-top: 28px;
  padding: 42px 48px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
}

.rc-interaction-steps__head {
  max-width: 760px;
  margin-bottom: 30px;
}

.rc-interaction-steps__head h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 1.08;
}

.rc-interaction-steps__list {
  display: grid;
  gap: 18px;
}

.rc-interaction-step {
  display: grid;
  grid-template-columns: minmax(240px, 34%) minmax(0, 1fr);
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
}

.rc-interaction-step__media {
  min-height: 230px;
  background: #e9eef5;
}

.rc-interaction-step__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.rc-interaction-step__copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px 34px;
}

.rc-interaction-step__copy span {
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.rc-interaction-step__copy h3 {
  max-width: 760px;
  margin: 0;
  color: var(--dark);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.14;
}

.rc-interaction-step__copy p {
  max-width: 820px;
  margin: 0;
  color: #4b5565;
  font-size: 17px;
  line-height: 1.68;
}

.rc-interaction-contact {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .rc-interaction-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 44px 34px;
  }

  .rc-interaction-hero__panel {
    width: min(100%, 320px);
    min-height: 150px;
  }

  .rc-interaction-step {
    grid-template-columns: 1fr;
  }

  .rc-interaction-step__media,
  .rc-interaction-step__media img {
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  .rc-interaction-hero,
  .rc-interaction-intro,
  .rc-interaction-steps {
    padding: 28px 22px;
  }

  .rc-interaction-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .rc-interaction-hero__copy > p:not(.eyebrow),
  .rc-interaction-intro p,
  .rc-interaction-step__copy p {
    font-size: 16px;
  }

  .rc-interaction-hero__actions,
  .rc-interaction-hero__actions .button {
    width: 100%;
  }

  .rc-interaction-step__copy {
    padding: 24px 22px;
  }
}

@media (max-width: 420px) {
  .rc-interaction-hero,
  .rc-interaction-intro,
  .rc-interaction-steps {
    padding: 22px 20px;
  }

  .rc-interaction-step__media,
  .rc-interaction-step__media img {
    min-height: 190px;
  }
}

.rc-policy-page {
  padding-bottom: 76px;
}

.rc-policy-hero {
  margin-top: 22px;
  padding: 44px 48px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(227, 6, 19, .22), transparent 24%),
    linear-gradient(135deg, #101822 0%, #17385f 100%);
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(15, 23, 42, .18);
}

.rc-policy-hero .eyebrow,
.rc-policy-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .1);
  border-radius: 6px;
}

.rc-policy-hero .eyebrow::before,
.rc-policy-content .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.rc-policy-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 54px;
  line-height: 1.04;
}

.rc-policy-hero p {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.65;
}

.rc-policy-content {
  display: grid;
  gap: 26px;
  margin-top: 34px;
  padding: 42px 48px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .07);
}

.rc-policy-content article {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.rc-policy-content article:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.rc-policy-content h2 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 28px;
  line-height: 1.2;
}

.rc-policy-content p {
  max-width: 980px;
  margin: 0 0 12px;
  color: #384253;
  font-size: 17px;
  line-height: 1.72;
}

.rc-policy-content p:last-child {
  margin-bottom: 0;
}

.rc-policy-content a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.rc-policy-content a:hover {
  color: var(--red-dark);
}

.rc-policy-content__note {
  padding-top: 2px;
  color: var(--muted);
  font-weight: 800;
}

.rc-frequency-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rc-frequency-list a,
.rc-frequency-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  color: #17202a;
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  border: 1px solid #dde2e8;
  border-radius: 6px;
}

.rc-frequency-list a {
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.rc-frequency-list a:hover {
  color: var(--red);
  border-color: rgba(232, 0, 18, .34);
  transform: translateY(-1px);
}

.rc-station-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.rc-station-content,
.rc-contact-box,
.rc-station-more {
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-station-content {
  padding: clamp(22px, 4vw, 42px);
}

.rc-station-content h2 {
  margin: 34px 0 14px;
  color: #17202a;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
}

.rc-station-content h2:first-child {
  margin-top: 0;
}

.rc-station-content p {
  margin: 0 0 18px;
  color: #3f4b5d;
  font-size: 18px;
  line-height: 1.7;
}

.rc-station-list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.rc-station-list li {
  position: relative;
  padding: 10px 12px 10px 34px;
  color: #17202a;
  font-weight: 800;
  background: #f4f7fb;
  border: 1px solid #e2e6ec;
  border-radius: 6px;
}

.rc-station-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.rc-station-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 120px;
}

.rc-contact-box {
  display: grid;
  gap: 12px;
}

.rc-contact-box h2 {
  margin: 0;
  color: #17202a;
  font-size: 26px;
  line-height: 1.1;
}

.rc-contact-box a:not(.button) {
  color: #17202a;
  font-weight: 900;
}

.rc-station-more {
  display: grid;
  gap: 10px;
}

.rc-side-card.rc-station-more {
  padding: 24px;
}

.rc-side-card.rc-station-more a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 0;
  padding: 8px 0;
  color: #17202a;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.rc-side-card.rc-station-more a:hover {
  color: var(--red);
}

.rc-side-card.rc-station-more a img {
  display: block;
  width: 42px;
  height: 34px;
  object-fit: contain;
  padding: 5px;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 6px;
}

.rc-station-more a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  color: #17202a;
  font-weight: 800;
}

.rc-station-more img {
  width: 58px;
  height: 48px;
  object-fit: contain;
  padding: 8px;
  background: #f4f7fb;
  border: 1px solid #e2e6ec;
  border-radius: 6px;
}

.rc-side-card.rc-station-more a {
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 0;
  padding: 8px 0;
  background: transparent;
  border: 0;
}

.rc-side-card.rc-station-more a img {
  width: 42px;
  height: 34px;
  padding: 5px;
  background: #fff;
}

.rc-city-page {
  width: 100%;
  margin: 0;
  padding-bottom: 72px;
  background: #f4f7fb;
}

.rc-city-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 0;
  overflow: hidden;
  min-height: 430px;
  margin-bottom: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 247, 251, .92)),
    url("../../img/hero-bg.png") center / cover no-repeat;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-city-hero__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(26px, 5vw, 54px);
}

.rc-city-hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
  margin: 0 0 16px;
  padding: 9px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: #17202a;
  border-radius: 6px;
  text-transform: uppercase;
}

.rc-city-hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.rc-city-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #17202a;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.03;
}

.rc-city-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: #4a5567;
  font-size: 18px;
  line-height: 1.65;
}

.rc-city-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.rc-city-actions .button-white {
  color: #17202a;
  background: #fff;
  border: 1px solid #cfd8e5;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.rc-city-actions .button-white:hover {
  color: var(--red);
  border-color: rgba(232, 0, 18, .34);
}

.rc-city-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.rc-city-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: #17202a;
  font-size: 13px;
  font-weight: 900;
  background: #fff;
  border: 1px solid #dde2e8;
  border-radius: 6px;
}

.rc-city-facts span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--red);
  border-radius: 50%;
}

.rc-city-hero__image {
  position: relative;
  min-height: 100%;
  margin: 0;
}

.rc-city-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 247, 251, .92), rgba(244, 247, 251, .08) 38%, rgba(23, 32, 42, .14));
}

.rc-city-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.rc-city-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.rc-city-content,
.rc-city-sidebar > *,
.rc-city-stations {
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-city-content {
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
}

.rc-city-stations {
  margin-bottom: 26px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(232, 0, 18, .06), rgba(0, 80, 170, .06)),
    #fff;
}

.rc-city-station-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rc-city-station-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #17202a;
  font-weight: 900;
  background: #fff;
  border: 1px solid #dde2e8;
  border-radius: 6px;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.rc-city-station-links a:hover {
  color: var(--red);
  border-color: rgba(232, 0, 18, .34);
  transform: translateY(-1px);
}

.rc-city-text {
  max-width: none;
  margin-top: 0;
}

.rc-city-text h2,
.rc-city-text h3 {
  margin: 34px 0 14px;
  color: #17202a;
  line-height: 1.12;
}

.rc-city-text h2:first-child,
.rc-city-text h3:first-child {
  margin-top: 0;
}

.rc-city-text h2 {
  font-size: clamp(25px, 3vw, 38px);
}

.rc-city-text h3 {
  font-size: clamp(22px, 2.5vw, 30px);
}

.rc-city-text ul,
.rc-city-text ol {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.rc-city-text li {
  position: relative;
  padding: 11px 12px 11px 34px;
  color: #17202a;
  font-weight: 800;
  background: #f4f7fb;
  border: 1px solid #e2e6ec;
  border-radius: 6px;
}

.rc-city-text li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.rc-city-map {
  overflow: hidden;
  margin-top: 30px;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
}

.rc-city-map__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 22px 22px 16px;
  background:
    linear-gradient(135deg, rgba(232, 0, 18, .06), rgba(0, 80, 170, .06)),
    #fff;
  border-bottom: 1px solid #e2e6ec;
}

.rc-city-map__head h2 {
  margin: 0;
  color: #17202a;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.rc-city-map iframe {
  display: block;
  width: 100%;
  height: min(460px, 62vw);
  min-height: 320px;
  border: 0;
  background: #e9eef5;
}

.rc-city-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 120px;
}

.rc-side-card {
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .05);
}

.rc-side-card .eyebrow {
  margin-bottom: 10px;
}

.rc-side-card h2 {
  margin: 0 0 18px;
  color: #17202a;
  font-size: 28px;
  line-height: 1.12;
}

.rc-side-contact-list {
  display: grid;
  gap: 10px;
}

.rc-side-contact-list a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 8px 12px 8px 8px;
  color: #17202a;
  font-weight: 800;
  background: #f4f7fb;
  border: 1px solid #e2e6ec;
  border-radius: 6px;
}

.rc-side-contact-list a i {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--red);
  background: #fff;
  border-radius: 6px;
}

.rc-side-contact-list a span {
  overflow-wrap: anywhere;
}

.rc-side-contact-list a:hover {
  color: var(--red);
  border-color: rgba(232, 0, 18, .34);
}

.rc-station-sidebar .rc-side-contacts {
  padding: 30px;
}

.rc-station-sidebar .rc-side-title {
  margin: 0 0 22px;
  color: #17202a;
  font-size: 24px;
  line-height: 1.12;
}

.rc-station-sidebar .rc-side-contact-list {
  gap: 18px;
}

.rc-station-sidebar .rc-side-contact-list a {
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  min-height: 28px;
  padding: 0;
  color: #17202a;
  font-size: 18px;
  font-weight: 400;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.rc-station-sidebar .rc-side-contact-list a i {
  width: 22px;
  height: 22px;
  font-size: 18px;
  color: var(--red);
  background: transparent;
  border-radius: 0;
}

.rc-station-sidebar .rc-side-contact-list a:hover {
  color: var(--red);
}

.rc-station-sidebar .rc-side-request {
  min-height: 50px;
  margin-top: 24px;
  font-size: 15px;
}

.rc-city-sidebar .rc-side-contacts {
  padding: 30px;
}

.rc-city-sidebar .rc-side-title {
  margin: 0 0 22px;
  color: #17202a;
  font-size: 24px;
  line-height: 1.12;
}

.rc-city-sidebar .rc-side-contact-list {
  gap: 18px;
}

.rc-city-sidebar .rc-side-contact-list a {
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  min-height: 28px;
  padding: 0;
  color: #17202a;
  font-size: 18px;
  font-weight: 400;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.rc-city-sidebar .rc-side-contact-list a i {
  width: 22px;
  height: 22px;
  font-size: 18px;
  color: var(--red);
  background: transparent;
  border-radius: 0;
}

.rc-city-sidebar .rc-side-contact-list a:hover {
  color: var(--red);
}

.rc-city-sidebar .rc-side-request {
  min-height: 50px;
  margin-top: 24px;
  font-size: 15px;
}

.rc-side-request {
  width: 100%;
  margin-top: 14px;
  justify-content: center;
  text-align: center;
}

.rc-city-more {
  display: grid;
  gap: 10px;
}

.rc-city-more a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 8px 0;
  color: #17202a;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.rc-city-more a img {
  display: block;
  width: 48px;
  height: 40px;
  object-fit: cover;
  background: #f4f7fb;
  border: 1px solid #e2e6ec;
  border-radius: 6px;
}

.rc-city-more a:hover {
  color: var(--red);
}

.rc-team-page {
  padding-top: 132px;
  background: #f4f7fb;
  padding-bottom: 56px;
}

.rc-team-header p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #4a5567;
  font-size: 18px;
  line-height: 1.65;
}

.rc-team-section {
  margin-top: 28px;
}

.rc-team-section h2 {
  margin: 0 0 18px;
  color: #17202a;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.12;
}

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

.rc-team-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .06);
}

.rc-team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center top;
  background: #e9eef5;
}

.rc-team-card__body {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 18px;
}

.rc-team-card h3 {
  margin: 0;
  color: #17202a;
  font-size: 22px;
  line-height: 1.15;
}

.rc-team-card p {
  margin: 0;
  color: #4a5567;
  font-size: 15px;
  line-height: 1.45;
}

.rc-contacts-page {
  padding-top: 132px;
  padding-bottom: 56px;
  background: #f4f7fb;
}

.rc-contacts-hero {
  margin-top: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .72)),
    url("../../img/hero-bg.png") center / cover no-repeat;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(15, 23, 42, .06);
}

.rc-contacts-hero__copy {
  padding: clamp(28px, 4vw, 56px);
}

.rc-contacts-hero__copy h1 {
  margin-bottom: 18px;
}

.rc-contacts-hero__copy > p:not(.eyebrow) {
  max-width: 760px;
  color: #4a5567;
  font-size: 18px;
  line-height: 1.6;
}

.rc-contacts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.rc-contacts-actions .button-white {
  color: #17202a;
  border-color: #cfd8e5;
}

.rc-contacts-layout {
  margin-top: 24px;
}

.rc-contact-office {
  background: #fff;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
}

.rc-contacts-section-head h2 {
  margin: 0;
  color: #17202a;
  font-size: 28px;
  line-height: 1.15;
}

.rc-contacts-offices {
  min-width: 0;
}

.rc-contacts-section-head {
  margin-bottom: 16px;
}

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

.rc-contact-office {
  overflow: hidden;
  display: block;
  color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

a.rc-contact-office:hover {
  border-color: rgba(232, 0, 18, .34);
  box-shadow: 0 22px 48px rgba(15, 23, 42, .1);
  transform: translateY(-2px);
}

.rc-contact-office img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e9eef5;
}

.rc-contact-office__body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.rc-contact-office h3 {
  margin: 0;
  color: #17202a;
  font-size: 21px;
  line-height: 1.2;
}

.rc-contact-office p {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
  color: #4a5567;
  font-size: 15px;
  line-height: 1.45;
}

.rc-contact-office i {
  margin-top: 3px;
  color: var(--red);
}

@media (max-width: 980px) {
  .rc-station-list-card {
    grid-template-columns: 1fr;
  }

  .rc-station-list-card__top {
    display: grid;
  }

  .rc-station-list-card__actions {
    justify-content: flex-start;
  }

  .rc-station-hero,
  .rc-ratings-hero,
  .rc-map-hero,
  .rc-station-layout,
  .rc-station-cities-block,
  .rc-city-hero,
  .rc-city-layout,
  .rc-services-hero,
  .rc-service-detail-layout,
  .rc-contacts-hero,
  .rc-contacts-layout {
    grid-template-columns: 1fr;
  }

  .rc-station-sidebar,
  .rc-city-sidebar,
  .rc-service-detail-sidebar {
    position: static;
  }

  .rc-city-hero__image {
    order: -1;
    min-height: 280px;
  }

  .rc-city-hero__image img {
    min-height: 280px;
  }

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

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

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

  .rc-service-benefits {
    grid-template-columns: 1fr;
  }

  .rc-ratings-table-head {
    display: grid;
    align-items: start;
  }

  .rc-ratings-table-head h2 {
    white-space: normal;
  }

  .coverage-section--map-page .coverage-map-layout,
  .rc-map-content,
  .rc-map-info {
    grid-template-columns: 1fr;
  }

  .rc-map-content__grid {
    grid-template-columns: 1fr;
  }

  .rc-ratings-row {
    grid-template-columns: 52px minmax(0, 1fr) minmax(92px, 120px);
  }

  .rc-ratings-row--head {
    display: none;
  }

  .rc-ratings-row__button {
    grid-column: 2 / 4;
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .rc-station-card .rc-station-hero-frequencies {
    grid-template-columns: 1fr;
  }

  .rc-team-grid {
    grid-template-columns: 1fr;
  }

  .rc-contacts-grid {
    grid-template-columns: 1fr;
  }

  .rc-services-grid {
    grid-template-columns: 1fr;
  }

  .rc-services-hero {
    min-height: auto;
  }

  .rc-service-detail-hero {
    min-height: 360px;
  }

  .rc-ratings-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
  }

  .rc-ratings-row__reach {
    grid-column: 2;
  }

  .rc-ratings-row__button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .rc-ratings-metrics {
    grid-template-columns: 1fr;
  }
}

/* Hero layout tuning 2026-06-05 */
.hero-copy {
  width: min(100%, 700px);
  flex: 0 0 700px;
}

.hero h1.hero-title {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(46px, 4.35vw, 62px);
  line-height: 1.08;
}

.hero h1.hero-title span {
  display: block;
  color: var(--ink);
}

.hero h1.hero-title .accent {
  color: var(--red);
}

.hero-media {
  max-width: 440px;
  gap: 14px;
  padding-top: 28px;
}

.on-air-card {
  width: min(370px, 100%);
  grid-template-columns: 1fr 70px;
  gap: 12px;
  padding: 14px 16px;
}

.on-air-card h2 {
  margin-bottom: 8px;
  font-size: 18px;
}

.on-air-card p:not(.air-label) {
  margin-bottom: 5px;
  font-size: 14px;
}

.air-label {
  padding: 6px 9px;
  font-size: 11px;
}

.air-wave {
  min-width: 96px;
  height: 24px;
}

.microphone {
  width: 70px;
  height: 94px;
}

.microphone img {
  width: 88px;
}

.station-slider {
  width: min(400px, 100%);
  gap: 0;
}

.station-track {
  justify-content: center;
}

.station-tile {
  flex: 0 0 86px;
  width: 86px;
  min-height: 76px;
  padding: 13px;
}

.station-tile img {
  max-height: 50px;
}

.station-dots {
  display: none;
}

/* Reference hero refresh 2026-06-05 */
body {
  background: #f4f6f9;
}

.site-header {
  top: 0;
  width: 100%;
  min-height: 82px;
  padding: 10px 0;
  color: #10151d;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: background .18s ease, box-shadow .18s ease, backdrop-filter .18s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 42px rgba(15, 23, 42, .08);
  backdrop-filter: blur(14px);
}

.header-container {
  width: min(100% - 68px, 1480px);
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 20px;
}

.logo-link {
  justify-self: start;
  width: 160px;
  min-height: 58px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.logo-link img {
  width: 140px;
  filter: none;
}

.main-nav {
  gap: clamp(14px, 1.55vw, 24px);
  color: #151922;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
}

.main-nav a:hover {
  color: var(--red);
}

.main-nav__dropdown a:hover,
.main-nav__dropdown a.is-active {
  color: #fff;
}

.header-actions {
  gap: 14px;
}

.phone {
  gap: 10px;
  color: #111827;
  font-size: 16px;
}

.phone > i {
  color: var(--red);
  font-size: 23px;
}

.phone span {
  display: grid;
  gap: 3px;
}

.phone strong {
  font-size: 16px;
  line-height: 1;
}

.phone small {
  color: #505b6b;
  font-size: 13px;
  font-weight: 500;
}

.header-actions .button-red {
  min-height: 44px;
  padding: 0 22px;
  font-size: 14px;
  border-radius: 6px;
}

.hero {
  min-height: auto;
  padding: 108px 0 72px;
  overflow: visible;
  background: #f4f6f9;
}

.hero-bg,
.listen-contexts,
.hero .map-link {
  display: none;
}

.hero > .container {
  width: min(100% - var(--container-gutter), var(--container-width));
}

.hero-card {
  position: relative;
  display: grid;
  align-content: start;
  overflow: visible;
  min-height: 560px;
  padding: 44px 66px 34px;
  color: #fff;
  background:
    radial-gradient(circle at 26% 45%, rgba(227, 6, 19, .16), transparent 25%),
    radial-gradient(circle at 76% 42%, rgba(227, 6, 19, .18), transparent 22%),
    linear-gradient(145deg, #0b3884 0%, #0d131c 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  box-shadow: 0 28px 54px rgba(15, 23, 42, .36);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(calc(var(--parallax-x, 0px) * .35), calc(var(--parallax-y, 0px) * .35), 0);
}

.particle {
  position: absolute;
  display: block;
  opacity: .34;
  transform:
    translate3d(calc(var(--parallax-x, 0px) * var(--depth, .4)), calc(var(--parallax-y, 0px) * var(--depth, .4)), 0)
    rotate(var(--angle, 0deg));
  animation: particle-drift var(--drift-duration, 11s) ease-in-out infinite;
  animation-delay: var(--drift-delay, 0s);
}

.particle-dot {
  width: var(--size, 7px);
  height: var(--size, 7px);
  background: rgba(255, 255, 255, .62);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255, 255, 255, .18);
}

.particle-line {
  width: var(--w, 54px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
  border-radius: 999px;
}

.particle-square {
  width: var(--size, 12px);
  height: var(--size, 12px);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 2px;
  box-shadow: inset 0 0 10px rgba(227, 6, 19, .08);
}

.particle-1 { left: 9%; top: 15%; --depth: .25; --size: 6px; --drift-duration: 12s; }
.particle-2 { left: 18%; top: 29%; --depth: .42; --w: 72px; --angle: 16deg; --drift-duration: 14s; --drift-delay: -2s; }
.particle-3 { left: 28%; top: 18%; --depth: .58; --size: 13px; --angle: 18deg; --drift-duration: 10s; --drift-delay: -4s; }
.particle-4 { left: 38%; top: 12%; --depth: .32; --size: 4px; --drift-duration: 13s; --drift-delay: -1s; }
.particle-5 { left: 62%; top: 20%; --depth: .48; --w: 64px; --angle: -13deg; --drift-duration: 15s; --drift-delay: -5s; }
.particle-6 { left: 78%; top: 15%; --depth: .7; --size: 11px; --angle: -22deg; --drift-duration: 11s; --drift-delay: -3s; }
.particle-7 { left: 84%; top: 42%; --depth: .3; --size: 5px; --drift-duration: 12s; --drift-delay: -7s; }
.particle-8 { left: 7%; top: 62%; --depth: .55; --w: 58px; --angle: -20deg; --drift-duration: 16s; --drift-delay: -6s; }
.particle-9 { left: 23%; top: 76%; --depth: .36; --size: 10px; --angle: 15deg; --drift-duration: 12s; --drift-delay: -8s; }
.particle-10 { left: 53%; top: 74%; --depth: .64; --size: 7px; --drift-duration: 14s; --drift-delay: -4s; }
.particle-11 { left: 72%; top: 69%; --depth: .5; --w: 82px; --angle: 11deg; --drift-duration: 17s; --drift-delay: -9s; }
.particle-12 { left: 91%; top: 61%; --depth: .28; --size: 14px; --angle: -9deg; --drift-duration: 13s; --drift-delay: -2s; }

@keyframes particle-drift {
  0%,
  100% {
    margin-top: 0;
    margin-left: 0;
    opacity: .22;
  }

  50% {
    margin-top: -10px;
    margin-left: 8px;
    opacity: .42;
  }
}

.hero-copy {
  width: min(100%, 840px);
  flex: none;
  justify-items: center;
  padding-top: 42px;
}

.brand-pill {
  margin: 0 0 18px;
  color: var(--red);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 16px;
  letter-spacing: .04em;
}

.hero h1.hero-title {
  max-width: 840px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 7px 20px rgba(0, 0, 0, .28);
}

.hero h1.hero-title span {
  color: #fff;
}

.hero h1.hero-title .accent {
  color: var(--red);
}

.hero .lead {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  line-height: 1.55;
}

.hero-buttons {
  justify-content: center;
  margin-bottom: 0;
}

.hero-buttons .button {
  min-width: 245px;
  min-height: 58px;
  border-radius: 6px;
  font-size: 17px;
}

.hero-buttons .button-white {
  color: #fff;
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .55);
}

.hero-wave {
  position: absolute;
  top: 210px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  width: 540px;
  height: 180px;
  opacity: .96;
}

.hero-wave::before {
  content: "";
  position: absolute;
  left: -40px;
  right: -40px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  box-shadow: 0 0 22px rgba(255, 255, 255, .7);
  opacity: .46;
}

.hero-wave-left {
  left: -245px;
}

.hero-wave-right {
  right: -245px;
}

.hero-wave__canvas {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(227, 6, 19, .45));
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave__canvas {
    filter: drop-shadow(0 0 7px rgba(227, 6, 19, .28));
  }
}

.stats {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: 100%;
  margin-top: 42px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.stats .hero-stat {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 8px;
  min-width: 0;
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.stats .hero-stat:first-child {
  padding-left: 100px;
}

.stats .hero-stat:last-child {
  padding-right: 34px;
}

.stats .hero-stat:last-child {
  border-right: 0;
}

.hero-stat__top {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.hero-stat__icon {
  display: inline-grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--red);
  font-size: 43px;
  line-height: 1;
  align-self: center;
  transform: translateY(-3px);
}

.stats .hero-stat .hero-stat__number {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  color: #fff;
  font-size: clamp(32px, 2.45vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.stats .hero-stat:nth-child(3) .hero-stat__number {
  font-size: clamp(28px, 2.1vw, 34px);
}

.hero-stat__label {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.stats p {
  display: none;
}

.coverage-section {
  padding: 0 0 74px;
  background: #f4f6f9;
}

.coverage-section > .container {
  width: min(100% - var(--container-gutter), var(--container-width));
  overflow: hidden;
  padding: 32px 38px 36px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.coverage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.coverage-head .section-kicker {
  display: none;
}

.coverage-head h2 {
  margin: 0;
  color: #151922;
  font-size: 34px;
}

.coverage-head > p {
  flex: 0 0 auto;
  margin-left: auto;
  margin: 0;
  color: #151922;
  font-size: 15px;
  font-weight: 800;
}

.coverage-head a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.coverage-head i {
  color: var(--red);
}

.home-city-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.home-city-strip a {
  display: grid;
  gap: 14px;
  min-height: 72px;
  padding: 0 30px;
  color: #151922;
  border-right: 1px solid #dfe5ed;
}

.home-city-strip a:first-child {
  padding-left: 0;
}

.home-city-strip a:last-child {
  border-right: 0;
}

.home-city-strip span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.home-city-strip strong {
  font-size: 18px;
  line-height: 1.2;
}

.coverage-layout {
  display: none;
}

@media (max-width: 1320px) {
  .header-container {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .header-actions {
    grid-column: auto;
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .phone {
    font-size: 15px;
  }

  .phone strong {
    font-size: 15px;
  }

  .phone small {
    font-size: 12px;
  }

  .header-actions .button-red {
    padding: 0 18px;
  }

  .hero {
    padding-top: 108px;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 18px;
    font-size: 14px;
  }

  .main-nav__dropdown {
    left: auto;
    right: 0;
    transform: translate(0, 8px);
  }

  .main-nav__item--dropdown:hover .main-nav__dropdown,
  .main-nav__item--dropdown:focus-within .main-nav__dropdown {
    transform: translate(0, 0);
  }

  .hero-card {
    padding-inline: 34px;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .stats article:nth-child(2) {
    border-right: 0;
  }

  .home-city-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 0;
  }

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

  .rc-blog-detail-hero {
    grid-template-columns: 1fr;
  }

  .rc-blog-detail-hero__media {
    min-height: 260px;
  }

  .rc-blog-detail-hero__media img {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
    padding: 8px 0;
    overflow: visible;
    background: rgba(255, 255, 255, .97);
    border-radius: 0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
  }

  .site-header.is-mobile-open {
    height: 100dvh;
    overflow: hidden;
    background:
      radial-gradient(circle at 14% 12%, rgba(227, 6, 19, .08), transparent 28%),
      linear-gradient(180deg, #fff 0%, #f5f7fb 100%);
  }

  .header-container,
  .hero > .container,
  .coverage-section > .container {
    width: min(100% - 32px, 1180px);
  }

  .header-container {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 12px 14px;
    min-height: 54px;
  }

  .site-header.is-mobile-open .header-container {
    height: 100%;
    grid-template-rows: 54px minmax(0, 1fr) auto;
    align-content: start;
  }

  .logo-link {
    width: 142px;
    min-height: 54px;
  }

  .logo-link img {
    width: 132px;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: 46px;
    height: 46px;
    align-items: center;
    align-self: center;
    justify-content: center;
    justify-self: end;
    padding: 0;
    color: #111827;
    background:
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(135deg, rgba(227, 6, 19, .42), rgba(15, 23, 42, .14)) border-box;
    border: 1px solid transparent;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .12);
    cursor: pointer;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
  }

  .mobile-nav-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, .16);
  }

  .site-header.is-mobile-open .mobile-nav-toggle {
    color: #fff;
    background: var(--red);
    box-shadow: 0 16px 34px rgba(227, 6, 19, .28);
  }

  .mobile-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 2px 0;
    background: currentColor;
    border-radius: 999px;
    transition: transform .18s ease, opacity .18s ease;
  }

  .site-header.is-mobile-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-mobile-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-mobile-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-actions {
    display: none;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: stretch;
    padding: 12px 0 18px;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(215, 224, 236, .95);
    border-radius: 0;
  }

  .site-header.is-mobile-open .header-actions {
    gap: 10px;
  }

  .site-header.is-mobile-open .header-actions .phone {
    display: flex;
    justify-content: center;
    min-height: 58px;
    padding: 10px 12px;
    color: #10151d;
    background: #fff;
    border: 1px solid rgba(215, 224, 236, .9);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  }

  .site-header.is-mobile-open .header-actions .button {
    min-height: 52px;
    border-radius: 14px;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: stretch;
    align-content: start;
    gap: 8px;
    height: calc(100dvh - 248px);
    max-height: calc(100dvh - 248px);
    min-height: 0;
    overflow-y: auto;
    padding: 8px 2px 16px;
    color: #10151d;
    white-space: normal;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(227, 6, 19, .42) transparent;
  }

  .site-header.is-mobile-open .main-nav,
  .site-header.is-mobile-open .header-actions {
    display: grid;
  }

  .site-header.is-mobile-open .header-actions .phone,
  .site-header.is-mobile-open .header-actions .button {
    width: 100%;
  }

  .main-nav__item,
  .main-nav a {
    width: 100%;
  }

  .main-nav__item {
    display: grid;
    align-items: stretch;
  }

  .main-nav__item > a {
    min-height: 48px;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    color: #10151d;
    font-size: 15px;
    line-height: 1.2;
    background: #fff;
    border: 1px solid rgba(215, 224, 236, .92);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  }

  .main-nav__item > a:hover,
  .main-nav__item.is-active > a {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
  }

  .main-nav__item--dropdown > a {
    margin-bottom: 6px;
  }

  .main-nav__item.is-active .main-nav__chevron,
  .main-nav__item > a:hover .main-nav__chevron {
    color: #fff;
  }

  .main-nav__dropdown {
    position: static;
    display: none;
    gap: 5px;
    min-width: 0;
    width: 100%;
    padding: 0 0 6px 12px;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .main-nav__dropdown::before {
    display: none;
  }

  .main-nav__item.is-active .main-nav__dropdown,
  .main-nav__item.is-mobile-expanded .main-nav__dropdown {
    display: grid;
  }

  .main-nav__item.is-active .main-nav__chevron,
  .main-nav__item.is-mobile-expanded .main-nav__chevron {
    transform: rotate(180deg);
  }

  .main-nav__dropdown a {
    min-height: 38px;
    padding: 9px 12px;
    color: #536074;
    font-size: 13px;
    font-weight: 800;
    white-space: normal;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(215, 224, 236, .82);
    border-radius: 12px;
  }

  .main-nav__dropdown a:hover,
  .main-nav__dropdown a.is-active {
    color: var(--red);
    background: #fff;
    border-color: rgba(227, 6, 19, .24);
  }

  .main-nav__item--dropdown:hover .main-nav__dropdown,
  .main-nav__item--dropdown:focus-within .main-nav__dropdown {
    transform: none;
  }

  .hero {
    padding-top: 88px;
  }

  .hero-card {
    min-height: auto;
    padding: 38px 22px 28px;
  }

  .hero-wave,
  .hero-orbit {
    display: none;
  }

  .hero h1.hero-title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .hero .lead {
    font-size: 17px;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .stats {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 28px;
  }

  .stats article,
  .stats article:first-child,
  .stats article:last-child {
    padding: 0;
    border-right: 0;
  }

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

  .rc-page-blog {
    padding-top: 96px;
    background: #f4f7fb;
  }

  .rc-breadcrumbs + .rc-page-blog {
    padding-top: 28px;
  }

  .rc-blog-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 22px;
  }

  .rc-blog-hero__panel {
    width: min(100%, 220px);
  }

  .rc-blog-grid {
    grid-template-columns: 1fr;
  }

  .rc-blog-detail-page {
    padding-top: 96px;
  }

  .rc-contacts-page {
    padding-top: 96px;
  }

  .rc-team-page {
    padding-top: 96px;
  }

  .rc-breadcrumbs + .rc-blog-detail-page {
    padding-top: 28px;
  }

  .rc-blog-detail-hero {
    padding: 28px 22px;
  }

  .rc-blog-detail-hero__media {
    min-height: 220px;
  }

  .rc-blog-detail-hero__media img {
    min-height: 220px;
  }

  .rc-blog-detail-content {
    margin-top: 18px;
    padding: 22px;
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .coverage-section > .container {
    padding: 24px 28px 28px;
    border-radius: 0;
    box-shadow: none;
  }

  .coverage-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
    margin-bottom: 26px;
  }

  .coverage-head h2 {
    max-width: 230px;
    font-size: 30px;
    line-height: 1.08;
  }

  .coverage-head > p {
    align-self: end;
    margin-bottom: 3px;
    font-size: 14px;
    white-space: nowrap;
  }

  .home-city-strip {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    gap: 24px 28px;
    align-items: start;
  }

  .home-city-strip a,
  .home-city-strip a:first-child,
  .home-city-strip a:last-child {
    display: block;
    min-height: auto;
    padding: 0;
    border-right: 0;
  }

  .home-city-strip a:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .home-city-strip a:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .home-city-strip a:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .home-city-strip a:nth-child(4) {
    grid-column: 2 / span 2;
    grid-row: 2;
  }

  .home-city-strip a:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }

  .home-city-strip a:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
  }

  .home-city-strip a:nth-child(7) {
    grid-column: 3;
    grid-row: 3;
  }

  .home-city-strip a:nth-child(8) {
    grid-column: 1;
    grid-row: 4;
  }

  .home-city-strip span {
    display: none;
  }

  .home-city-strip strong {
    font-size: 16px;
    line-height: 1.15;
  }
}

.stats .hero-stat:nth-child(3) .hero-stat__top .hero-stat__number {
  font-size: clamp(28px, 2.1vw, 34px);
}

html,
body {
  overflow-x: hidden;
}

/* Coverage map visual prototype */
.coverage-map-shell {
  margin-top: 28px;
}

.coverage-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.coverage-filter button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  color: #111827;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  background: #f7f9fc;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.coverage-filter button::before {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  content: "";
  background: var(--red);
  border-radius: 999px;
}

.coverage-filter button:hover,
.coverage-filter button.is-active {
  color: #fff;
  background: #111827;
  border-color: #111827;
  box-shadow: 0 14px 32px rgba(17, 24, 39, .16);
}

.coverage-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
}

.coverage-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 47%, rgba(227, 6, 19, .12), transparent 18%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(241,246,252,.92));
  border: 1px solid #dce5ef;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.coverage-map__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  filter: saturate(.72) contrast(.96) brightness(1.04);
  transition: opacity .35s ease;
}

.coverage-map-shell.is-yandex-ready .coverage-map__canvas {
  opacity: 1;
}

.coverage-map-shell.is-yandex-ready .coverage-map__grid,
.coverage-map-shell.is-yandex-ready .coverage-map__region,
.coverage-map-shell.is-yandex-ready .coverage-map__road,
.coverage-map-shell.is-yandex-ready .coverage-map__moscow {
  opacity: 0;
  pointer-events: none;
}

.coverage-map-shell.is-yandex-ready .coverage-city {
  opacity: 0;
  pointer-events: none;
}

.coverage-map__grid {
  position: absolute;
  inset: 0;
  opacity: .7;
  background-image:
    linear-gradient(rgba(15, 23, 42, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, #000 20%, transparent 78%);
}

.coverage-map__region {
  position: absolute;
  left: 13%;
  top: 8%;
  width: 72%;
  height: 78%;
  border: 2px solid rgba(17, 24, 39, .11);
  border-radius: 44% 56% 49% 51% / 35% 44% 56% 65%;
  background:
    radial-gradient(circle at 30% 34%, rgba(227, 6, 19, .08), transparent 22%),
    radial-gradient(circle at 69% 60%, rgba(227, 6, 19, .1), transparent 24%),
    rgba(255,255,255,.45);
  box-shadow: inset 0 0 90px rgba(15, 23, 42, .05);
}

.coverage-map__region span {
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(17, 24, 39, .16);
  border-radius: 46% 54% 44% 56% / 42% 37% 63% 58%;
}

.coverage-map__road {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, .18), transparent);
  transform-origin: center;
}

.coverage-map__road--one {
  left: 19%;
  top: 47%;
  width: 64%;
  transform: rotate(-7deg);
}

.coverage-map__road--two {
  left: 31%;
  top: 22%;
  width: 42%;
  transform: rotate(52deg);
}

.coverage-map__road--three {
  left: 25%;
  top: 70%;
  width: 52%;
  transform: rotate(18deg);
}

.coverage-map__moscow {
  position: absolute;
  left: 45%;
  top: 45%;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  color: rgba(17, 24, 39, .62);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.coverage-map__moscow strong {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 900;
}

.coverage-map__moscow span {
  margin-top: -28px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: .58;
}

.coverage-city {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  display: block;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #111827;
  font: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translate(-22px, -22px);
}

.coverage-city[hidden] {
  display: none;
}

.coverage-city__radius {
  position: absolute;
  left: 22px;
  top: 22px;
  width: var(--coverage-size);
  height: var(--coverage-size);
  background: radial-gradient(circle, rgba(227, 6, 19, .28) 0, rgba(227, 6, 19, .12) 34%, transparent 68%);
  border: 1px solid rgba(227, 6, 19, .22);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: coveragePulse 4.8s ease-in-out infinite;
}

.coverage-city__dot {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 17px;
  height: 17px;
  background: var(--red);
  border: 4px solid #fff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(227, 6, 19, .34);
}

.coverage-city__label {
  position: absolute;
  left: 36px;
  top: 2px;
  display: grid;
  gap: 3px;
  min-width: 122px;
  padding: 9px 11px;
  text-align: left;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(219, 227, 238, .9);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.coverage-city__label strong {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.coverage-city__label small {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.coverage-city:hover .coverage-city__label,
.coverage-city.is-active .coverage-city__label {
  border-color: rgba(227, 6, 19, .42);
  box-shadow: 0 18px 42px rgba(227, 6, 19, .16);
  transform: translateY(-4px);
}

.coverage-city.is-active {
  z-index: 4;
}

.coverage-city.is-muted {
  opacity: .2;
}

.coverage-city.is-muted .coverage-city__radius {
  animation: none;
}

.coverage-map__stats {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 34px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(17, 24, 39, .92);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .22);
}

.coverage-map__stats span {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.coverage-map__stats span:last-child {
  border-right: 0;
}

.coverage-map__stats strong {
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.coverage-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 560px;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 14%, rgba(227, 6, 19, .2), transparent 22%),
    linear-gradient(145deg, #10151d, #172232 100%);
  border-radius: 10px;
  box-shadow: 0 24px 54px rgba(15, 23, 42, .2);
}

.coverage-card h3 {
  margin: -6px 0 0;
  font-size: 38px;
  line-height: 1.05;
}

.coverage-card > p:not(.panel-eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
  line-height: 1.55;
}

.coverage-card__stations {
  display: grid;
  gap: 10px;
}

.coverage-card__stations a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 12px 14px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.coverage-card__stations a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(227, 6, 19, .42);
}

.coverage-card__stations .coverage-card__more {
  min-height: 46px;
  color: rgba(255, 255, 255, .82);
  background: rgba(227, 6, 19, .12);
  border-color: rgba(227, 6, 19, .34);
}

.coverage-card__stations .coverage-card__more strong {
  color: var(--red);
  font-size: 14px;
}

.coverage-card__stations span {
  font-weight: 900;
}

.coverage-card__stations strong {
  flex: 0 0 auto;
  color: #ff2732;
  font-size: 15px;
}

.coverage-card__actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.coverage-card__actions .button,
.coverage-card__actions .button-white {
  width: 100%;
  justify-content: center;
}

.coverage-card__actions .button-white {
  color: #111827;
  background: #fff;
  border-color: #fff;
}

.coverage-card__actions .button-white:hover {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .72);
}

.coverage-empty {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 18%, rgba(227, 6, 19, .18), transparent 24%),
    linear-gradient(145deg, #10151d, #172232 100%);
  border-radius: 10px;
}

.coverage-empty h3 {
  margin: 0;
  font-size: 34px;
}

.coverage-empty p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.6;
}

.rc-vacancies-page {
  padding-bottom: 64px;
}

.rc-vacancies-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 18px;
  padding: 54px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 13, 21, .96) 0%, rgba(8, 13, 21, .9) 42%, rgba(8, 13, 21, .52) 74%, rgba(8, 13, 21, .32) 100%),
    radial-gradient(circle at 16% 22%, rgba(227, 6, 19, .18), transparent 26%),
    url("../../img/vacancies-hero-bg.png") center / cover no-repeat;
  border-radius: 10px;
  box-shadow: 0 24px 54px rgba(15, 23, 42, .16);
}

.rc-vacancies-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(227, 6, 19, .18), transparent 28%),
    linear-gradient(180deg, rgba(10, 15, 24, .08), rgba(10, 15, 24, .72));
}

.rc-vacancies-hero__copy,
.rc-vacancies-hero__panel {
  position: relative;
  z-index: 1;
}

.rc-vacancies-hero__copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

.rc-vacancies-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 62px;
  line-height: .98;
}

.rc-vacancies-hero__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.62;
}

.rc-vacancies-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.rc-vacancies-hero__actions .button-white {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .1);
}

.rc-vacancies-hero__actions .button-white:hover {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .16);
}

.rc-vacancies-hero__panel {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 310px;
  padding: 30px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
}

.rc-vacancies-hero__panel span {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.rc-vacancies-hero__panel strong {
  color: #fff;
  font-size: 74px;
  line-height: 1;
}

.rc-vacancies-hero__panel p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-weight: 700;
  line-height: 1.55;
}

.rc-vacancies-section {
  margin-top: 24px;
  padding: 44px;
  background: #fff;
  border: 1px solid #dce3ec;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.rc-vacancies-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.rc-vacancies-section__head h2,
.rc-vacancies-empty h1,
.rc-vacancies-empty h2 {
  margin: 0;
  color: #10151d;
  font-size: 42px;
  line-height: 1.08;
}

.rc-vacancies-list {
  display: grid;
  gap: 18px;
}

.rc-vacancy-card {
  display: grid;
  gap: 22px;
  padding: 32px;
  background: #fff;
  border: 1px solid #dce3ec;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .05);
}

.rc-vacancy-card__main {
  display: grid;
  gap: 22px;
}

.rc-vacancy-card header {
  display: grid;
  gap: 10px;
}

.rc-vacancy-card h3 {
  margin: 0;
  color: #10151d;
  font-size: 34px;
  line-height: 1.12;
}

.rc-vacancy-card header p {
  max-width: 920px;
  margin: 0;
  color: #465569;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.rc-vacancy-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rc-vacancy-card__facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 13px;
  color: #10151d;
  font-size: 14px;
  font-weight: 900;
  background: #fff;
  border: 1px solid #dce3ec;
  border-radius: 8px;
}

.rc-vacancy-card__facts i {
  color: var(--red);
}

.rc-vacancy-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rc-vacancy-card__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 48px;
  padding: 13px 20px;
  color: #fff;
  font: inherit;
  font-weight: 900;
  background: var(--red);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(227, 6, 19, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.rc-vacancy-card__toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(227, 6, 19, .28);
}

.rc-vacancy-card__toggle i {
  font-size: 13px;
  transition: transform .2s ease;
}

.rc-vacancy-card__apply {
  min-height: 48px;
  box-shadow: 0 14px 28px rgba(227, 6, 19, .22);
}

.rc-vacancy-card.is-open .rc-vacancy-card__toggle i {
  transform: rotate(180deg);
}

.rc-vacancy-card__collapse {
  display: grid;
  gap: 16px;
  padding-top: 2px;
}

.rc-vacancy-card__collapse[hidden] {
  display: none !important;
}

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

.rc-vacancy-card__details section {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 22px;
  background: #f7f9fc;
  border: 1px solid #dce3ec;
  border-radius: 8px;
}

.rc-vacancy-card__details section:first-child {
  grid-column: 1 / -1;
}

.rc-vacancy-card__details h4 {
  margin: 0;
  color: #10151d;
  font-size: 20px;
}

.rc-vacancy-card__details ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rc-vacancy-card__definition {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.rc-vacancy-card__definition div {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #dce3ec;
  border-radius: 8px;
}

.rc-vacancy-card__definition dt {
  color: #69778a;
  font-size: 13px;
  font-weight: 900;
}

.rc-vacancy-card__definition dd {
  margin: 0;
  color: #10151d;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.rc-vacancy-card__details li {
  position: relative;
  padding-left: 18px;
  color: #465569;
  font-weight: 700;
  line-height: 1.55;
}

.rc-vacancy-card__details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.rc-vacancy-card__aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(227, 6, 19, .2), transparent 25%),
    linear-gradient(145deg, #10151d, #172232 100%);
  border-radius: 8px;
}

.rc-vacancy-card__aside span {
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rc-vacancy-card__aside strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.18;
}

.rc-vacancy-card__aside p {
  grid-column: 1 / 2;
  margin: -6px 0 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
  line-height: 1.55;
}

.rc-vacancy-card__aside .button {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 240px;
  justify-content: center;
}

.rc-vacancies-empty {
  display: grid;
  gap: 16px;
  padding: 34px;
  background: #fff;
  border: 1px solid #dce3ec;
  border-radius: 10px;
}

.rc-vacancies-empty p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #465569;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

@keyframes coveragePulse {
  0%,
  100% {
    opacity: .68;
    transform: translate(-50%, -50%) scale(.94);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@media (max-width: 1180px) {
  .coverage-map-layout {
    grid-template-columns: 1fr;
  }

  .coverage-card {
    min-height: 0;
  }

  .rc-vacancies-hero {
    grid-template-columns: 1fr;
  }

  .rc-vacancies-hero__panel {
    min-height: 220px;
  }

  .rc-vacancy-card__details {
    grid-template-columns: 1fr;
  }

  .rc-vacancy-card__definition {
    grid-template-columns: 1fr;
  }

  .rc-vacancy-card__aside {
    grid-template-columns: 1fr;
  }

  .rc-vacancy-card__aside p,
  .rc-vacancy-card__aside .button {
    grid-column: auto;
    grid-row: auto;
  }

  .rc-vacancy-card__aside .button {
    width: 100%;
  }

  .rc-vacancy-card__actions,
  .rc-vacancy-card__toggle,
  .rc-vacancy-card__apply {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .coverage-city__label {
    display: none;
  }
}

@media (max-width: 760px) {
  .rc-map-hero {
    padding: 34px 22px;
  }

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

  .rc-map-hero__metrics {
    grid-template-columns: 1fr;
  }

  .rc-map-hero__actions .button {
    width: 100%;
  }

  .coverage-section--map-page > .container,
  .rc-map-content,
  .rc-map-info,
  .rc-policy-hero,
  .rc-policy-content,
  .rc-vacancies-hero,
  .rc-vacancies-section,
  .rc-vacancies-empty {
    padding: 22px;
  }

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

  .rc-vacancies-section__head {
    display: grid;
  }

  .rc-vacancies-section__head h2,
  .rc-vacancies-empty h1,
  .rc-vacancies-empty h2 {
    font-size: 30px;
  }

  .rc-vacancy-card {
    padding: 18px;
  }

  .rc-vacancy-card h3 {
    font-size: 26px;
  }

  .rc-policy-hero h1 {
    font-size: 38px;
  }

  .rc-policy-content h2 {
    font-size: 24px;
  }

  .coverage-map {
    min-height: 620px;
  }

  .coverage-map__stats {
    grid-template-columns: 1fr;
  }

  .coverage-map__stats span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
}

.rc-facts-page {
  padding-bottom: 70px;
}

.rc-facts-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  overflow: hidden;
  min-height: 460px;
  margin-top: 24px;
  padding: 62px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(13, 18, 26, .95) 0%, rgba(13, 18, 26, .82) 42%, rgba(13, 18, 26, .36) 100%),
    radial-gradient(circle at 18% 34%, rgba(227, 6, 19, .22), transparent 24%),
    url('../../img/facts-hero-bg.png') right center / cover no-repeat,
    linear-gradient(135deg, #10151d 0%, #102e52 100%);
  box-shadow: 0 28px 70px rgba(16, 21, 29, .22);
}

.rc-facts-hero__copy,
.rc-facts-hero__panel {
  position: relative;
  z-index: 1;
}

.rc-facts-hero h1 {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: 68px;
  line-height: .98;
  color: #fff;
}

.rc-facts-hero__copy > p:not(.eyebrow) {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
  line-height: 1.75;
}

.rc-facts-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rc-facts-hero__secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .08);
}

.rc-facts-hero__panel {
  align-self: center;
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.rc-facts-hero__panel strong {
  color: #fff;
  font-size: 86px;
  line-height: 1;
}

.rc-facts-hero__panel span {
  max-width: 250px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .8);
  font-weight: 700;
  line-height: 1.55;
}

.rc-facts-section,
.rc-facts-about,
.rc-facts-social,
.rc-facts-docs,
.rc-facts-contact,
.rc-facts-history {
  margin-top: 24px;
  padding: 46px;
  border: 1px solid #dce4ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 21, 29, .06);
}

.rc-facts-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.rc-facts-section__head h2,
.rc-facts-about h2,
.rc-facts-docs h2,
.rc-facts-contact h2,
.rc-facts-about__aside h3 {
  margin: 0;
  color: #10151d;
}

.rc-facts-section__head h2,
.rc-facts-about h2,
.rc-facts-docs h2,
.rc-facts-contact h2 {
  font-size: 42px;
  line-height: 1.12;
}

.rc-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rc-fact-card {
  display: grid;
  align-content: start;
  min-height: 218px;
  padding: 24px;
  border: 1px solid #dce4ee;
  border-radius: 8px;
  background: #f5f8fc;
}

.rc-fact-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.rc-fact-card strong {
  margin-top: 26px;
  color: #10151d;
  font-size: 38px;
  line-height: 1;
}

.rc-fact-card span {
  margin-top: 12px;
  color: rgba(16, 21, 29, .72);
  font-weight: 700;
  line-height: 1.45;
}

.rc-facts-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
}

.rc-facts-about__copy p,
.rc-facts-social p,
.rc-facts-contact p,
.rc-facts-timeline p {
  color: #344258;
  font-size: 17px;
  line-height: 1.75;
}

.rc-facts-about__aside {
  align-self: start;
  padding: 28px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(145deg, #10151d 0%, #30131f 100%);
}

.rc-facts-about__aside h3 {
  color: #fff;
  font-size: 24px;
}

.rc-facts-about__aside ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.rc-facts-about__aside li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  line-height: 1.45;
}

.rc-facts-about__aside li::before {
  content: "";
  position: absolute;
  top: .6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e30613;
}

.rc-facts-social {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 34px;
  overflow: hidden;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(13, 18, 26, .98) 0%, rgba(13, 18, 26, .88) 36%, rgba(13, 18, 26, .64) 100%),
    radial-gradient(circle at 12% 20%, rgba(227, 6, 19, .22), transparent 28%),
    url('../../img/facts-social-bg.png') center / cover no-repeat,
    linear-gradient(135deg, #10151d 0%, #152941 100%);
}

.rc-facts-social__head,
.rc-facts-social__cards {
  position: relative;
  z-index: 1;
}

.rc-facts-social__head {
  display: grid;
  align-content: center;
}

.rc-facts-social__head h2 {
  margin: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.12;
}

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

.rc-facts-social__card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  padding: 28px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.rc-facts-social__card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(227, 6, 19, .22);
}

.rc-facts-social__card p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.rc-facts-docs,
.rc-facts-contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
}

.rc-facts-docs__links,
.rc-facts-contact__links {
  display: grid;
  gap: 12px;
}

.rc-facts-docs__links a,
.rc-facts-contact__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 16px 18px;
  color: #10151d;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #dce4ee;
  border-radius: 8px;
  background: #f5f8fc;
}

.rc-facts-docs__links a:hover,
.rc-facts-contact__links a:hover {
  color: #e30613;
  border-color: rgba(227, 6, 19, .35);
}

.rc-facts-contact {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 58px;
  align-items: center;
  overflow: hidden;
  min-height: 560px;
  padding: 62px;
  color: #fff;
  border-color: rgba(255, 255, 255, .08);
  background:
    linear-gradient(90deg, rgba(13, 18, 26, .96) 0%, rgba(13, 18, 26, .82) 48%, rgba(13, 18, 26, .72) 100%),
    radial-gradient(circle at 78% 46%, rgba(227, 6, 19, .22), transparent 32%),
    linear-gradient(135deg, #10151d 0%, #182b42 100%);
  box-shadow: 0 28px 70px rgba(16, 21, 29, .22);
}

.rc-facts-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .06) 49%, transparent 50%),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(227, 6, 19, .26) 29px 31px, transparent 32px 46px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 58%, #000 100%);
  pointer-events: none;
}

.rc-facts-contact::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: -120px;
  width: 520px;
  height: 360px;
  opacity: .34;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 6, 19, .42), transparent 65%);
  filter: blur(22px);
  pointer-events: none;
}

.rc-facts-contact__copy,
.rc-facts-contact__form {
  position: relative;
  z-index: 1;
}

.rc-facts-contact .eyebrow {
  display: inline-flex;
  color: rgba(255, 255, 255, .86);
  background: rgba(227, 6, 19, .14);
}

.rc-facts-contact h2 {
  max-width: 680px;
  color: #fff;
  font-size: 58px;
  line-height: 1.05;
}

.rc-facts-contact__copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 19px;
  line-height: 1.7;
}

.rc-facts-contact__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 14px;
  margin-top: 34px;
}

.rc-facts-contact__card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.rc-facts-contact__card:hover {
  border-color: rgba(227, 6, 19, .45);
  background: rgba(255, 255, 255, .12);
}

.rc-facts-contact__card > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: #e30613;
  border-radius: 8px;
}

.rc-facts-contact__card strong,
.rc-facts-contact__card small {
  display: block;
}

.rc-facts-contact__card strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 16px;
}

.rc-facts-contact__card small {
  color: rgba(255, 255, 255, .68);
}

.rc-facts-contact__team {
  display: grid;
  grid-template-columns: repeat(3, 44px) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  max-width: 650px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
}

.rc-facts-contact__team strong {
  display: block;
  color: #fff;
}

.rc-facts-contact__team p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 1.45;
}

.rc-facts-contact__form {
  align-self: center;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(3, 7, 18, .28);
}

.rc-facts-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.rc-facts-timeline article {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border: 1px solid #dce4ee;
  border-radius: 8px;
  background: #f5f8fc;
}

.rc-facts-timeline time {
  color: #e30613;
  font-size: 22px;
  font-weight: 900;
}

.rc-facts-timeline h3 {
  margin: 0 0 8px;
  color: #10151d;
  font-size: 22px;
}

.rc-facts-timeline p {
  margin: 0;
}

@media (max-width: 1180px) {
  .rc-facts-hero,
  .rc-facts-about,
  .rc-facts-docs,
  .rc-facts-contact {
    grid-template-columns: 1fr;
  }

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

  .rc-facts-hero__panel {
    min-height: 0;
  }

  .rc-facts-contact__form {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .rc-facts-hero,
  .rc-facts-section,
  .rc-facts-about,
  .rc-facts-social,
  .rc-facts-docs,
  .rc-facts-contact,
  .rc-facts-history {
    padding: 22px;
  }

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

  .rc-facts-section__head,
  .rc-facts-social {
    display: grid;
  }

  .rc-facts-section__head h2,
  .rc-facts-about h2,
  .rc-facts-docs h2,
  .rc-facts-contact h2 {
    font-size: 30px;
  }

  .rc-facts-social__head h2 {
    font-size: 30px;
  }

  .rc-facts-social__cards {
    grid-template-columns: 1fr;
  }

  .rc-facts-social__card {
    min-height: 0;
    padding: 22px;
  }

  .rc-facts-grid,
  .rc-facts-timeline article {
    grid-template-columns: 1fr;
  }

  .rc-facts-docs,
  .rc-facts-contact {
    grid-template-columns: 1fr;
  }

  .rc-facts-contact {
    min-height: 0;
  }

  .rc-facts-contact__cards,
  .rc-facts-contact__team {
    grid-template-columns: 1fr;
  }

  .rc-facts-contact__cards {
    max-width: 100%;
    gap: 10px;
    margin-top: 24px;
  }

  .rc-facts-contact__card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    min-height: 72px;
    padding: 14px;
  }

  .rc-facts-contact__card > span {
    width: 42px;
    height: 42px;
  }

  .rc-facts-contact__card strong,
  .rc-facts-contact__card small {
    overflow-wrap: anywhere;
  }

  .rc-facts-contact__team .team-avatar {
    display: none;
  }

  .rc-facts-contact__form {
    max-width: none;
    padding: 22px;
  }

  .rc-facts-hero__actions .button {
    width: 100%;
  }
}

.rc-clients-page {
  padding-bottom: 70px;
}

.rc-clients-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 430px;
  margin-top: 24px;
  padding: 62px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(13, 18, 26, .96) 0%, rgba(13, 18, 26, .82) 48%, rgba(13, 18, 26, .54) 100%),
    url('../../img/clients-hero-bg-v2.png') right center / cover no-repeat,
    linear-gradient(135deg, #10151d 0%, #102f55 100%);
  box-shadow: 0 28px 70px rgba(16, 21, 29, .2);
}

.rc-clients-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.rc-clients-hero .eyebrow,
.rc-clients-section .eyebrow,
.rc-clients-contact .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 0 0 22px;
  padding: 12px 16px;
  color: #fff;
  border-radius: 6px;
  background: rgba(255, 255, 255, .1);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.rc-clients-hero .eyebrow::before,
.rc-clients-section .eyebrow::before,
.rc-clients-contact .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e30613;
}

.rc-clients-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 64px;
  line-height: 1;
}

.rc-clients-hero__copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
  line-height: 1.75;
}

.rc-clients-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rc-clients-hero__secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .08);
}

.rc-clients-section {
  scroll-margin-top: 150px;
  margin-top: 24px;
  padding: 46px;
  border: 1px solid #dce4ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 21, 29, .06);
}

.rc-clients-section .eyebrow {
  color: #fff;
  background: #10151d;
}

.rc-clients-section__head {
  max-width: 860px;
  margin-bottom: 30px;
}

.rc-clients-section__head h2 {
  margin: 0 0 14px;
  color: #10151d;
  font-size: 42px;
  line-height: 1.12;
}

.rc-clients-section__head p:not(.eyebrow) {
  margin: 0;
  color: #526173;
  font-size: 17px;
  line-height: 1.7;
}

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

.rc-client-card {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 20px;
  border: 1px solid #dce4ee;
  border-radius: 8px;
  background: #f5f8fc;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.rc-client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 6, 19, .24);
  background: #fff;
  box-shadow: 0 18px 34px rgba(16, 21, 29, .08);
}

.rc-client-card img {
  display: block;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.rc-client-card span {
  color: #10151d;
  font-weight: 900;
  text-align: center;
}

.rc-clients-empty {
  padding: 34px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #10151d 0%, #102f55 100%);
}

.rc-clients-empty h2 {
  margin: 0 0 12px;
  color: #fff;
}

.rc-clients-empty p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
}

.rc-clients-contact {
  scroll-margin-top: 150px;
  margin-top: 24px;
}

@media (max-width: 1180px) {
  .rc-clients-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rc-clients-hero,
  .rc-clients-section {
    padding: 22px;
  }

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

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

  .rc-clients-section__head h2 {
    font-size: 30px;
  }

  .rc-clients-hero__actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .rc-clients-grid {
    grid-template-columns: 1fr;
  }
}

.rc-reviews-page {
  padding-bottom: 72px;
}

.rc-reviews-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: end;
  margin: 0 auto 24px;
  padding: 56px;
  color: #fff;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 13, 21, .96) 0%, rgba(8, 13, 21, .86) 40%, rgba(8, 13, 21, .42) 72%, rgba(8, 13, 21, .28) 100%),
    linear-gradient(145deg, rgba(227, 6, 19, .18), transparent 42%),
    url("../../img/reviews-hero-bg-v2.png") center / cover no-repeat;
  box-shadow: 0 28px 70px rgba(16, 21, 29, .2);
}

.rc-reviews-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .72;
  background:
    radial-gradient(circle at 20% 26%, rgba(227, 6, 19, .18), transparent 30%),
    linear-gradient(180deg, rgba(10, 15, 24, .12), rgba(10, 15, 24, .72));
}

.rc-reviews-hero__copy,
.rc-reviews-hero__panel {
  position: relative;
  z-index: 1;
}

.rc-reviews-hero .eyebrow,
.rc-reviews-section .eyebrow,
.rc-reviews-cta .eyebrow {
  width: fit-content;
  margin: 0 0 15px;
  padding: 8px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
  background: rgba(227, 6, 19, .22);
}

.rc-reviews-section .eyebrow,
.rc-reviews-cta .eyebrow {
  color: var(--red);
  background: rgba(227, 6, 19, .08);
}

.rc-reviews-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .98;
}

.rc-reviews-hero__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
  line-height: 1.65;
}

.rc-reviews-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.rc-reviews-hero__secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
}

.rc-reviews-hero__panel {
  display: grid;
  gap: 12px;
  min-height: 220px;
  align-content: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
}

.rc-reviews-hero__panel strong {
  color: #fff;
  font-size: 72px;
  line-height: 1;
}

.rc-reviews-hero__panel span {
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.rc-reviews-section,
.rc-reviews-empty,
.rc-reviews-cta {
  margin-top: 24px;
  padding: 42px;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
}

.rc-reviews-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 34px;
  align-items: end;
  margin-bottom: 26px;
}

.rc-reviews-section__head h2,
.rc-reviews-cta h2,
.rc-reviews-empty h1 {
  margin: 0;
  color: #10151d;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.rc-reviews-section__head > p,
.rc-reviews-cta p,
.rc-reviews-empty p {
  margin: 0;
  color: #536074;
  font-size: 18px;
  line-height: 1.7;
}

.rc-reviews-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.rc-reviews-filter button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  color: #121722;
  font: 900 14px/1 'Circe', 'Manrope', Arial, sans-serif;
  border: 1px solid #dfe6ef;
  border-radius: 6px;
  background: #f5f8fc;
  cursor: pointer;
}

.rc-reviews-filter button span {
  color: var(--red);
}

.rc-reviews-filter button:hover,
.rc-reviews-filter button.is-active {
  color: #fff;
  border-color: #10151d;
  background: #10151d;
}

.rc-reviews-filter button:hover span,
.rc-reviews-filter button.is-active span {
  color: #ff2732;
}

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

.rc-review-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #f7f9fc;
}

.rc-review-card[hidden] {
  display: none;
}

.rc-review-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #10151d;
}

.rc-review-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.rc-review-card__media img,
.rc-review-card__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.rc-review-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #fff;
  font-size: 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(227, 6, 19, .28), transparent 34%),
    linear-gradient(145deg, #10151d, #172232);
}

.rc-review-card__body {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
}

.rc-review-card__type {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rc-review-card h3 {
  margin: 0;
  color: #10151d;
  font-size: 24px;
  line-height: 1.15;
}

.rc-review-card__title-link {
  color: inherit;
}

.rc-review-card__title-link:hover {
  color: var(--red);
}

.rc-review-card__position {
  margin: 0;
  color: #536074;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.rc-review-card__text {
  margin: 0;
  color: #263244;
  font-size: 16px;
  line-height: 1.55;
}

.rc-review-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: #10151d;
  font-size: 15px;
  font-weight: 900;
}

.rc-review-card__link:hover {
  color: var(--red);
}

.rc-review-detail-page {
  padding-bottom: 72px;
}

.rc-review-detail {
  margin-top: 24px;
  padding: 42px;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
}

.rc-review-detail__head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.rc-review-detail__head h1 {
  margin: 0;
  color: #10151d;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
}

.rc-review-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.rc-review-detail__media {
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #10151d;
}

.rc-review-detail__media img,
.rc-review-detail__media iframe {
  display: block;
  width: 100%;
  height: auto;
  min-height: 320px;
  border: 0;
  object-fit: cover;
}

.rc-review-detail__content {
  display: grid;
  gap: 22px;
}

.rc-review-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rc-review-detail__meta span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: #121722;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid #dfe6ef;
  border-radius: 999px;
  background: #f7f9fc;
}

.rc-review-detail__meta i {
  color: var(--red);
}

.rc-review-detail__text {
  padding: 24px;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #f7f9fc;
}

.rc-review-detail__text p {
  margin: 0;
  color: #263244;
  font-size: 17px;
  line-height: 1.8;
}

.rc-review-detail__actions {
  display: flex;
  gap: 14px;
}

.rc-reviews-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(227, 6, 19, .22), transparent 26%),
    linear-gradient(145deg, #10151d, #172232 100%);
}

.rc-reviews-cta h2,
.rc-reviews-cta p {
  color: #fff;
}

.rc-reviews-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, .8);
}

@media (max-width: 1180px) {
  .rc-reviews-hero,
  .rc-reviews-section__head,
  .rc-reviews-cta,
  .rc-review-detail__layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .rc-reviews-hero,
  .rc-reviews-section,
  .rc-reviews-empty,
  .rc-reviews-cta,
  .rc-review-detail {
    padding: 28px 22px;
  }

  .rc-reviews-grid {
    grid-template-columns: 1fr;
  }

  .rc-reviews-hero__panel {
    min-height: 160px;
  }

  .rc-reviews-hero__panel strong {
    font-size: 54px;
  }

  .rc-reviews-hero__actions .button,
  .rc-reviews-cta .button,
  .rc-review-detail__head .button {
    width: 100%;
  }

  .rc-review-detail__head {
    flex-direction: column;
    align-items: stretch;
  }

.rc-review-detail__media img,
.rc-review-detail__media iframe {
    min-height: 240px;
  }
}

.rc-error-page {
  padding: 132px 0 72px;
}

.rc-error-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 48px;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  padding: 58px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 13, 21, .96) 0%, rgba(8, 13, 21, .88) 42%, rgba(8, 13, 21, .48) 72%, rgba(8, 13, 21, .28) 100%),
    radial-gradient(circle at 22% 28%, rgba(227, 6, 19, .18), transparent 30%),
    url("../../img/404-hero-bg.png") center / cover no-repeat;
  box-shadow: 0 26px 70px rgba(15, 23, 42, .18);
}

.rc-error-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .74;
  background:
    radial-gradient(circle at 18% 24%, rgba(227, 6, 19, .2), transparent 28%),
    linear-gradient(180deg, rgba(10, 15, 24, .04), rgba(10, 15, 24, .74));
}

.rc-error-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 48%;
  height: 120px;
  pointer-events: none;
  opacity: .18;
  background:
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(227, 6, 19, .92) 12px 15px, transparent 15px 28px);
  mask-image: radial-gradient(ellipse at center, #000 0 28%, transparent 70%);
  transform: translateY(-50%);
}

.rc-error-hero__copy,
.rc-error-hero__visual {
  position: relative;
  z-index: 1;
}

.rc-error-hero .eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
}

.rc-error-hero .eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.rc-error-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(44px, 6vw, 86px);
  line-height: .98;
}

.rc-error-hero__copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
  line-height: 1.65;
}

.rc-error-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.rc-error-hero__secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
}

.rc-error-hero__visual {
  display: grid;
  place-items: center;
}

.rc-error-hero__code {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(88px, 12vw, 154px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 20px 60px rgba(0, 0, 0, .34);
}

.rc-error-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.rc-error-links a {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 22px;
  color: #10151d;
  font-size: 18px;
  font-weight: 900;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
}

.rc-error-links a:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.rc-error-links i {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--red);
}

@media (max-width: 980px) {
  .rc-error-hero {
    grid-template-columns: 1fr;
    padding: 42px;
  }

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

@media (max-width: 620px) {
  .rc-error-page {
    padding-top: 108px;
  }

  .rc-error-hero {
    padding: 30px 22px;
  }

  .rc-error-hero__actions .button,
  .rc-error-links {
    width: 100%;
  }

  .rc-error-links {
    grid-template-columns: 1fr;
  }
}

/* Mobile polish pass */
@media (max-width: 760px) {
  :root {
    --container-gutter: 32px;
  }

  html,
  body {
    overflow-x: clip;
  }

  .rc-page,
  .rc-page-blog,
  .rc-blog-detail-page,
  .rc-stations-page,
  .rc-station-page,
  .rc-services-page,
  .rc-service-detail-page,
  .rc-samples-page,
  .rc-ratings-page,
  .rc-map-page,
  .rc-vacancies-page,
  .rc-facts-page,
  .rc-interaction-page,
  .rc-clients-page,
  .rc-reviews-page,
  .rc-review-detail-page,
  .rc-online-air-page,
  .rc-contacts-page,
  .rc-team-page,
  .rc-error-page {
    width: min(100% - 32px, 1180px);
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .rc-breadcrumbs {
    margin: 14px auto 18px;
    gap: 6px;
    font-size: 12px;
    line-height: 1.25;
  }

  .rc-breadcrumbs.container {
    padding-inline: 4px;
  }

  .hero {
    padding: 28px 0 40px;
  }

  .hero-card,
  .rc-blog-hero,
  .rc-blog-detail-hero,
  .rc-services-hero,
  .rc-service-detail-hero,
  .rc-samples-hero,
  .rc-ratings-hero,
  .rc-map-hero,
  .rc-vacancies-hero,
  .rc-facts-hero,
  .rc-clients-hero,
  .rc-reviews-hero,
  .rc-contacts-hero,
  .rc-error-hero,
  .rc-policy-hero {
    min-height: auto;
    margin-top: 0;
    padding: 28px 22px;
    border-radius: 8px;
  }

  .hero h1.hero-title,
  .rc-blog-hero h1,
  .rc-blog-detail-hero h1,
  .rc-services-hero h1,
  .rc-service-detail-hero h1,
  .rc-samples-hero h1,
  .rc-ratings-hero h1,
  .rc-map-hero h1,
  .rc-vacancies-hero h1,
  .rc-facts-hero h1,
  .rc-clients-hero h1,
  .rc-reviews-hero h1,
  .rc-contacts-hero__copy h1,
  .rc-error-hero h1,
  .rc-policy-hero h1,
  .rc-header h1,
  .rc-detail h1 {
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.05;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .rc-policy-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .hero .lead,
  .rc-blog-hero__copy > p:last-child,
  .rc-blog-detail-hero__copy > p:not(.rc-blog-kicker),
  .rc-services-hero__copy > p:not(.eyebrow),
  .rc-service-detail-hero__copy > p:not(.eyebrow),
  .rc-samples-hero__copy > p:not(.eyebrow),
  .rc-ratings-hero p,
  .rc-map-hero p,
  .rc-vacancies-hero__copy > p:not(.eyebrow),
  .rc-facts-hero__copy > p:not(.eyebrow),
  .rc-clients-hero__copy > p:not(.eyebrow),
  .rc-reviews-hero__copy > p:not(.eyebrow),
  .rc-contacts-hero__copy > p:not(.eyebrow),
  .rc-error-hero__copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-buttons,
  .rc-services-hero__actions,
  .rc-service-detail-actions,
  .rc-samples-hero__actions,
  .rc-map-hero__actions,
  .rc-vacancies-hero__actions,
  .rc-facts-hero__actions,
  .rc-clients-hero__actions,
  .rc-reviews-hero__actions,
  .rc-error-hero__actions,
  .rc-contacts-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .hero-buttons .button,
  .rc-services-hero__actions .button,
  .rc-service-detail-actions .button,
  .rc-samples-hero__actions .button,
  .rc-map-hero__actions .button,
  .rc-vacancies-hero__actions .button,
  .rc-facts-hero__actions .button,
  .rc-clients-hero__actions .button,
  .rc-reviews-hero__actions .button,
  .rc-error-hero__actions .button,
  .rc-contacts-actions .button {
    width: 100%;
    min-width: 0;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 14px;
  }

  .stats .hero-stat {
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: 8px;
    min-width: 0;
    min-height: auto;
    padding: 16px 8px !important;
    border: 0 !important;
    text-align: center;
  }

  .stats .hero-stat:nth-child(odd) {
    border-right: 0;
  }

  .stats .hero-stat:nth-child(n + 3) {
    border-top: 0;
  }

  .hero-stat__top {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .stats .hero-stat .hero-stat__number,
  .stats .hero-stat:nth-child(3) .hero-stat__top .hero-stat__number,
  .stats .hero-stat:nth-child(3) .hero-stat__number {
    min-height: 34px;
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1;
    white-space: nowrap;
  }

  .hero-stat__icon {
    flex: 0 0 30px;
    width: 30px;
    height: 34px;
    font-size: 28px;
    transform: none;
  }

  .hero-stat__label {
    width: 100%;
    max-width: 124px;
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: normal;
  }

  .rc-services-hero__stats,
  .rc-map-hero__metrics,
  .rc-facts-hero__panel,
  .rc-reviews-hero__panel,
  .rc-samples-hero__panel,
  .rc-vacancies-hero__panel,
  .rc-ratings-hero__panel {
    margin-top: 18px;
  }

  .rc-services-hero__stats,
  .rc-map-hero__metrics,
  .rc-facts-hero__panel,
  .rc-samples-hero__panel,
  .rc-vacancies-hero__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .rc-ratings-hero__panel,
  .rc-reviews-hero__panel,
  .rc-facts-hero__panel {
    padding: 22px;
  }

  .rc-ratings-hero__source-logo {
    width: 84px;
    height: 84px;
  }

  .rc-services-hero__copy > p:not(.eyebrow),
  .rc-map-hero p,
  .rc-vacancies-hero__copy > p:not(.eyebrow),
  .rc-samples-hero__copy > p:not(.eyebrow),
  .rc-reviews-hero__copy > p:not(.eyebrow),
  .rc-ratings-hero p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
  }

  .rc-map-hero p + p,
  .rc-ratings-hero p + p {
    margin-top: 12px;
  }

  .rc-map-hero__metrics div,
  .rc-services-hero__stats > div,
  .rc-vacancies-hero__panel,
  .rc-samples-hero__panel div {
    min-height: auto;
    padding: 16px;
  }

  .rc-blog-grid,
  .rc-services-grid,
  .rc-samples-columns,
  .rc-clients-grid,
  .rc-reviews-grid,
  .rc-team-grid,
  .rc-contacts-grid,
  .rc-facts-grid,
  .rc-map-content__grid,
  .rc-error-links,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .rc-blog-grid,
  .rc-blog-card {
    width: 100%;
  }

  .partners-head {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 24px;
  }

  .partners-head h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
  }

  .partners-head > p {
    font-size: 15px;
    line-height: 1.55;
  }

  .rc-blog-card,
  .rc-card,
  .rc-service-card,
  .rc-sample-card,
  .rc-client-card,
  .rc-review-card,
  .rc-team-card,
  .rc-contact-office,
  .rc-fact-card,
  .rc-map-content__grid article,
  .rc-error-links a {
    border-radius: 8px;
  }

  .rc-service-card__image,
  .rc-review-card__media {
    min-height: 190px;
  }

  .rc-blog-card__media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .rc-blog-card strong,
  .rc-service-card h3,
  .rc-review-card h3,
  .rc-samples-column h3,
  .rc-vacancy-card h3 {
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.12;
  }

  .rc-ratings-table,
  .rc-station-frequency-panel,
  .rc-blog-detail-content,
  .rc-service-detail-content,
  .rc-ratings-content,
  .rc-policy-content,
  .rc-facts-contact__form,
  .rc-samples-brief-form {
    padding: 22px;
    border-radius: 8px;
  }

  .rc-station-hero,
  .rc-city-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding: 24px 20px;
  }

  .rc-station-hero h1,
  .rc-city-hero h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .rc-station-lead,
  .rc-city-lead {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
  }

  .rc-station-actions,
  .rc-city-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .rc-station-actions .button,
  .rc-city-actions .button {
    width: 100%;
  }

  .rc-station-card {
    gap: 14px;
    padding: 20px;
  }

  .rc-station-card img {
    width: min(190px, 100%);
    max-height: 104px;
  }

  .rc-station-card-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rc-station-card-stats div {
    min-height: 64px;
    padding: 12px;
  }

  .rc-station-card .rc-station-hero-frequencies {
    grid-template-columns: 1fr;
    max-height: 222px;
    overflow: auto;
  }

  .rc-station-card .rc-station-hero-frequencies a {
    justify-content: flex-start;
    white-space: normal;
  }

  .rc-city-hero__copy {
    padding: 0;
  }

  .rc-city-hero__image {
    overflow: hidden;
    min-height: 190px;
    border-radius: 8px;
  }

  .rc-city-hero__image img {
    min-height: 190px;
  }

  .rc-city-facts {
    margin-top: 18px;
  }

  .rc-blog-detail-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rc-blog-detail-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .rc-blog-detail-hero__copy > p:not(.rc-blog-kicker) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
  }

  .rc-blog-detail-hero__media,
  .rc-blog-detail-hero__media img {
    min-height: 190px;
  }

  .rc-ratings-row {
    align-items: center;
    padding: 14px;
  }

  .rc-ratings-row__station img {
    width: 48px;
    max-height: 38px;
  }

  .rc-vacancy-card,
  .rc-review-detail,
  .rc-samples-section,
  .rc-samples-brief,
  .rc-vacancies-section,
  .rc-facts-section,
  .rc-facts-about,
  .rc-facts-social,
  .rc-facts-docs,
  .rc-facts-contact,
  .rc-facts-history,
  .rc-clients-section,
  .rc-reviews-section,
  .rc-reviews-cta,
  .coverage-section--map-page > .container,
  .rc-map-content,
  .rc-map-info {
    padding: 22px;
    border-radius: 8px;
  }

  .rc-samples-brief-form__quick {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rc-samples-brief-form input,
  .rc-samples-brief-form textarea,
  .rc-request-modal input,
  .rc-request-modal textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .rc-request-modal__dialog {
    width: min(100% - 24px, 520px);
    padding: 24px;
    border-radius: 8px;
  }

  .site-footer {
    padding: 36px 0 24px;
  }

  .footer-layout {
    gap: 24px;
  }
}

@media (max-width: 420px) {
  .rc-page,
  .rc-page-blog,
  .rc-blog-detail-page,
  .rc-stations-page,
  .rc-station-page,
  .rc-services-page,
  .rc-service-detail-page,
  .rc-samples-page,
  .rc-ratings-page,
  .rc-map-page,
  .rc-vacancies-page,
  .rc-facts-page,
  .rc-interaction-page,
  .rc-clients-page,
  .rc-reviews-page,
  .rc-review-detail-page,
  .rc-online-air-page,
  .rc-contacts-page,
  .rc-team-page,
  .rc-error-page {
    width: 100%;
  }

  .hero > .container,
  .coverage-section > .container,
  .header-container,
  .container {
    width: min(100% - 24px, 1180px);
  }

  .rc-breadcrumbs.container {
    padding-inline: 8px;
  }

  .rc-map-info h2 {
    overflow-wrap: anywhere;
  }

  .rc-page-blog > .container {
    width: 100%;
    margin-inline: 0;
    padding: 0;
  }

  .hero-card,
  .rc-blog-hero,
  .rc-blog-detail-hero,
  .rc-services-hero,
  .rc-service-detail-hero,
  .rc-samples-hero,
  .rc-ratings-hero,
  .rc-map-hero,
  .rc-vacancies-hero,
  .rc-facts-hero,
  .rc-clients-hero,
  .rc-reviews-hero,
  .rc-contacts-hero,
  .rc-error-hero,
  .rc-policy-hero {
    padding: 24px 20px;
  }
}
