/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 50%, #fff7ed 100%);
    color: #1f2937;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== ANIMATIONS ========== */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 40px rgba(34, 197, 94, 0.8); }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-glow {
    animation: glow 2s infinite;
}

.animate-shake {
    animation: shake 0.5s infinite;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TEXT COLORS ========== */
.text-green {
    background: linear-gradient(135deg, #22c55e 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-orange {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    animation: bounce 2s infinite, glow 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* ========== URGENCY BANNER ========== */
.urgency-banner {
    background: linear-gradient(90deg, #dc2626 0%, #ea580c 50%, #dc2626 100%);
    background-size: 200% 100%;
    animation: gradient 3s ease infinite;
    color: white;
    padding: 15px 20px;
    text-align: center;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-weight: 600;
}

.timer-box {
    display: flex;
    gap: 5px;
    align-items: center;
}

.timer-digit {
    background: white;
    color: #dc2626;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 18px;
    min-width: 45px;
    text-align: center;
}

.timer-separator {
    font-size: 20px;
    font-weight: 800;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    z-index: -1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #059669 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ========== PRODUCT IMAGE ========== */
.product-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.product-box {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid #22c55e;
}

.product-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #22c55e 0%, #f97316 100%);
    border-radius: 35px;
    z-index: -1;
    filter: blur(30px);
    opacity: 0.4;
    animation: pulse 3s infinite;
}

.product-img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    display: block;
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 18px;
    animation: bounce 2s infinite;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

/* ========== PRICE & CTA ========== */
.price-section {
    text-align: center;
    margin-bottom: 20px;
}

.old-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 1.5rem;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #16a34a;
    margin-left: 15px;
}

.price-tag {
    color: #6b7280;
    margin-left: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 60px;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.6);
}

.cta-button svg {
    width: 32px;
    height: 32px;
}

.delivery-info {
    text-align: center;
    color: #16a34a;
    font-weight: 600;
    margin-top: 20px;
    animation: pulse 2s infinite;
}

/* ========== TRUST BADGES ========== */
.trust-section {
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    padding: 40px 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    color: white;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 800;
}

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

/* ========== SECTION TITLES ========== */
.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* ========== BENEFITS SECTION ========== */
.benefits {
    padding: 80px 20px;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid #bbf7d0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.benefit-desc {
    color: #6b7280;
}

/* ========== VIDEO SECTION ========== */
.videos {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.videos .section-title {
    color: white;
}

.videos .section-subtitle {
    color: #9ca3af;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #374151;
}

.video-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #22c55e 0%, #f97316 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

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

.video-player {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
}

.play-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.video-small-text {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

.video-info {
    padding: 20px;
    background: #1f2937;
}

.video-rating {
    color: #fbbf24;
    margin-bottom: 10px;
}

.video-title {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.video-verified {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* ========== BEFORE AFTER ========== */
.before-after {
    padding: 80px 20px;
    background: #fff7ed;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.result-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #fed7aa;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: #22c55e;
}

.result-image {
    height: 200px;
    background: linear-gradient(135deg, #fb923c 0%, #22c55e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.result-image-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.result-image-text {
    font-weight: 700;
}

.result-content {
    padding: 25px;
}

.result-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.result-avatar {
    width: 50px;
    height: 50px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.result-name {
    font-weight: 700;
}

.result-city {
    color: #6b7280;
    font-size: 0.9rem;
}

.result-stats {
    background: #f0fdf4;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.result-loss {
    font-size: 2rem;
    font-weight: 900;
    color: #16a34a;
}

.result-time {
    color: #6b7280;
}

.result-rating {
    text-align: center;
    margin-top: 15px;
    color: #fbbf24;
    font-size: 1.2rem;
}

/* ========== HOW IT WORKS ========== */
.how-works {
    padding: 80px 20px;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22c55e 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
}

.step-number {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 4px solid white;
    font-size: 0.9rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    color: #6b7280;
}

/* ========== PRICING SECTION ========== */
.pricing {
    padding: 80px 20px;
    background: linear-gradient(135deg, #14532d 0%, #065f46 100%);
}

.pricing .section-title {
    color: white;
}

.pricing .section-subtitle {
    color: #86efac;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    color: white;
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.1) translateY(-10px);
}

.price-card-wrapper {
    position: relative;
}

.best-value-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #dc2626;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(12deg);
    z-index: 10;
}

.pack-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.pack-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pack-duration {
    color: #6b7280;
    margin-bottom: 20px;
}

.price-card.featured .pack-duration {
    color: rgba(255, 255, 255, 0.8);
}

.pack-old-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 1.2rem;
}

.price-card.featured .pack-old-price {
    color: rgba(255, 255, 255, 0.7);
}

.pack-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #16a34a;
}

.price-card.featured .pack-price {
    color: white;
}

.pack-save {
    font-size: 0.9rem;
    color: #16a34a;
    margin-bottom: 20px;
}

.price-card.featured .pack-save {
    color: rgba(255, 255, 255, 0.9);
}

.pack-button {
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.pack-button.primary {
    background: #22c55e;
    color: white;
}

.pack-button.primary:hover {
    background: #16a34a;
}

.pack-button.secondary {
    background: white;
    color: #f97316;
}

.pack-button.secondary:hover {
    background: #f0fdf4;
}

.pricing-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.pricing-feature {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 80px 20px;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #4b5563;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.testimonial-name {
    font-weight: 700;
}

.testimonial-city {
    color: #6b7280;
    font-size: 0.85rem;
}

.testimonial-verified {
    margin-left: auto;
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========== FAQ ========== */
.faq {
    padding: 80px 20px;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f0fdf4;
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 15px;
    border: 1px solid #bbf7d0;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.faq-answer {
    color: #4b5563;
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #16a34a 0%, #059669 50%, #16a34a 100%);
    text-align: center;
}

.final-cta .section-title {
    color: white;
    margin-bottom: 15px;
}

.final-cta-subtitle {
    color: #bbf7d0;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #16a34a;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 25px 60px;
    border-radius: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    transform: scale(1.05) translateY(-5px);
}

.final-cta-button svg {
    width: 40px;
    height: 40px;
}

.final-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    color: white;
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 15px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .whatsapp-float {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .product-img {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .final-cta-button {
        font-size: 1.1rem;
        padding: 18px 35px;
    }
    
    .final-cta-button svg {
        width: 28px;
        height: 28px;
    }
    
    .urgency-content {
        font-size: 0.9rem;
    }
    
    .timer-digit {
        padding: 4px 10px;
        font-size: 14px;
        min-width: 38px;
    }
}