/* ══════════════════════════════════════════════════════════════
   Jet Soft — Landing Page
   ══════════════════════════════════════════════════════════════ */

.landing { overflow-x: hidden; }

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
    position: relative;
    padding: 100px 24px 80px;
    text-align: center;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(249,115,22,0.12) 0%, transparent 70%),
        var(--bg-primary);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent);
    background: var(--accent-soft);
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.hero-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-xl {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: 10px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}
.hero-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-mono);
}
.hero-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ── Features ─────────────────────────────────────────────── */

.features {
    padding: 80px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.features-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.section-sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color 200ms, transform 200ms;
}
.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ── How it works ─────────────────────────────────────────── */

.how-it-works {
    padding: 80px 24px;
    background: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 24px;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-mono);
}
.step-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ── CTA ──────────────────────────────────────────────────── */

.cta-section {
    padding: 80px 24px;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(249,115,22,0.08) 0%, transparent 70%),
        var(--bg-secondary);
    border-top: 1px solid var(--border);
    text-align: center;
}
.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-inner p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

/* ── Footer ───────────────────────────────────────────────── */

.landing-footer {
    padding: 32px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
}
.footer-brand span { color: var(--text-primary); }
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
}
.footer-links a:hover { color: var(--text-primary); }
.footer-copy {
    font-size: 0.82rem;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 768px) {
    .hero { padding: 60px 16px 48px; }
    .hero-stats { gap: 24px; }
    .features, .how-it-works, .cta-section { padding: 48px 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; }
}
