/* ADVANCED EFFECTS & ANIMATIONS */
/* Enhanced header, scroll effects, gradients, and interactions */

/* ENHANCED HEADER WITH REVIEWS */
.header-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 10px;
    align-items: center;
    justify-items: center;
    padding: 12px 0;
}

.logo-mobile {
    justify-self: start;
}

.header-reviews {
    justify-self: center;
    min-width: 200px;
}

.header-actions {
    justify-self: end;
}

.google-reviews-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 133, 244, 0.2);
    transition: all 0.3s ease;
}

.google-reviews-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.2);
}

.stars-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.stars {
    font-size: 14px;
    color: #ffd700;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.rating-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.reviews-count {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 2px;
}

.google-badge {
    font-size: 9px;
    background: #4285f4;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-fixed-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(1,174,170,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-fixed-header:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(1,174,170,0.4);
}

/* PAIN POINT CARD CENTERED WRAPPER */
.pain-point-wrapper {
    display: flex;
    justify-content: center;
    margin: 120px 0 40px;
    padding: 0 15px;
}

.professional-card {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

/* ANIMATED COUNTERS */
.stat-number,
.success-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

.stat-number.counting,
.success-number.counting {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(1,174,170,0.3);
}

.stat-unit,
.success-plus {
    font-weight: 800;
}

/* LARGE SUCCESS INDICATOR */
.trust-indicator-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--success);
    margin-top: 20px;
    text-align: center;
}

.success-icon {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(39,174,96,0.3));
    animation: success-pulse 2s infinite;
}

@keyframes success-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.success-plus {
    font-size: 24px;
    color: var(--primary);
}

.success-text {
    font-size: 16px;
}

/* BLINKING BORDERS FOR COMPARISON CARDS */
.comparison-card {
    position: relative;
    overflow: visible;
}

.comparison-card::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        var(--primary) 0%, 
        var(--primary-light) 25%, 
        var(--primary) 50%, 
        var(--primary-light) 75%, 
        var(--primary) 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: border-glow 3s ease-in-out infinite;
}

.comparison-card.innovative::after {
    animation: border-glow-primary 2s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% { 
        opacity: 0; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.02);
    }
}

@keyframes border-glow-primary {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.03);
    }
}

/* AI PREVIEW SECTION */
.ai-preview-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #01aeaa 100%);
    overflow: hidden;
}

.ai-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(102,126,234,0.8) 0%, rgba(118,75,162,0.8) 50%, rgba(1,174,170,0.8) 100%);
    animation: ai-bg-shift 10s ease-in-out infinite;
}

@keyframes ai-bg-shift {
    0%, 100% { transform: translateX(0) translateY(0) scale(1); }
    33% { transform: translateX(-20px) translateY(-10px) scale(1.05); }
    66% { transform: translateX(20px) translateY(10px) scale(0.95); }
}

.ai-preview-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 1px 0 rgba(255,255,255,0.4);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.ai-preview-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 
        0 40px 100px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.2);
}

.ai-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: ai-float 3s ease-in-out infinite;
}

@keyframes ai-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.ai-preview-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, #256b75 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.ai-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.ai-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: feature-pulse 2s infinite;
}

@keyframes feature-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ai-feature span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

/* AI DEMO SCREEN */
.ai-preview-demo {
    margin-bottom: 40px;
}

.demo-screen {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    margin: 0 auto;
    max-width: 400px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.demo-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102,126,234,0.1) 0%, 
        rgba(118,75,162,0.1) 50%, 
        rgba(1,174,170,0.1) 100%);
    animation: demo-glow 4s ease-in-out infinite;
}

@keyframes demo-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.demo-before,
.demo-after {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 40px 20px;
    color: white;
    font-weight: 600;
    text-align: center;
    transition: all 0.5s ease;
}

.demo-before {
    opacity: 0.7;
}

.demo-after {
    background: var(--gradient-primary);
    border-color: var(--primary);
    animation: demo-result-glow 3s ease-in-out infinite;
}

@keyframes demo-result-glow {
    0%, 100% { 
        box-shadow: 0 0 0 rgba(1,174,170,0.5); 
    }
    50% { 
        box-shadow: 0 0 20px rgba(1,174,170,0.8); 
    }
}

.demo-arrow {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50% { transform: translateX(5px); opacity: 1; }
}

.ai-processing {
    position: relative;
    z-index: 1;
}

.processing-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.processing-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    animation: processing-animation 2s ease-in-out infinite;
}

@keyframes processing-animation {
    0% { left: -100%; }
    100% { left: 100%; }
}

.processing-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* AI CTA BUTTON */
.ai-cta-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 
        0 15px 40px rgba(102,126,234,0.3),
        0 0 0 1px rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.ai-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.2), 
        transparent);
    transition: left 0.6s ease;
}

.ai-cta-button:hover::before {
    left: 100%;
}

.ai-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(102,126,234,0.4),
        0 0 0 1px rgba(255,255,255,0.2);
}

.ai-cta-icon {
    font-size: 2rem;
    animation: ai-icon-spin 4s linear infinite;
}

@keyframes ai-icon-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ai-cta-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ai-cta-main {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.ai-cta-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.ai-cta-arrow {
    font-size: 1.5rem;
    font-weight: 800;
    animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.ai-disclaimer {
    color: var(--gray);
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.8;
}

/* ENHANCED GRADIENTS FOR SECTIONS */
.evidence-section {
    background: 
        radial-gradient(circle at 20% 20%, rgba(1,174,170,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(39,174,96,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-mobile {
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.9) 100%),
        radial-gradient(circle at 50% 50%, rgba(1,174,170,0.05) 0%, transparent 70%);
}

.process-section {
    background: 
        linear-gradient(135deg, var(--primary-lighter) 0%, rgba(221,243,241,0.5) 50%, #ffffff 100%),
        radial-gradient(circle at 30% 70%, rgba(1,174,170,0.1) 0%, transparent 60%);
}

/* RESPONSIVE HEADER */
@media (max-width: 480px) {
    .header-content {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px 0;
    }
    
    .logo-mobile,
    .header-reviews,
    .header-actions {
        justify-self: center;
        padding: 5px;

    }
    
    .header-reviews {
        order: -1;
        margin-bottom: 5px;
    }
    
    .google-reviews-link {
        flex-direction: row;
        gap: 10px;
        padding: 6px 10px;
    }
    
    .reviews-count,
    .google-badge {
        font-size: 10px;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ai-cta-button {
        padding: 20px 25px;
    }
    
    .ai-cta-main {
        font-size: 1.1rem;
    }
    
    .pain-point-wrapper {
        margin-top: 140px;
        padding: 0 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .ai-features-grid {
        max-width: 600px;
        margin: 0 auto 40px;
    }
}

@media (min-width: 1025px) {
    .header-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .pain-point-wrapper {
        margin-top: 80px;
    }
    
    .professional-card {
        max-width: 800px;
    }
    
    .ai-preview-card {
        max-width: 900px;
        margin: 0 auto;
        padding: 60px 50px;
    }
}

/* PAYMENT PLANS SECTION */
.payment-plans {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #ffffff 100%);
    position: relative;
}

.payment-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(1,174,170,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(39,174,96,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.payment-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1,174,170,0.05) 0%, rgba(39,174,96,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.payment-card:hover::before {
    opacity: 1;
}

.payment-card.popular {
    transform: scale(1.05);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(1,174,170,0.1) 0%, rgba(255,255,255,0.95) 100%);
}

.payment-card.popular:hover {
    transform: translateY(-10px) scale(1.07);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(1,174,170,0.3);
    animation: popular-pulse 2s infinite;
}

@keyframes popular-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.payment-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.payment-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.discount-badge,
.flexibility-badge,
.comfort-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f9ca24 100%);
    color: white;
}

.flexibility-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    color: white;
}

.comfort-badge {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.price-info {
    text-align: center;
    margin-bottom: 25px;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.price-amount,
.monthly-payment {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-top: 5px;
}

.payment-period {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 600;
}

.duration-info {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
}

.payment-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-benefits li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-guarantee {
    margin: 50px 0;
    text-align: center;
}

.guarantee-content {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(39,174,96,0.1);
    padding: 20px 30px;
    border-radius: 50px;
    border: 2px solid rgba(39,174,96,0.2);
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text strong {
    font-size: 1.1rem;
    color: var(--success);
    display: block;
    margin-bottom: 5px;
}

.guarantee-text p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.payment-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-payment {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(1,174,170,0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-payment:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(1,174,170,0.4);
}

.rate-highlight-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(1,174,170,0.1) 0%, rgba(39,174,96,0.1) 100%);
    border: 2px solid rgba(1,174,170,0.2);
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 25px;
    animation: rate-glow 3s ease-in-out infinite;
}

@keyframes rate-glow {
    0%, 100% { 
        box-shadow: 0 0 0 rgba(1,174,170,0.2);
    }
    50% { 
        box-shadow: 0 0 25px rgba(1,174,170,0.3);
    }
}

.rate-icon {
    font-size: 2.5rem;
    animation: rate-bounce 2s ease-in-out infinite;
}

@keyframes rate-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.rate-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 5px 0;
}

.rate-content p {
    font-size: 1rem;
    color: var(--dark);
    margin: 0;
}

.rate-content p strong {
    color: var(--success);
}

/* GIFT HIGHLIGHT SECTION */
.booking-benefit.special-gift {
    background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,165,0,0.1) 100%);
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 12px;
    padding: 12px 15px;
    animation: gift-shimmer 3s ease-in-out infinite;
}

@keyframes gift-shimmer {
    0%, 100% { 
        box-shadow: 0 0 0 rgba(255,215,0,0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(255,215,0,0.6);
    }
}

.gift-icon {
    font-size: 1.2rem;
    animation: gift-bounce 2s ease-in-out infinite;
}

@keyframes gift-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.gift-highlight {
    margin: 30px 0;
}

.gift-card {
    background: linear-gradient(135deg, 
        rgba(255,215,0,0.1) 0%, 
        rgba(255,255,255,0.9) 50%, 
        rgba(255,165,0,0.1) 100%);
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%) 1;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255,215,0,0.2);
}

.gift-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 40%, 
        rgba(255,255,255,0.3) 50%, 
        transparent 60%);
    animation: gift-shine 3s linear infinite;
    pointer-events: none;
}

@keyframes gift-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.gift-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.sparkle-icon {
    font-size: 1.5rem;
    animation: sparkle-rotate 2s linear infinite;
}

@keyframes sparkle-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gift-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #b8860b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.gift-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.gift-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.gift-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.value-text {
    color: var(--gray);
    font-size: 0.9rem;
}

.value-amount {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray);
    text-decoration: line-through;
}

.value-free {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--success);
    background: linear-gradient(135deg, var(--success) 0%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: free-pulse 2s ease-in-out infinite;
}

@keyframes free-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* RESPONSIVE STYLES FOR NEW SECTIONS */
@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .payment-card {
        padding: 25px 20px;
    }
    
    .payment-card.popular {
        transform: none;
    }
    
    .price-amount,
    .monthly-payment {
        font-size: 2rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }
    
    .gift-card {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .gift-content h4 {
        font-size: 1.2rem;
    }
    
    .gift-value {
        flex-direction: column;
        gap: 5px;
    }
    
    .cta-payment {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .rate-highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
        gap: 10px;
    }
    
    .rate-icon {
        font-size: 2rem;
    }
    
    .rate-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .payment-plans {
        padding: 60px 0;
    }
    
    .payment-card {
        padding: 20px 15px;
    }
    
    .gift-header {
        flex-direction: column;
        gap: 5px;
    }
    
    .gift-header h3 {
        font-size: 1rem;
    }
    
    .sparkle-icon {
        font-size: 1.2rem;
    }
}