.verycredit-features-hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #007DFF 0%, #0066CC 100%);
    text-align: center;
    color: white;
}

.verycredit-page-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin: 20px 0 24px;
    letter-spacing: -2px;
}

.verycredit-page-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.verycredit-feature-detail {
    padding: 120px 0;
    background: var(--verycredit-bg-primary);
}

.verycredit-feature-detail-alt {
    background: var(--verycredit-bg-secondary);
}

.verycredit-feature-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.verycredit-feature-detail-text {
    max-width: 580px;
}

.verycredit-feature-detail-text .verycredit-section-label {
    margin-bottom: 16px;
}

.verycredit-feature-detail-text .verycredit-section-title {
    text-align: left;
    margin-bottom: 24px;
    font-size: 42px;
}

.verycredit-feature-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--verycredit-text-secondary);
    margin-bottom: 32px;
}

.verycredit-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.verycredit-feature-list li {
    font-size: 16px;
    color: var(--verycredit-text-primary);
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.verycredit-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verycredit-primary);
    font-weight: bold;
    font-size: 18px;
}

.verycredit-feature-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--verycredit-shadow-xl);
    display: block;
}

.verycredit-features-benefits {
    padding: 120px 0;
    background: var(--verycredit-bg-primary);
}

.verycredit-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.verycredit-benefit-item {
    background: var(--verycredit-bg-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--verycredit-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.verycredit-benefit-item:hover {
    border-color: var(--verycredit-primary);
    box-shadow: var(--verycredit-shadow-lg);
    transform: translateY(-4px);
}

.verycredit-benefit-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.verycredit-benefit-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--verycredit-text-primary);
    line-height: 1.3;
}

.verycredit-benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--verycredit-text-secondary);
}

.verycredit-cta {
    padding: 120px 0;
    background: var(--verycredit-bg-secondary);
}

.verycredit-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.verycredit-cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--verycredit-text-primary);
    letter-spacing: -1.5px;
}

.verycredit-cta-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--verycredit-text-secondary);
    margin-bottom: 48px;
}

.verycredit-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.verycredit-footer .verycredit-logo-text {
    color: white;
}

@media (max-width: 968px) {
    .verycredit-feature-detail-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .verycredit-feature-detail-text .verycredit-section-title {
        text-align: center;
        font-size: 36px;
    }

    .verycredit-feature-detail-text {
        max-width: 100%;
        text-align: center;
    }

    .verycredit-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .verycredit-page-title {
        font-size: 42px;
    }

    .verycredit-page-subtitle {
        font-size: 18px;
    }

    .verycredit-feature-detail {
        padding: 80px 0;
    }

    .verycredit-features-benefits {
        padding: 80px 0;
    }

    .verycredit-cta {
        padding: 80px 0;
    }

    .verycredit-cta-content h2 {
        font-size: 36px;
    }
}

