/* ============================================================
   СТАНКИ-РЕКЛАМА — главная таблица стилей
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

/* ---- ПЕРЕМЕННЫЕ ------------------------------------------- */
:root {
  --orange:        #f59e0b;
  --orange-dk:     #d97706;
  --orange-glow:   #fbbf24;
  --blue:          hsl(214,72%,40%);
  --blue-bright:   hsl(214,80%,50%);
  --blue-dark:     hsl(214,72%,28%);
  --steel:         hsl(214,18%,78%);
  --bg:            hsl(40,20%,97%);
  --text:          hsl(216,28%,12%);
  --muted-bg:      hsl(40,15%,93%);
  --muted-text:    hsl(216,14%,42%);
  --card-bg:       #ffffff;
  --border:        hsl(214,18%,86%);
  --dark-surface:  hsl(216,26%,14%);

  --grad-orange:   linear-gradient(135deg,#f59e0b,#d97706);
  --grad-blue:     linear-gradient(135deg,hsl(214,80%,50%),hsl(214,72%,28%));
  --shadow-orange: 0 8px 32px -4px rgba(245,158,11,.35);
  --shadow-blue:   0 8px 32px -4px rgba(30,82,160,.35);
  --shadow-card:   0 2px 16px -2px rgba(20,40,80,.10);
}

/* ---- СБРОС И БАЗА ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---- ТИПОГРАФИЯ ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
}

.section-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--orange);
}

.section-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--text);
}

.section-header { margin-bottom: 3.5rem; }
.section-header .label-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.section-header .label-row .line {
  width: 3rem;
  height: 1px;
  background: var(--grad-blue);
  flex-shrink: 0;
}
.section-header .lead {
  color: var(--muted-text);
  max-width: 42rem;
  margin-top: .75rem;
  line-height: 1.65;
}

/* ---- СЕТКА ------------------------------------------------ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- КНОПКИ ----------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--grad-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all .2s;
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px -4px rgba(245,158,11,.55);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid var(--orange);
  color: var(--orange);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all .2s;
}
.btn-outline:hover { background: rgba(245,158,11,.1); }

/* ---- КАРТОЧКИ --------------------------------------------- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: 2px;
  transition: border-color .3s, box-shadow .3s;
}
.card:hover {
  border-color: rgba(30,82,160,.4);
  box-shadow: 0 8px 32px -4px rgba(30,82,160,.15);
}
.card-top-accent { position: relative; overflow: hidden; }
.card-top-accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-blue);
}

/* ---- STAT NUMBER ------------------------------------------ */
.stat-number {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

/* ---- DIAGONAL ACCENT -------------------------------------- */
.diagonal-accent {
  position: relative;
  padding-left: 1.25rem;
}
.diagonal-accent::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-blue);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 4rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(247,246,243,.97);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Лого */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.logo-icon {
  width: 2rem; height: 2rem;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon span {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  color: #fff;
}
.logo-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
}
.logo-text .accent { color: var(--orange); }

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-desktop a {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted-text);
  transition: color .2s;
}
.nav-desktop a:hover { color: var(--text); }

/* Header contacts */
.header-contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: var(--muted-text);
  transition: color .2s;
}
.header-phone:hover { color: var(--text); }
.header-phone svg { color: var(--orange); }

/* Burger */
.burger {
  display: none;
  padding: .5rem;
  color: var(--muted-text);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 4rem; left: 0; right: 0;
  z-index: 99;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: .75rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-text);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .nav-mobile-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .25rem;
}
.nav-mobile .nav-mobile-phone svg { color: var(--orange); }

@media (max-width: 768px) {
  .nav-desktop, .header-contacts { display: none; }
  .burger { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  overflow: hidden;
  background: hsl(214,55%,14%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .1;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    hsl(214,55%,12%/.98) 0%,
    hsl(214,55%,18%/.92) 60%,
    hsl(214,55%,12%/.98) 100%);
}
.hero-bg-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-orange);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image:
    linear-gradient(hsl(210,100%,90%) 1px, transparent 1px),
    linear-gradient(90deg, hsl(210,100%,90%) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  max-width: 52rem;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero-label .line { width: 3rem; height: 1px; background: var(--grad-blue); }
.hero-label span {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--orange);
}
.hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--orange); }
.hero-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: hsl(210,40%,88%);
  max-width: 40rem;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(210,30%,35%);
}
.hero-stat .stat-number { font-size: 2rem; }
.hero-stat p {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: hsl(210,30%,78%);
  margin-top: .25rem;
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   LOGO CAROUSEL
   ============================================================ */
.logo-carousel-section {
  background: var(--dark-surface);
  padding: 2.5rem 0;
  overflow: hidden;
}
.logo-carousel-label {
  text-align: center;
  margin-bottom: 1.5rem;
}
.logo-track-wrap {
  position: relative;
  overflow: hidden;
}
.logo-track-wrap::before,
.logo-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}
.logo-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-surface), transparent);
}
.logo-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-surface), transparent);
}
.logo-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
.logo-item {
  flex-shrink: 0;
  width: 160px; height: 100px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item img { max-width: 100%; max-height: 100%; object-fit: contain; }

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ============================================================
   CHANNELS
   ============================================================ */
.channels-section { padding: 5rem 0; }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.channel-card {
  padding: 2rem;
  position: relative;
}
.channel-num {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: .1;
  color: var(--blue-bright);
}
.channel-icon {
  width: 3rem; height: 3rem;
  background: rgba(30,82,160,.18);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.channel-icon svg { width: 1.5rem; height: 1.5rem; color: var(--blue-bright); }
.channel-sub {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--orange);
  margin-bottom: .25rem;
}
.channel-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.channel-desc {
  font-size: .875rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.channel-features {
  margin-bottom: 1.5rem;
}
.channel-features li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: var(--muted-text);
  margin-bottom: .5rem;
}
.channel-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.channel-badge {
  display: inline-block;
  padding: .375rem .75rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: rgba(245,158,11,.12);
  color: var(--orange);
  border-radius: 2px;
}

@media (max-width: 900px) { .channels-grid { grid-template-columns: 1fr; } }

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience-section {
  padding: 5rem 0;
  background: var(--muted-bg);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.audience-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  padding-left: 2.5rem;
  transition: border-color .3s;
}
.audience-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-blue);
  border-radius: 2px 0 0 2px;
}
.audience-card:hover { border-color: rgba(30,82,160,.4); }
.audience-icon {
  width: 3rem; height: 3rem;
  background: rgba(30,82,160,.15);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.audience-icon svg { width: 1.5rem; height: 1.5rem; color: var(--blue-bright); }
.audience-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: .75rem;
  line-height: 1.3;
}
.audience-desc {
  font-size: .875rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.audience-channels-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--orange);
  margin-bottom: .5rem;
}
.audience-channels li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted-text);
  margin-bottom: .3rem;
}
.audience-channels li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how-section {
  padding: 5rem 0;
  background: var(--muted-bg);
}
.steps-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.steps-list::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.step-circle {
  position: relative;
  flex-shrink: 0;
  width: 4rem; height: 4rem;
  border-radius: 50%;
  border: 2px solid var(--blue-bright);
  background: var(--card-bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.step-circle span {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  color: var(--blue-bright);
}
.step-body { flex: 1; padding-bottom: 1.5rem; }
.step-body h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.step-body p { font-size: .9375rem; color: var(--muted-text); line-height: 1.65; }

@media (max-width: 600px) {
  .steps-list::before { display: none; }
  .step-item { flex-direction: column; gap: .75rem; }
}

/* ============================================================
   RESULTS
   ============================================================ */
.results-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: radial-gradient(var(--blue-bright) 1px, transparent 1px);
  background-size: 32px 32px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.result-card {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
.result-card .result-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: .5rem 0 .25rem;
}
.result-card .result-sub {
  font-size: .75rem;
  color: var(--muted-text);
}
.results-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 2px;
  background: rgba(30,82,160,.1);
  border: 1px solid rgba(30,82,160,.4);
}
.results-cta h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.results-cta p { font-size: .875rem; color: var(--muted-text); }

@media (max-width: 700px) { .results-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   CASES (аккордеон)
   ============================================================ */
.cases-section { padding: 5rem 0; }
.cases-list { display: flex; flex-direction: column; gap: 1rem; }

.case-item {
  border-radius: 2px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(30,82,160,.15);
}

.case-toggle {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: none;
  cursor: pointer;
  transition: background .2s;
}
.case-toggle:hover { background: rgba(255,255,255,.05); }

.case-num {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(30,82,160,.25);
  flex-shrink: 0;
  margin-top: 2px;
  user-select: none;
}
.case-head { flex: 1; min-width: 0; }
.case-tag {
  display: inline-block;
  padding: .25rem .75rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: rgba(30,82,160,.18);
  color: var(--blue-bright);
  border-radius: 2px;
  margin-bottom: .75rem;
}
.case-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: .75rem;
  color: var(--text);
  padding-right: 1rem;
}
.case-preview {
  font-size: .875rem;
  color: var(--muted-text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-metric-preview {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  margin-top: .75rem;
}
.case-chevron {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--blue-bright);
  transition: transform .3s;
}
.case-item.open .case-chevron { transform: rotate(180deg); }

/* Expanded body */
.case-body {
  display: none;
  padding: 0 2rem 2rem;
}
.case-item.open .case-body { display: block; }
.case-divider {
  height: 1px;
  background: rgba(30,82,160,.15);
  margin-bottom: 1.75rem;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.case-block-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-bright);
  margin-bottom: .5rem;
}
.case-block p {
  font-size: .875rem;
  color: var(--muted-text);
  line-height: 1.6;
}
.case-steps {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.case-step {
  display: flex;
  gap: .75rem;
  font-size: .875rem;
}
.case-step-num {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: var(--blue-bright);
  flex-shrink: 0;
}
.case-step p { color: var(--muted-text); line-height: 1.55; }
.case-step strong { color: var(--text); }

.case-results-box {
  padding: 1.25rem;
  border-radius: 2px;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.25);
  margin-bottom: 1.5rem;
}
.case-results-box .case-block-label { color: var(--orange); }
.case-results-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.case-results-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
}
.case-results-list li::before {
  content: '✓';
  color: var(--orange);
  flex-shrink: 0;
}
.case-metric-big {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--orange);
  margin-top: 1rem;
}

@media (max-width: 700px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-toggle { padding: 1.25rem; }
  .case-body { padding: 0 1.25rem 1.5rem; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section {
  padding: 5rem 0;
  background: var(--muted-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-box {
  padding: 1rem;
  border-radius: 2px;
  background: var(--card-bg);
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.contact-info-box svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-info-box .label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted-text);
  margin-bottom: .25rem;
}
.contact-info-box a, .contact-info-box span {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: var(--text);
}
.contact-perks {
  padding: 1.25rem;
  border-radius: 2px;
  background: rgba(30,82,160,.1);
  border: 1px solid rgba(30,82,160,.35);
  margin-top: 2rem;
}
.contact-perks .contact-perks-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--blue-bright);
  margin-bottom: .5rem;
}
.contact-perks li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--muted-text);
  margin-bottom: .35rem;
}
.contact-perks li::before {
  content: '';
  width: .875rem; height: .875rem;
  border-radius: 50%;
  border: 1px solid var(--orange);
  flex-shrink: 0;
  background: rgba(245,158,11,.15);
}

/* Form */
.contact-form-card { padding: 2rem; }
.form-note {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted-text);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted-text);
  margin-bottom: .375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: .875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-group textarea { resize: none; }
.form-checkboxes { margin-bottom: 1rem; }
.form-check {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  cursor: pointer;
}
.form-check input[type=checkbox] {
  width: 1rem; height: 1rem;
  accent-color: var(--orange);
  flex-shrink: 0;
}
.form-check span { font-size: .875rem; color: var(--muted-text); }
.form-submit { width: 100%; justify-content: center; margin-top: .5rem; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-top: .75rem;
  cursor: pointer;
}
.form-consent input[type=checkbox] {
  width: 1rem; height: 1rem;
  accent-color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-consent span {
  font-size: .75rem;
  color: var(--muted-text);
  line-height: 1.5;
}
.form-consent a { color: var(--orange); text-decoration: underline; }
.form-error {
  font-size: .875rem;
  color: #ef4444;
  text-align: center;
  margin-bottom: .75rem;
  display: none;
}
.form-error.visible { display: block; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-text);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--text); }
.footer-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--muted-text);
  transition: color .2s;
}
.footer-phone:hover { color: var(--text); }
.footer-phone svg { color: var(--orange); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .8rem;
  color: var(--muted-text);
}
.footer-bottom a { color: var(--muted-text); text-decoration: underline; }

/* ============================================================
   STICKY TELEGRAM BUTTON
   ============================================================ */
.sticky-tg {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}
.sticky-tg-tooltip {
  position: relative;
  padding: .5rem 1rem;
  background: var(--card-bg);
  border: 1px solid rgba(245,158,11,.4);
  border-radius: 2px;
  font-size: .75rem;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.sticky-tg-close {
  position: absolute;
  top: -8px; right: -8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--muted-text);
  font-size: .75rem;
  line-height: 1;
}
.sticky-tg-btn {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--grad-blue);
  box-shadow: var(--shadow-blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .2s;
}
.sticky-tg-btn:hover { transform: scale(1.1); }
.sticky-tg-btn svg { width: 1.5rem; height: 1.5rem; }

/* ============================================================
   УТИЛИТЫ
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
