:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --secondary: #1e293b;
    --accent: #f59e0b;
    --background: #0f172a;
    --surface: #1e293b;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(30, 41, 59, 0.7);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    scroll-margin-top: 100px;
}

.bg-alt {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

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

h1, h2, h3, h4 {
    color: var(--text-main);
    margin-bottom: 20px;
}

span {
    color: var(--primary);
}

img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 80px;
    padding: 10px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

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

.nav-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* BUTTONS */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-secondary-outline:hover {
    background: var(--primary);
    color: white;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* HERO */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item strong {
    display: block;
    font-size: 24px;
    color: var(--text-main);
}

.stat-item span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.trial-note {
    font-size: 13px;
    color: #10b981;
    margin-bottom: 30px;
    font-weight: 600;
}

.badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
}

/* MOCKUP AREA */
.hero-image {
    position: relative;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 15px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.floating-badge {
    position: absolute;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-top {
    top: -20px;
    right: 30px;
}

.badge-bottom {
    bottom: 20px;
    left: -20px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* TRUST BAR */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.trust-bar p {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.logo-cloud {
    display: flex;
    justify-content: center;
    gap: 60px;
    opacity: 0.5;
    flex-wrap: wrap;
}

.brand {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    opacity: 0.5;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand:hover {
    opacity: 1;
}

.brand::before {
    content: '◈';
    color: var(--primary);
    font-size: 12px;
}

/* STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

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

.step-icon {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.3;
}

/* FEATURES */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 40px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-list .icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-list h4 {
    margin-bottom: 5px;
}

.feature-list p {
    color: var(--text-muted);
    font-size: 14px;
}

.status-card {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.status-card.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
}

.card-footer {
    font-size: 12px;
    color: var(--text-muted);
}

/* SHOWCASE */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.showcase-item {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 10px;
    transition: all 0.3s;
}

.showcase-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.showcase-item img {
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.showcase-item h4 {
    margin-bottom: 10px;
}

.showcase-item p {
    font-size: 14px;
    color: var(--text-muted);
    padding-bottom: 15px;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    padding: 40px;
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: left;
}

.stars {
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
}

.author strong {
    display: block;
    font-size: 16px;
}

.author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    padding: 40px;
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
    pointer-events: none;
}

.plan-name {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.plan-price {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 18px;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

.plan-features li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--primary);
    font-weight: 900;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.faq-question {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.faq-answer {
    color: var(--text-muted);
    font-size: 15px;
}

/* FOOTER */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    transition: 0.3s;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 40px;
    font-size: 12px;
    color: var(--text-muted);
}

/* PAIN POINTS SECTION */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pain-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.pain-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.pain-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.pain-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    padding: 80px 0;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
    font-weight: 600;
}

.cta-section .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: modalSlideIn 0.4s ease;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
    transform: scale(1.2);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.showcase-image {
    cursor: pointer;
    transition: transform 0.3s;
}

.showcase-image:hover {
    transform: scale(1.03);
}

/* ANIMATIONS */
.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.revealed {
    opacity: 1;
    transform: translate(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid, .feature-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero p { margin: 0 auto 40px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { order: -1; }
    
    .pricing-grid, .steps-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 60px auto 0;
    }

    .pricing-card.featured { transform: scale(1); }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--surface);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-main);
    }
}

.menu-toggle {
    display: none;
}

/* LEAD MODAL */
.lead-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.lead-modal.active {
    display: flex;
}

.lead-content {
    background: var(--surface);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    width: 100%;
    max-width: 450px;
    position: relative;
}

.lead-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.lead-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}
