:root {
    --bg-main: #060b19;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.2);
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-secondary { background: transparent; border-color: var(--border-light); color: var(--text-main); }
.btn-secondary:hover { background: rgba(255,255,255,0.05); }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.w-full { width: 100%; }

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.brand svg { width: 32px; height: 32px; }
.brand-name { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
}
.lang-btn:hover { color: var(--text-main); }
.lang-btn.active { color: var(--primary); }

/* Hero */
.hero-section {
    padding: 6rem 0;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 2rem;
}
.display-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}
.italic-accent {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--primary);
}
.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
}
.floating-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.card-header .dots { display: flex; gap: 6px; margin-bottom: 2rem; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-light); }
.card-body { display: flex; flex-direction: column; gap: 1rem; }
.line { height: 12px; background: var(--border); border-radius: 6px; }
.w-75 { width: 75%; }
.w-50 { width: 50%; }
.w-100 { width: 100%; }
.w-80 { width: 80%; }
.chart { display: flex; align-items: flex-end; gap: 10px; height: 100px; margin-top: 1rem; }
.bar { flex: 1; background: var(--border-light); border-radius: 4px 4px 0 0; }
.h-60 { height: 60%; } .h-80 { height: 80%; } .h-100 { height: 100%; background: var(--primary); }
.h-40 { height: 40%; } .h-90 { height: 90%; }

/* Stats */
.stats-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.stat-val {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}
.stat-val span { font-size: 1.5rem; font-weight: 600; color: var(--primary); margin-left: 4px; }
.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* Pricing */
.pricing-section {
    padding: 6rem 0;
}
.section-header {
    margin-bottom: 4rem;
}
.section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease;
}
.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
}
.price-card.highlight {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary);
}
.bestseller-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.price-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.price-val {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
}
.price-val span { margin-left: 4px; }
.period { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.feat-list {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}
.feat-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
}
.feat-list li svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.feat-list li.muted { color: var(--text-muted); }
.feat-list li.muted svg { color: var(--text-muted); }

/* Integrations & Payments */
.integration-section {
    padding: 4rem 0 8rem;
}
.logos-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.payments-strip .logo-wrap {
    padding: 1rem 1.5rem;
}
.pay-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.foot-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.foot-col svg { width: 24px; height: 24px; }
.foot-text { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .logos-strip { gap: 1.5rem; }
}
@media (max-width: 768px) {
    .nav-links .btn { display: none; }
    .display-title { font-size: 3rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 1rem; }
    .pay-item { flex-direction: column; text-align: center; }
}
