/* ================================================
   ОСНОВНЫЕ СТИЛИ И СБРОС
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.75;
    color: #1a1a2e;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    font-size: 16px;
    letter-spacing: 0.01em;
}

/* Вариант body с flex-контейнером для полной высоты */
body.flex-layout {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ================================================
   ШАПКА САЙТА (HEADER)
   ================================================ */

header {
    background: linear-gradient(135deg, #0c1929 0%, #1a365d 50%, #234e70 100%);
    color: white;
    padding: 18px 0;
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.15),
        0 1px 0 rgba(255,255,255,0.05) inset;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.9;
}

/* Вариант logo с иконкой */
.logo.with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ================================================
   НАВИГАЦИЯ
   ================================================ */

nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin-left: 28px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    padding-bottom: 3px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #38bdf8);
    transition: width 0.25s ease;
}

nav a:hover {
    color: #ffffff;
}

nav a:hover::after {
    width: 100%;
}

/* ================================================
   HERO СЕКЦИЯ
   ================================================ */

.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 50%, #0ea5e9 100%);
    color: white;
    padding: 90px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 22px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    position: relative;
    text-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.hero p {
    font-size: 19px;
    opacity: 0.95;
    max-width: 750px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
    font-weight: 400;
}

/* Вариант hero с расширенным контейнером */
.hero.wide {
    max-width: 900px;
}

.hero.wide p {
    max-width: 900px;
}

/* Вариация hero - синяя тема */
.hero.blue-theme {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}

/* Вариация hero - темно-синяя тема */
.hero.dark-blue-theme {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
}

/* Вариация hero - британская тема (красно-синяя) */
.hero.uk-theme {
    background: linear-gradient(135deg, #1e3a5f 0%, #00247d 50%, #c41e3a 100%);
}

/* Вариация hero - золотая тема */
.hero.gold-theme {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #1a1a2e;
}

/* Вариация hero - зеленая тема */
.hero.green-theme {
    background: linear-gradient(135deg, #047857 0%, #10b981 50%, #34d399 100%);
}

/* Вариация hero - океан */
.hero.ocean-theme {
    background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 50%, #0ea5e9 100%);
}

/* Вариация hero - тропики */
.hero.tropical-theme {
    background: linear-gradient(135deg, #065f46 0%, #0d9488 50%, #2dd4bf 100%);
}

/* Вариация hero - закат */
.hero.sunset-theme {
    background: linear-gradient(135deg, #9f1239 0%, #f43f5e 50%, #fda4af 100%);
}

/* Вариация hero - пустыня */
.hero.desert-theme {
    background: linear-gradient(135deg, #78350f 0%, #d97706 50%, #fbbf24 100%);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
}

.hero-stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #fcd34d;
    text-shadow: 0 2px 20px rgba(252, 211, 77, 0.3);
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    font-weight: 500;
}

/* ================================================
   КОНТЕЙНЕРЫ И СЕКЦИИ
   ================================================ */

.container {
    max-width: 1000px;
    margin: -60px auto 60px;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Вариант контейнера расширенный */
.container.wide {
    max-width: 1100px;
}

section {
    background: #ffffff;
    margin-bottom: 40px;
    padding: 55px;
    border-radius: 16px;
    box-shadow: 
        0 4px 6px rgba(0,0,0,0.02),
        0 12px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

section:hover {
    box-shadow: 
        0 4px 6px rgba(0,0,0,0.02),
        0 20px 50px rgba(0,0,0,0.08);
}

/* ================================================
   ЗАГОЛОВКИ
   ================================================ */

h2 {
    color: #1e3a5f;
    font-size: 30px;
    margin-bottom: 28px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
}

/* Вариант h2 с меньшим размером и тонкой границей */
h2.compact {
    font-size: 28px;
    border-bottom: 1px solid #e5e7eb;
}

/* Вариант h2 - британская тема */
h2.uk-theme {
    color: #00247d;
}

h2.uk-theme::after {
    background: linear-gradient(90deg, #00247d, #cf142b);
}

/* Вариант h2 - золотая тема */
h2.gold-theme {
    color: #1a1a2e;
    border-bottom: 2px solid #fcd34d;
}

h2.gold-theme::after {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

/* Вариант h2 - зеленая тема */
h2.green-theme {
    color: #065f46;
}

h2.green-theme::after {
    background: linear-gradient(90deg, #10b981, #34d399);
}

/* Вариант h2 - океан тема */
h2.ocean-theme {
    color: #0c4a6e;
}

h2.ocean-theme::after {
    background: linear-gradient(90deg, #0284c7, #0ea5e9);
}

h3 {
    color: #3b82f6;
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* Вариант h3 с меньшим размером и bold */
h3.compact {
    font-size: 20px;
    font-weight: 700;
}

/* Вариант h3 - британская тема */
h3.uk-theme {
    color: #c41e3a;
}

/* Вариант h3 - золотая тема */
h3.gold-theme {
    color: #b45309;
}

/* Вариант h3 - зеленая тема */
h3.green-theme {
    color: #059669;
}

/* Вариант h3 - океан тема */
h3.ocean-theme {
    color: #0284c7;
}

/* ================================================
   БЛОКИ ПРЕДУПРЕЖДЕНИЙ
   ================================================ */

.alert-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 5px solid #ef4444;
    padding: 28px;
    margin: 32px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 12px rgba(239, 68, 68, 0.08);
}

/* Компактный вариант alert-box */
.alert-box.compact {
    border-left: 4px solid #dc2626;
    padding: 22px;
    margin: 24px 0;
    border-radius: 0 10px 10px 0;
}

/* Вариант alert-box - британская тема */
.alert-box.uk-theme {
    border-left: 5px solid #c41e3a;
}

/* Вариант alert-box - зеленая тема */
.alert-box.green-theme {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 5px solid #10b981;
}

.alert-box h3 {
    color: #b91c1c;
    margin-top: 0;
}

/* ================================================
   БЛОКИ ПРЕДУПРЕЖДЕНИЙ (WARNING BOX)
   ================================================ */

.warning-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 4px solid #dc2626;
    padding: 22px;
    margin: 24px 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.08);
}

/* ================================================
   ИНФОРМАЦИОННЫЕ БЛОКИ
   ================================================ */

.info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0ea5e9;
    padding: 22px;
    margin: 24px 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 12px rgba(14, 165, 233, 0.08);
}

/* Вариант info-box с другим цветом */
.info-box.alt {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #3b82f6;
}

/* ================================================
   БЛОКИ ВЫДЕЛЕНИЯ
   ================================================ */

.highlight-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #10b981;
    padding: 22px;
    margin: 24px 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.08);
}

/* ================================================
   ЦЕНОВЫЕ БЛОКИ
   ================================================ */

.price-breakdown {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 35px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    transition: background 0.2s ease;
}

.price-row:hover {
    background: rgba(255,255,255,0.6);
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
}

.price-row:last-child {
    border-bottom: none;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 3px solid #1e3a5f;
    font-weight: 700;
    font-size: 22px;
    color: #b91c1c;
    background: transparent;
}

/* ================================================
   КАРТОЧКИ РЕЗУЛЬТАТОВ
   ================================================ */

.findings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin: 35px 0;
}

.finding-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.02),
        0 8px 25px rgba(0,0,0,0.06);
    border-top: 4px solid #ef4444;
    transition: all 0.3s ease;
}

.finding-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.04),
        0 15px 40px rgba(0,0,0,0.1);
}

.percentage {
    font-size: 40px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 8px;
    line-height: 1;
}

/* ================================================
   ЮРИДИЧЕСКИЕ КЕЙСЫ
   ================================================ */

.legal-cases {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    padding: 28px;
    border-radius: 14px;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.1);
}

.legal-case {
    margin: 18px 0;
    padding: 18px;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.legal-case:hover {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.case-amount {
    color: #059669;
    font-weight: 800;
    font-size: 19px;
}

/* ================================================
   CTA СЕКЦИЯ
   ================================================ */

.cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 65px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Вариант CTA с отступом сверху */
.cta-section.with-margin {
    margin-top: 45px;
}

/* Вариант CTA - британская тема */
.cta-section.uk-theme {
    background: linear-gradient(135deg, #00247d 0%, #1e3a5f 50%, #00247d 100%);
}

/* Вариант CTA - золотая тема */
.cta-section.gold-theme {
    background: linear-gradient(135deg, #1a1a2e 0%, #374151 100%);
}

/* Вариант CTA - зеленая тема */
.cta-section.green-theme {
    background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%);
}

.cta-section h2 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.15);
    position: relative;
}

.cta-section h2::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
}

.cta-button {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
    color: #1e3a5f;
    padding: 18px 48px;
    font-size: 17px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 24px;
    box-shadow: 
        0 4px 15px rgba(251, 191, 36, 0.35),
        0 1px 0 rgba(255,255,255,0.2) inset;
    transition: all 0.25s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(251, 191, 36, 0.45),
        0 1px 0 rgba(255,255,255,0.2) inset;
}

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

/* Вариант кнопки - британская тема (белая) */
.cta-button.uk-theme {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    color: #00247d;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.35);
}

/* Вариант кнопки - золотая тема */
.cta-button.gold-theme {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.35);
}

/* Вариант кнопки - зеленая тема */
.cta-button.green-theme {
    color: #065f46;
}

/* ================================================
   ПАРАГРАФЫ
   ================================================ */

p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ================================================
   ГЛАВНЫЙ КОНТЕЙНЕР (FLEX-LAYOUT)
   ================================================ */

.main-container {
    flex: 1;
    padding: 45px 24px;
    display: flex;
    justify-content: center;
}

/* ================================================
   WRAPPER (ОБЕРТКИ КОНТЕНТА)
   ================================================ */

.wrapper {
    max-width: 900px;
    width: 100%;
}

/* Вариант wrapper с карточным дизайном */
.wrapper.card-style {
    max-width: 800px;
    padding: 55px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 4px 6px rgba(0,0,0,0.02),
        0 15px 40px rgba(0,0,0,0.08);
}

/* ================================================
   ЗАГОЛОВОК СТРАНИЦЫ
   ================================================ */

.page-title {
    margin-bottom: 35px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 24px;
}

.page-title h1 {
    color: #1e3a5f;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.page-title p {
    color: #64748b;
    margin-top: 8px;
    font-size: 17px;
}

/* ================================================
   КАРТОЧКИ ОТЧЕТОВ
   ================================================ */

.report-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.02),
        0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #3b82f6;
    transition: all 0.25s ease;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.04),
        0 12px 30px rgba(0,0,0,0.1);
}

.meta-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag {
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.tag-blue {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0369a1;
}

.tag-green {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #15803d;
}

.tag-red {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #b91c1c;
}

.tag-purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #7c3aed;
}

.report-title {
    font-size: 21px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.report-abstract {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 1.7;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
    font-size: 13px;
    color: #94a3b8;
}

.read-btn {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.read-btn:hover {
    color: #1d4ed8;
    gap: 10px;
}

/* ================================================
   КАРТОЧКИ СЕКЦИЙ
   ================================================ */

.section-card {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e5e7eb;
	border-left: 4px solid #f59e0b;
	background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.section-card:last-of-type {
    border-bottom: none;
}

/* ================================================
   КНОПКИ
   ================================================ */

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 
        0 4px 12px rgba(59, 130, 246, 0.25),
        0 1px 0 rgba(255,255,255,0.1) inset;
    letter-spacing: 0.2px;
}

.btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(59, 130, 246, 0.35),
        0 1px 0 rgba(255,255,255,0.1) inset;
}

/* ================================================
   СЕКЦИЯ "О НАС"
   ================================================ */

.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 28px;
    border-radius: 12px;
    margin-top: 24px;
    border-left: 4px solid #1e3a5f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ================================================
   ДИСКЛЕЙМЕР И ФУТЕР
   ================================================ */

.disclaimer {
    font-size: 13px;
    color: #64748b;
    margin-top: 45px;
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
    line-height: 1.7;
}

/* Вариант disclaimer с увеличенным шрифтом */
.disclaimer.extended {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Вариант disclaimer с серым цветом */
.disclaimer.gray {
    color: #9ca3af;
}

footer {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: #9ca3af;
    text-align: center;
    padding: 45px 24px;
    font-size: 14px;
    margin-top: 70px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Компактный вариант footer */
footer.compact {
    padding: 35px 24px;
    margin-top: 45px;
}

/* ================================================
   СЕТКА СРАВНЕНИЯ (COMPARISON GRID)
   ================================================ */

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 45px;
}

.industry-card {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 4px solid #1e3a5f;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.02),
        0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.industry-card:hover {
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.04),
        0 10px 30px rgba(0,0,0,0.08);
}

/* Вариант industry-card - британская тема */
.industry-card.uk-theme {
    border-top: 4px solid #00247d;
}

/* Вариант industry-card - золотая тема */
.industry-card.gold-theme {
    background: linear-gradient(180deg, #fffcf0 0%, #fef3c7 100%);
    border-top: 4px solid #fbbf24;
}

.industry-card h3 {
    margin-top: 0;
    color: #1e3a5f;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

/* Вариант h3 в industry-card - британская тема */
.industry-card.uk-theme h3 {
    color: #00247d;
}

/* Вариант h3 в industry-card - золотая тема */
.industry-card.gold-theme h3 {
    color: #1a1a2e;
}

.stat-item {
    margin-bottom: 14px;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 10px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item strong {
    color: #334155;
}

/* ================================================
   СОДЕРЖАНИЕ (TABLE OF CONTENTS)
   ================================================ */

.toc {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 45px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.toc ul {
    list-style: none;
    padding: 0;
}

.toc li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.toc li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

.toc a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.toc a:hover {
    color: #1d4ed8;
    padding-left: 5px;
}

/* ================================================
   ТАБЛИЦЫ СРАВНЕНИЯ
   ================================================ */

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 35px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

/* Вариант с меньшими отступами и размером шрифта */
.comparison-table.compact {
    margin: 24px 0;
    font-size: 14px;
}

.comparison-table th {
    background: linear-gradient(135deg, #1e3a5f 0%, #1e4976 100%);
    color: white;
    padding: 18px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Вариант th - синяя тема */
.comparison-table.blue-theme th {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

/* Вариант th - британская тема */
.comparison-table.uk-theme th {
    background: linear-gradient(135deg, #00247d 0%, #1e3a5f 100%);
}

/* Вариант th - золотая тема */
.comparison-table.gold-theme th {
    background: linear-gradient(135deg, #1a1a2e 0%, #374151 100%);
    color: #fcd34d;
}

/* Вариант th - зеленая тема */
.comparison-table.green-theme th {
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
}

.comparison-table.compact th {
    padding: 14px;
}

.comparison-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #e5e7eb;
    color: #475569;
}

.comparison-table.compact td {
    padding: 12px 14px;
}

.comparison-table tr {
    transition: background 0.15s ease;
}

.comparison-table tr:nth-child(even) {
    background: #f8fafc;
}

/* Вариант с другим цветом четных строк */
.comparison-table.alt-rows tr:nth-child(even) {
    background: #f1f5f9;
}

/* Hover эффект для строк таблицы */
.comparison-table tbody tr:hover {
    background: #e0f2fe;
}

.comparison-table .win {
    color: #059669;
    font-weight: 700;
}

.comparison-table .lose {
    color: #dc2626;
    font-weight: 700;
}

/* ================================================
   МЕДИА ЗАПРОСЫ (АДАПТИВНОСТЬ)
   ================================================ */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 17px;
    }
    
    .hero-stat-number {
        font-size: 40px;
    }
    
    .container {
        margin-top: 0;
        padding: 0 16px;
    }
    
    section {
        padding: 35px 24px;
        border-radius: 12px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    /* Адаптивность для comparison-grid */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Адаптивность для компактного hero */
    .hero.compact h1,
    .hero h1.compact {
        font-size: 30px;
    }
    
    /* Адаптивность для hero-stats */
    .hero-stats {
        gap: 35px;
    }
    
    .price-breakdown {
        padding: 25px;
    }
    
    .cta-section {
        padding: 45px 30px;
    }
}

@media (max-width: 600px) {
    .header-content {
        flex-direction: column;
        gap: 18px;
    }
    
    .wrapper {
        padding: 25px 16px;
    }
    
    .wrapper.card-style {
        padding: 35px 24px;
    }
    
    nav a {
        margin-left: 16px;
        font-size: 13px;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .findings {
        grid-template-columns: 1fr;
    }
    
    .report-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 16px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .hero-stat-number {
        font-size: 36px;
    }
    
    section {
        padding: 24px 18px;
        margin-bottom: 24px;
    }
    
    h2 {
        font-size: 22px;
        padding-bottom: 14px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .cta-section {
        padding: 35px 20px;
        border-radius: 12px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
    }
    
    .comparison-table {
        font-size: 13px;
        border-radius: 8px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }
    
    .alert-box,
    .info-box,
    .highlight-box,
    .warning-box {
        padding: 18px;
        margin: 20px 0;
    }
    
    .legal-cases {
        padding: 20px;
    }
    
    .legal-case {
        padding: 14px;
    }
    
    footer {
        padding: 35px 16px;
        margin-top: 50px;
    }
}

/* ================================================
   ДОПОЛНИТЕЛЬНЫЕ УЛУЧШЕНИЯ
   ================================================ */

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Улучшенный фокус для доступности */
a:focus,
button:focus,
.btn:focus,
.cta-button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Выделение текста */
::selection {
    background: #bfdbfe;
    color: #1e3a5f;
}

/* Скрытие outline при клике мышью */
:focus:not(:focus-visible) {
    outline: none;
}

/* Визуальный фокус только для клавиатуры */
:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}