.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('/img/lp/lp09/database-hero-bg.jpeg') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.section-padding {
    padding: 80px 0;
}
.feature-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('/img/lp/lp09/cta-bg.jpeg') center/cover no-repeat;
    color: white;
}
.testimonial-card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
}
.price-card {
    transform: scale(1.05);
    border: 3px solid #667eea;
}
.highlight-free {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    display: inline-block;
}
.dark-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('/img/lp/lp09/dark-tech-bg.jpeg') center/cover no-repeat;
    color: white;
}
.light-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('/img/lp/lp09/light-office-bg.jpeg') center/cover no-repeat;
}
.attention-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}
.attention-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/lp/lp09/attention-bg.jpeg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}
.attention-section .container {
    position: relative;
    z-index: 1;
}
.attention-section h2 {
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-size: 2.5rem;
}
.attention-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
}
.attention-section .lead {
    font-size: 1.4rem;
    font-weight: 600;
}
.attention-section .h4 {
    color: #FFD700;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.program-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
                url('/img/lp/lp09/programming-bg.jpeg') center/cover no-repeat;
    color: white;
}
.results-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('/img/lp/lp09/success-bg.jpeg') center/cover no-repeat;
}
.faq-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('/img/lp/lp09/faq-bg.jpeg') center/cover no-repeat;
    color: white;
}
.dark-section .feature-icon {
    color: #FFD700;
}

/* FAQ стили для лучшей видимости ответов */
.faq-section .accordion-body {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 0 0 8px 8px;
}
.faq-section .accordion-item {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
    border-radius: 8px;
}
.faq-section .accordion-button {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px 8px 0 0;
    border: none;
}
.faq-section .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
    box-shadow: none;
}
.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.5);
}
.faq-section .accordion-button::after {
    filter: brightness(0) invert(1);
}
.section-bg-why {
    background-image: url('/img/lp/lp18/team-collaboration.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}
.section-bg-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.section-bg-why .container {
    position: relative;
    z-index: 2;
}
.btn-cta {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(238, 90, 36, 0.4);
}