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

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
}

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

.phone {
    font-size: 18px;
    font-weight: bold;
}

.email {
    color: #b8d4ff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    /* animation убрана с LCP-элемента для Core Web Vitals */
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-price {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.hero-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.28);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(14px);
    font-size: 0.98rem;
    color: #e5e7eb;
    max-width: 720px;
}

.hero-price-pill strong {
    color: #ffffff;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

/* Secondary on light backgrounds (pricing, etc.) */
.pricing-card .btn-secondary,
.content .btn-secondary,
.services .btn-secondary {
    background: #fff;
    color: #1e3a8a;
    border: 2px solid #2563eb;
    backdrop-filter: none;
}

.pricing-card .btn-secondary:hover,
.content .btn-secondary:hover,
.services .btn-secondary:hover {
    background: #eff6ff;
    color: #1e3a8a;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Acceleration Section */
.acceleration {
    padding: 80px 0 !important;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%) !important;
}

.acceleration-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.acceleration-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-top: 20px;
}

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

.acceleration-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30, 60, 114, 0.2);
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.acceleration-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    transform: rotate(45deg);
    opacity: 0.3;
}

.acceleration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 60, 114, 0.3);
}

.acceleration-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.acceleration-regulation {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.acceleration-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    align-self: flex-start;
}

.acceleration-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.feature-card {
    background: #f8fafc;
    padding: 28px 24px 28px 28px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1e3a8a, #2563eb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
    border-color: #bfdbfe;
    background: #fff;
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    margin: 0;
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.35;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.93rem;
    margin: 0;
}

/* Content Section */
.content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    max-width: 100%;
}

.main-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.main-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #34495e;
}

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

.main-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.main-content li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

/* Три блока в одну линию */
/* CTA Strip — compact inline call-to-action */
.content-cta-strip {
    margin-top: 48px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: #fff;
}

.cta-strip-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-strip-stat {
    font-size: .95rem;
    white-space: nowrap;
}

.cta-strip-stat strong {
    font-size: 1.15rem;
}

.cta-strip-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.3);
}

.content-cta-strip .btn-primary {
    background: #fff;
    color: #1e3a8a;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    white-space: nowrap;
    flex-shrink: 0;
}

.content-cta-strip .btn-primary:hover {
    background: #f0f4ff;
}

@media (max-width: 768px) {
    .content-cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .cta-strip-stats { justify-content: center; }
    .cta-strip-divider { display: none; }
    .content-cta-strip .btn-primary { width: 100%; }
}

.info-block-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 15px;
}

.info-block-list li:last-child {
    border-bottom: none;
}

/* Старые стили sidebar для совместимости (если где-то используется) */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.sidebar-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.price-highlight {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Services Grid */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #2563eb;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #f0f4ff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.review-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #2563eb;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.12);
}

.review-card::before { display: none; }

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.reviewer-avatar--1 { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.reviewer-avatar--2 { background: linear-gradient(135deg, #065f46, #059669); }
.reviewer-avatar--3 { background: linear-gradient(135deg, #6d28d9, #8b5cf6); }

.review-author {
    flex: 1;
}

.review-author strong {
    display: block;
    color: #1e293b;
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.review-author span {
    color: #64748b;
    font-size: 0.83rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0;
    color: #475569;
    font-style: italic;
}

/* Geography Coverage Section */
.geography {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.geography::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,0 1000,200 1000,1000 0,800"/></svg>');
    background-size: cover;
}

.geography-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.map-container {
    position: relative;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.russia-map {
    width: 100%;
    height: 400px;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.russia-outline {
    width: 90%;
    height: 80%;
    background: rgba(255,255,255,0.15);
    border-radius: 20px 5px 15px 25px;
    position: relative;
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.1);
}

.city-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #2563eb;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.city-marker::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.moscow { top: 35%; left: 30%; }
.spb { top: 25%; left: 25%; }
.novosibirsk { top: 45%; left: 75%; }
.ekaterinburg { top: 38%; left: 60%; }

.city-tooltip {
    position: absolute;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.city-marker:hover .city-tooltip {
    opacity: 1;
    transform: translateY(-35px);
}

.geography-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.geography-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    color: white;
}

.cities-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.cities-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cities-list li::before {
    content: '📍';
    margin-right: 12px;
    font-size: 1.2rem;
}

.geography-highlight {
    background: rgba(37, 99, 235, 0.2);
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin: 25px 0;
}

.geography-highlight p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info-block {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
}

.contact-item::before {
    content: '📞';
    margin-right: 10px;
    font-size: 1.1rem;
}

.contact-item.email::before {
    content: '✉️';
}

.contact-item.time::before {
    content: '🕐';
}

/* ── New Geography Layout ───────────────────────────────────── */
.geo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 auto 48px;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.geo-stat {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: background .2s;
}

.geo-stat:hover {
    background: rgba(255,255,255,0.14);
}

.geo-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -.02em;
}

.geo-label {
    font-size: .85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.geo-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.geo-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.geo-city {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: .9rem;
    color: #fff;
    white-space: nowrap;
}

.geo-city--all {
    background: rgba(37,99,235,0.35);
    border-color: rgba(37,99,235,0.5);
    font-weight: 600;
}

.geo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.geo-contacts {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.geo-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: .97rem;
    font-weight: 500;
    transition: color .18s;
}

.geo-contact-item:hover { color: #fff; }

.geo-contact-icon {
    font-size: 1.1rem;
}

.geo-cta-btn {
    white-space: nowrap;
    padding: 14px 32px;
    font-size: 1rem;
}

.geo-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.geo-socials-label {
    font-size: .85rem;
    color: rgba(255,255,255,0.6);
    margin-right: 4px;
}

.geo-social-link {
    font-size: .85rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all .18s;
}

.geo-social-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
    .geo-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .geo-num { font-size: 2rem; }
    .geo-footer { flex-direction: column; gap: 20px; }
    .geo-cta-btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .geo-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .geo-stat { padding: 18px 10px; }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.faq-item.active {
    border-color: #2563eb;
    box-shadow: 0 4px 20px rgba(37,99,235,0.1);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: white;
    transition: background 0.15s ease;
}

.faq-question:hover {
    background: #f8faff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.45;
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 400;
    transition: all 0.25s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #1e3a8a;
    border-color: #1e3a8a;
    color: #fff;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer > div,
.faq-answer > p {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}


/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.comparison-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-top: 20px;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow-x: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-top: 50px;
    -webkit-overflow-scrolling: touch;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-header > div {
    padding: 25px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.comparison-header > div:last-child {
    border-right: none;
}

.comparison-header > div:first-child {
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background: #f8f9fa;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    border-right: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell:first-child {
    font-weight: 500;
    color: #2c3e50;
}

.comparison-cell:nth-child(2),
.comparison-cell:nth-child(3) {
    justify-content: center;
    text-align: center;
    font-weight: 600;
}

.risk-yes {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
}

.risk-no {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
}

.price-high {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-low {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-total {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-total .comparison-cell {
    border-color: rgba(255,255,255,0.2);
}

.comparison-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 20px;
    text-align: center;
}

.comparison-cta {
    text-align: center;
    margin-top: 40px;
}

.comparison-cta p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

/* Section title overrides for special sections */
.acceleration .section-title {
    text-align: center !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 3rem !important;
    color: #fff !important;
}

.acceleration .acceleration-intro p {
    color: rgba(255,255,255,0.7) !important;
}

.geography .section-title {
    text-align: center !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 3rem !important;
    color: white !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .hero-price-pill {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
    
    /* НОВЫЕ ПРАВИЛА ДЛЯ СКРЫТИЯ SIDEBAR НА МОБИЛЬНЫХ */
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .info-blocks-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-top: 40px;
    }
    
    .info-block-card {
        padding: 30px 20px;
    }
    
    .sidebar {
        display: none !important;
    }
    /* КОНЕЦ НОВЫХ ПРАВИЛ */
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

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

    .pricing-card.featured {
        transform: none;
    }

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

    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .acceleration-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .acceleration-card {
        padding: 30px 25px;
        min-height: 250px;
    }
    
    .acceleration-card h3 {
        font-size: 1.3rem;
    }
    
    .geography-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        padding: 30px 20px;
    }
    
    .russia-map {
        height: 300px;
    }
    
    .geography-info {
        padding: 30px 20px;
    }
    
    /* Мобильная адаптация модального окна */
    .modal {
        padding: 10px !important;
    }
    
    .modal-content {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        max-height: 95vh !important;
    }
    
    /* Comparison responsive */
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        justify-content: space-between;
    }
    
    .comparison-cell:first-child {
        background: #f8f9fa;
        font-weight: 700;
    }
    
    .comparison-cell:nth-child(2):before {
        content: "Самостоятельно: ";
        color: #666;
        font-weight: 400;
    }
    
    .comparison-cell:nth-child(3):before {
        content: "С экспертами: ";
        color: #2563eb;
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 5px;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
    }
    
    .hero-price-pill {
        font-size: 0.85rem;
        padding: 6px 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-buttons {
        padding: 0 10px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .modal {
        padding: 5px !important;
    }
    
    .modal-content {
        padding: 15px !important;
        border-radius: 8px !important;
    }
    
    .modal h3 {
        font-size: 1.1rem !important;
        padding-right: 30px !important;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px !important; /* Предотвращает зум на iOS */
    }
}

/* Для очень маленькой высоты экрана */
@media (max-height: 600px) {
    .modal {
        align-items: flex-start !important;
        padding-top: 10px !important;
    }
    
    .modal-content {
        margin-top: 0 !important;
        max-height: calc(100vh - 20px) !important;
    }
}

/* ===============================================
   SEO ОПТИМИЗАЦИЯ - НОВЫЕ БЛОКИ
   =============================================== */

/* Hero Social Proof */
.hero-social-proof {
    margin: 24px 0 32px;
    text-align: center;
}
.achievement-badge {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
}
.achievement-number {
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
    display: inline-block;
    margin-right: 8px;
}
/* Уникальные стили для баннера категорий */
.achievement-details.categories-banner,
.categories-banner {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.2) !important;
    margin: 0 !important;
    padding: 15px 0 !important;
    line-height: 1.8 !important;
    opacity: 1 !important;
}

.achievement-details {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Hero Anchor Menu */
.hero-anchor-menu {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 32px 0 24px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}
.anchor-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.anchor-link:hover {
    border-color: #2563eb;
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}
.anchor-icon { font-size: 18px; }

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: #f0f4ff;
}
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    max-width: 800px;
    margin: -10px auto 50px;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.industries-grid .industry-card:first-child {
    grid-column: span 2;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-color: transparent;
}
.industries-grid .industry-card:first-child h3 { color: #fff; }
.industries-grid .industry-card:first-child p { color: rgba(255,255,255,0.82); }
.industries-grid .industry-card:first-child .industry-arrow { color: rgba(255,255,255,0.85); }
.industries-grid .industry-card:first-child .industry-num { color: rgba(255,255,255,0.45); }
.industries-grid .industry-card:first-child::after { display: none; }
.industries-grid .industry-card:first-child:hover {
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.35);
    border-color: rgba(255,255,255,0.15);
}
.industry-card {
    position: relative;
    padding: 32px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}
.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.industry-card:hover::after { transform: scaleX(1); }
.industry-card:hover {
    border-color: #2563eb;
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.16);
}
.industry-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #94a3b8;
    text-transform: uppercase;
}
.industry-icon { font-size: 40px; }
.industry-card h3 { font-size: 19px; font-weight: 700; color: #111827; margin: 0; }
.industry-card p { font-size: 14px; color: #6b7280; line-height: 1.6; margin: 0; flex-grow: 1; }
.industry-arrow { font-size: 20px; color: #2563eb; font-weight: 700; align-self: flex-end; }

/* Calculators Section */
.calculators-section {
    padding: 80px 0;
    background: #f8fafc;
}
.calculators-header { text-align: center; margin-bottom: 50px; }
.calculators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.calculator-card {
    position: relative;
    padding: 32px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.calculator-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}
.calculator-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}
.calculator-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #2563eb;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.calculator-icon { font-size: 48px; margin-bottom: 8px; }
.calculator-card h3 { font-size: 20px; font-weight: 700; color: #111827; margin: 0; line-height: 1.3; }
.calculator-card p { font-size: 14px; color: #6b7280; line-height: 1.6; margin: 0; flex-grow: 1; }
.calculator-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
}
.calc-time { color: #059669; font-weight: 600; }
.calc-result { color: #6b7280; }
.calculators-cta { text-align: center; margin-top: 40px; }
.btn-view-all {
    display: inline-block;
    padding: 16px 32px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}
.btn-view-all:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.service-card {
    padding: 32px 24px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.service-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
    background: white;
}
.service-icon { font-size: 48px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: #111827; margin: 0; }
.service-card p { font-size: 14px; color: #6b7280; line-height: 1.6; margin: 0; flex-grow: 1; }
.service-btn { color: #2563eb; font-weight: 600; font-size: 14px; }
.services-note {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: #6b7280;
}
.services-note a { color: #2563eb; }

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: white;
}
.steps-timeline {
    max-width: 900px;
    margin: 50px auto;
    position: relative;
}
.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #2563eb 0%, #10b981 100%);
}
.step-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}
.step-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.step-item.success .step-number {
    background: #10b981;
    font-size: 32px;
}
.step-content h3 { font-size: 22px; font-weight: 700; color: #111827; margin: 0 0 8px; }
.step-duration {
    display: inline-block;
    padding: 4px 12px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}
.step-content p { font-size: 15px; color: #4b5563; line-height: 1.6; margin-bottom: 16px; }
.step-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.action-badge {
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 12px;
    color: #374151;
    font-weight: 600;
}
.action-badge.success { background: #d1fae5; color: #065f46; }

/* Risks Block */
.risks-block {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 16px;
    border: 2px solid #fca5a5;
}
.risks-block h3 { font-size: 24px; color: #991b1b; margin-bottom: 30px; text-align: center; }
.risks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}
.risk-card {
    grid-column: span 2;
    padding: 24px;
    background: white;
    border-radius: 12px;
    text-align: center;
}
.risk-icon { font-size: 48px; margin-bottom: 12px; }
.risk-amount { font-size: 36px; font-weight: 800; color: #dc2626; margin-bottom: 12px; }
.risk-card p { font-size: 14px; color: #6b7280; }
.risk-item {
    padding: 16px;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
}
.risk-item strong { color: #dc2626; font-size: 18px; }
.risks-cta { text-align: center; padding-top: 30px; border-top: 2px solid #fca5a5; }
.risks-cta p { font-size: 18px; color: #991b1b; margin-bottom: 20px; }

/* Cases Section */
.cases-section {
    padding: 80px 0;
    background: #f8fafc;
}
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 50px 0;
}
.case-card {
    padding: 32px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.case-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
}
.case-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.case-industry { font-size: 14px; font-weight: 700; color: #2563eb; }
.case-regulation {
    padding: 4px 12px;
    background: #eff6ff;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #1e40af;
}
.case-card h3 { font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 16px; }
.case-product {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.case-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 20px; }
.case-metric { display: flex; flex-direction: column; gap: 4px; }
.metric-label { font-size: 12px; color: #6b7280; text-transform: uppercase; font-weight: 600; }
.metric-value { font-size: 24px; font-weight: 800; color: #2563eb; }
.case-result {
    padding: 16px;
    background: #f0fdf4;
    border-radius: 8px;
    font-size: 14px;
    color: #065f46;
    line-height: 1.6;
}
.cases-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    border-radius: 16px;
    color: white;
}
.cases-cta h3 { font-size: 28px; color: white; margin-bottom: 16px; }
.cases-cta p { font-size: 16px; margin-bottom: 24px; opacity: 0.95; }

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
}
.final-cta-section .section-title { color: #fff; }
.final-cta-section .section-subtitle { color: rgba(255,255,255,0.65); }
.final-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    align-items: start;
}
.cta-option {
    position: relative;
    padding: 36px 28px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.cta-option.featured {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.4);
}
.cta-option:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.cta-option.featured:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 28px 70px rgba(37, 99, 235, 0.5);
}
.cta-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: #f59e0b;
    color: #0f172a;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.cta-icon { font-size: 56px; margin-bottom: 16px; }
.cta-option h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-option p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; }
.cta-option .btn {
    width: 100%;
}

/* Уникальные стили для кнопок в cta-options */
.cta-btn-blue {
    background: #2563eb !important;
    color: white !important;
    border: 2px solid #2563eb !important;
    backdrop-filter: none !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3) !important;
}

.cta-btn-blue:hover {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4) !important;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .industries-section,
    .calculators-section,
    .services-section,
    .steps-section,
    .cases-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .final-cta-grid { grid-template-columns: 1fr; }
    .cta-option.featured { transform: scale(1); }
}

@media (max-width: 768px) {
    .industries-section,
    .calculators-section,
    .services-section,
    .steps-section,
    .cases-section,
    .final-cta-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    
    /* Hero improvements */
    .achievement-number { font-size: 24px; }
    .achievement-badge { font-size: 16px; }
    .hero-anchor-menu { 
        gap: 8px; 
        padding: 15px;
        margin: 25px 0 20px;
    }
    .anchor-link { 
        padding: 10px 14px; 
        font-size: 13px; 
    }
    .anchor-text { display: none; }
    .anchor-icon { font-size: 20px; }
    
    /* Industries */
    .industries-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 0 15px;
    }
    .industry-card {
        padding: 24px 20px;
    }
    
    /* Calculators */
    .calculators-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 0 15px;
    }
    .calculator-card {
        padding: 24px 20px;
    }
    
    /* Services */
    .services-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 0 15px;
    }
    .service-card {
        padding: 24px 20px;
    }
    
    /* Steps */
    .steps-section {
        padding: 40px 0;
    }
    .steps-timeline { 
        padding: 0 15px;
    }
    .steps-timeline::before { left: 20px; }
    .step-item { 
        padding-left: 60px; 
        margin-bottom: 30px;
    }
    .step-number { 
        width: 40px; 
        height: 40px; 
        font-size: 18px; 
    }
    .step-content h3 {
        font-size: 18px;
    }
    .risks-block {
        padding: 30px 20px;
        margin-top: 40px;
    }
    .risks-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .risk-card {
        grid-column: span 1;
        padding: 20px;
    }
    
    /* Cases */
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    .case-card {
        padding: 24px 20px;
    }
    .case-details { 
        grid-template-columns: 1fr; 
    }
    .cases-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    .cases-cta h3 {
        font-size: 1.5rem;
    }
    
    /* Final CTA */
    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    .cta-option {
        padding: 24px 20px;
    }
    .cta-icon {
        font-size: 48px;
    }
    .cta-option h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .industries-section,
    .calculators-section,
    .services-section,
    .steps-section,
    .cases-section,
    .final-cta-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    /* Hero */
    .hero-anchor-menu {
        padding: 10px;
        margin: 20px 0 15px;
    }
    .anchor-link {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    /* Industries */
    .industries-grid {
        padding: 0 10px;
    }
    .industry-card {
        padding: 20px 15px;
    }
    .industry-icon {
        font-size: 40px;
    }
    .industry-card h3 {
        font-size: 18px;
    }
    
    /* Calculators */
    .calculators-grid {
        padding: 0 10px;
    }
    .calculator-card {
        padding: 20px 15px;
    }
    .calculator-icon {
        font-size: 40px;
    }
    .calculator-card h3 {
        font-size: 18px;
    }
    
    /* Services */
    .services-grid {
        padding: 0 10px;
    }
    .service-card {
        padding: 20px 15px;
    }
    .service-icon {
        font-size: 40px;
    }
    .service-card h3 {
        font-size: 16px;
    }
    
    /* Steps */
    .steps-section {
        padding: 30px 0;
    }
    .steps-timeline {
        padding: 0 10px;
    }
    .steps-timeline::before {
        left: 15px;
    }
    .step-item {
        padding-left: 50px;
        margin-bottom: 25px;
    }
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .step-content h3 {
        font-size: 16px;
    }
    .step-content p {
        font-size: 14px;
    }
    .risks-block {
        padding: 20px 15px;
        margin-top: 30px;
    }
    .risks-block h3 {
        font-size: 1.2rem;
    }
    .risk-amount {
        font-size: 28px;
    }
    
    /* Cases */
    .cases-grid {
        padding: 0 10px;
    }
    .case-card {
        padding: 20px 15px;
    }
    .case-card h3 {
        font-size: 18px;
    }
    .metric-value {
        font-size: 20px;
    }
    .cases-cta {
        padding: 25px 15px;
        margin-top: 30px;
    }
    .cases-cta h3 {
        font-size: 1.3rem;
    }
    .cases-cta p {
        font-size: 14px;
    }
    
    /* Final CTA */
    .final-cta-grid {
        padding: 0 10px;
    }
    .cta-option {
        padding: 20px 15px;
    }
    .cta-icon {
        font-size: 40px;
    }
    .cta-option h3 {
        font-size: 16px;
    }
    .cta-option p {
        font-size: 13px;
    }
}

/* ── Redesign responsive overrides ──────────────────────────── */
@media (max-width: 1024px) {
    .industries-grid .industry-card:first-child { grid-column: span 2; }
}
@media (max-width: 768px) {
    .industries-grid .industry-card:first-child { grid-column: span 1; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { flex-direction: column; }
    .feature-icon { margin-bottom: 0; }
    .final-cta-section .section-title { font-size: 1.8rem; }
    .cta-option.featured { transform: scale(1); }
    .cta-option.featured:hover { transform: translateY(-4px); }
}

/* ===============================================
   КАРУСЕЛЬ ПОПУЛЯРНЫХ СТАТЕЙ
   =============================================== */
.articles-carousel-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    overflow: hidden;
}

.articles-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0 20px;
}

.articles-carousel {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.articles-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* Специфичный селектор для карточек в карусели, чтобы не влиять на статьи */
.articles-carousel-section .article-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 280px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.articles-carousel-section .article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

/* Специфичный селектор для изображений в карусели */
.articles-carousel-section .article-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
}

.articles-carousel-section .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.articles-carousel-section .article-card h3 {
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #374151;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #2563eb;
    width: 30px;
    border-radius: 5px;
}

.articles-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive для карусели */
@media (max-width: 1200px) {
    .articles-carousel-section .article-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 260px;
    }
}

@media (max-width: 900px) {
    .articles-carousel-section .article-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 240px;
    }
}

@media (max-width: 640px) {
    .articles-carousel-section {
        padding: 50px 0;
    }
    
    .articles-carousel-wrapper {
        margin: 30px 0 20px;
        padding: 0 10px;
        gap: 8px;
    }
    
    .articles-carousel {
        margin: 0;
    }
    
    .articles-track {
        gap: 16px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
        flex-shrink: 0;
    }
    
    .articles-carousel-section .article-card {
        flex: 0 0 calc(85%);
        min-width: 280px;
        max-width: 100%;
    }
    
    .articles-carousel-section .article-image {
        height: 160px;
        border-radius: 12px 12px 0 0;
    }
    
    .articles-carousel-section .article-image img {
        border-radius: 12px 12px 0 0;
        object-fit: cover;
    }
    
    .articles-carousel-section .article-card h3 {
        font-size: 14px;
        padding: 14px;
        line-height: 1.3;
    }
    
    .articles-cta {
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .articles-cta .btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .articles-carousel-section {
        padding: 40px 0;
    }
    
    .articles-carousel-section .section-title {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    .articles-carousel-section .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .articles-carousel-wrapper {
        padding: 0 5px;
        gap: 5px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .articles-carousel-section .article-card {
        min-width: 260px;
    }
    
    .articles-carousel-section .article-image {
        height: 140px;
    }
    
    .articles-carousel-section .article-card h3 {
        font-size: 13px;
        padding: 12px;
        -webkit-line-clamp: 2;
    }
}