/*
    FREEZER FIT - ULTRA PREMIUM DARK VIBRANT DESIGN
    Concept: Fresh, Neon, Modern, High-Conversion
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
    --primary: #00ff88; /* Neon Green */
    --primary-dark: #00cc6d;
    --accent: #ffae00; /* Electric Orange/Gold */
    --accent-glow: rgba(255, 174, 0, 0.4);
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --shadow: 0 20px 50px rgba(0,0,0,0.5);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

/* Background Mesh Gradients */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 0% 0%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 174, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, #050505 100%);
}

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

@keyframes glowPulse {
    0% { box-shadow: 0 0 5px var(--primary); }
    50% { box-shadow: 0 0 25px var(--primary); }
    100% { box-shadow: 0 0 5px var(--primary); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.animate-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

section {
    padding: 100px 0;
    position: relative;
}

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

h1, h2, h3 {
    line-height: 1.1;
    margin-bottom: 25px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: #000;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: sticky;
    top: 0;
    z-index: 2000;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h1 span {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    display: block;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.hero-text p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-image img {
    width: 100%;
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(0, 255, 136, 0.2));
}

@media (max-width: 991px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 3.5rem; }
}

/* CTA Buttons */
.btn {
    display: inline-block;
    padding: 22px 50px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    border-radius: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 10px 40px rgba(255, 174, 0, 0.4);
}

.btn:hover {
    transform: scale(1.05) translateY(-5px);
    background: #fff;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.4);
}

/* Glass Cards */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-10px);
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* Problem Section */
.problem-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.problem-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 5px;
}

/* Bonus Section */
.bonuses {
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.bonus-card {
    position: relative;
    overflow: hidden;
}

.bonus-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    font-weight: 900;
    font-size: 0.75rem;
    border-radius: 5px;
}

.bonus-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

/* Testimonials */
.testimonial-card {
    padding: 30px;
}

.testimonial-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid var(--glass-border);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.05));
}

.price-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid var(--primary);
    padding: 60px 40px;
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.15);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.8rem;
    font-weight: 600;
}

.new-price {
    font-size: 6rem;
    font-weight: 900;
    color: #fff;
    margin: 10px 0;
    line-height: 1;
}

.price-box p {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}

/* Floating Elements */
#social-proof-pop {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

#whatsapp-btn {
    background: #25d366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 3rem; }
    .new-price { font-size: 4rem; }
}
