/* ==========================================================================
   VALUE PROPOSITION SECTION STYLES
   Features a side-by-side card layout with a prominent call-to-action button.
   ========================================================================== */

/**
 * Main Section Container
 * - Light background with a subtle grid pattern for a technical feel.
 * - Centralized text and ample padding.
 */
.value-proposition-section {
    font-family: 'ABC Normal', 'IBM Plex Sans';
    background-color: #ffffff;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    padding: 80px 20px;
    color: #1f2937;
    background-attachment: fixed;
}

/**
 * Centered Container
 * - Limits the width of the content for readability on wide screens.
 */
.value-proposition-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/**
 * Typography - Titles and Subtitles
 */
.vp-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: center;
}

.vp-subtitle {
    font-size: 1.25rem;
    color: #000000;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    text-align: center;
}

/**
 * Cards Layout
 * - Uses Flexbox to display exactly two cards in a row.
 * - Gap provides spacing between elements.
 */
.vp-cards-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 50px;
}

/**
 * Individual Card Styling
 * - Elevated design with subtle shadow and border-radius.
 * - Transition effects for smooth hover interaction.
 */
.vp-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/**
 * Card Header and Icon
 * - Icon wrapper is slightly offset to align vertically with the title baseline.
 */
.vp-card-header {
    display: flex;
    align-items: left;
    gap: 16px;
    margin-bottom: 30px;
}

.vp-icon-wrapper {
    width: 55px;
    height: 55px;
    background-color: #ffededE6;
    border-radius: 10px;
    display: flex;
    align-items: left;
    justify-content: center;
    color: #ee0505FF;
    margin-top: -12px;
}

.vp-icon-wrapper i {
    font-size: 38px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
}



.vp-card-title {
    font-size: 1.5rem;
    font-weight: normal;
    color: #111827;
}

/**
 * Card Content (Lists)
 */
.vp-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vp-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #4b5563;
}

.vp-dot {
    width: 8px;
    height: 8px;
    background-color: #ee0505FF;
    border-radius: 50%;
    flex-shrink: 0;
}

/**
 * CTA Button Section
 * - High-visibility button with rounded corners and shadow depth.
 */
.vp-cta-container {
    margin-top: 40px;
    text-align: center;
}

.vp-btn-big {
    display: block;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(242, 76, 76, 1) 0%, rgba(180, 4, 4, 1) 100%);
    border: 1px solid #571a1aFF;
    color: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 4px 4px 4px 0px #00000033;
}


.vp-btn-big:hover {
    background-image: linear-gradient(to bottom, rgba(242, 76, 76, 1) 0%, rgba(180, 4, 4, 1) 100%);
    transform: scale(1.05);
}

.vp-btn-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.vp-btn-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {

    .value-proposition-section {
        padding: 50px 15px;
    }

    .vp-title {
        font-size: 1.85rem;
        margin-bottom: 16px;
        text-align: left;
    }

    .vp-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        text-align: left;
    }

    .vp-cards-grid {
        flex-direction: column;
        gap: 20px;
    }

    .vp-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .vp-card-header {
        margin-bottom: 20px;
    }

    .vp-card-title {
        font-size: 1.35rem;
    }

    .vp-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-top: -8px;
    }

    .vp-icon-wrapper i {
        font-size: 30px !important;
    }

    .vp-btn-big {
        padding: 20px 15px;
    }

    .vp-btn-title {
        font-size: 1.25rem;
    }

    .vp-btn-subtitle {
        font-size: 0.9rem;
    }
}