/* ── Landing Page Styles ── */
:root {
    --primary: #85ea2d;
    --primary-fg: #080b0f;
    --bg: #0a0e14;
    --bg-card: #0f1419;
    --bg-accent: #141c24;
    --border: #1f2d3d;
    --border-bright: #2a3d52;
    --text: #e8edf3;
    --text-muted: #6b7f93;
    --green-dim: rgba(133,234,45,.1);
    --green-glow: rgba(133,234,45,.22);
    --radius: 12px;
}

body {
    background: #07090e;
    color: var(--text);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(7, 9, 14, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 72px;
    display: flex;
    align-items: center;
}

.navbar-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 24px;
}

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

.nav-links a:hover, .nav-links a.active {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Dropdown */
.lang-dropdown-wrap {
    position: relative;
    cursor: pointer;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.lang-btn:hover {
    color: var(--text);
    background: var(--bg-accent);
}

.lang-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Button override */
.btn-login {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-bright);
    transition: all 0.2s;
}

.btn-login:hover {
    background: var(--bg-accent);
}

.btn-get-started {
    background: var(--primary);
    color: var(--primary-fg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(133,234,45,0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-get-started:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(133,234,45,0.35);
}

/* Hero Section */
.hero-sec {
    padding: 140px 0 80px;
    position: relative;
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(133, 234, 45, 0.08);
    border: 1px solid rgba(133, 234, 45, 0.2);
    border-radius: 30px;
    padding: 6px 16px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
}

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

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-btn-primary {
    background: var(--primary);
    color: var(--primary-fg);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(133,234,45,0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(133,234,45,0.35);
}

.hero-btn-primary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.hero-btn-outline {
    background: transparent;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    border: 1px solid var(--border-bright);
    transition: all 0.2s;
}

.hero-btn-outline:hover {
    background: var(--bg-accent);
}

.hero-right {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-wrap {
    width: 100%;
    max-width: 440px;
    filter: drop-shadow(0 20px 50px rgba(133,234,45,0.15));
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Feature Cards Section */
.hero-cards-sec {
    padding: 40px 0 100px;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hero-feat-card {
    background: #0f131a;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.2s;
}

.hero-feat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-bright);
    background: #131922;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.hero-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(133, 234, 45, 0.08);
    border: 1px solid rgba(133, 234, 45, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.hero-feat-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.hero-feat-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-feat-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.hero-feat-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* RTL overrides for landing */
html[dir="rtl"] .hero-left {
    align-items: flex-start;
    text-align: right;
}

html[dir="rtl"] .hero-inner {
    grid-template-columns: 1.2fr 1fr;
}

html[dir="rtl"] .hero-tag-dot {
    margin-left: 0;
    margin-right: 0;
}

/* Mobile responsive */
@media(max-width: 900px) {
    .navbar {
        height: 64px;
    }
    .nav-links {
        display: none;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .hero-left {
        align-items: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
