/* Основные стили сайта Мужского книжного клуба */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4af37;
    --dark-gold: #b8941f;
    --accent-gold: #f4d03f;
    --dark-bg: #0f0f0f;
    --darker-bg: #1a1a1a;
    --medium-bg: #2d2d2d;
    --light-bg: #3a3a3a;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #999999;
    --border-dark: #404040;
    --border-light: rgba(212, 175, 55, 0.2);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-bg);
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-dark);
}

nav.scrolled {
    background: rgba(15, 15, 15, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-gold);
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-usp {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 48px;
    padding: 20px 30px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: inline-block;
}

.cta-button {
    display: inline-block;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Стили для кнопок-ссылок */
a[style*="border: 2px solid var(--primary-gold)"]:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%) !important;
    color: var(--dark-bg) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-dark);
}

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

.problem h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.pain-point {
    background: var(--medium-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-left: 4px solid var(--primary-gold);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-color: var(--primary-gold);
}

.pain-point h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.pain-point p {
    color: var(--text-gray);
    line-height: 1.6;
}

.solution-box {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    padding: 50px;
    border-radius: 20px;
    margin-top: 60px;
}

.solution-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.solution-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* About Section */
.about {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-dark);
}

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

.about-card {
    background: var(--medium-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-dark);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: var(--primary-gold);
}

.about-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--dark-bg);
}

.about-card h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-light);
    font-weight: 600;
}

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

/* Format Section */
.format {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-dark);
}

.format-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.format-feature {
    background: var(--medium-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-dark);
}

.format-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    border-color: var(--primary-gold);
}

.format-feature h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.format-feature p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Speaker Section */
.speaker {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
}

.speaker-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.speaker-image {
    text-align: center;
}

.speaker-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 5px solid var(--dark-bg);
}

.speaker-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--dark-bg);
}

.speaker-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
    color: var(--dark-bg);
}

.speaker-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-bg);
}

.speaker-description p {
    margin-bottom: 20px;
}

.speaker-description strong {
    color: var(--darker-bg);
    font-weight: 700;
}

/* Articles Section */
.articles {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-dark);
}

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

.article-card {
    background: var(--medium-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-dark);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: var(--primary-gold);
}

.article-card-content {
    padding: 30px;
}

.article-card h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.4;
}

.article-card p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Value Section */
.value {
    text-align: center;
    background: var(--dark-bg);
}

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

.value-item {
    background: var(--medium-bg);
    padding: 30px;
    border-radius: 16px;
    border-top: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--border-dark);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    border-color: var(--primary-gold);
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.price-comparison {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.price-comparison h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.price-comparison p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Social Proof */
.social-proof {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-dark);
}

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

.testimonial {
    background: var(--medium-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-dark);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    border-color: var(--primary-gold);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.stats {
    text-align: center;
    margin-top: 60px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 10px;
}

.stats p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Process Section */
.process {
    background: var(--dark-bg);
}

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

.process-step {
    text-align: center;
    padding: 30px;
    background: var(--medium-bg);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--border-dark);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    border-color: var(--primary-gold);
}

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

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--medium-bg);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-dark);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-color: var(--primary-gold);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 600;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question span {
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.urgency {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.3) 0%, rgba(15, 15, 15, 0.1) 100%);
    padding: 16px 32px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 40px;
    border: 1px solid rgba(15, 15, 15, 0.2);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    color: var(--dark-bg);
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-weight: 600;
    line-height: 1.2;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--darker-bg);
    padding: 16px 0;
    font-size: 0.9rem;
    margin-top: 70px;
    border-bottom: 1px solid var(--border-dark);
}

.breadcrumbs a {
    color: var(--primary-gold);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 8px;
    color: var(--text-gray);
}

/* Articles List Page */
.articles-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border-dark);
    margin-top: 70px;
}

.articles-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light);
    text-align: center;
}

.articles-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Article Header для страниц статей */
.article-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    border-bottom: 1px solid var(--border-dark);
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.article-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 2;
}

.article-header .container {
    position: relative;
    z-index: 3;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.2;
}

.article-meta {
    text-align: center;
    font-size: 1rem;
    opacity: 0.9;
    color: var(--text-gray);
}

/* Article Content - улучшенная версия */
.article-content {
    padding: 60px 0 80px;
    background: var(--dark-bg);
    line-height: 1.7;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--text-light);
    line-height: 1.3;
    position: relative;
    padding-bottom: 16px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    border-radius: 2px;
}

.article-text {
    line-height: 1.8;
    font-size: clamp(1.1rem, 1.5vw, 1.2rem);
    color: var(--text-gray);
    font-weight: 400;
}

.article-text p {
    margin-bottom: 28px;
    line-height: 1.8;
    color: var(--text-light);
    opacity: 0.95;
}

.article-text p:last-child {
    margin-bottom: 0;
}

.article-text strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.article-text em {
    font-style: italic;
    color: var(--accent-gold);
}

.article-text ul,
.article-text ol {
    margin: 24px 0;
    padding-left: 24px;
    color: var(--text-light);
}

.article-text li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-text blockquote {
    border-left: 4px solid var(--primary-gold);
    padding: 20px 24px;
    margin: 32px 0;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.1em;
    color: var(--text-light);
    position: relative;
}

.article-text blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
}

/* Улучшенные CTA блоки */
.article-cta {
    background: linear-gradient(135deg, var(--medium-bg) 0%, var(--light-bg) 100%);
    color: var(--text-light);
    padding: clamp(40px, 5vw, 60px) clamp(30px, 4vw, 50px);
    border-radius: 20px;
    text-align: center;
    margin: clamp(50px, 6vw, 70px) 0;
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.article-cta > * {
    position: relative;
    z-index: 2;
}

.article-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.article-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 16px;
    color: var(--text-light);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.article-cta p {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    margin-bottom: 32px;
    opacity: 0.9;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.article-cta.golden {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.article-cta.golden::before {
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.article-cta.golden h3 {
    color: var(--dark-bg);
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-cta.golden p {
    color: var(--dark-bg);
    opacity: 0.85;
}

.article-cta.golden .cta-button {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.article-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

/* Компактная модальная форма */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background-color: var(--white);
    margin: 20px auto;
    padding: 0;
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    padding: 24px 30px;
    border-radius: 16px 16px 0 0;
    text-align: center;
    position: relative;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
}

.close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark-bg);
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.close:hover {
    background: rgba(0,0,0,0.1);
    transform: translateY(-50%) rotate(90deg);
}

.modal-body {
    padding: 30px 24px 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--dark-bg);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
    color: var(--dark-bg);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    height: 80px;
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-dark);
}

footer p {
    margin-bottom: 16px;
    opacity: 0.8;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
}

.pagination a {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.pagination a.disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.pagination-info {
    color: var(--text-gray);
    font-weight: 500;
}

/* Pagination для главной страницы */
.pagination-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error messages */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f1b0b7;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    transition: transform 0.3s ease;
}

/* Адаптивность для больших экранов */
@media (min-width: 1200px) {
    .content-wrapper {
        max-width: 1100px;
    }
    
    .article-text {
        font-size: 1.25rem;
    }
    
    .content-section h2 {
        font-size: 2.6rem;
    }
    
    .article-cta {
        padding: 70px 60px;
    }
    
    .article-cta h3 {
        font-size: 2.2rem;
    }
    
    .article-cta p {
        font-size: 1.2rem;
    }
}

/* Средние экраны */
@media (min-width: 769px) and (max-width: 1199px) {
    .content-wrapper {
        max-width: 900px;
    }
    
    .modal-content {
        max-width: 520px;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .format-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 32px;
        padding-top: 60px;
        transition: left 0.3s ease;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-right: 1px solid var(--border-dark);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .speaker-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .speaker-image img {
        width: 250px;
        height: 250px;
    }

    .hero-content {
        padding: 20px;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .urgency {
        padding: 15px 20px;
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .pain-points {
        grid-template-columns: 1fr;
    }

    .format-features {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

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

    .article-card-content {
        padding: 25px 20px;
    }

    .pagination {
        flex-direction: column;
        gap: 15px;
    }

    /* Мобильные стили для статей */
    .content-wrapper {
        padding: 0 16px;
    }
    
    .article-content {
        padding: 40px 0 60px;
    }
    
    .content-section {
        margin-bottom: 40px;
    }
    
    .content-section h2 {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .content-section h2::after {
        width: 40px;
        height: 2px;
    }
    
    .article-text p {
        margin-bottom: 20px;
    }
    
    .article-cta {
        padding: 30px 20px;
        margin: 40px 0;
        border-radius: 16px;
    }
    
    .article-cta h3 {
        margin-bottom: 12px;
    }
    
    .article-cta p {
        margin-bottom: 24px;
    }
    
    .modal-content {
        margin: 10px auto;
        width: 95%;
        max-height: calc(100vh - 20px);
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-header h3 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 24px 20px 20px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px; /* Предотвращает зум на iOS */
    }

    .breadcrumbs,
    .articles-header,
    .article-header {
        margin-top: 70px;
    }
}