<styl
/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --accent: #6C63FF;
    --accent-dim: rgba(108,99,255,0.15);
    --accent-border: rgba(108,99,255,0.35);
    --bg: #0a0a0f;
    --bg2: rgba(255,255,255,0.03);
    --bg3: rgba(255,255,255,0.06);
    --text: #f0f0f0;
    --text-muted: rgba(255,255,255,0.5);
    --text-dim: rgba(255,255,255,0.35);
    --border: rgba(255,255,255,0.08);
    --border2: rgba(255,255,255,0.14);
    --radius: 12px;
    --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== HEADER ===== */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    border-bottom: 0.5px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.logo img {
    height: 42px;
    object-fit: contain;
    display: block;
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.login-btn {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 8px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}

.login-btn:hover {
    background: #5a52e0;
    transform: translateY(-1px);
}

/* ===== BURGER ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== OVERLAY & MOBILE MENU ===== */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay.show { display: block; opacity: 1; }

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: #111118;
    border-right: 0.5px solid var(--border);
    z-index: 99;
    padding: 80px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu.show { left: 0; }

.mobile-menu a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: var(--accent-dim);
    color: #fff;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 90px 48px 70px;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108,99,255,0.16) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-dim);
    border: 0.5px solid var(--accent-border);
    color: #a89fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 30px;
    width: fit-content;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    max-width: 640px;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 38px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    align-items: center;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-primary:hover {
    background: #5a52e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108,99,255,0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 0.5px solid var(--border2);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 52px;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 0.5px solid var(--border);
}

.stat-num {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
}

.stat-lbl {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 2px;
}

/* ===== SERVICES ===== */
.services {
    padding: 80px 48px;
    border-top: 0.5px solid var(--border);
}

.sec-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sec-title {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.sec-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 44px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service {
    background: var(--bg2);
    border: 0.5px solid var(--border);
    border-radius: 14px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
    opacity: 0;
    transform: translateY(24px);
}

.service.show {
    opacity: 1;
    transform: translateY(0);
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service:hover {
    border-color: var(--accent-border);
    background: var(--accent-dim);
    transform: translateY(-4px);
}

.service:hover::before { opacity: 1; }

.service-icon {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--accent);
}

.service h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-tag {
    display: inline-block;
    margin-top: 18px;
    font-size: 12px;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 3px 12px;
    border-radius: 99px;
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 48px;
    border-top: 0.5px solid var(--border);
}

.faq-title  { display: none; }
.faq-subtitle { display: none; }

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg2);
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.25s;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item.active { border-color: var(--accent-border); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 0.5px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--text-muted);
    transition: all 0.3s;
    line-height: 1;
}

.faq-item.active .faq-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.faq-item.active .faq-answer { max-height: 220px; }

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
    border-top: 0.5px solid var(--border);
    padding: 32px 48px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    header { padding: 14px 20px; }
    .nav-links { display: none; }
    .burger { display: flex; }
    .header-actions .login-btn { display: none; }

    .hero { padding: 60px 20px 50px; min-height: auto; }
    .hero h1 { font-size: 34px; }
    .hero p { font-size: 16px; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .hero-btns { flex-direction: column; align-items: flex-start; }

    .services { padding: 50px 20px; }
    .services-grid { grid-template-columns: 1fr; }

    .faq-section { padding: 50px 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .sec-title { font-size: 24px; }
}