        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; overflow-x: hidden; }
        body {
            font-family: 'Cairo', sans-serif;
            background: #080c16;
            color: #e2e8f0;
            line-height: 1.6;
            direction: rtl;
            overflow-x: hidden;
        }

        /* ─── Container ─── */
        .t-container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .t-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 64px; background: rgba(8,12,22,.95); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(59,130,246,.12); display: flex; align-items: center; overflow: hidden; }
        .t-nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0 4px; min-width: 0; }
        .t-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; min-width: 0; flex-shrink: 1; overflow: hidden; }
        .t-logo-text { font-size: 1.1rem; font-weight: 900; color: #f1f5f9; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .t-logo-accent { color: #3b82f6; }
        .t-nav-links { display: flex; align-items: center; gap: 6px; list-style: none; flex-shrink: 0; }
        .t-nav-links a { text-decoration: none; color: #94a3b8; font-size: .85rem; font-weight: 600; padding: 6px 12px; border-radius: 8px; transition: color .2s, background .2s; }
        .t-nav-links a:hover { color: #f1f5f9; background: rgba(255,255,255,.05); }
        .t-nav-links a.active { color: #60a5fa; background: rgba(59,130,246,.1); }
        .t-wa-btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; background: linear-gradient(135deg,#25d366,#128c7e); border-radius: 10px; color: #fff; font-family: 'Cairo', sans-serif; font-size: .82rem; font-weight: 800; text-decoration: none; box-shadow: 0 0 14px rgba(37,211,102,.25); flex-shrink: 0; white-space: nowrap; }

        /* ─── Page Body ─── */
        .t-page { padding-top: 72px; }

        /* ─── Hero ─── */
        .t-hero {
            padding: 70px 0 50px;
            text-align: center;
            position: relative;
        }
        .t-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 50%;
            transform: translateX(-50%);
            width: 700px; height: 400px;
            background: radial-gradient(ellipse, rgba(59,130,246,.07) 0%, transparent 70%);
            pointer-events: none;
        }
        .t-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 6px 18px;
            background: rgba(59,130,246,.1);
            border: 1px solid rgba(59,130,246,.25);
            border-radius: 20px;
            color: #93c5fd;
            font-size: .8rem;
            font-weight: 700;
            margin-bottom: 22px;
        }
        .t-hero h1 {
            font-size: clamp(1.7rem, 4vw, 2.6rem);
            font-weight: 900;
            color: #f1f5f9;
            margin-bottom: 14px;
            line-height: 1.3;
        }
        .t-hero p {
            font-size: .93rem;
            color: #94a3b8;
            max-width: 540px;
            margin: 0 auto;
            line-height: 1.75;
        }
        .gradient-text {
            background: linear-gradient(135deg,#3b82f6,#06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ─── Contact Bar ─── */
        .t-contact-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            padding: 16px 24px;
            background: rgba(37,211,102,.06);
            border: 1px solid rgba(37,211,102,.18);
            border-radius: 14px;
            margin-bottom: 48px;
        }
        .t-contact-label { font-size: .88rem; color: #94a3b8; font-weight: 600; }
        .t-contact-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 22px;
            background: linear-gradient(135deg,#25d366,#128c7e);
            border-radius: 10px;
            color: #fff;
            font-weight: 800;
            font-size: .88rem;
            text-decoration: none;
            box-shadow: 0 0 14px rgba(37,211,102,.22);
        }

        /* ─── Terms Grid ─── */
        .t-section { padding-bottom: 90px; }
        .t-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 40px;
        }
        .t-card {
            background: rgba(13,20,42,.95);
            border: 1px solid rgba(59,130,246,.14);
            border-radius: 15px;
            padding: 22px 20px;
            position: relative;
            overflow: hidden;
            transition: transform .25s, border-color .25s, box-shadow .25s;
        }
        .t-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg,transparent,rgba(59,130,246,.5),transparent);
            opacity: 0;
            transition: opacity .3s;
        }
        .t-card:hover { transform: translateY(-3px); border-color: rgba(59,130,246,.3); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
        .t-card:hover::after { opacity: 1; }

        .t-card.imp { border-color: rgba(245,158,11,.2); }
        .t-card.imp::after { background: linear-gradient(90deg,transparent,rgba(245,158,11,.5),transparent); }
        .t-card.imp:hover { border-color: rgba(245,158,11,.4); }

        .t-card.warn { border-color: rgba(239,68,68,.15); }
        .t-card.warn::after { background: linear-gradient(90deg,transparent,rgba(239,68,68,.5),transparent); }
        .t-card.warn:hover { border-color: rgba(239,68,68,.35); }

        .t-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px; height: 34px;
            border-radius: 9px;
            font-size: .78rem;
            font-weight: 900;
            margin-bottom: 13px;
            background: rgba(59,130,246,.1);
            border: 1px solid rgba(59,130,246,.22);
            color: #60a5fa;
        }
        .t-card.imp .t-num { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.25); color: #fcd34d; }
        .t-card.warn .t-num { background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.22); color: #f87171; }

        .t-text { font-size: .89rem; font-weight: 600; color: #e2e8f0; line-height: 1.72; }

        /* ─── Summary ─── */
        .t-summary {
            background: linear-gradient(135deg,rgba(59,130,246,.06),rgba(6,182,212,.04));
            border: 1px solid rgba(59,130,246,.2);
            border-radius: 18px;
            padding: 32px;
            text-align: center;
        }
        .t-summary h3 { font-size: 1.1rem; font-weight: 800; color: #f1f5f9; margin-bottom: 10px; }
        .t-summary p { font-size: .88rem; color: #94a3b8; line-height: 1.7; max-width: 580px; margin: 0 auto 22px; }
        .t-sum-btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 13px 30px;
            background: linear-gradient(135deg,#25d366,#128c7e);
            border-radius: 12px;
            color: #fff;
            font-family: 'Cairo', sans-serif;
            font-size: .9rem;
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 0 18px rgba(37,211,102,.28);
        }

        /* ─── Footer ─── */
        .t-footer {
            background: rgba(6,10,20,.8);
            border-top: 1px solid rgba(59,130,246,.1);
            padding: 24px 0;
        }
        .t-footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .t-copy { font-size: .8rem; color: #475569; }
        .t-footer-links { display: flex; gap: 18px; }
        .t-footer-links a { font-size: .8rem; color: #64748b; text-decoration: none; }
        .t-footer-links a:hover { color: #93c5fd; }
        .t-footer-links a.cur { color: #93c5fd; }

        @media (max-width: 900px) {
            .t-grid { grid-template-columns: repeat(2, 1fr); }
            .t-nav-links { display: none; }
        }
        @media (max-width: 640px) {
            .t-container { padding: 0 14px; }
            .t-wa-btn .t-btn-text { display: none; }
            .t-wa-btn { padding: 8px 10px; gap: 0; }
            .t-grid { grid-template-columns: 1fr; }
            .t-hero { padding: 48px 0 32px; }
            .t-hero h1 { font-size: 1.4rem; }
            .t-contact-bar { flex-direction: column; text-align: center; padding: 14px; gap: 10px; }
            .t-contact-label { font-size: .82rem; }
            .t-summary { padding: 22px 16px; }
            .t-footer-inner { flex-direction: column; align-items: center; text-align: center; }
            .t-footer-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
        }

/* Extra Sections */
.t-extra-section {
    margin-top: 32px;
    padding: 24px 28px;
    background: rgba(59,130,246,0.04);
    border: 1px solid rgba(59,130,246,0.12);
    border-radius: 16px;
}
.t-extra-section h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 14px;
}
.t-extra-section p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: #94a3b8;
}

.t-reg-info {
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 12px;
}
.t-reg-info p {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 6px;
}
.t-reg-info p:last-child { margin-bottom: 0; }
.t-reg-info strong { color: #6ee7b7; }
