:root {
    --primary: #0a2b5e;
    --primary-dark: #051d3f;
    --accent: #f5b042;
    --gray-bg: #f8fafc;
    --card-shadow: 0 20px 35px -10px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.02);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- КНОПКИ ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(10,43,94,0.2);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(10,43,94,0.25);
}

.btn-outline {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #1e293b;
}
.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(10,43,94,0.05);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: #1e293b;
}
.btn-accent:hover {
    background: #e09d2e;
    transform: translateY(-2px);
}

.btn, .btn:visited, .btn:hover, .btn:active,
.btn-primary, .btn-primary:visited, .btn-primary:hover, .btn-primary:active {
    text-decoration: none;
}
.btn-primary, .btn-primary:visited, .btn-primary:hover, .btn-primary:active {
    color: white;
}

/* ---------- НАВБАР (главная) ---------- */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid #eef2f6;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.9);
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.logo {
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo i {
    font-size: 32px;
    color: var(--primary);
}
.logo span {
    background: linear-gradient(135deg, var(--primary), #1e4a7a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.logo, .logo:visited, .logo:hover, .logo:active {
    text-decoration: none;
}

/* Меню навигации */
.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}
.nav-menu a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}
.nav-menu a:hover {
    color: var(--primary);
}
.nav-menu a:hover::after {
    width: 100%;
}
.nav-menu .menu-buttons {
    display: none;
}
.burger-icon {
    display: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary);
    background: none;
    border: none;
    padding: 0px;
}
.mobile-contact-btn {
    display: none;
}
.desktop-buttons {
    display: flex;
    gap: 12px;
}

/* Адаптивность меню */
@media (max-width: 800px) {
    .burger-icon {
        display: block;
        order: 2;
    }
    .desktop-buttons {
        display: none;
    }
    .mobile-contact-btn {
        display: inline-flex !important;
        padding: 8px 16px;
        font-size: 14px;
        gap: 6px;
        margin-right: 0px;
        color: white !important;
    }
    .nav-menu .menu-buttons .btn-primary {
        color: white !important;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 20px 20px;
        padding: 16px 24px;
        z-index: 150;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu a {
        padding: 12px 0;
        border-bottom: 1px solid #eef2f6;
        font-size: 18px;
    }
    .nav-menu a::after {
        display: none;
    }
    .nav-menu .menu-buttons {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin-top: 16px;
        justify-content: center;
    }
    .nav-menu .menu-buttons .btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 14px;
        white-space: nowrap;
    }
    .logo {
        font-size: 20px;
    }
    .logo i {
        font-size: 24px;
    }
}

/* ---------- ХЕДЕР ДЛЯ HELP.HTML (копия .navbar) ---------- */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #eef2f6;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.9);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ---------- HERO И СЕКЦИИ ГЛАВНОЙ (без изменений) ---------- */
.hero {
    padding: 30px 0 50px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0a2b5e, #2c5282);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-accent {
    color: var(--accent);
    border-bottom: 3px solid var(--accent);
}
.hero-desc {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}
.stat-item p {
    color: #475569;
}
.hero-card {
    background: linear-gradient(145deg, #eef2ff, #ffffff);
    border-radius: 40px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
}
.hero-card i {
    font-size: 80px;
    color: var(--primary);
}
.hero-card p {
    margin-top: 20px;
    font-weight: 600;
}

section {
    padding: 40px 0;
}
.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.who-section {
    background: linear-gradient(135deg, #fefce8, #ffffff);
}
.cards-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.card {
    background: white;
    border-radius: 32px;
    padding: 40px;
    transition: var(--transition);
    border: 1px solid #eef2f6;
    box-shadow: var(--card-shadow);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.1);
}
.card h3 {
    font-size: 28px;
    margin-bottom: 24px;
}
.feature-list {
    list-style: none;
}
.feature-list li {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: baseline;
}
.feature-list i {
    color: var(--primary);
    width: 24px;
}

.traffic-section {
    background: linear-gradient(135deg, #f1f5f9, #ffffff);
}
.compare-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.compare-bad-detailed, .compare-good-detailed {
    background: white;
    border-radius: 48px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}
.compare-bad-detailed h3, .compare-good-detailed h3 {
    font-size: 28px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.compare-bad-detailed h3 i {
    color: #e53e3e;
}
.compare-good-detailed h3 i {
    color: #2c7a4d;
}
.compare-bad-detailed ul, .compare-good-detailed ul {
    list-style: none;
}
.compare-bad-detailed li, .compare-good-detailed li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}
.compare-bad-detailed li i {
    width: 24px;
    color: #e53e3e;
}
.compare-good-detailed li i {
    width: 24px;
    color: #2c7a4d;
}

.calculator-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.calculator-main {
    flex: 2;
    min-width: 280px;
}
.calculator-sticky {
    flex: 1;
    position: sticky;
    top: 100px;
    align-self: start;
}
.calculator {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 48px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin-bottom: 0px;
}
.calc-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.calc-card {
    background: white;
    border-radius: 28px;
    padding: 24px;
    flex: 1;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    transition: var(--transition);
    text-align: center;
}
.calc-card.active {
    border-color: var(--primary);
    background: #fefce8;
    box-shadow: 0 8px 20px rgba(10,43,94,0.1);
}
.calc-card:hover {
    transform: translateY(-3px);
}
.calc-card .icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.calc-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}
.calc-card p {
    color: #64748b;
    font-size: 14px;
}
.slider-container {
    margin: 30px 0;
}
.slider-container label {
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}
input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: #e2e8f0;
    border-radius: 3px;
    outline: none;
}
input[type="range"]:focus {
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.monthly-hint {
    margin-top: 10px;
    font-size: 14px;
    color: #64748b;
    text-align: center;
}

.offer-block {
    background: linear-gradient(135deg, #ffffff, #fefce8);
    border-radius: 32px;
    padding: 32px;
    box-shadow: var(--card-shadow);
    border: 1px solid #eef2f6;
    text-align: center;
}
.offer-block .tariff-name {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary);
}
.offer-block .tariff-name strong {
    font-size: 20px;
    font-weight: 800;
}
.offer-block .price-block {
    background: #eef2ff;
    border-radius: 60px;
    padding: 12px 10px;
    margin: 16px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}
.offer-block .price-block span {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}
.offer-block .economy-block {
    background: #e6f7e6;
    border-radius: 60px;
    padding: 12px 10px;
    margin: 12px auto;
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #2c7a4d;
}
.offer-block .economy-block span {
    font-size: 32px;
    font-weight: 800;
}
.offer-block .per-click {
    font-size: 16px;
    color: #475569;
    margin-top: 8px;
}
.offer-block .btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.tariff-table-section {
    background: #ffffff;
}
.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
}
.tariff-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.tariff-table th, .tariff-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #eef2f6;
}
.tariff-table th {
    background: #f8fafc;
    font-weight: 600;
    color: var(--primary);
}
.tariff-table tr:last-child td {
    border-bottom: none;
}
.tariff-table td:first-child {
    font-weight: 600;
}

.packages-section {
    background: #f8fafc;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.package-card {
    background: white;
    border-radius: 32px;
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eef2f6;
    box-shadow: var(--card-shadow);
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}
.package-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}
.package-clicks {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.package-per-click {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 14px;
}
.package-card .btn {
    width: 100%;
    justify-content: center;
    padding: 10px;
    font-size: 14px;
}

.telegram-contact {
    background: white;
    border-radius: 32px;
    padding: 32px;
    text-align: center;
    margin: 40px auto 0px auto;
    max-width: 600px;
    box-shadow: var(--card-shadow);
}
.telegram-contact p {
    font-size: 18px;
    margin-bottom: 16px;
}
.telegram-contact .tg-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0088cc;
    color: white;
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.telegram-contact .tg-link:hover {
    background: #006699;
    transform: translateY(-2px);
}

.faq-section {
    background: #ffffff;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    margin-bottom: 16px;
    transition: var(--transition);
}
.faq-question {
    padding: 20px 28px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.faq-answer {
    padding: 0 28px 24px 28px;
    display: none;
    color: #475569;
    border-top: 1px solid #eef2f6;
}

.cta-section {
    background: linear-gradient(135deg, #fefce8, #ffffff);
}
.cta-panel {
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 48px;
    padding: 60px 40px;
    box-shadow: var(--card-shadow);
}
.cta-panel h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.cta-panel p {
    margin-bottom: 32px;
    font-size: 18px;
    color: #475569;
}
.canvas {
  max-width: 680px;
  width: 100%;
}

.bars-after rect {
  transform: scaleY(0);
  transform-origin: bottom;
  animation: growUp 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.1) forwards;
}

@keyframes growUp {
  0% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}

.bars-after rect:nth-child(1) { animation-delay: 0.2s; }
.bars-after rect:nth-child(2) { animation-delay: 0.4s; }
.bars-after rect:nth-child(3) { animation-delay: 0.6s; }
.bars-after rect:nth-child(4) { animation-delay: 0.8s; }

.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.founder-quote-section {
  padding: 60px 0;
  background: #f9fafb;
}

.founder-quote-block {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(10,43,94,0.08);
}

.founder-photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #0a2b5e;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-quote-content {
  flex: 1;
}

.founder-quote {
  font-size: 18px;
  line-height: 1.6;
  color: #1e293b;
  margin: 0 0 20px 0;
  font-style: italic;
  padding-left: 24px;
  border-left: 4px solid #0a2b5e;
}

.founder-name {
  font-size: 20px;
  font-weight: 700;
  color: #0a2b5e;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

.founder-links {
  display: flex;
  gap: 16px;
}

.founder-channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a2b5e;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 1px solid #0a2b5e;
}

.founder-channel:hover {
  background: #f8fafc;
  color: #0a2b5e;
  border: 1px solid #0a2b5e;
}

.channel-icon {
  font-size: 18px;
}

.animated {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 48px 0;
    text-align: center;
}
.footer p {
    margin: 0;
}

.main-content {
    flex: 1;
    padding: 40px 0;
}

.two-columns {
    display: flex;
    gap: 40px;
}

.sidebar {
    width: 260px;
    flex-shrink: 0;
}

.nav-card {
    background: white;
    border-radius: 24px;
    padding: 16px 8px;
    box-shadow: var(--card-shadow);
    border: 1px solid #eef2f6;
    position: sticky;
    top: 100px;
}

.nav-item {
    display: block;
    padding: 12px 16px;
    border-radius: 16px;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.nav-item:hover {
    background: #f1f5f9;
    color: var(--primary);
    text-decoration: none;
}

.nav-item.active {
    background: #eef2ff;
    color: var(--primary);
    font-weight: 600;
    border-left: 4px solid var(--primary);
}

.nav-item::before {
    content: "→";
    margin-right: 10px;
    opacity: 0.5;
    font-weight: 400;
    color: #64748b;
}

.nav-item.active::before {
    content: "●";
    color: var(--primary);
    opacity: 1;
}

.content {
    flex: 1;
    min-width: 0;
}

.article-card {
    background: white;
    border-radius: 32px;
    padding: 40px 48px;
    box-shadow: var(--card-shadow);
    border: 1px solid #eef2f6;
    min-height: 600px;
}

.article-card.loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card.loading::after {
    content: "Загрузка...";
    font-size: 1.2rem;
    color: var(--primary);
}

.article-card h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #0a1e33;
}

.article-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.article-card p {
    margin-bottom: 1.25rem;
    color: #334155;
}

.article-card p.ctr {
    text-align:center;
}

.article-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.article-card a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.article-card .table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.article-card table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.article-card th {
    background: #f8fafc;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
    border-bottom: 1px solid #cbd5e1;
    white-space: nowrap;
}

.article-card td {
    padding: 16px 20px;
    border-bottom: 1px solid #eef2f6;
    color: #334155;
}

.article-card tr:last-child td {
    border-bottom: none;
}

.article-card ul, .article-card ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #334155;
}

.article-card li {
    margin-bottom: 0.5rem;
}

.article-card img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin: 1.5rem 0.2rem;
    display: inline-block;
    vertical-align: middle;
}

.telegram-promo-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.promo-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #fefce8 100%);
    border-radius: 48px;
    padding: 48px 56px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(10, 43, 94, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 45px -12px rgba(10, 43, 94, 0.15);
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.promo-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0a2b5e, #1e4a7a);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 52px;
    box-shadow: 0 15px 25px -8px rgba(10, 43, 94, 0.3);
}

.promo-text {
    flex: 1;
    min-width: 280px;
}

.promo-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #0a2b5e, #1e4a7a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.promo-desc {
    font-size: 18px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 0;
}

.promo-desc a {
    color: #0a2b5e;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #f5b042;
}

.promo-desc a:hover {
    color: #051d3f;
}

.promo-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 260px;
}

.promo-actions .btn {
    justify-content: center;
    white-space: nowrap;
}

.promo-badge {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(10, 43, 94, 0.03);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.promo-badge span {
    display: block;
    transform: rotate(-5deg);
}
.switch-promo-section {
    padding: 50px 0;
    background: linear-gradient(145deg, #f0f5fe 0%, #ffffff 80%);
}

.switch-card {
    background: #ffffff;
    border-radius: 56px;
    padding: 48px 56px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(10, 43, 94, 0.08);
    position: relative;
    overflow: hidden;
}

.switch-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.switch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eef2ff;
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    border: 1px solid rgba(10, 43, 94, 0.1);
}

.switch-badge i {
    font-size: 18px;
}

.switch-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #0a1e33;
}

.switch-highlight {
    background: linear-gradient(135deg, #0a2b5e, #1e4a7a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 4px solid var(--accent);
    display: inline-block;
    padding-bottom: 4px;
}

.switch-desc {
    font-size: 18px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 32px;
}

.switch-actions {
    max-width: 400px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
}

.switch-note {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.switch-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.switch-circle {
    width: 280px;
    height: 280px;
    background: linear-gradient(145deg, #eef2ff, #ffffff);
    border-radius: 50%;
    box-shadow: 0 25px 40px -12px rgba(10, 43, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(10, 43, 94, 0.15);
}

.switch-inner {
    text-align: center;
}

.switch-percent {
    display: block;
    font-size: 64px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.switch-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #475569;
    margin-top: 8px;
}

.switch-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 48px;
    color: var(--primary);
    opacity: 0.2;
    transform: rotate(-15deg);
}

.price-match-section {
    padding: 50px 0;
    background: #ffffff;
}

.price-match-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 48px;
    padding: 48px 56px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(10, 43, 94, 0.08);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.price-match-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6f7e6;
    color: #2c7a4d;
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(44, 122, 77, 0.2);
}

.price-match-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #0a1e33;
}

.price-match-highlight {
    background: linear-gradient(135deg, #0a2b5e, #1e4a7a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 3px solid var(--accent);
}

.price-match-desc {
    font-size: 18px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 32px;
}

.price-match-guarantee {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
}

.guarantee-item i {
    color: #2c7a4d;
    font-size: 20px;
}

.price-match-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.comparison-badge {
    background: white;
    border-radius: 60px;
    padding: 20px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    width: 100%;
}

.old-price {
    display: block;
    font-size: 16px;
    color: #64748b;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.comparison-badge i {
    color: var(--accent);
    font-size: 24px;
    margin: 8px 0;
}

.new-price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #0a1e33;
}

.new-price strong {
    color: var(--primary);
    font-size: 22px;
}

.price-chart {
    max-width: 200px;
    height: auto;
}
.who-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.cards-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.card {
    background: #ffffff;
    border-radius: 48px;
    padding: 40px 36px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(10, 43, 94, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 45px -12px rgba(10, 43, 94, 0.15);
    border-color: rgba(10, 43, 94, 0.15);
}

.card-icon {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1;
}

.card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    color: #0a1e33;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #1e293b;
}

.feature-list i {
    color: var(--primary);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Акцентные детали */
.card-business {
    background: linear-gradient(145deg, #ffffff 0%, #f0f5fe 100%);
}

.card-agency {
    background: linear-gradient(145deg, #ffffff 0%, #fefce8 100%);
}

.card-business .feature-list i {
    color: #0a2b5e;
}

.card-agency .feature-list i {
    color: #f5b042;
}
.traffic-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f5fe 0%, #ffffff 100%);
}

.compare-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.compare-card {
    background: #ffffff;
    border-radius: 48px;
    padding: 40px 36px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(10, 43, 94, 0.08);
    transition: var(--transition);
}

.compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 45px -12px rgba(10, 43, 94, 0.15);
    border-color: rgba(10, 43, 94, 0.15);
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.compare-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: #f1f5f9;
    color: #0a2b5e;
}

.compare-card.compare-bad .compare-icon {
    background: #fee2e2;
    color: #dc2626;
}

.compare-card.compare-good .compare-icon {
    background: #dcfce7;
    color: #16a34a;
}

.compare-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #0a1e33;
    letter-spacing: -0.02em;
}

.compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.compare-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #1e293b;
}

.compare-list i {
    width: 24px;
    font-size: 20px;
    text-align: center;
}

.compare-bad .compare-list i {
    color: #dc2626;
}

.compare-good .compare-list i {
    color: #16a34a;
}
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fefce8 0%, #ffffff 100%);
}

.cta-panel {
    background: #ffffff;
    border-radius: 56px;
    padding: 56px 60px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(10, 43, 94, 0.08);
    transition: var(--transition);
}

.cta-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 45px -12px rgba(10, 43, 94, 0.15);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eef2ff;
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    border: 1px solid rgba(10, 43, 94, 0.1);
}

.cta-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #0a1e33;
}

.cta-desc {
    font-size: 18px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-actions .btn-large {
    margin-bottom: 24px;
}

.cta-note {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    margin: 0;
}

.cta-note i {
    color: var(--accent);
    margin-right: 6px;
}

.cta-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(10, 43, 94, 0.2);
}

.cta-note a:hover {
    border-bottom-color: var(--primary);
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-illustration {
    display: flex;
    gap: 20px;
}

.cta-illustration i {
    font-size: 48px;
    color: var(--primary);
    background: #eef2ff;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    box-shadow: 0 15px 25px -8px rgba(10, 43, 94, 0.1);
    transition: var(--transition);
}

.cta-illustration i:hover {
    transform: scale(1.05);
    background: var(--primary);
    color: white;
}
.tariff-table-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.tariff-card {
    background: #ffffff;
    border-radius: 48px;
    padding: 40px 36px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(10, 43, 94, 0.08);
    transition: var(--transition);
}

.tariff-card:hover {
    box-shadow: 0 30px 45px -12px rgba(10, 43, 94, 0.15);
    border-color: rgba(10, 43, 94, 0.15);
}

.table-responsive {
    overflow-x: auto;
    margin: 0;
    border-radius: 24px;
}

.tariff-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 16px;
}

.tariff-table th {
    text-align: left;
    padding: 20px 24px;
    background: #f1f5f9;
    color: #0a2b5e;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.tariff-table th:first-child {
    border-top-left-radius: 24px;
}

.tariff-table th:last-child {
    border-top-right-radius: 24px;
}

.tariff-table td {
    padding: 18px 24px;
    border-bottom: 1px solid #eef2f6;
    color: #1e293b;
    font-weight: 500;
}

.tariff-table tr:last-child td {
    border-bottom: none;
}

.tariff-table tbody tr:hover {
    background: #fafbfc;
}

.tariff-table td:first-child {
    font-weight: 600;
}

.tariff-table td:last-child {
    font-weight: 700;
    color: #0a2b5e;
}
.help-video {
    margin: 20px 0 40px;
    max-width: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: #0a1e33;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* или contain, если хотите видеть все без обрезки */
    display: block;
    outline: none;
    border-radius: 24px;
}

.help-video .video-caption {
    text-align: center;
    margin: 16px 0 8px;
    font-size: 16px;
    color: #334155;
    font-weight: 500;
}

.help-video .video-caption i {
    color: var(--primary);
    margin-right: 6px;
}
.help-video .video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: #0a1e33;
    line-height: 0;
    width: 100%;
}
.help-video .video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    outline: none;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    background: #0a1e33;
    border-radius: 24px;
    transition: border-radius 0.1s ease;
}
.help-video .video-wrapper video:fullscreen {
    border-radius: 0;
    object-fit: contain;
}
.help-video .video-wrapper {
    background-image: url('/docs/video/help-poster.png');
    background-size: cover;
    background-position: center;
}

/* ========== ГАРАНТИРОВАННАЯ ИДЕНТИЧНОСТЬ ЛОГОТИПА ========== */
.navbar .logo span,
.header .logo span,
.logo span {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 800 !important;
    font-size: 28px;
    letter-spacing: normal !important;
    background: linear-gradient(135deg, #0a2b5e, #1e4a7a) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* ---------- АДАПТИВНОСТЬ ---------- */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .promo-card {
        padding: 40px 30px;
    }
    .promo-content {
        gap: 30px;
    }
    .promo-title {
        font-size: 30px;
    }
    .promo-icon {
        width: 80px;
        height: 80px;
        font-size: 42px;
        border-radius: 24px;
    }
    .switch-card,
    .price-match-card {
        padding: 40px 30px;
        border-radius: 40px;
    }
    .switch-title {
        font-size: 36px;
    }
    .price-match-title {
        font-size: 34px;
    }
    .switch-circle {
        width: 240px;
        height: 240px;
    }
    .switch-percent {
        font-size: 52px;
    }
    .cta-panel {
        padding: 40px 35px;
        border-radius: 40px;
    }
    .cta-title {
        font-size: 36px;
    }
    .cta-illustration i {
        width: 70px;
        height: 70px;
        font-size: 36px;
        border-radius: 24px;
    }
}
@media (min-width: 801px) {
    .header .burger-icon,
    .header .mobile-contact-btn,
    .header .nav-menu {
        display: none !important;
    }
}
@media (max-width: 800px) {
    .hero-grid, .cards-2col, .compare-detailed {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 36px;
    }
    section {
        padding: 20px 0;
    }
    .calculator-wrapper {
        flex-direction: column;
    }
    .calculator-sticky {
        position: static;
        margin-top: 24px;
    }
    .tariff-table th, .tariff-table td {
        padding: 12px;
        font-size: 14px;
    }
    .telegram-contact {
        margin: 20px auto 60px auto;
    }
    .offer-block .price-block span {
        font-size: 22px;
        font-weight: 800;
        color: var(--primary);
    }
    .stat-item {
        margin: auto;
    }
    .hero-buttons a {
        margin: auto;
    }
    .card h3 {
        font-size: 24px;
        text-align: center;
    }
    .section-title {
        font-size: 30px;
    }
    .compare-bad-detailed h3, .compare-good-detailed h3 {
        font-size: 24px;
    }
    .offer-block .economy-block span {
        font-size: 22px;
    }
    .offer-block .economy-block {
        width:100%;
    }
    .logo span {
        font-size: 18px !important;
    }
    .two-columns .sidebar {
        display: none;
    }

    .two-columns .content {
        width: 100%;
    }

    .article-card {
        padding: 24px 16px;
    }

    .article-card h1 {
        font-size: 2rem;
    }

    .article-card .table-wrapper {
        margin: 1.5rem -16px;
        width: calc(100% + 32px);
        border-radius: 0;
    }

    /* Показываем бургер-иконку */
    .header .burger-icon {
        display: block !important;
    }

    /* Мобильная кнопка "Войти" в шапке */
    .header .mobile-contact-btn {
        display: inline-flex !important;
    }

    /* Скрываем десктопные кнопки */
    .header .desktop-buttons {
        display: none !important;
    }

    /* Стили выпадающего меню */
    .header .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 20px 20px;
        padding: 16px 24px;
        z-index: 150;
    }

    .header .nav-menu.active {
        display: flex;
    }

    /* Пункты меню внутри мобильной версии */
    .header .nav-menu .nav-item {
        padding: 12px 0;
        border-bottom: 1px solid #eef2f6;
        border-radius: 0;
        font-size: 1rem;
        text-align: left;
    }

    .header .nav-menu .nav-item.active {
        border-left: none;
        background: transparent;
        color: var(--primary);
    }

    .header .nav-menu .nav-item::before {
        content: "→";
        margin-right: 10px;
        opacity: 0.5;
        color: #64748b;
    }

    .header .nav-menu .nav-item.active::before {
        content: "●";
        color: var(--primary);
        opacity: 1;
    }

    .header .nav-menu .menu-buttons {
        display: flex;
        gap: 12px;
        margin-top: 20px;
        justify-content: center;
    }

    .header .nav-menu .menu-buttons .btn {
        flex: 1;
        justify-content: center;
    }
    .switch-grid,
    .price-match-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .switch-visual,
    .price-match-visual {
        order: -1;
    }
    .switch-actions {
        max-width: 100%;
    }
    .cards-2col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .card {
        padding: 32px 24px;
        border-radius: 36px;
    }
    .card h3 {
        font-size: 28px;
    }
    .compare-detailed {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .compare-card {
        padding: 32px 24px;
        border-radius: 36px;
    }
    .compare-header h3 {
        font-size: 24px;
    }
    .compare-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cta-visual {
        order: -1;
    }
    .cta-illustration {
        gap: 15px;
    }
    .tariff-card {
        padding: 24px 20px;
        border-radius: 36px;
    }
    .tariff-table th,
    .tariff-table td {
        padding: 14px 16px;
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .two-columns {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .article-card {
        padding: 24px 20px;
    }
    .article-card h1 {
        font-size: 2rem;
    }
    .logo {
        font-size: 22px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .founder-quote-block {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .founder-quote {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }
    .founder-links {
        justify-content: center;
    }
}
@media (max-width: 700px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    .promo-actions {
        width: 100%;
    }
    .promo-actions .btn {
        white-space: normal;
    }
    .promo-badge {
        font-size: 80px;
        bottom: 10px;
        right: 15px;
    }
   .help-video {
        margin: 10px 0 30px;
    }
    .video-container {
        border-radius: 16px;
    }
    .help-video .video-caption {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .promo-card {
        padding: 30px 20px;
        border-radius: 32px;
    }
    .promo-title {
        font-size: 26px;
    }
    .promo-desc {
        font-size: 16px;
    }
    .promo-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
        border-radius: 20px;
    }
    .switch-card,
    .price-match-card {
        padding: 30px 20px;
        border-radius: 32px;
    }
    .switch-title,
    .price-match-title {
        font-size: 28px;
    }
    .switch-desc,
    .price-match-desc {
        font-size: 16px;
    }
    .switch-circle {
        width: 200px;
        height: 200px;
    }
    .switch-percent {
        font-size: 44px;
    }
    .comparison-badge {
        padding: 15px 20px;
    }
    .who-section {
        padding: 40px 0;
    }
    .card {
        padding: 28px 20px;
        border-radius: 32px;
    }
    .card-icon {
        font-size: 44px;
    }
    .card h3 {
        font-size: 26px;
    }
    .feature-list li {
        font-size: 16px;
    }
    .traffic-section {
        padding: 40px 0;
    }
    .compare-card {
        padding: 28px 20px;
        border-radius: 32px;
    }
    .compare-header {
        gap: 12px;
    }
    .compare-header h3 {
        font-size: 22px;
    }
    .compare-list li {
        font-size: 16px;
    }
    .cta-section {
        padding: 40px 0;
    }
    .cta-panel {
        padding: 30px 20px;
        border-radius: 32px;
    }
    .cta-title {
        font-size: 28px;
    }
    .cta-desc {
        font-size: 16px;
    }
    .cta-illustration i {
        width: 60px;
        height: 60px;
        font-size: 30px;
        border-radius: 20px;
    }
    .tariff-table-section {
        padding: 40px 0;
    }
    .tariff-card {
        padding: 20px 16px;
        border-radius: 32px;
    }
    .tariff-table th,
    .tariff-table td {
        padding: 12px 12px;
        font-size: 14px;
    }
}
@media (max-width: 500px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.logo-img {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 800px) {
    .logo-img img {
        width: 150px;
    }
}
/* ---------- ЮРИДИЧЕСКИЙ ПОДВАЛ (РКН / 152-ФЗ) ---------- */
.footer .footer-legal-links{margin:0 0 10px;font-size:14px;line-height:1.8}
.footer .footer-legal-links a{color:#93c5fd;text-decoration:none;font-weight:500}
.footer .footer-legal-links a:hover{color:#fff;text-decoration:underline}
.footer .footer-legal-links .sep{color:#475569;margin:0 8px}
.footer .footer-operator{margin:0 0 10px;font-size:13px;color:#94a3b8}
.footer .footer-operator .tc-fill{background:#fff3cd;color:#7a5b00;padding:1px 6px;border-radius:6px;font-weight:600}
