/* PREMIUM ARTESANAL DESIGN SYSTEM */
:root {
    /* Sophisticated Color Palette */
    --primary: #d97706; /* Rich Amber/Gold */
    --primary-glow: rgba(217, 119, 6, 0.4);
    --secondary: #10b981; /* Fresh Emerald Green */
    --accent: #f59e0b; /* Bright Gold */
    --bg-dark: #000c14; /* Deep Midnight Blue-Black */
    --bg-card: #0c1a2d; /* Slightly lighter for cards */
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Improvements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Header Customization */
header {
    background: rgba(0, 12, 20, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 10px 0;
    background: rgba(0, 12, 20, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -1px;
}

.logo i {
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

nav a {
    text-decoration: none;
    color: #CBD5E1;
    font-weight: 600;
    margin: 0 15px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: var(--primary);
}

.cta-nav {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px var(--primary-glow);
    cursor: pointer;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* HERO SECTION - Enhanced Aesthetic */
.hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, #064e3b 0%, var(--bg-dark) 40%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text { flex: 1.2; }

.badge-discount {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid var(--primary);
    backdrop-filter: blur(5px);
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
}

.hero-text h1 span {
    display: block;
    background: linear-gradient(to right, #fbbf24, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.2));
}

.hero-text .subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: #e2e8f0;
    margin-bottom: 35px;
    max-width: 90%;
    opacity: 0.8;
}

.price-hero {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 35px;
}

.price-old {
    text-decoration: line-through;
    color: #ef4444;
    font-size: 1.4rem;
    font-weight: 600;
    opacity: 0.7;
}

.price-new {
    color: #fbbf24;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.8;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.price-new small {
    font-size: 1.5rem;
    vertical-align: top;
}

/* BUTTONS - Modern Glow */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #059669; /* Emerald 600 */
    color: #FFF;
    padding: 24px 40px;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    background: #10b981;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary i {
    font-size: 1.5rem;
}

/* Hero Image & Decorations */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.hero-img {
    max-width: 110%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
    border-radius: 20px;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

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

/* SHOWCASE SECTIONS */
.split-showcase {
    background: var(--bg-dark);
    padding: 120px 0;
    position: relative;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 80px;
}

.showcase-item.reverse { flex-direction: row-reverse; }

.showcase-img-box {
    flex: 1;
    position: relative;
}

.showcase-img-box img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    background: var(--glass-bg);
}

.showcase-text { flex: 1.1; }

.step-tag {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.showcase-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, #FFF, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.check-list { list-style: none; }

.check-list li {
    font-size: 1.05rem;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* GLASS CARDS */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

/* TESTIMONIALS - Grid with polish */
.testimonials {
    padding: 120px 0;
    background: radial-gradient(circle at bottom left, #065f46 0%, var(--bg-dark) 40%);
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.testimonials-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: flex-start; /* Ensure tall screenshots aren't centered/cut */
}

.testimonial-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Prevents cropping */
}

.testimonial-img-wrapper:hover {
    transform: scale(1.05) rotate(1deg);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* COUNTER & SOCIAL PROOF */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

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

.stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* NOTIFICATION POPUP */
.purchase-pills {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 9999;
    background: rgba(12, 26, 45, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateX(-150%);
    transition: transform 0.5s ease;
}

.purchase-pills.show { transform: translateX(0); }

.purchase-pills img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.purchase-info h4 { font-size: 0.9rem; margin-bottom: 2px; }
.purchase-info p { font-size: 0.8rem; opacity: 0.7; margin: 0; }

/* FINAL CTA SECTION */
.cta-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.cta-box {
    background: linear-gradient(145deg, #0f1a2d 0%, #000c14 100%);
    border: 1px solid var(--glass-border);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
}

.timer-box {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.countdown {
    display: flex;
    gap: 20px;
}

.count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-val {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.count-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

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

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 3rem; }
    .price-hero { justify-content: center; }
    .showcase-item, .showcase-item.reverse { flex-direction: column; text-align: center; }
    .testimonials-gallery { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.5rem; }
    nav { display: none; }
    .cta-box { padding: 60px 20px; }
    .price-new { font-size: 3.5rem; }
    .count-val { font-size: 2rem; }
}