/* ============== VARIABLES & ROOT ============== */
:root {
    /* Colors */
    --bg-dark: #07090e;
    --bg-surface: #131722;
    --text-main: #f8f9fa;
    --text-muted: #a0aec0;
    --accent-orange: #ff5722;
    --accent-yellow: #ffc107;
    --accent-purple: #9c27b0;
    --accent-pink: #e91e63;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #ff5722 0%, #ffc107 100%);
    --grad-secondary: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ============== RESET & GLOBAL ============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(255, 87, 34, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(156, 39, 176, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a {
    text-decoration: none;
}

/* ============== UTILITIES ============== */
.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-alt {
    background: var(--grad-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight {
    color: var(--accent-orange);
    font-weight: 700;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* ============== ANIMATIONS ============== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(255, 87, 34, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
}

.pulse-anim {
    animation: pulse 2.5s infinite;
}

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

.float-anim {
    animation: float 5s ease-in-out infinite;
}

/* ============== HEADER / TOP BAR ============== */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 5px 12px;
    min-width: 60px;
}

.time-block span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.time-block small {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.time-separator {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-muted);
}

/* ============== HERO SECTION ============== */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    margin: 40px auto;
    max-width: 1300px;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 87, 34, 0.1);
    color: var(--accent-orange);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
}

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

.new-price {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #4facfe;
}

.discount-tag {
    background: var(--accent-orange);
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
}

.cta-button {
    display: block;
    background: var(--grad-primary);
    color: white;
    text-align: center;
    padding: 18px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 87, 34, 0.6);
}

.cta-primary {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.cta-secondary {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 5px;
}

.scarcity-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.overlay-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--accent-purple);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

/* ============== FEATURES SECTION ============== */
.features-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.center-cta {
    display: flex;
    justify-content: center;
}

/* ============== SHOWCASE SECTION ============== */
.showcase-section {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-container {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px;
    overflow: hidden;
    position: relative;
}

.showcase-text {
    flex: 1;
    z-index: 2;
}

.showcase-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.showcase-text .large-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.showcase-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.aura-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(156, 39, 176, 0.3);
}

/* ============== FINAL SCARCITY SECTION ============== */
.final-scarcity {
    text-align: center;
    padding: 100px 5%;
    background: radial-gradient(circle at center, rgba(255, 87, 34, 0.1) 0%, transparent 70%);
}

.final-scarcity h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.large-timer {
    justify-content: center;
    margin-bottom: 50px;
}

.large-timer .time-block {
    padding: 15px 25px;
    min-width: 90px;
}

.large-timer .time-block span {
    font-size: 2.5rem;
}

.big-cta {
    max-width: 600px;
    margin: 0 auto;
}

/* ============== FAQ SECTION ============== */
.faq-section {
    padding: 60px 40px;
    max-width: 900px;
    margin: 60px auto;
}

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    padding: 20px 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 10px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 10px 20px 10px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--accent-orange);
}

/* ============== FOOTER ============== */
footer {
    padding: 40px 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============== MEDIA QUERIES ============== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }
    .pricing-box {
        justify-content: center;
    }
    .showcase-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .cta-primary {
        font-size: 1.2rem;
    }
    .large-timer .time-block {
        min-width: 70px;
        padding: 10px 15px;
    }
    .large-timer .time-block span {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

/* ============== WHATSAPP FLOAT ============== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes wu-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-pulse {
    animation: wu-pulse 2.5s infinite;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* ============== SALES POPUP ============== */
.sales-popup {
    position: fixed;
    bottom: 30px;
    left: -400px;
    width: 320px;
    background: rgba(19, 23, 34, 0.95);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--accent-orange);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 15px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.5s ease;
    opacity: 0;
}

.sales-popup.show {
    left: 30px;
    opacity: 1;
}

.sp-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.sp-content {
    flex: 1;
}

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

.sp-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

.sp-verified {
    font-size: 0.75rem;
    color: #25d366;
    font-weight: 600;
}

.sp-action {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin-bottom: 5px;
}

.sp-action .highlight {
    color: #4facfe;
}

.sp-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.sp-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    height: max-content;
}

.sp-close:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .sales-popup {
        bottom: 100px;
        width: 280px;
    }
    .sales-popup.show {
        left: 20px;
    }
}

/* ============== VIDEO GALLERY SECTION ============== */
.gallery-section {
    padding: 60px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.4);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;   
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 15px 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.niche-tag {
    display: inline-block;
    background: var(--accent-orange);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.3);
    border: 1px solid var(--glass-border);
}

.reel-video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* ============== CLICKBAIT / HIGH CONVERSION ============= */
@keyframes wobble {
  0% { transform: scale(1) rotate(0deg); }
  15% { transform: scale(1.05) rotate(-3deg); }
  30% { transform: scale(1.05) rotate(3deg); }
  45% { transform: scale(1.05) rotate(-3deg); }
  60% { transform: scale(1.05) rotate(3deg); }
  75% { transform: scale(1.05) rotate(0deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.wobble-anim {
    animation: pulse 2.5s infinite, wobble 2s infinite !important;
}

.yellow-marker {
    background-color: #ffeb3b;
    color: #000;
    padding: 0 8px;
    font-weight: 900;
    font-style: italic;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
}

.red-text {
    color: #ff4d4d;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255, 77, 77, 0.7);
    font-size: 1.1rem;
    margin-top: 15px;
}
