:root {
    --primary: #FE002A;
    --primary-dark: #B3001E;
    --bg-dark: #0B0B0B;
    --bg-card: #151515;
    --bg-card-hover: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-light: rgba(255, 255, 255, 0.1);
    --glow-red: rgba(254, 0, 42, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center { text-align: center; }
.w-100 { width: 100%; }

/* Buttons */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12px 24px;
    box-shadow: 0 4px 15px var(--glow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 0, 42, 0.5);
}

.btn-secondary {
    background: white;
    color: black;
    padding: 12px 24px;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--border-light);
    padding: 12px 24px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 6px;
}

/* Top Banner */
.top-banner {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(11, 11, 11, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: white;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    padding: 5px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-card);
    padding: 20px;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu.active {
    display: flex;
    gap: 15px;
}

.mobile-menu a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-red) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.5;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(254, 0, 42, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(254, 0, 42, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, #FE002A, #FF5E7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.stats-row {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    border: 12px solid #222;
    border-radius: 40px;
    background: black;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(254, 0, 42, 0.2);
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #1a1a1a;
    font-weight: bold;
}

.app-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-card {
    background: #222;
    padding: 20px;
    border-radius: 12px;
}

.app-card h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.app-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.app-pulse {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    margin: auto auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 0 0 rgba(254, 0, 42, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(254, 0, 42, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(254, 0, 42, 0); }
    100% { box-shadow: 0 0 0 0 rgba(254, 0, 42, 0); }
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: var(--bg-card);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.trust-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.logo-box {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.2rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-box:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.shark-tank-banner {
    background: linear-gradient(90deg, #0f172a, #1e293b);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.shark-tank-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: linear-gradient(90deg, transparent, rgba(254,0,42,0.1));
}

.st-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.st-content p {
    color: var(--text-muted);
    max-width: 600px;
}

/* Features */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 0, 42, 0.3);
    background: var(--bg-card-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(254, 0, 42, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: var(--bg-card);
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(254, 0, 42, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pkg-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pkg-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.pkg-price span {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.pkg-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.pkg-features {
    margin-bottom: 40px;
    flex: 1;
}

.pkg-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
}

.pkg-features li i {
    color: var(--primary);
}

/* App CTA */
.app-cta {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-store {
    background: black;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-store:hover {
    background: #222;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links ul a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* WhatsApp Float */
.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: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    position: relative;
}

.testimonial-slider-container {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #0f0505;
    border: 1px solid rgba(254, 0, 42, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: rgba(254, 0, 42, 0.1);
    border: 1px solid rgba(254, 0, 42, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
    line-height: 1.6;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.customer-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-name {
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 30px;
    background: var(--primary);
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .stats-row {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .store-buttons {
        flex-direction: column;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }
}
