:root {
    --bg-base: #050505;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-surface-hover: rgba(255, 255, 255, 0.08);
    --primary: #facc15; /* Bright Gold */
    --secondary: #fb923c; /* Amber/Orange */
    --accent: #ffffff; /* Pure White */
    --text-pure: #ffffff;
    --text-dim: #a1a1aa;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(250, 204, 21, 0.4);
    
    --radius-lg: 20px;
    --radius-xl: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-pure);
    line-height: 1.6;
    overflow-x: hidden;
}

a, button, .cursor-pointer {
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-spacing {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Background Effects */
.dynamic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: 
        linear-gradient(rgba(5, 5, 5, 0.65), rgba(5, 5, 5, 0.85)),
        url('hero-bg.png') center/cover no-repeat;
    animation: slowPulse 15s ease-in-out infinite alternate;
}

@keyframes slowPulse {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.05) translateY(-20px); }
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.font-bold { font-weight: 800; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.5);
}

.btn-ghost {
    background: var(--bg-surface);
    color: var(--text-pure);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--bg-surface-hover);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.2);
}

/* Custom WhatsApp Button Style */
.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-xl {
    padding: 16px 36px;
    font-size: 1.15rem;
}

.w-100 { width: 100%; }

/* Glass Panels */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

/* Floating Navbar */
.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 12px 30px;
    background: rgba(4, 1, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50px;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 500;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.4);
    transition: transform 0.3s ease;
}

.brand-logo:hover .logo-icon {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.5);
}

.brand-text {
    font-size: 1.7rem;
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.brand-text strong {
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-pure);
}

.brand-text span {
    font-weight: 300;
    letter-spacing: 1px;
    margin-left: 2px;
}

.mb-2 {
    margin-bottom: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dim);
}

.nav-links a:hover {
    color: var(--text-pure);
    text-shadow: 0 0 10px var(--primary);
}

.nav-cta {
    display: flex;
    gap: 12px;
}

/* Hero Section */
.hero-center {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

.pebble-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
    animation: neonBlink 1.5s infinite alternate;
}

@keyframes neonBlink {
    0% { opacity: 0.5; box-shadow: 0 0 5px var(--primary); }
    100% { opacity: 1; box-shadow: 0 0 20px var(--primary); }
}

.hero-headline {
    font-size: 5.5rem;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subhedline {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-action-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

/* Hero Visual Mockup */
.hero-visual-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.main-mockup {
    aspect-ratio: 16/9;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
        url('hero-bg.png') center/cover no-repeat;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.player-ui {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-play-icon {
    font-size: 6rem;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 0 30px var(--primary));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.main-mockup:hover .hero-play-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 40px var(--secondary));
}

.player-bar {
    position: absolute;
    bottom: 30px;
    left: 40px;
    right: 40px;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
}

.player-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; height: 100%; width: 40%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 6px;
    box-shadow: 0 0 10px var(--secondary);
}

.floating-stat {
    position: absolute;
    background: rgba(10, 5, 20, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    animation: floatAnim 5s ease-in-out infinite;
}

.floating-stat i { font-size: 1.8rem; }
.floating-stat div { display: flex; flex-direction: column; text-align: left; }
.floating-stat strong { font-size: 1.2rem; }
.floating-stat span { font-size: 0.85rem; color: var(--text-dim); }

.stat-1 { top: -20px; left: -40px; animation-delay: 0s; }
.stat-2 { bottom: 40px; right: -50px; animation-delay: 2.5s; }

@keyframes floatAnim {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Sections Global */
.section-title-wrap { margin-bottom: 60px; }
.section-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 15px; letter-spacing: -1px; }
.section-title-wrap p { font-size: 1.15rem; color: var(--text-dim); }

/* Symmetric Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.interactive-card {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.interactive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(250, 204, 21, 0.1);
    border-color: rgba(250, 204, 21, 0.4);
}

.interactive-card .card-icon {
    font-size: 2.8rem;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 24px;
    background: var(--bg-surface);
    box-shadow: inset 0 0 0 2px var(--border-light), 0 10px 25px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.interactive-card .card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interactive-card .card-icon i {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(250, 204, 21, 0.4));
    transition: all 0.4s ease;
}

.interactive-card:hover .card-icon {
    transform: translateY(-5px) scale(1.1);
    background: transparent;
    box-shadow: 0 15px 35px rgba(251, 146, 60, 0.4);
}

.interactive-card:hover .card-icon::before {
    opacity: 1;
}

.interactive-card:hover .card-icon i {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.8));
}

.interactive-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.interactive-card p {
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* Modern Pricing */
.modern-pricing-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-tier {
    flex: 1;
    min-width: 320px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.pricing-tier:hover { transform: translateY(-10px); }

.tier-top { margin-bottom: 24px; }
.tier-name {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--text-dim);
    display: block;
    margin-bottom: 8px;
}

.pricing-tier h4 { font-size: 2.2rem; }
.tier-price { font-size: 4.5rem; font-weight: 800; line-height: 1; margin-bottom: 30px; }
.tier-price span { font-size: 1.5rem; font-weight: 600; margin-left: 5px; }

.tier-features { margin-bottom: 40px; flex: 1; }
.tier-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; color: var(--text-dim); font-size: 1.05rem;}
.tier-features i { color: var(--primary); margin-top: 5px; }

.premium-tier {
    transform: scale(1.05);
    background: linear-gradient(to bottom, rgba(10, 5, 20, 0.9), rgba(5, 5, 10, 0.95));
    z-index: 2;
}
.premium-tier:hover { transform: scale(1.05) translateY(-10px); }

.glow-border {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    z-index: -1;
    background-size: 200% 200%;
    animation: borderSpin 3s linear infinite;
}

@keyframes borderSpin {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(251, 146, 60, 0.3);
}

/* Split FAQ */
.split-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.faq-left { flex: 1; position: sticky; top: 150px; }
.faq-left .section-title { font-size: 3rem; }
.faq-left p { color: var(--text-dim); font-size: 1.15rem; }
.faq-right { flex: 1.5; }

.faq-accordion { border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
    padding: 24px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.faq-question:hover { background: rgba(255, 255, 255, 0.05); }
.faq-question i { color: var(--primary); transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--secondary); }

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-dim);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
}
.faq-item.active .faq-answer { padding: 0 30px 24px; max-height: 400px; }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta-content { position: relative; max-width: 600px; color: #fff; }
.cta-content h2 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.cta-content p { font-size: 1.2rem; opacity: 0.9; }
.cta-actions { position: relative; }
.cta-actions .btn-primary { background: white; color: #000; box-shadow: none;}
.cta-actions .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
.minimal-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 80px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.footer-brand { font-size: 1.8rem; }
.footer-brand p { font-size: 1.05rem; color: var(--text-dim); margin-top: 10px; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { color: var(--text-dim); font-size: 1.1rem;}
.footer-links a:hover { color: var(--text-pure); }
.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 30px 0;
    text-align: center;
    color: var(--text-dim);
    font-size: 1rem;
}

/* Floating WhatsApp Float Specifically */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.pulse-hover:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-headline { font-size: 4rem; }
    .split-wrap { flex-direction: column; }
    .faq-left { position: static; text-align: center; margin-bottom: 40px; }
    .cta-banner { flex-direction: column; text-align: center; gap: 40px; padding: 40px 30px; }
    .footer-top { flex-direction: column; text-align: center; gap: 30px; }
}
