html .section {
    margin: 0px 0 40px 0;
}

@media (max-width: 768px) {
    html .section {
        margin: 10px 0;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: -15px;
    margin-bottom: 40px;
}

.ai-feature {
    background-color: rgba(45, 127, 249, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    border-left: 3px solid var(--primary-color);
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.what-you-get {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.what-you-get h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.what-you-get ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.what-you-get li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 22px;
    margin: 0;
}

.card-content {
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-content li {
    margin-bottom: 8px;
}

/* Мобильная адаптация для erp страницы */
@media (max-width: 768px) {
    .container {
        padding: 12px;
    }

    .hero-section {
        padding: 20px 15px;
        margin: 15px 0;
    }

    .hero-title {
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .hero-description {
        display: none;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .card {
        padding: 20px;
        margin: 20px 0;
        border-radius: 12px;
    }

    .card-header {
        display: flex;
        align-items: center;
        text-align: left;
        margin-bottom: 20px;
        gap: 16px;
        padding: 0;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-right: 0;
        margin-bottom: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .card-title {
        font-size: 18px;
        text-align: left;
        line-height: 1.3;
        margin: 0;
        flex: 1;
        font-weight: 600;
        padding: 4px 0;
    }

    .card-content {
        /* padding-left: 0; */
        font-size: 14px;
        margin-bottom: 20px;
        text-align: left;
        line-height: 1.5;
    }

    .card-content li {
        margin-bottom: 10px;
        text-align: left;
        padding-left: 0;
    }

    .card-content ul {
        padding-left: 16px;
        margin: 0;
    }

    .ai-feature {
        padding: 16px;
        margin: 20px 0;
        border-radius: 10px;
    }

    .ai-badge {
        font-size: 13px;
        padding: 6px 12px;
        margin-bottom: 8px;
    }

    .ai-feature p {
        font-size: 14px;
        text-align: left;
        margin: 0;
        line-height: 1.5;
    }

    .what-you-get {
        padding: 20px;
        margin-top: 20px;
        border-radius: 10px;
    }

    .what-you-get h4 {
        font-size: 15px;
        text-align: left;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .what-you-get ul {
        padding-left: 16px;
        margin: 0;
    }

    .what-you-get li {
        font-size: 14px;
        text-align: left;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .cta-section {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .cta-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 15px;
    }

    .cta-description {
        font-size: 14px;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .mobile-cta-block {
        display: block;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        border-radius: 12px;
        padding: 20px;
        margin: 25px 0;
        text-align: center;
        color: white;
    }

    .mobile-cta-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .mobile-cta-text {
        margin-bottom: 15px;
        opacity: 0.9;
        font-size: 14px;
        line-height: 1.4;
    }

    .btn-outline-white {
        background: transparent;
        color: white;
        border: 2px solid white;
        padding: 10px 20px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .card {
        padding: 18px;
        margin: 18px 0;
    }

    .card-header {
        gap: 14px;
        margin-bottom: 18px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .card-title {
        font-size: 17px;
    }

    .card-content {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .card-content li {
        margin-bottom: 8px;
    }

    .ai-feature {
        padding: 14px;
        margin: 18px 0;
    }

    .ai-badge {
        font-size: 12px;
        padding: 5px 10px;
    }

    .ai-feature p {
        font-size: 13px;
    }

    .what-you-get {
        padding: 18px;
        margin-top: 18px;
    }

    .what-you-get h4 {
        font-size: 14px;
    }

    .what-you-get li {
        font-size: 13px;
    }

    .cta-title {
        font-size: 18px;
    }

    .cta-description {
        font-size: 13px;
    }

    .mobile-cta-block {
        padding: 18px;
    }

    .mobile-cta-title {
        font-size: 16px;
    }

    .mobile-cta-text {
        font-size: 13px;
    }
}

/* Дополнительные стили для лучшего выравнивания */
@media (max-width: 768px) {
    .card-header {
        min-height: 48px;
        align-items: center;
    }

    .card-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-title {
        display: flex;
        align-items: center;
        min-height: 48px;
    }
}

/* Очень маленькие экраны - дополнительные корректировки */
@media (max-width: 360px) {
    .card {
        padding: 16px;
        margin: 16px 0;
    }

    .card-header {
        gap: 12px;
        margin-bottom: 16px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-content {
        font-size: 12px;
        margin-bottom: 16px;
    }
}
