* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #050814;
    color: #f5f5f5;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

header.site-header {
    background: rgba(3, 10, 30, 0.96);
    border-bottom: 1px solid rgba(0, 255, 170, 0.16);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    color: #3CF5C0;
}

.nav-links {
    display: flex;
    gap: 18px;
    font-size: 0.9rem;
}

.nav-links a {
    color: #b8c4ff;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: #3CF5C0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #20DFA3, #06B4D9);
    color: #020817;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(34, 211, 163, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 0 35px rgba(34, 211, 163, 0.55);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    background: transparent;
}

.btn-outline:hover {
    border-color: #3CF5C0;
    color: #3CF5C0;
}

main {
    padding-bottom: 64px;
}

.hero {
    padding: 52px 0 36px;
    background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.14), transparent 55%),
                radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 55%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #94a3b8;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero-title span {
    color: #3CF5C0;
}

.hero-text {
    color: #cbd5f5;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.86rem;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a5b4fc;
}

.hero-bullet span {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid rgba(52, 211, 153, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #22c55e;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-note {
    font-size: 0.8rem;
    color: #64748b;
}

.hero-card {
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.35), transparent 70%),
                linear-gradient(to bottom right, #020617, #020617);
    border-radius: 18px;
    padding: 18px 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.hero-card-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #e5e7eb;
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(94, 234, 212, 0.6);
    color: #a5f3fc;
    margin-bottom: 10px;
}

.hero-card-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 4px;
}

.hero-card-footer {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #6366f1;
}

section {
    padding: 28px 0;
}

.section-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.step-card {
    background: #020617;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 12px 12px 14px;
    font-size: 0.85rem;
}

.step-num {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 4px;
}

.step-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.step-card ul {
    padding-right: 16px;
    line-height: 1.7;
    color: #cbd5f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.feature-card {
    background: #020617;
    border-radius: 14px;
    border: 1px solid rgba(75, 85, 99, 0.7);
    padding: 10px 12px 12px;
    font-size: 0.85rem;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-desc {
    color: #cbd5f5;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.price-card {
    background: #020617;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    padding: 12px;
    font-size: 0.85rem;
}

.price-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #3CF5C0;
}

.price-note {
    color: #9ca3af;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.price-card ul {
    padding-right: 16px;
    color: #cbd5f5;
    line-height: 1.6;
    margin-bottom: 8px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.faq-item {
    background: #020617;
    border-radius: 12px;
    border: 1px solid rgba(30, 64, 175, 0.7);
    padding: 10px 12px 12px;
    font-size: 0.86rem;
}

.faq-q {
    font-weight: 600;
    margin-bottom: 4px;
}

.faq-a {
    color: #cbd5f5;
    line-height: 1.7;
}

footer.site-footer {
    border-top: 1px solid rgba(30, 64, 175, 0.7);
    padding: 14px 0 18px;
    font-size: 0.8rem;
    color: #64748b;
    background: #020617;
    margin-top: 18px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: #e5e7eb;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .steps-grid,
    .features-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-bullets {
        grid-template-columns: minmax(0, 1fr);
    }
}
