/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.header-container,
.hero-container,
.categories-container,
.how-it-works-container,
.benefits-container,
.testimonials-container,
.save-more-container,
.mission-container,
.final-cta-container,
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(34, 197, 94, 0.7);
    }
    to {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    }
}

/* Header */
.header {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo-brand-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-container {
    background: #1f2937;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.logo {
    height: 85px;
    width: auto;
    border-radius: 12px;
    display: block;
}

.brand-name {
    font-size: 24px;
    font-weight: 900;
    color: #1f2937;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    margin: 0;
}

.brand-tagline {
    font-size: 14px;
    color: #374151;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.header-actions {
    display: grid;
    align-items: center;
    gap: 12px;
}

.live-deals-badge {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: white;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(220, 38, 38, 0.4);
    animation: pulse 3s infinite;
}

.whatsapp-btn {
    background: linear-gradient(to right, #1f2937, #111827);
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(55, 65, 81, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #111827, #000000);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 50%, #fdf2f8 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.bg-element-1 {
    top: 20%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    animation: float 8s ease-in-out infinite;
    opacity: 0.02;
}

.bg-element-2 {
    bottom: 20%;
    right: 20%;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #fbbf24, #fed7aa);
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
    opacity: 0.02;
}

.bg-element-3 {
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    animation: float 12s ease-in-out infinite;
    animation-delay: 4s;
    opacity: 0.02;
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.trust-indicator {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 8px 16px;
    border-radius: 9999px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.trust-indicator i {
    font-size: 16px;
}

.trust-indicator i.fa-star {
    color: #eab308;
}

.trust-indicator i.fa-shield-alt {
    color: #22c55e;
}

.trust-indicator i.fa-clock {
    color: #3b82f6;
}

.trust-indicator span {
    font-size: 14px;
    font-weight: 800;
    color: #1f2937;
}

.hero-banner {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #ef4444, #f97316);
    color: white;
    padding: 16px 32px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(239, 68, 68, 0.3);
    animation: pulse 3s infinite;
    gap: 12px;
    max-width: 90%;
}

.hero-banner i {
    animation: bounce 2s infinite;
}

.hero-title {
    position: relative;
    margin-bottom: 40px;
}

.hero-title h1 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.title-main {
    color: #1f2937;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.title-gradient {
    background: linear-gradient(to right, #ea580c, #ef4444, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    position: relative;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25)) saturate(1.3) brightness(1.1);
}

.title-gradient::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #ea580c, #ef4444, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -1;
    filter: blur(3px);
}

.hero-description {
    max-width: 900px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-description p {
    font-size: 24px;
    color: #374151;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.store-badge {
    background: linear-gradient(to right, #f97316, #dc2626);
    color: white;
    padding: 8px 16px;
    text-align: center;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.store-badge:hover {
    transform: scale(1.05);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.cta-primary {
    background: linear-gradient(to right, #22c55e, #059669, #047857);
    color: white;
    padding: 20px 40px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(34, 197, 94, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: glow 2s ease-in-out infinite alternate;
    text-decoration: none;
}

.cta-primary:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #16a34a, #047857);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 2px solid #d1d5db;
    padding: 20px 40px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.cta-secondary:hover {
    transform: scale(1.05);
    background: #f9fafb;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(168, 85, 247, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #ec4899, #f59e0b, #22c55e);
    border-radius: 24px 24px 0 0;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 35px 70px -12px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.stat-card i {
    font-size: 40px;
    margin-bottom: 12px;
    color: #a855f7;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #a855f7;
    margin-bottom: 8px;
}

.stat-card p {
    color: #6b7280;
    font-weight: 600;
    margin: 0;
}

/* WhatsApp Benefits Section */
.whatsapp-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.whatsapp-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.whatsapp-benefits .section-header {
    text-align: center;
    margin-bottom: 64px;
}

.whatsapp-benefits .section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 32px;
    color: #1f2937;
}

.benefits-description {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.benefits-description p {
    margin-bottom: 16px !important;
    font-weight: 500;
    font-size:16px !important;
    color: #374151 !important;
}

.benefits-description .highlight-text {
    font-weight: 700 !important;
    color: #15803d !important;
    font-size: 20px;
    text-shadow:none !important;
}

.benefits-description .power-text {
    font-size: 22px;
    font-weight: 800;
    color: #7e22ce !important;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
}

.benefit-card.instant::before {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.benefit-card.verified::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.benefit-card.early-access::before {
    background: linear-gradient(90deg, #a855f7, #7c3aed);
}

.benefit-card.special-offers::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.benefit-card.instant .benefit-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.benefit-card.verified .benefit-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.benefit-card.early-access .benefit-icon {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.benefit-card.special-offers .benefit-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.whatsapp-cta {
    text-align: center;
}

.whatsapp-btn-main {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 20px 40px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    animation: glow 2s ease-in-out infinite alternate;
}

.whatsapp-btn-main:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 35px 70px -12px rgba(34, 197, 94, 0.6);
}

.whatsapp-note {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 24px;
    /*color: #1f2937;*/
}

.text-gradient {
    background: linear-gradient(to right, #ea580c, #ef4444, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(249, 250, 251, 0.9) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 32px;
    padding: 40px 32px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 32px 32px 0 0;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 35px 70px -12px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.category-card:hover::after {
    opacity: 1;
}

.category-card.electronics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(147, 197, 253, 0.05));
    z-index: -1;
}

.category-card.electronics::after {
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
}

.category-card.fashion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(251, 207, 232, 0.05));
    z-index: -1;
}

.category-card.fashion::after {
    background: linear-gradient(90deg, #a855f7, #ec4899, #f59e0b);
}

.category-card.home-kitchen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(187, 247, 208, 0.05));
    z-index: -1;
}

.category-card.home-kitchen::after {
    background: linear-gradient(90deg, #22c55e, #059669, #10b981);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 36px;
    color: white;
}

.category-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1f2937;
}

.category-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.category-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #92400e;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    position: relative;
}

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

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.step h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step p {
    color: #d1d5db;
    font-weight: 600;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #4338ca 0%, #7c3aed 50%, #ec4899 100%);
    color: white;
    position: relative;
}

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

.benefit-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 48px;
    border-radius: 24px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.benefit-block h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: white;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-block h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.benefit-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #e5e7eb;
    font-weight: 500;
}

.highlight-text {
    font-size: 20px !important;
    color: #fbbf24 !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.daily-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 24px 0;
}

.deals-column p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #e5e7eb;
    font-weight: 600;
}

.deals-column strong {
    color: #fbbf24;
    font-weight: 800;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.differentiator-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #ef4444);
    border-radius: 20px 20px 0 0;
}

.differentiator-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.differentiator-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #e5e7eb;
    font-weight: 600;
}

.differentiator-card strong {
    color: #fbbf24;
    font-weight: 800;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    font-size: 28px;
    color: #fbbf24;
}

.rating-text {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

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

.testimonial-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(249, 250, 251, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 32px;
    border-radius: 28px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #ef4444, #a855f7, #3b82f6);
    border-radius: 28px 28px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 35px 70px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.testimonial-header .stars i {
    font-size: 18px;
}

.verified-badge {
    background: #dcfce7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid #22c55e;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    margin-bottom: 24px;
    font-weight: 500;
}

.savings-highlight {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 24px;
    font-size: 16px;
    border: 1px solid #22c55e;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.author-info h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 4px;
    margin: 0;
}

.author-info p {
    color: #6b7280;
    font-weight: 600;
    margin: 0;
}

/* Save More Section */
.save-more {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.save-more-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.save-more-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #d1d5db;
    font-weight: 500;
}

.intro-text {
    font-size: 24px !important;
    color: #fbbf24 !important;
    font-weight: 800 !important;
    margin-bottom: 32px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.deals-showcase {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 24px;
    margin: 48px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.deals-showcase h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
    color: white;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.deals-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.deals-list li {
    font-size: 16px;
    margin-bottom: 16px;
    color: #d1d5db;
    font-weight: 600;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 32px;
    line-height: 1.4;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 24px;
    font-weight: 500;
}

.mission-highlight {
    background: rgba(255, 255, 255, 0.8);
    padding: 48px;
    border-radius: 24px;
    margin: 48px 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.mission-cta {
    margin-top: 48px;
}

.mission-footer {
    font-size: 16px;
    color: #6b7280;
    margin-top: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4338ca 0%, #7c3aed 50%, #ec4899 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
}

.final-bg-1,
.final-bg-2,
.final-bg-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.final-bg-1 {
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(236, 72, 153, 0.2));
    animation: float 8s ease-in-out infinite;
}

.final-bg-2 {
    bottom: 0;
    right: 25%;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(168, 85, 247, 0.2));
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

.final-bg-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 256px;
    height: 256px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
    animation: float 8s ease-in-out infinite;
    animation-delay: 4s;
}

.final-cta-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.final-cta-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.1;
    text-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.transform-text {
    background: linear-gradient(to right, #fbbf24, #f59e0b, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-header p {
    font-size: 20px;
    margin-bottom: 48px;
    font-weight: 600;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefits-showcase {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 48px;
    border-radius: 24px;
    margin: 48px 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.benefits-showcase h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 32px;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.instant-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    text-align: left;
}

.instant-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.benefit-icon-small {
    width: 32px;
    height: 32px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-icon-small i {
    font-size: 16px;
    color: white;
}

.instant-benefit h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0 0 8px 0;
}

.instant-benefit p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

.final-cta-button {
    margin: 32px 0;
}

.cta-mega {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
    padding: 24px 48px;
    border-radius: 9999px;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(16, 185, 129, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.cta-mega:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #059669, #047857);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
}

.final-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 48px auto;
}

.guarantee {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.guarantee i {
    font-size: 32px;
    color: #fbbf24;
}

.guarantee p {
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.final-urgency {
    font-size: 20px;
    font-weight: 800;
    margin-top: 32px;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0.95;
    animation: pulse 2s infinite;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 64px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(249, 115, 22, 0.1), rgba(168, 85, 247, 0.1));
}

.footer-container {
    position: relative;
    z-index: 10;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.footer-logo-img {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(to right, #f97316, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.footer-brand p {
    color: #9ca3af;
    font-weight: 600;
    margin: 8px 0 0 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.footer-feature {
    text-align: center;
}

.footer-feature i {
    font-size: 40px;
    margin-bottom: 16px;
    color: #fbbf24;
}

.footer-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    margin: 0 0 8px 0;
}

.footer-feature p {
    color: #9ca3af;
    font-weight: 600;
    margin: 0;
}

.footer-cta {
    margin-bottom: 32px;
    text-align: center;
}

.footer-btn {
    background: linear-gradient(to right, #22c55e, #059669);
    color: white;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(34, 197, 94, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #16a34a, #047857);
}

.footer-bottom {
    border-top: 1px solid rgba(156, 163, 175, 0.2);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0 0 8px 0;
}

/* Additional Backdrop Filter Support */
.backdrop-blur-sm {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.backdrop-blur-md {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.backdrop-blur-lg {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* Text Contrast Improvements */
.title-main {
    color: #111827;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: 900;
}

.hero-description p {
    color: #1f2937;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trust-indicator span {
    color: #111827;
    font-weight: 900;
}

.category-content h3 {
    color: #111827;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-content p {
    color: #374151;
    font-weight: 600;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-container {
        /*padding: 12px 16px;*/
        flex-direction: row;
        gap: 12px;
    }

    .logo-brand-group {
        gap: 8px;
    }

    .logo {
        height: 76px;
    }

    .brand-name {
        font-size: 16px;
        line-height: 1.2;
    }

    .brand-tagline {
        font-size: 11px;
    }

    .header-actions {
        gap: 8px;
    }

    .live-deals-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .whatsapp-btn {
        font-size: 10px;
        padding: 6px 10px;
        gap: 4px;
    }

    /* Hero Mobile */
    .hero {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-badges {
        gap: 8px;
        margin-bottom: 16px;
        flex-wrap: wrap;
    }

    .trust-indicator {
        padding: 6px 12px;
        font-size: 12px;
    }

    .trust-indicator span {
        font-size: 12px;
    }

    .hero-banner {
        font-size: 14px;
        padding: 12px 24px;
        margin-bottom: 24px;
        max-width: 95%;
    }

    .hero-title h1 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .hero-description p {
        font-size: 16px !important;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .store-badges {
        gap: 6px;
        margin-bottom: 24px;
    }

    .store-badge {
        font-size: 12px;
        padding: 4px 8px;
    }

    .hero-cta {
        gap: 12px;
        margin-bottom: 40px;
    }

    .cta-primary, .cta-secondary {
        font-size: 14px;
        padding: 14px 24px;
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 20px;
        border-radius: 16px;
    }

    .stat-card i {
        font-size: 28px;
    }

    .stat-number {
        font-size: 20px;
    }

    /* Categories Mobile */
    .categories {
        padding: 60px 0;
    }

    .categories-container, .whatsapp-benefits-container, 
    .how-it-works-container, .benefits-container, 
    .testimonials-container, .save-more-container, 
    .mission-container, .final-cta-container {
        padding: 0 16px;
    }

    .section-header h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .section-header p {
        font-size: 14px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
        font-size: 24px;
    }

    .category-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .category-card p {
        font-size: 14px;
        line-height: 1.4;
    }

    /* WhatsApp Benefits Mobile */
    .whatsapp-benefits {
        padding: 60px 0;
    }

    .whatsapp-benefits .section-header h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .benefits-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .benefits-description .highlight-text {
        font-size: 16px;
    }

    .benefits-description .power-text {
        font-size: 18px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 32px;
    }

    .benefit-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .benefit-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .benefit-card h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .benefit-card p {
        font-size: 12px;
    }

    .whatsapp-btn-main {
        font-size: 14px;
        padding: 14px 24px;
        gap: 8px;
    }

    .whatsapp-note {
        font-size: 12px;
    }

    /* Other Sections Mobile */
    .how-it-works, .benefits, .testimonials, .save-more, .mission, .final-cta {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 16px;
    }

    .step-card h3 {
        font-size: 16px;
    }

    .step-card p {
        font-size: 14px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
        border-radius: 16px;
    }

    .testimonial-header h4 {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonial-savings {
        font-size: 12px;
        padding: 8px 12px;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .differentiator-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .differentiator-card p {
        font-size: 14px;
    }

    .final-cta h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .final-cta p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .final-cta-buttons .cta-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile */
    .hero-title h1 {
        font-size: 26px;
    }

    .hero-description p {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .cta-primary, .cta-secondary {
        font-size: 13px;
        padding: 12px 20px;
    }

    .store-badge {
        font-size: 11px;
        padding: 3px 6px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-grid {
        gap: 16px;
    }

    .category-card {
        padding: 20px 16px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .whatsapp-btn-main {
        font-size: 13px;
        padding: 12px 20px;
    }

    .hero-banner {
        font-size: 12px;
        padding: 10px 20px;
    }

    .trust-indicator {
        padding: 4px 8px;
        font-size: 11px;
    }
}