:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --bg-dark: #020617;
    --bg-card: #0f172a;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

* {
    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;
    padding-top: 80px;
}

h1,
h2,
h3,
.logo .text {
    font-family: 'Outfit', sans-serif;
}

/* Sections */
section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .sub {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

.desktop-only {
    display: flex !important;
}

@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }
}

.mobile-only {
    display: none !important;
}

@media (max-width: 900px) {
    .mobile-only {
        display: flex !important;
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-icon {
    display: none;
    /* Replaced by logo-img */
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.menu-toggle i {
    width: 28px;
    height: 28px;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 160px 5% 100px 5%;
    gap: 60px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: var(--primary);
    filter: blur(160px);
    opacity: 0.15;
    z-index: -1;
}

.hero-content {
    flex: 1.2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    margin-bottom: 25px;
}

.badge i {
    width: 14px;
    height: 14px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-meta {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta i {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* Hero Mockup */
.hero-image {
    flex: 0.8;
}

.main-mockup {
    width: 440px;
    margin-left: auto;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.main-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mockup-header {
    background: #020617;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.mockup-addr {
    margin-left: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 15px;
    border-radius: 4px;
    flex-grow: 1;
}

.mockup-body {
    padding: 30px;
}

.mock-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.mock-item i {
    width: 18px;
}

.mock-item.active {
    color: var(--primary);
    font-weight: 600;
}

.mock-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 25px 0;
}

.progress-bar {
    width: 75%;
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
}

.mock-stats {
    display: flex;
    gap: 40px;
}

.stat small {
    display: block;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-wrap {
    width: 54px;
    height: 54px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* How it Works */
.how-it-works {
    background: #000;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.2);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Pricing Cards */
.pricing {
    background-color: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    position: relative;
    text-align: center;
}

.price-card.featured {
    transform: scale(1.05);
    border-color: var(--primary);
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.2);
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-badge.hot {
    background: var(--primary);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 30px 0;
}

.price span {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.price-list {
    text-align: left;
    list-style: none;
    margin-bottom: 40px;
}

.price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price-list i {
    width: 18px;
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 80px 5% 40px 5%;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 15px;
    max-width: 300px;
    color: var(--text-muted);
}

.footer-nav {
    display: flex;
    gap: 100px;
}

.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card.featured {
        transform: scale(1);
        grid-row: 1;
        grid-column: 1 / span 2;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        border-bottom: 1px solid var(--border);
        align-items: center;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-meta {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-image {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        grid-column: 1;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    section {
        padding: 60px 5%;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}