/* ============================================
   KARAOKÊ PROFISSIONAL - VIBRANT NEON THEME
   Animated borders, neon glows, gradients
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0118;
    --bg-card: rgba(15, 5, 35, 0.8);
    --border: rgba(168, 85, 247, 0.15);
    --accent: #a855f7;
    --accent-light: #c084fc;
    --accent-dark: #7c3aed;
    --pink: #ec4899;
    --blue: #6366f1;
    --cyan: #22d3ee;
    --green: #22c55e;
    --red: #ef4444;
    --gold: #fbbf24;
    --text: #f1f5f9;
    --text-dim: #a5b4c8;
    --text-muted: #64748b;
    --radius: 18px;
    --radius-sm: 12px;
    --neon-purple: 0 0 20px rgba(168, 85, 247, 0.4), 0 0 40px rgba(168, 85, 247, 0.15);
    --neon-pink: 0 0 20px rgba(236, 72, 153, 0.4), 0 0 40px rgba(236, 72, 153, 0.15);
    --neon-blue: 0 0 20px rgba(99, 102, 241, 0.4), 0 0 40px rgba(99, 102, 241, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Animated background mesh */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(168, 85, 247, 0.12), transparent),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(236, 72, 153, 0.08), transparent),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(99, 102, 241, 0.06), transparent);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ============ ANIMATIONS ============ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ ANIMATED BORDER GLOW ============ */
@keyframes borderRotate {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.glow-border {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius);
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    background: conic-gradient(from var(--angle), var(--accent), var(--pink), var(--cyan), var(--blue), var(--accent));
    animation: borderRotate 4s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.glow-border:hover::before {
    opacity: 1;
}

.glow-border::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius) - 1px);
    background: var(--bg-card);
    z-index: -1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--pink), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-red {
    color: var(--red);
}

.accent {
    color: var(--accent);
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 1, 24, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    margin-right: -40px;
    /* Pulls it closer to the nav-links */
}

.nav-brand-img {
    height: 90px;
    /* Make it large and prominent */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(168, 85, 247, 0.4));
    /* Beautiful drop shadow */
    transition: transform 0.3s ease;
}

.nav-brand-img:hover {
    transform: scale(1.05);
    /* Slight pop effect on hover */
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--pink));
    transition: width 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.08)),
        linear-gradient(to bottom, rgba(10, 1, 24, 0.2), rgba(10, 1, 24, 0.7) 50%, var(--bg));
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    20% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
}

.hero-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5)) drop-shadow(0 0 40px rgba(236, 72, 153, 0.3));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5)) drop-shadow(0 0 40px rgba(236, 72, 153, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.7)) drop-shadow(0 0 60px rgba(236, 72, 153, 0.5));
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
}

.hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.35);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(168, 85, 247, 0.5), 0 0 20px rgba(236, 72, 153, 0.3);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

.btn-secondary {
    padding: 18px 36px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.25);
    color: var(--text);
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}

.btn-large {
    padding: 22px 44px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius);
    padding: 24px 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.08);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}

.stat-number {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, white, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-plus {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(168, 85, 247, 0.3), transparent);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 10px;
    background: linear-gradient(to bottom, var(--accent), var(--pink));
    border-radius: 4px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

/* ============ SOCIAL PROOF ============ */
.social-proof {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.08), rgba(236, 72, 153, 0.06), rgba(99, 102, 241, 0.08));
    border-top: 1px solid rgba(168, 85, 247, 0.12);
    border-bottom: 1px solid rgba(236, 72, 153, 0.12);
    padding: 16px 0;
}

.proof-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-dim);
}

.proof-items strong {
    color: var(--gold);
}

/* ============ SECTIONS ============ */
.section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    color: var(--accent-light);
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-dim);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============ SIMPLICITY SECTION ============ */
.simplicity-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.simplicity-image {
    flex: 1;
    max-width: 450px;
}

.simplicity-image img,
.simplicity-image video {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.simplicity-content {
    flex: 1;
}

.simplicity-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.simplicity-content p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 14px;
}

.highlight-text {
    color: var(--text) !important;
    font-weight: 600;
    font-size: 17px !important;
}

/* ============ VIDEO ============ */
.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 40px rgba(168, 85, 247, 0.1);
    z-index: 1;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12), rgba(236, 72, 153, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ============ FEATURES ============ */
.features-section {
    background: linear-gradient(180deg, var(--bg), rgba(20, 5, 50, 1), var(--bg));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--pink), var(--cyan));
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15), 0 0 20px rgba(236, 72, 153, 0.08);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.15);
}

.feature-icon {
    font-size: 26px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ============ STEPS ============ */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    max-width: 280px;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4), 0 0 15px rgba(236, 72, 153, 0.2);
}

.step-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

.step-arrow {
    font-size: 28px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ============ TESTIMONIALS CAROUSEL ============ */
.testimonials-section {
    background: linear-gradient(180deg, var(--bg), rgba(20, 5, 50, 1), var(--bg));
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-track-wrapper {
    overflow: hidden;
    flex: 1;
    margin: 0 16px;
    border-radius: var(--radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: center;
}

.slide-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    width: 100%;
}

.slide-group img {
    flex: 1;
    max-width: calc(33.333% - 11px);
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    border: 2px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(168, 85, 247, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.slide-group img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.25);
    background: rgba(168, 85, 247, 0.08);
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--pink));
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--accent), var(--pink));
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* ============ PRICING ============ */
.pricing-section {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(20, 5, 50, 1) 50%, var(--bg) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: var(--radius);
    padding: 32px 24px;
    padding-top: 40px;
    position: relative;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--pink));
    opacity: 0.5;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15), 0 0 15px rgba(236, 72, 153, 0.08);
}

.pricing-card.popular {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)), linear-gradient(135deg, var(--accent), var(--pink), var(--cyan));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transform: scale(1.05);
    box-shadow: 0 20px 70px rgba(168, 85, 247, 0.25), 0 0 30px rgba(236, 72, 153, 0.1);
    z-index: 2;
}

.pricing-card.popular::before {
    height: 4px;
    opacity: 1;
    background: linear-gradient(90deg, var(--accent), var(--pink), var(--cyan), var(--accent));
    background-size: 300% 100%;
    animation: shiftGradient 3s linear infinite;
}

@keyframes shiftGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.pricing-badge.save {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.pricing-badge.best {
    background: rgba(34, 197, 94, 0.2);
    right: auto;
    left: 16px;
}

.pricing-badge.popular-badge {
    background: linear-gradient(135deg, var(--accent), var(--pink));
    color: white;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: -14px;
    padding: 6px 20px;
    font-size: 12px;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-dim);
}

.pricing-old-price {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pricing-old-price s {
    color: var(--red);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dim);
}

.amount {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, white, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cents {
    font-size: 20px;
    font-weight: 700;
}

.period {
    font-size: 14px;
    color: var(--text-dim);
    margin-left: 4px;
}

.pricing-monthly {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-type {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding: 6px 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    font-size: 13px;
    color: var(--text-dim);
    padding: 6px 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.06);
}

.pricing-features li:last-child {
    border: none;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: white;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--pink));
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.35);
}

.popular-btn {
    background: linear-gradient(135deg, var(--accent), var(--pink)) !important;
    border: none !important;
    padding: 16px;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.35);
}

.popular-btn:hover {
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.5), 0 0 20px rgba(236, 72, 153, 0.3) !important;
}

/* --- Lifetime (Vitalício) Card --- */
.pricing-card.lifetime {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)), linear-gradient(135deg, #fbbf24, #f59e0b, #d97706, #fbbf24);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 20px 70px rgba(251, 191, 36, 0.2), 0 0 30px rgba(245, 158, 11, 0.1);
}

.pricing-card.lifetime::before {
    height: 4px;
    opacity: 1;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706, #fbbf24);
    background-size: 300% 100%;
    animation: shiftGradient 3s linear infinite;
}

.pricing-card.lifetime:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(251, 191, 36, 0.35), 0 0 40px rgba(245, 158, 11, 0.2);
}

.pricing-badge.lifetime-badge {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #1a0a00;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: -14px;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.5);
    letter-spacing: 1px;
}

.lifetime-btn {
    background: linear-gradient(135deg, #fbbf24, #d97706) !important;
    border: none !important;
    padding: 16px;
    font-size: 16px;
    color: #1a0a00 !important;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.35);
}

.lifetime-btn:hover {
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5), 0 0 20px rgba(245, 158, 11, 0.3) !important;
    color: #1a0a00 !important;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    padding: 24px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: var(--radius);
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.05);
}

.guarantee-shield {
    font-size: 36px;
}

.pricing-guarantee strong {
    font-size: 16px;
    color: var(--green);
}

.pricing-guarantee p {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(15, 5, 35, 0.5);
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.25);
}

.faq-item.active {
    border-color: var(--accent);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-weight: 600;
    font-size: 15px;
}

.faq-toggle {
    font-size: 22px;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    width: 28px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ============ CTA ============ */
.cta-section {
    padding: 80px 0 100px;
}

.cta-card {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.06), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, rgba(168, 85, 247, 0.06), rgba(236, 72, 153, 0.04), rgba(99, 102, 241, 0.06), transparent);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    to {
        transform: rotate(360deg);
    }
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
}

.cta-card p {
    font-size: 17px;
    color: var(--text-dim);
    margin-bottom: 32px;
    position: relative;
}

.cta-card .btn-primary {
    position: relative;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-dim);
    position: relative;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
}

/* ============ FOOTER ============ */
.footer {
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    padding: 48px 0 24px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    flex-wrap: wrap;
}

.footer-brand p {
    width: 100%;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(168, 85, 247, 0.06);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-payments {
    display: flex;
    gap: 10px;
}

.footer-payments span {
    padding: 4px 10px;
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .hero-stats {
        flex-direction: column;
        gap: 0;
    }

    .stat {
        padding: 12px 0;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .proof-items {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 8px;
    }

    .simplicity-grid {
        flex-direction: column;
        text-align: center;
    }

    .simplicity-image {
        max-width: 100%;
    }

    .carousel-btn {
        display: none;
    }

    .carousel-track-wrapper {
        margin: 0;
    }

    .hero-logo {
        width: 120px;
    }
}