/* benefits.css - Benefits & Problem Section Styles */

/* Problem Section */
.problem-section {
    background: var(--dark-charcoal);
    color: white;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center bottom, rgba(123, 44, 191, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.problem-card {
    background: rgba(254, 254, 254, 0.05);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.problem-section .section-title {
    color: var(--secondary-gold);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.problems-list {
    margin-bottom: 2.5rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.problem-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 40px;
    height: 40px;
    background: rgba(244, 208, 63, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-gold);
}

.problem-icon i {
    font-size: 1.2rem;
    color: var(--primary-gold);
    animation: pulse 2s ease-in-out infinite;
}

.problem-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.truth-reveal {
    text-align: center;
    margin-top: 3rem;
}

.truth-reveal h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.truth-reveal h3 i {
    color: var(--secondary-gold);
    /* animation: bounce 2s ease-in-out infinite; */
}

.truth-reveal p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-highlight {
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-purple));
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(123, 44, 191, 0.3);
    position: relative;
    overflow: hidden;
}

.solution-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    /* animation: shimmer 4s ease-in-out infinite; */
}

.solution-highlight h4 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.solution-highlight h4 i {
    color: var(--secondary-gold);
    animation: sparkle 3s ease-in-out infinite;
}

.solution-highlight p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

/* Benefits Section Enhanced */
.benefits-section {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-cream) 100%);
    position: relative;
    padding: 80px 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.benefits-subtitle p {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-style: italic;
    margin: 0;
}

.benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--soft-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(123, 44, 191, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card.featured {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--accent-gold) 100%);
    border: 3px solid var(--deep-purple);
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(123, 44, 191, 0.2);
}

.benefit-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-purple));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(123, 44, 191, 0.3);
    z-index: 2;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 44, 191, 0.05), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

.benefit-card:active {
    transform: scale(0.98);
}

.benefit-card.featured:active {
    transform: scale(1);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(123, 44, 191, 0.2);
    position: relative;
    z-index: 1;
    border: 3px solid var(--primary-gold);
}

.benefit-card.featured .benefit-icon {
    width: 120px;
    height: 120px;
    border: 4px solid var(--deep-purple);
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(123, 44, 191, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
    animation: overlayPulse 3s ease-in-out infinite;
}

.icon-overlay i {
    color: white;
    font-size: 2rem;
    /* animation: bounce 2s ease-in-out infinite; */
}

.benefit-card.featured .icon-overlay i {
    font-size: 2.5rem;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.benefit-card h3 {
    color: var(--deep-purple);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.benefit-card.featured h3 {
    font-size: 1.6rem;
    color: var(--deep-purple);
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.benefit-card.featured p {
    font-size: 1.1rem;
}

.benefit-value {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-charcoal);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(244, 208, 63, 0.3);
    position: relative;
    z-index: 1;
}

.benefit-card.featured .benefit-value {
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-purple));
    color: white;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
}

.total-value {
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-purple));
    color: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(123, 44, 191, 0.3);
    border: 3px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.total-value::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(244, 208, 63, 0.1), transparent);
    /* animation: rotate 20s linear infinite; */
    pointer-events: none;
}

.value-breakdown {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.total-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.original-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.discount-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
}

.final-price {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    /* animation: glow 2s ease-in-out infinite; */
}

.savings-highlight {
    background: rgba(244, 208, 63, 0.2);
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    position: relative;
    z-index: 1;
}

.savings-highlight span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow {
    0%, 100% { 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 20px rgba(244, 208, 63, 0.8);
        transform: scale(1.05);
    }
}

/* Mobile Responsive */
@media (max-width: 479px) {
    .benefits-header {
        margin-bottom: 2rem;
    }
    
    .benefits-subtitle p {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-card.featured {
        transform: none;
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
    }
    
    .benefit-card.featured .benefit-icon {
        width: 90px;
        height: 90px;
    }
    
    .icon-overlay i {
        font-size: 1.5rem;
    }
    
    .benefit-card.featured .icon-overlay i {
        font-size: 1.8rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card.featured h3 {
        font-size: 1.3rem;
    }
    
    .total-value {
        padding: 2rem;
    }
    
    .original-price {
        font-size: 2rem;
    }
    
    .final-price {
        font-size: 2.2rem;
    }
    
    .savings-highlight span {
        font-size: 1.1rem;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .benefit-card.featured {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .benefits-subtitle p {
        font-size: 1.3rem;
    }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .benefit-card.featured {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        max-width: none;
    }
    
    .benefit-icon {
        width: 110px;
        height: 110px;
    }
    
    .benefit-card.featured .benefit-icon {
        width: 140px;
        height: 140px;
    }
    
    .icon-overlay i {
        font-size: 2.2rem;
    }
    
    .benefit-card.featured .icon-overlay i {
        font-size: 2.8rem;
    }
}

/* Proof Section */
.proof-section {
    background: var(--primary-gold);
    position: relative;
}

.proof-card {
    background: var(--warm-cream);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(123, 44, 191, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--deep-purple);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.proof-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 44, 191, 0.1), transparent);
    /* animation: shimmer 5s ease-in-out infinite; */
}

.proof-item:active {
    transform: scale(0.98);
}

.proof-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(123, 44, 191, 0.3);
}

.proof-icon i {
    animation: float 3s ease-in-out infinite;
}

.proof-item:nth-child(2) .proof-icon i {
    animation-delay: 0.5s;
}

.proof-item:nth-child(3) .proof-icon i {
    animation-delay: 1s;
}

.proof-item:nth-child(4) .proof-icon i {
    animation-delay: 1.5s;
}

.proof-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Steps Section */
.steps-section {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 100%);
}

.urgency-banner {
    text-align: center;
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-purple));
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(123, 44, 191, 0.3);
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    /* animation: shimmer 3s ease-in-out infinite; */
}

.urgency-banner p:first-child {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    position: relative;
    z-index: 1;
}

.urgency-banner p:first-child i {
    color: var(--secondary-gold);
    margin-right: 0.5rem;
    /* animation: wiggle 2s ease-in-out infinite; */
}

.dream-text {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.dream-text i {
    color: var(--primary-gold);
    animation: sparkle 2s ease-in-out infinite;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(123, 44, 191, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 44, 191, 0.05), transparent);
    animation: shimmer 6s ease-in-out infinite;
}

.step-item:active {
    transform: scale(0.98);
}

.step-number {
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-purple));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(123, 44, 191, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 {
    color: var(--deep-purple);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-content h3 i {
    color: var(--royal-purple);
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Zoom Trust Section */
.zoom-trust-section {
    background: var(--dark-charcoal);
    color: white;
}

.zoom-trust-section .section-title {
    color: var(--primary-gold);
}

.zoom-screenshots {
    text-align: center;
}

.zoom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.zoom-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zoom-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 8px 32px rgba(244, 208, 63, 0.3);
    transition: all 0.3s ease;
    border-radius: 15px;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(123, 44, 191, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
/*     animation: overlayGlow 4s ease-in-out infinite; */
}

.zoom-overlay i {
    color: white;
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.zoom-overlay span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes overlayGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.4; }
}

.zoom-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 8px 32px rgba(244, 208, 63, 0.3);
    transition: all 0.3s ease;
    border-radius: 15px;
}

.zoom-item:active {
    transform: scale(0.98);
}

.zoom-caption {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.zoom-caption i {
    color: var(--primary-gold);
    animation: heartbeat 2s ease-in-out infinite;
}

/* Mobile Responsive */
@media (max-width: 479px) {
    .problem-card,
    .proof-card {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-overlay i {
        font-size: 1.4rem;
    }
    
    .proof-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .zoom-grid {
        grid-template-columns: 1fr;
    }
    
    .zoom-img {
        height: 180px;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .zoom-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .zoom-img {
        height: 150px;
    }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-timeline {
        gap: 2.5rem;
    }
    
    .benefit-icon {
        width: 90px;
        height: 90px;
    }
    
    .icon-overlay i {
        font-size: 2rem;
    }
    
    .proof-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
}