:root {
    --bg: #080b12;
    --bg-soft: #101625;
    --card: #111827;
    --text: #f8fafc;
    --muted: #94a3b8;
    --primary: #6366f1;
    --primary-soft: #8b5cf6;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
}

.announcement-bar {
    background: linear-gradient(90deg, var(--primary), var(--primary-soft));
    padding: 8px 0;
    font-size: 0.9rem;
}

.announcement-bar a,
.top-bar a,
.footer a {
    color: #c7d2fe;
    text-decoration: none;
}

.top-bar {
    background: #0b1020;
    color: var(--muted);
    padding: 10px 0;
}

.main-navbar {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand,
.nav-link {
    color: #fff;
}

.navbar-brand { font-weight: 800; }
.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--primary-soft));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.18);
    border: 1px solid rgba(99, 102, 241, 0.5);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
}

.hero-description,
.text-muted {
    color: var(--muted) !important;
}

.hero-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.hero-features li { margin-bottom: 0.5rem; }
.hero-features i { color: #34d399; margin-right: 8px; }
.hero-btn { margin-top: 0.5rem; }
.guarantee-text { margin-top: 1rem; color: #a5b4fc; }

.hero-image-container { position: relative; max-width: 520px; margin: 0 auto; }
.hero-image img { border-radius: 20px; }

.floating-card {
    position: absolute;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 12px 14px;
    backdrop-filter: blur(8px);
}

.floating-card.left { left: -20px; top: 16%; }
.floating-card.right { right: -16px; top: 35%; }
.floating-card.bottom { right: 20px; bottom: 14px; }
.floating-card-title { color: var(--muted); font-size: 0.85rem; }
.floating-card-value { font-weight: 700; }

.tech-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.stats-section,
.domain-section,
.card,
.footer {
    background: var(--bg-soft);
}

.card {
    border: 1px solid #1f2937;
    color: #fff;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    margin-bottom: 1rem;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.pricing-card hr { border-color: #1f1f2e; }
.price { font-size: 1.5rem; font-weight: 800; }
.cta-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.footer { padding: 70px 0 35px; margin-top: 40px; }
.social-links a { color: var(--muted); }
.payment-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    background: #1f2937;
    color: #fff;
    font-size: 0.8rem;
}

[dir='rtl'] body,
[dir='rtl'] .navbar,
[dir='rtl'] .top-bar,
[dir='rtl'] .hero-section,
[dir='rtl'] .footer {
    text-align: right;
}

@media (max-width: 991px) {
    .floating-card { position: static; margin-top: 10px; display: inline-block; }
    .hero-image-container { text-align: center; }
}
