:root {
    --bg: #0f172a;
    --bg-soft: #172033;
    --card: rgba(255, 255, 255, 0.08);
    --card-light: #ffffff;
    --text: #e5ecf7;
    --text-dark: #111827;
    --muted: #97a3b6;
    --line: rgba(255, 255, 255, 0.12);
    --accent: #e46d2e;
    --accent-2: #ff9f43;
    --success: #22c55e;
    --shadow: 0 16px 44px rgba(0, 0, 0, 0.20);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #f7f8fc;
    color: var(--text-dark);
}

img {
    max-width: 100%;
    display: block;
}

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

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(15, 23, 42, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 15px;
}

.brand-text span {
    font-size: 12px;
    color: var(--muted);
}

.nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #dbe6ff;
    font-size: 14px;
}

.nav a:hover {
    color: white;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.lang-label {
    font-size: 13px;
    color: #d6e0f4;
}

.lang-select {
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 0 12px;
    outline: none;
}

.lang-select option {
    color: #111827;
}

.hero {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.48), rgba(15, 23, 42, 0.92)),
        linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.38));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 90px 0;
}

.status-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 24px;
    font-size: 14px;
}

.status-dot,
.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.95);
}

.hero h1 {
    margin: 0;
    max-width: 860px;
    font-size: clamp(40px, 7vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.hero-text {
    max-width: 720px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.75;
    color: #dde6f7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255,255,255,0.10);
    color: white;
    border: 1px solid rgba(255,255,255,0.14);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.16);
}

.hero-metrics {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 16px;
    max-width: 980px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    padding: 22px;
    backdrop-filter: blur(10px);
}

.metric-value {
    display: block;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
}

.metric-label {
    color: #d7e1f3;
    font-size: 14px;
}

.section {
    padding: 88px 0;
}

.section-light {
    background: #f2f5fb;
}

.section-dark {
    background: linear-gradient(180deg, #111827, #172033);
    color: white;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2,
.coverage-content h2,
.network-grid h2,
.dashboard-head h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.section-heading p,
.coverage-content p,
.network-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #5b677d;
}

.section-dark .network-text {
    color: #c9d5ea;
}

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

.info-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
    border: 1px solid #e7edf6;
}

.info-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.info-card p {
    margin: 0;
    color: #5d6b82;
    line-height: 1.75;
}

.network-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.stats-list {
    margin-top: 26px;
    display: grid;
    gap: 14px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
}

.stat-row span {
    color: #b8c6df;
}

.network-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.network-panel h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.network-panel ul {
    margin: 0;
    padding-left: 18px;
    color: #d5def0;
    line-height: 1.9;
}

.coverage-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 34px;
    align-items: center;
}

.coverage-image-wrap {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.coverage-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
}

.mini-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 16px;
}

.mini-box {
    background: white;
    border: 1px solid #e7edf6;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.05);
}

.mini-box strong {
    display: block;
    font-size: 28px;
    margin-bottom: 6px;
}

.mini-box span {
    color: #617086;
}

.dashboard-box {
    background: white;
    border-radius: 28px;
    padding: 34px;
    border: 1px solid #e6edf8;
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.06);
}

.dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #dcfce7;
    font-weight: 700;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 16px;
}

.kpi-card {
    background: linear-gradient(180deg, #ffffff, #f7f9fd);
    border: 1px solid #e8edf5;
    border-radius: 18px;
    padding: 22px;
}

.kpi-label {
    display: block;
    color: #6a768b;
    font-size: 14px;
    margin-bottom: 10px;
}

.kpi-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.footer {
    background: #0f172a;
    color: #dbe5f7;
    padding: 30px 0;
}

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

.footer p {
    margin: 8px 0 0;
    color: #a2aec2;
}

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

.footer-links a:hover {
    color: white;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .topbar-inner,
html[dir="rtl"] .brand,
html[dir="rtl"] .dashboard-head,
html[dir="rtl"] .footer-inner {
    direction: rtl;
}

@media (max-width: 1080px) {
    .hero-metrics,
    .kpi-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .cards-grid,
    .network-grid,
    .coverage-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 74px 0;
    }

    .hero-metrics,
    .kpi-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        align-items: flex-start;
    }
}