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

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-color: #000000;
    --bg-color: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.disclaimer-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f5f5f5;
    padding: 12px 20px;
    text-align: center;
    font-size: 13px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1001;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.disclaimer-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.disclaimer-banner p {
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.main-header.show {
    transform: translateY(0);
    opacity: 1;
}

.main-header.show.has-disclaimer {
    top: 45px;
}

.disclaimer-banner.show + .main-header.show {
    top: 45px;
}

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 60px;
    position: relative;
    background-color: var(--bg-color);
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 80px;
    animation: fadeInLeft 1s ease-out;
    position: relative;
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-address {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 13px;
    color: #333;
    letter-spacing: 0.3px;
    animation: fadeIn 1.2s ease-out;
    font-weight: 400;
    line-height: 1.5;
}

.hero-address p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-text {
    margin-top: 0;
    align-self: center;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.hero-text h1 .ampersand {
    font-style: normal;
    font-weight: 400;
    font-family: serif;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    position: relative;
    animation: fadeInRight 1s ease-out;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    display: block;
}

.gallery-section {
    position: relative;
    min-height: 150vh;
    background-color: var(--bg-color);
    overflow: hidden;
    padding: 60px 0 0 0;
}

.gallery-background {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background-color: transparent;
    pointer-events: none;
}

.gallery-text {
    text-align: center;
    position: relative;
    z-index: 10;
}

.gallery-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gallery-title {
    font-size: 100px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -2px;
    line-height: 1;
}

.gallery-images-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 0 40px;
    pointer-events: none;
}

.gallery-image-wrapper {
    position: relative;
    width: 450px;
    height: 650px;
    will-change: transform;
    pointer-events: auto;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.gallery-image-wrapper {
    transition: opacity 0.3s ease;
}

.gallery-image-wrapper:nth-child(1) {
    transform: translateY(0);
    z-index: 3;
}

.gallery-image-wrapper:nth-child(2) {
    transform: translateY(0);
    z-index: 3;
}

.gallery-image-wrapper:nth-child(3) {
    transform: translateY(0);
    z-index: 3;
}

.features-section {
    padding: 0 0 0 0;
    background-color: #f5f5f5;
    position: relative;
    z-index: 10;
    width: 100%;
}

.features-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.feature-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: var(--secondary-color);
    margin-bottom: 0;
    padding: 80px 100px;
    border-radius: 0;
    transition: var(--transition);
}

.feature-block:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    max-width: 50%;
    padding-right: 60px;
}

.feature-block:nth-child(even) .feature-content {
    padding-right: 0;
    padding-left: 60px;
}

.feature-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 30px 0;
    line-height: 1.1;
    letter-spacing: -2px;
}

.feature-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    max-width: 500px;
}

.feature-image {
    flex: 1;
    max-width: 50%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-block:hover .feature-image img {
    transform: scale(1.05);
}

.legal-page {
    padding: 100px 40px;
    background-color: var(--bg-color);
    min-height: 80vh;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.legal-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
    color: #333;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

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

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-content a:hover {
    opacity: 0.7;
}

.legal-content strong {
    font-weight: 600;
    color: var(--primary-color);
}

.about-hero,
.contact-hero {
    padding: 120px 40px 80px;
    background-color: var(--bg-color);
    text-align: center;
}

.about-hero h1,
.contact-hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-subtitle,
.contact-subtitle {
    font-size: 24px;
    color: #666;
    font-weight: 400;
}

.about-content,
.contact-content {
    padding: 80px 40px;
    background-color: var(--bg-color);
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.about-section li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    padding: 30px;
    background-color: #fafafa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.contact-info {
    margin-top: 30px;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 8px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-info-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.contact-form-notice {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-form {
    background-color: #fafafa;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-page {
    padding: 100px 40px;
    background-color: var(--bg-color);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.article-image-main {
    width: 100%;
    height: 500px;
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.article-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
}

.article-content table th,
.article-content table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: left;
}

.article-content table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.article-checklist {
    margin: 10px 0 20px 20px;
    padding-left: 0;
}

.article-checklist li {
    margin-bottom: 6px;
}

/* Интерактивные элементы для статей */
.info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
}

.info-box.info-tip {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.info-box.info-warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
}

.info-box.info-important {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.1);
}

.info-box-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: #1976d2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box.info-tip .info-box-title {
    color: #388e3c;
}

.info-box.info-warning .info-box-title {
    color: #f57c00;
}

.info-box.info-important .info-box-title {
    color: #c2185b;
}

.info-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Блоки с фактами */
.fact-box {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.fact-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.fact-label {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Улучшенные таблицы */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.article-content table th,
.article-content table td {
    border: 1px solid #e0e0e0;
    padding: 15px 18px;
    text-align: left;
}

.article-content table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.article-content table tbody tr {
    transition: background-color 0.2s ease;
}

.article-content table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.article-content table tbody tr:hover {
    background-color: #e3f2fd;
}

/* Списки с иконками */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.icon-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.icon-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.icon-list.icon-list-warning li::before {
    content: '!';
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    font-family: Arial, sans-serif;
}

.icon-list.icon-list-info li::before {
    content: 'i';
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    font-family: Arial, sans-serif;
    font-style: italic;
}

/* Прогресс-бары */
.progress-container {
    margin: 25px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.progress-bar {
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
}

/* Блоки сравнения */
.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.comparison-item {
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.comparison-item.positive {
    background: #f8f9fa;
    border-color: #e0e0e0;
}

.comparison-item.negative {
    background: #f8f9fa;
    border-color: #e0e0e0;
}

.comparison-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Графики (простая визуализация) */
.chart-container {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.chart-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.chart-label {
    min-width: 120px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.chart-visual {
    flex: 1;
    height: 30px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.chart-value {
    min-width: 60px;
    text-align: right;
    font-weight: 700;
    color: #667eea;
    font-size: 14px;
}

/* Цитаты */
.quote-box {
    padding: 20px 25px;
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 8px;
    font-style: italic;
    position: relative;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: #667eea;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.quote-box p {
    margin: 0;
    padding-left: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.quote-author {
    margin-top: 15px;
    padding-left: 30px;
    font-size: 14px;
    color: #888;
    font-style: normal;
}

/* Разделители */
.content-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
    margin: 40px 0;
    border-radius: 2px;
}

/* Блоки с ключевыми моментами */
.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.key-point {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.key-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.key-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.key-point-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.key-point-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.key-point-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Улучшенные списки */
.article-content ul:not(.icon-list):not(.article-checklist) {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.article-content ul:not(.icon-list):not(.article-checklist) li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.8;
}

.article-content ul:not(.icon-list):not(.article-checklist) li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

/* Статистические карточки */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transition: transform 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.stat-card:hover::before {
    transform: rotate(45deg);
}

.stat-card.stat-green,
.stat-card.stat-orange,
.stat-card.stat-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 14px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Временные линии */
.timeline {
    position: relative;
    padding: 20px 0;
    margin: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    z-index: 1;
}

.timeline-content {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}

.timeline-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Аккордеоны */
.accordion {
    margin: 25px 0;
}

.accordion-item {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.accordion-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.accordion-header::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #667eea;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 20px 25px;
}

.accordion-content p {
    margin: 0 0 15px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.accordion-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

/* Блоки с примерами */
.example-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px 25px;
    margin: 25px 0;
    position: relative;
}

.example-box::before {
    content: 'EJEMPLO';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 10px;
    font-weight: 700;
    color: #667eea;
    letter-spacing: 1px;
    opacity: 0.5;
}

.example-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.example-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Блоки с советами */
.tip-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.tip-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tip-icon {
    font-size: 24px;
}

.tip-title {
    font-weight: 700;
    font-size: 18px;
    color: #d35400;
    margin: 0;
}

.tip-content {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Блоки с предупреждениями */
.warning-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.warning-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.warning-icon {
    font-size: 24px;
}

.warning-title {
    font-weight: 700;
    font-size: 18px;
    color: #c0392b;
    margin: 0;
}

.warning-content {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Блоки с успехом */
.success-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.success-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.success-icon {
    font-size: 24px;
}

.success-title {
    font-weight: 700;
    font-size: 18px;
    color: #00a085;
    margin: 0;
}

.success-content {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Блоки с метриками */
.metrics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
}

.metric-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Блоки с шагами */
.steps-container {
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Блоки с преимуществами */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.benefit-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Адаптивность для новых элементов */
@media (max-width: 768px) {
    .comparison-box {
        grid-template-columns: 1fr;
    }
    
    .key-points {
        grid-template-columns: 1fr;
    }
    
    .fact-number {
        font-size: 36px;
    }
    
    .info-box {
        padding: 15px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 11px;
    }
    
    .metrics-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

.articles-hero {
    padding: 120px 40px 80px;
    background-color: var(--bg-color);
    text-align: center;
}

.articles-hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.articles-subtitle {
    font-size: 24px;
    color: #666;
    font-weight: 400;
}

.articles-list-section {
    display: none;
}

.articles-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.article-list-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.article-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-list-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.article-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.article-list-item:hover .article-list-image img {
    transform: scale(1.1);
}

.article-list-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-list-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-list-content h2 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.article-list-content h2 a:hover {
    opacity: 0.7;
}

.article-list-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.article-list-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.article-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    align-self: flex-start;
}

.article-read-more:hover {
    opacity: 0.7;
    transform: translateX(5px);
}

.articles-section {
    padding: 40px 40px 60px;
    background-color: #fafafa;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    animation: fadeInUp 1s ease-out;
}

.article-card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    animation: fadeInUp 1.2s ease-out;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.article-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.article-content h3 a:hover {
    opacity: 0.7;
}

.article-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
    margin-top: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-section p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px 0;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    color: #999;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

.footer-disclaimer strong {
    color: #bbb;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px 40px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-decline {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background-color: #4a9eff;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3a8eef;
    transform: translateY(-2px);
}

.btn-decline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #666;
}

.btn-decline:hover {
    background-color: #444;
    border-color: #888;
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .gallery-title {
        font-size: 80px;
    }

    .gallery-images-container {
        gap: 50px;
        padding: 0 30px;
    }

    .gallery-image-wrapper {
        width: 380px;
        height: 550px;
    }

    .gallery-image-wrapper:nth-child(2) {
        transform: translateY(0);
    }

    .gallery-image-wrapper:nth-child(3) {
        transform: translateY(0);
    }

    .feature-block {
        padding: 60px 50px;
    }

    .feature-title {
        font-size: 48px;
    }

    .feature-text {
        font-size: 16px;
    }

    .feature-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .main-header.show.has-disclaimer {
        top: 45px;
    }

    .disclaimer-banner.show + .main-header.show {
        top: 45px;
    }

    .main-nav {
        padding: 15px 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
        z-index: 999;
    }

    .main-header.show .nav-menu {
        top: 70px;
    }

    .main-header.show.has-disclaimer .nav-menu,
    .disclaimer-banner.show + .main-header.show .nav-menu {
        top: 115px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-section {
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-address {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .gallery-section {
        min-height: 120vh;
        padding: 40px 0 0 0;
    }

    .gallery-background {
        height: 70vh;
        min-height: 500px;
    }

    .gallery-title {
        font-size: 60px;
    }

    .gallery-label {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .gallery-images-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        align-items: center;
    }

    .gallery-image-wrapper {
        width: 100%;
        max-width: 350px;
        height: 500px;
    }

    .gallery-image-wrapper:nth-child(1),
    .gallery-image-wrapper:nth-child(2),
    .gallery-image-wrapper:nth-child(3) {
        transform: translateX(0) translateY(0);
    }

    .features-section {
        padding: 0;
    }

    .feature-block {
        flex-direction: column;
        padding: 40px 30px;
        margin-bottom: 0;
    }

    .feature-block:nth-child(even) {
        flex-direction: column;
    }

    .feature-content {
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .feature-block:nth-child(even) .feature-content {
        padding-left: 0;
    }

    .feature-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .feature-text {
        font-size: 16px;
        max-width: 100%;
    }

    .feature-image {
        max-width: 100%;
        height: 300px;
        width: 100%;
    }

    .legal-page {
        padding: 60px 20px;
    }

    .legal-page h1 {
        font-size: 36px;
    }

    .legal-content h2 {
        font-size: 28px;
        margin-top: 40px;
    }

    .legal-content h3 {
        font-size: 20px;
        margin-top: 25px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 15px;
    }

    .about-hero,
    .contact-hero {
        padding: 80px 20px 60px;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .about-subtitle,
    .contact-subtitle {
        font-size: 18px;
    }

    .about-content,
    .contact-content {
        padding: 60px 20px;
    }

    .about-section h2 {
        font-size: 28px;
    }

    .about-section p,
    .about-section li {
        font-size: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .article-page {
        padding: 60px 20px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .article-image-main {
        height: 300px;
        margin-bottom: 30px;
    }

    .article-content h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .article-content h3 {
        font-size: 20px;
        margin-top: 25px;
    }

    .article-content p {
        font-size: 16px;
    }

    .articles-hero {
        padding: 80px 20px 60px;
    }

    .articles-hero h1 {
        font-size: 36px;
    }

    .articles-subtitle {
        font-size: 18px;
    }

    .articles-list-section {
        padding: 60px 20px;
    }

    .article-list-item {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .article-list-image {
        width: 100%;
        height: 250px;
        min-height: 250px;
    }

    .article-list-content {
        padding: 30px 20px;
    }

    .article-list-content h2 {
        font-size: 24px;
    }

    .article-list-excerpt {
        font-size: 15px;
    }

    .articles-section {
        padding: 30px 20px 60px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-accept,
    .btn-decline {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .main-footer {
        padding: 40px 20px 15px;
    }
}

