/* CSS Variables for Theming */
:root {
    --primary-color: #ff2a6d; /* More vibrant neon pink */
    --secondary-color: #05d9e8; /* Cyan for contrast */
    --bg-dark: #01012b; /* Deep space blue */
    --bg-darker: #000000; /* Pure black for contrast */
    --text-light: #ffffff;
    --text-muted: #d1d5db;
    --accent: #d2386c;
    --gradient-main: linear-gradient(135deg, #ff2a6d 0%, #7700ff 100%);
    --gradient-secondary: linear-gradient(135deg, #05d9e8 0%, #005678 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-glow: 0 0 15px rgba(255, 42, 109, 0.6), 0 0 30px rgba(255, 42, 109, 0.3);
    --cyan-glow: 0 0 15px rgba(5, 217, 232, 0.6), 0 0 30px rgba(5, 217, 232, 0.3);
    --font-main: 'Outfit', sans-serif;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(119, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 42, 109, 0.1) 0%, transparent 40%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.highlight {
    color: transparent;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 42, 109, 0.3);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #d1d5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-main);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Glassmorphism Classes */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--gradient-main);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    box-shadow: var(--neon-glow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::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: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 42, 109, 0.5);
}

.btn-large {
    font-size: 1.6rem;
    padding: 24px 48px;
    width: 100%;
    max-width: 450px;
    line-height: 1.2;
}

.btn-large small {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.9;
}

/* Sticky Header */
.top-bar {
    background: var(--bg-darker);
    border-bottom: 1px solid var(--glass-border);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.top-bar p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 140px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(119,0,255,0.2) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.badge {
    background: rgba(255, 42, 109, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 42, 109, 0.15);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-muted);
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-light);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.trust-badges span i {
    color: var(--secondary-color);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

.product-mockup {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.bottle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    filter: blur(90px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-glow 4s infinite ease-in-out;
}

.product-img {
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    max-height: 550px;
    width: auto;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-waves {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}

.hero-waves svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 80px;
}

.hero-waves .shape-fill {
    fill: var(--bg-dark);
    opacity: 0.8;
}

/* Pain Points */
.pain-points {
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.card {
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 42, 109, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    height: 70px;
    width: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(255, 42, 109, 0.1);
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(255, 42, 109, 0.4);
}

.card p {
    font-size: 1.05rem;
}

/* Transformation */
.transformation {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
    position: relative;
    padding: 100px 0;
}

.transformation h2 {
    font-size: 3rem;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* Social Proof */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.result-item {
    text-align: center;
    position: relative;
    padding: 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-item img {
    border-radius: 10px;
    margin: 0 auto 15px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.result-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 10px;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 60px;
}

.benefit-item {
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(5, 217, 232, 0.3));
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    background: var(--bg-darker);
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 20px 40px;
    scroll-snap-type: x mandatory;
    margin-top: 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 320px;
    padding: 30px;
    scroll-snap-align: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(255, 42, 109, 0.3);
}

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.verified i {
    color: #00e676;
    margin-right: 5px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* How It Works */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 60px 0;
}

.step-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--bg-dark);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    background: var(--secondary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(5, 217, 232, 0.5);
}

.step-arrow {
    color: var(--text-muted);
    font-size: 2rem;
    opacity: 0.3;
}

.security-note {
    color: #00e676;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(rgba(1, 1, 43, 0.95), rgba(1, 1, 43, 0.9)), url('https://placehold.co/1200x600/1a1a2e/e94560?text=Background') no-repeat center center/cover;
    position: relative;
    border-top: 1px solid rgba(255, 42, 109, 0.3);
    box-shadow: 0 -20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.neon-border::before {
    background: var(--gradient-main);
    box-shadow: var(--neon-glow);
    height: 2px;
}

.limited-badge {
    background: #ff003c;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
    animation: flash 2s infinite;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    font-family: 'Courier New', monospace;
}

.time-box {
    background: rgba(0,0,0,0.6);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 90px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 42, 109, 0.15);
}

.time-box span {
    font-size: 2.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.time-box small {
    color: var(--text-muted);
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

.separator {
    font-size: 2.5rem;
    font-weight: 300;
    padding-top: 10px;
    color: var(--primary-color);
}

.offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 50px 30px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 50px rgba(255, 42, 109, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255,255,255,0.05), transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite linear;
}

@keyframes shine {
    0% { transform:  rotate(45deg) translateY(-200%); }
    100% { transform:  rotate(45deg) translateY(200%); }
}

.old-price {
    color: var(--text-muted);
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 2px;
    background: #ff0000;
    transform: rotate(-10deg);
}

.discount-tag {
    background: #00e676;
    color: #000;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 800;
    margin-left: 10px;
    vertical-align: middle;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin: 15px 0;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.payment-method {
    color: #00e676;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 30px;
    border: 1px dashed #00e676;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
}

.offer-benefits {
    text-align: left;
    margin: 20px 0 40px;
    display: inline-block;
}

.offer-benefits li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.offer-benefits i {
    color: #00e676;
    margin-right: 15px;
    background: rgba(0, 230, 118, 0.1);
    padding: 5px;
    border-radius: 50%;
}

.stock-warning {
    margin-top: 25px;
    color: #ff9800;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* FAQ */
.faq {
    background: var(--bg-darker);
}

.accordion-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 15px;
    border-radius: 12px;
}

.accordion-header {
    background: transparent;
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(255,255,255,0.02);
}

.active .accordion-header {
    background: rgba(255, 42, 109, 0.1);
    color: var(--primary-color);
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 80px;
    background: #000;
}

/* Animations */
@keyframes pulse-glow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 42, 109, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 42, 109, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 42, 109, 0); }
}

@keyframes float {
    0% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-20px) rotateX(2deg); }
    100% { transform: translateY(0px) rotateX(0deg); }
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes wobble {
  0% { transform: translateX(0%); } 
  15% { transform: translateX(-5%) rotate(-5deg); } 
  30% { transform: translateX(10%) rotate(3deg); } 
  45% { transform: translateX(-5%) rotate(-3deg); } 
  60% { transform: translateX(5%) rotate(2deg); } 
  75% { transform: translateX(-5%) rotate(-1deg); } 
  100% { transform: translateX(0%); } 
}

.pulse {
    animation: pulse 2s infinite;
}

.wobble {
    animation: wobble 3s infinite ease-in-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.fade-in-delayed {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero {
        padding-top: 40px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-badges {
        justify-content: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        width: 100%;
        margin: 15px 0;
    }

    .offer-card {
        padding: 30px 20px;
    }

    .current-price {
        font-size: 3rem;
    }

    .benefits-grid {
        gap: 30px;
    }

    .benefit-item {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .btn-large {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    .time-box {
        min-width: 70px;
        padding: 10px;
    }

    .time-box span {
        font-size: 1.8rem;
    }
    
    .separator {
        font-size: 1.8rem;
    }
}
