/* --- ГЛОБАЛЬНЫЕ СТИЛИ И ПЕРЕМЕННЫЕ (СВЕТЛАЯ ТЕМА) --- */
:root {
    /* Цветовая схема - светлые тона */
    --primary-color: #4a90e2;
    --primary-dark: #357abd;
    --primary-gradient: linear-gradient(135deg, #4a90e2 0%, #50c9c3 100%);
    --secondary-color: #e8f4fd;
    --accent-color: #ff6b9d;
    
    /* Фоны - светлые */
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --surface-dark: #f1f5f9;
    
    /* Текст */
    --text-color: #1e293b;
    --text-muted-color: #64748b;
    --text-light-color: #94a3b8;
    
    /* Состояния */
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    
    /* Границы и тени */
    --border-color: #e2e8f0;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08);
    --box-shadow-lg: 0 10px 40px rgba(74, 144, 226, 0.12);
    
    /* Шрифты */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    
    /* Контейнер и отступы */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 6rem;
    
    /* Анимации */
    --transition-speed: 0.3s ease;
    --transition-fast: 0.15s ease;
    --transition-slow: 0.5s ease;
}

/* --- БАЗОВЫЕ НАСТРОЙКИ --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

main {
    position: relative;
    z-index: 2;
    background-color: var(--background-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-dark);
}

/* --- УТИЛИТЫ --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted-color); }
.text-light { color: var(--text-light-color); }

/* --- СЕКЦИИ --- */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-sm {
    padding: 60px 0;
}

.section-light {
    background-color: var(--surface-color);
}

.section-dark {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
}

.section-dark .section-title,
.section-dark .section-subtitle {
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-muted-color);
    font-size: var(--font-size-lg);
    font-weight: 500;
}

/* --- АНИМАЦИИ --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- КНОПКИ --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: var(--font-size-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-lg {
    padding: 18px 40px;
    font-size: var(--font-size-lg);
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* --- ИНЛАЙН ССЫЛКИ --- */
.inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all var(--transition-speed);
}

.inline-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-speed);
}

.inline-link:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.inline-link:hover::after {
    width: 100%;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-speed);
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-speed);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-speed);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-status {
    font-size: var(--font-size-sm);
    color: var(--success-color);
    font-weight: 600;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all var(--transition-speed);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    transform: translateY(-100%);
    transition: transform var(--transition-speed);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    padding: 10px 0;
}

.mobile-nav a {
    display: block;
    padding: 10px;
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
}

/* --- HERO SECTION --- */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--surface-color) 0%, rgba(74, 144, 226, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted-color);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-sm);
    color: var(--text-muted-color);
}

.badge-icon {
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- COUNTERS SECTION --- */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.counter-item {
    padding: 20px;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.counter-label {
    font-size: var(--font-size-base);
    color: var(--text-muted-color);
    display: block;
}

/* --- SECURITY GRID --- */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.security-card {
    padding: 40px 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all var(--transition-speed);
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.security-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 15px;
    color: var(--text-color);
}

.security-card p {
    color: var(--text-muted-color);
    line-height: 1.6;
}

/* --- COMPARISON TABLE --- */
.comparison-container {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 50px;
}

.table-header {
    background: var(--primary-gradient);
    color: white;
    padding: 20px;
    font-weight: 700;
    text-align: center;
}

.table-cell {
    background: white;
    padding: 20px;
    text-align: center;
}

.table-cell strong {
    color: var(--primary-color);
}

.table-cell.result {
    font-weight: 700;
    padding: 25px;
}

.table-cell.result.negative {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.table-cell.result.positive {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

/* --- SAVINGS CALCULATOR --- */
.savings-calculator {
    background: var(--surface-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 50px;
}

.savings-calculator h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 20px;
    color: var(--text-color);
}

.calculation {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.calc-row span {
    font-size: var(--font-size-lg);
}

.expensive {
    color: var(--danger-color);
    font-weight: 700;
}

.cheap {
    color: var(--success-color);
    font-weight: 700;
}

.calc-result {
    margin-top: 20px;
    padding: 20px;
    background: var(--success-color);
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.savings {
    font-size: var(--font-size-xl);
    font-weight: 800;
}
    color: var(--success-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-align: center;
}

.catalog-cta {
    text-align: center;
    margin-top: 50px;
}

.catalog-cta p {
    font-size: var(--font-size-lg);
    color: var(--text-muted-color);
    margin-bottom: 20px;
}

/* --- HOW IT WORKS SECTION --- */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted-color);
}

/* --- TARIFFS SECTION --- */
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tariff-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: all var(--transition-speed);
}

.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.tariff-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.tariff-header {
    text-align: center;
    margin-bottom: 30px;
}

.tariff-header h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 10px;
}

.price-tag {
    color: var(--text-muted-color);
    font-size: var(--font-size-sm);
    margin-bottom: 10px;
}

.tariff-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.tariff-features {
    list-style: none;
    margin-bottom: 30px;
}

.tariff-features li {
    padding: 10px 0;
    color: var(--text-muted-color);
}

.feature-pro {
    color: var(--success-color);
    font-weight: 500;
}

.tariff-ideal {
    background: var(--surface-color);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    text-align: center;
}

/* --- COMPARISON TABLE DETAILED --- */
.tariff-comparison {
    max-width: 1000px;
    margin: 0 auto;
}

.tariff-comparison h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 30px;
    text-align: center;
}

.comparison-table-detailed {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-table-detailed th,
.comparison-table-detailed td {
    padding: 15px;
    text-align: center;
}

.comparison-header {
    background: var(--primary-gradient);
    color: white;
}

.feature-name {
    text-align: left;
    font-weight: 600;
    background: var(--surface-color);
}

.tariff-name {
    font-weight: 700;
}

.comparison-row:nth-child(even) {
    background: var(--surface-color);
}

.feature-status {
    font-weight: 500;
}

.feature-status.yes {
    color: var(--success-color);
}

.feature-status.no {
    color: var(--danger-color);
}

/* --- REVIEWS SECTION --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-color);
}

.reviewer-meta {
    font-size: var(--font-size-sm);
    color: var(--text-muted-color);
}

.review-rating {
    color: #fbbf24;
}

.review-text {
    color: var(--text-muted-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-date {
    font-size: var(--font-size-sm);
    color: var(--text-light-color);
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stats-item {
    text-align: center;
}

.stats-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stats-label {
    color: var(--text-muted-color);
}

/* --- COMPANY SECTION --- */
.company-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.company-logo {
    width: 300px;
    height: 300px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.company-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-lg);
}

.company-text h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 20px;
}

.company-text p {
    color: var(--text-muted-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.company-principles {
    background: var(--surface-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.company-principles h4 {
    margin-bottom: 20px;
}

.company-principles ul {
    list-style: none;
}

.company-principles li {
    padding: 10px 0;
    color: var(--text-muted-color);
}

.company-signature {
    font-style: italic;
    color: var(--text-muted-color);
    margin-top: 20px;
}

.company-info {
    background: var(--surface-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.company-info h3 {
    margin-bottom: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.info-item {
    padding: 15px;
    background: white;
    border-radius: var(--border-radius-sm);
}

.info-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted-color);
    margin-bottom: 5px;
}

.info-value {
    font-weight: 600;
    color: var(--text-color);
}

/* --- FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-item summary {
    padding: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: var(--font-size-lg);
    color: var(--text-color);
    list-style: none;
    position: relative;
    padding-left: 50px;
}

.faq-item summary::before {
    content: '+';
    position: absolute;
    left: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item[open] summary::before {
    content: '−';
}

.faq-item p {
    padding: 0 25px 25px 50px;
    color: var(--text-muted-color);
    line-height: 1.7;
}

/* --- CTA SECTION --- */
.cta-section {
    background: var(--primary-gradient);
    color: white;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section .section-title,
.cta-section .section-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section .section-title {
    font-weight: 800;
    -webkit-text-fill-color: white;
    background: none;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-guarantee {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: var(--border-radius);
    max-width: 600px;
    margin: 0 auto;
}

/* --- FOOTER --- */.footer {
    background: var(--text-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: var(--font-size-lg);
}

.footer .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.footer .text-muted {
    color: rgba(255,255,255,0.7);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-speed);
}

.footer-social a:hover {
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    padding: 5px 0;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: white;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed);
}

.footer-contact-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.phone-info,
.email-info {
    margin-top: 10px;
}

.work-hours {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.6);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius-sm);
    color: #10b981;
}

.status-indicator {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.footer-legal {
    text-align: center;
    margin-bottom: 20px;
}

.footer-legal p {
    color: rgba(255,255,255,0.6);
    font-size: var(--font-size-sm);
    margin-bottom: 5px;
}

.footer-disclaimer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-disclaimer p {
    color: rgba(255,255,255,0.5);
    font-size: var(--font-size-xs);
    line-height: 1.6;
}

/* --- АДАПТИВНОСТЬ --- */

/* Планшеты (max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 4rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero {
        padding: 130px 0 80px;
    }
    
    .company-block {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .company-logo {
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Мобильные устройства (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --font-size-base: 0.9rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 3rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header mobile */
    .header {
        padding: 15px 0;
    }
    
    .header-status {
        display: none;
    }
    
    .header-contact .btn {
        display: none;
    }
    
    /* Hero mobile */
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        font-size: var(--font-size-sm);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Counters mobile */
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Security grid mobile */
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    /* Comparison table mobile */
    .comparison-table {
        font-size: var(--font-size-sm);
    }
    
    .table-header,
    .table-cell {
        padding: 15px 10px;
    }
    
    /* Catalog mobile */
    .catalog-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: var(--font-size-sm);
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Tariffs mobile */
    .tariffs-grid {
        grid-template-columns: 1fr;
    }
    
    /* Comparison table detailed mobile */
    .comparison-table-detailed {
        font-size: var(--font-size-sm);
    }
    
    .comparison-table-detailed th,
    .comparison-table-detailed td {
        padding: 10px 5px;
    }
    
    /* Reviews mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-stats {
        gap: 30px;
    }
    
    /* Company info mobile */
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-methods {
        align-items: center;
    }
}

/* Очень маленькие экраны (max-width: 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: var(--font-size-sm);
    }
    
    .counters-grid {
        grid-template-columns: 1fr;
    }
}

/* Улучшения для печати */
@media print {
    .header,
    .footer,
    .btn,
    .burger-menu,
    .mobile-nav {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* Улучшения для доступности */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- LEGAL PAGES STYLES --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.legal-intro {
    background: var(--surface-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.legal-content h3 {
    font-size: var(--font-size-lg);
    color: var(--text-color);
    margin: 30px 0 15px;
}

.legal-content p {
    color: var(--text-muted-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    color: var(--text-muted-color);
    line-height: 1.8;
    margin-bottom: 10px;
    list-style-type: disc;
}

.legal-content strong {
    color: var(--text-color);
}

/* Адаптивность для legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 20px;
    }
    
    .legal-intro {
        padding: 20px;
    }
    
    .legal-content h2 {
        font-size: var(--font-size-lg);
    }
}

/* Темная тема (если пользователь предпочитает) */
@media (prefers-color-scheme: dark) {
    /* Можно добавить стили для темной темы здесь */
}

/* Высокий контраст */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0066cc;
        --text-color: #000000;
        --background-color: #ffffff;
    }
}