/* ===================== */
/* PRICING SECTION      */
/* ===================== */

.pricing-section {
    padding: 60px 20px;
    background: #ffffff;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ===================== */
/* HESITATION CARD      */
/* ===================== */

.hesitation-card {
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.1), rgba(61, 20, 69, 0.08));
    border: 3px solid #f5c542;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.hesitation-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hesitation-card h2 {
    font-size: 32px;
    color: #67047a;
    margin: 0 0 15px 0;
}

.hesitation-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hesitation-content {
    background: #ffffff;
    border-left: 5px solid #f5c542;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
}

.hesitation-content p {
    font-size: 16px;
    color: #2b0f2f;
    line-height: 1.8;
    margin: 0;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.3), rgba(245, 197, 66, 0.1));
    padding: 2px 8px;
    border-radius: 5px;
    color: #f5c542;
    font-weight: bold;
}

/* ===================== */
/* WHY SECTION          */
/* ===================== */

.why-section {
    margin-bottom: 60px;
}

.why-section h3 {
    font-size: 28px;
    color: #67047a;
    text-align: center;
    margin-bottom: 40px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: #f9f7f3;
    border: 2px solid #f5c542;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 197, 66, 0.2);
}

.why-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3d1445, #2b0f2f);
    color: #f5c542;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.why-card h4 {
    font-size: 18px;
    color: #67047a;
    margin: 0 0 12px 0;
}

.why-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* ===================== */
/* REASSURANCE SECTION  */
/* ===================== */

.reassurance-section {
    background: linear-gradient(135deg, rgba(61, 20, 69, 0.05), rgba(245, 197, 66, 0.08));
    border: 2px dashed #f5c542;
    border-radius: 15px;
    padding: 50px 40px;
    margin-bottom: 60px;
    text-align: center;
}

.reassurance-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
}

.reassurance-section h2 {
    font-size: 28px;
    color: #67047a;
    margin: 0 0 15px 0;
}

.reassurance-section > p:nth-of-type(1) {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.reassurance-box {
    background: #ffffff;
    border-left: 5px solid #f5c542;
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
    text-align: left;
}

.reassurance-box p {
    font-size: 16px;
    color: #2b0f2f;
    line-height: 1.8;
    margin: 0;
}

.reassurance-closing {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0 !important;
}

/* ===================== */
/* FAVORITES SECTION    */
/* ===================== */

.favorites-section {
    margin-bottom: 60px;
}

.favorites-section h2 {
    font-size: 28px;
    color: #67047a;
    text-align: center;
    margin-bottom: 10px;
}

.favorites-subtitle {
    font-size: 16px;
    color: #666666;
    text-align: center;
    margin-bottom: 40px;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.favorite-card {
    background: #ffffff;
    border: 2px solid #f5c542;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.favorite-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(245, 197, 66, 0.25);
    border-color: #ffd86b;
}

.favorite-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.favorite-card h4 {
    font-size: 18px;
    color: #67047a;
    margin: 0 0 12px 0;
}

.favorite-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* ===================== */
/* DETAILS BUTTON       */
/* ===================== */

.details-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #f5c542, #ffd86b);
    color: #2b0f2f;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.details-button:hover {
    background: linear-gradient(135deg, #ffd86b, #f5c542);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}

/* ===================== */
/* CTA BOX              */
/* ===================== */

.cta-box {
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.1), rgba(61, 20, 69, 0.05));
    border: 2px solid #f5c542;
    border-radius: 15px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
}

.cta-box h3 {
    font-size: 28px;
    color: #67047a;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
}

.cta-button {
    padding: 14px 40px;
    background: #f5c542;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #2b0f2f;
}

.cta-button:hover {
    background: #ffd86b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}

/* ===================== */
/* RESPONSIVE           */
/* ===================== */

@media (max-width: 768px) {

    .pricing-section {
        padding: 40px 15px;
    }

    .hesitation-card {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .hesitation-card h2 {
        font-size: 24px;
    }

    .hesitation-icon {
        font-size: 45px;
    }

    .hesitation-subtitle {
        font-size: 15px;
    }

    .hesitation-content {
        padding: 20px;
    }

    .hesitation-content p {
        font-size: 15px;
    }

    .why-section h3 {
        font-size: 24px;
    }

    .why-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 25px;
    }

    .why-card h4 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 14px;
    }

    .reassurance-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .reassurance-section h2 {
        font-size: 24px;
    }

    .reassurance-icon {
        font-size: 40px;
    }

    .reassurance-section > p {
        font-size: 15px;
    }

    .reassurance-box {
        padding: 15px;
    }

    .reassurance-box p {
        font-size: 15px;
    }

    .favorites-section {
        margin-bottom: 40px;
    }

    .favorites-section h2 {
        font-size: 24px;
    }

    .favorites-subtitle {
        font-size: 15px;
    }

    .favorites-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .favorite-card {
        padding: 25px;
    }

    .favorite-card h4 {
        font-size: 16px;
    }

    .favorite-card p {
        font-size: 14px;
    }

    .details-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cta-box {
        padding: 25px;
        margin: 40px 0;
    }

    .cta-box h3 {
        font-size: 22px;
    }

    .cta-box p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .pricing-container {
        padding: 0;
    }

    .hesitation-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .hesitation-card h2 {
        font-size: 20px;
    }

    .hesitation-icon {
        font-size: 40px;
    }

    .hesitation-subtitle {
        font-size: 14px;
    }

    .hesitation-content {
        padding: 15px;
    }

    .hesitation-content p {
        font-size: 14px;
    }

    .why-section h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .why-cards {
        gap: 15px;
    }

    .why-card {
        padding: 20px;
    }

    .why-card h4 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 13px;
    }

    .reassurance-section {
        padding: 20px 15px;
    }

    .reassurance-section h2 {
        font-size: 20px;
    }

    .reassurance-icon {
        font-size: 35px;
    }

    .reassurance-section > p {
        font-size: 13px;
    }

    .reassurance-box {
        padding: 12px;
    }

    .reassurance-box p {
        font-size: 13px;
    }

    .favorites-grid {
        gap: 15px;
    }

    .favorite-card {
        padding: 20px;
    }

    .favorite-card h4 {
        font-size: 15px;
    }

    .favorite-card p {
        font-size: 13px;
    }

    .favorite-icon {
        font-size: 35px;
    }

    .details-button {
        padding: 10px 18px;
        font-size: 13px;
    }

    .cta-box {
        padding: 20px;
        margin: 30px 0;
    }

    .cta-box h3 {
        font-size: 18px;
    }

    .cta-box p {
        font-size: 14px;
    }
}