:root {
    --brand-red: #FE2828;
    --brand-blue: #004AAD;

    --brand-red-rgb: 254, 40, 40;
    --brand-blue-rgb: 0, 74, 173;

    --black: #050608;
    --black-soft: #0b0e13;
    --surface: #10141b;
    --surface-light: #161b24;

    --white: #ffffff;
    --off-white: #f5f7fa;
    --text: #f5f7fb;
    --muted: #98a2b3;

    --border: rgba(255, 255, 255, 0.09);

    --container: 1180px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition: 0.25s ease;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: var(--black);
    color: var(--text);
    font-family:
        "Segoe UI",
        Arial,
        sans-serif;
    line-height: 1.7;
}


html[dir="rtl"] body {
    font-family:
        Tahoma,
        Arial,
        sans-serif;
}


a {
    color: inherit;
}


img {
    max-width: 100%;
}


.container,
.header-container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );
    margin-inline: auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(5, 6, 8, 0.88);

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid var(--border);
}


.header-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.brand {
    display: flex;
    align-items: center;

    text-decoration: none;
}


.brand-logo {
    width: 320px;
    max-width: 100%;
    height: 64px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}


.main-nav > a {
    position: relative;

    color: #dce2ea;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        color var(--transition);
}


.main-nav > a:not(.nav-contact)::after {
    content: "";

    position: absolute;

    inset-inline-start: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--brand-red),
            var(--brand-blue)
        );

    transition:
        width var(--transition);
}


.main-nav > a:not(.nav-contact):hover {
    color: var(--white);
}


.main-nav > a:not(.nav-contact):hover::after {
    width: 100%;
}


.nav-contact {
    padding: 11px 20px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            var(--brand-red),
            #ff4347
        );

    color: var(--white) !important;

    box-shadow:
        0 12px 34px
        rgba(255, 41, 45, 0.20);

    transition:
        transform var(--transition),
        box-shadow var(--transition) !important;
}


.nav-contact:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 40px
        rgba(255, 41, 45, 0.28);
}


.language-form {
    margin: 0;
}


.language-switch {
    min-width: 46px;
    height: 40px;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.05);

    color: var(--white);

    cursor: pointer;

    font-weight: 700;

    transition:
        border-color var(--transition),
        background var(--transition);
}


.language-switch:hover {
    border-color: var(--brand-blue);

    background:
        rgba(7, 87, 201, 0.12);
}


.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.04);

    cursor: pointer;
}


.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 5px auto;

    border-radius: 5px;

    background: var(--white);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(7, 87, 201, 0.20),
            transparent 35%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(255, 41, 45, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #050608 0%,
            #080b11 50%,
            #050608 100%
        );
}


.hero::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: 60px;
    inset-inline-end: -110px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.05);

    box-shadow:
        0 0 120px
        rgba(7, 87, 201, 0.09);
}


.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 3px;

    top: 50%;
    inset-inline-end: -50px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--brand-red),
            var(--brand-blue),
            transparent
        );

    opacity: 0.45;

    transform: rotate(-12deg);

    box-shadow:
        0 0 35px
        rgba(255, 41, 45, 0.30);
}


.hero .container {
    position: relative;
    z-index: 2;

    padding-block: 100px;
}


.eyebrow {
    margin: 0 0 18px;

    color: var(--brand-blue-light);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.20em;

    text-transform: uppercase;
}


.hero h1 {
    max-width: 840px;

    margin:
        0
        0
        26px;

    font-size:
        clamp(
            42px,
            6vw,
            82px
        );

    line-height: 1.02;

    letter-spacing: -0.045em;

    color: var(--white);
}


html[dir="rtl"] .hero h1 {
    letter-spacing: 0;
}


.hero > .container > p:not(.eyebrow) {
    max-width: 720px;

    margin:
        0
        0
        38px;

    color: #b7c0cc;

    font-size:
        clamp(
            17px,
            2vw,
            20px
        );
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}


.hero-actions a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}


.hero-actions a:first-child {
    background: var(--brand-red);

    color: var(--white);

    box-shadow:
        0 16px 40px
        rgba(255, 41, 45, 0.22);
}


.hero-actions a:first-child:hover {
    transform: translateY(-3px);

    background: #ff3d41;
}


.hero-actions a:last-child {
    border:
        1px solid rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.04);
}


.hero-actions a:last-child:hover {
    transform: translateY(-3px);

    border-color:
        rgba(7, 87, 201, 0.8);

    background:
        rgba(7, 87, 201, 0.10);
}


/* =========================
   CONTENT SECTIONS
========================= */

.about-preview,
.services-preview,
.cta,
.page-hero,
.contact-section {
    padding:
        100px
        0;
}


.about-preview {
    background: var(--off-white);

    color: #111827;
}


.about-preview h2,
.services-preview h2,
.cta h2,
.contact-section h2 {
    margin:
        0
        0
        18px;

    font-size:
        clamp(
            30px,
            4vw,
            48px
        );

    line-height: 1.15;
}


.about-preview p {
    max-width: 760px;

    color: #5f6977;

    font-size: 18px;
}


.about-preview a {
    display: inline-block;

    margin-top: 15px;

    color: var(--brand-blue);

    font-weight: 800;

    text-decoration: none;
}


.services-preview {
    background:
        linear-gradient(
            180deg,
            var(--black-soft),
            var(--black)
        );
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 20px;

    margin-top: 42px;
}


.services-grid article {
    min-height: 240px;

    padding: 32px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );

    transition:
        transform var(--transition),
        border-color var(--transition);
}


.services-grid article:hover {
    transform: translateY(-7px);

    border-color:
        rgba(7, 87, 201, 0.55);
}


.services-grid article h3 {
    margin:
        0
        0
        14px;

    color: var(--white);

    font-size: 23px;
}


.services-grid article p {
    color: var(--muted);
}


.cta {
    position: relative;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0d1118,
            #07090d
        );
}


.cta::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: 50%;
    top: 50%;

    transform:
        translate(
            -50%,
            -50%
        );

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 41, 45, 0.10),
            transparent 66%
        );
}


.cta .container {
    position: relative;
}


.cta p {
    max-width: 650px;

    margin:
        0
        auto
        30px;

    color: var(--muted);
}


.cta a {
    display: inline-flex;

    padding:
        13px
        26px;

    border-radius: 999px;

    background: var(--brand-red);

    color: white;

    text-decoration: none;

    font-weight: 800;
}


/* =========================
   PAGE HERO
========================= */

.page-hero {
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(7, 87, 201, 0.15),
            transparent 35%
        ),
        var(--black-soft);
}


.page-hero h1 {
    max-width: 900px;

    margin:
        0
        0
        22px;

    color: white;

    font-size:
        clamp(
            38px,
            5vw,
            65px
        );

    line-height: 1.08;
}


.page-hero p {
    max-width: 760px;

    color: var(--muted);
}


/* =========================
   CONTACT
========================= */

.contact-section {
    background: var(--off-white);

    color: #111827;
}


.contact-form-wrapper {
    max-width: 760px;

    margin-top: 45px;

    padding: 36px;

    border-radius:
        var(--radius-lg);

    background: white;

    box-shadow:
        0 25px 70px
        rgba(15, 23, 42, 0.10);
}


.form-group {
    margin-bottom: 22px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-weight: 700;
}


.form-group input,
.form-group textarea {
    width: 100%;

    padding:
        13px
        15px;

    border:
        1px solid #d8dde5;

    border-radius:
        var(--radius-sm);

    background: #fbfcfd;

    color: #111827;

    font: inherit;

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-blue);

    box-shadow:
        0 0 0 4px
        rgba(7, 87, 201, 0.09);
}


.field-errors,
.form-errors {
    margin-top: 8px;

    color: #c51f25;

    font-size: 14px;
}


.contact-form-wrapper button[type="submit"] {
    min-height: 50px;

    padding:
        0
        26px;

    border: 0;

    border-radius: 999px;

    background:
        var(--brand-red);

    color: white;

    font: inherit;
    font-weight: 800;

    cursor: pointer;
}


/* =========================
   MESSAGES
========================= */

.site-messages {
    position: fixed;

    top: 95px;
    left: 50%;

    z-index: 2000;

    transform:
        translateX(-50%);

    width:
        min(
            calc(100% - 30px),
            620px
        );
}


.site-message {
    padding:
        15px
        18px;

    border-radius: 12px;

    background: #0f5132;

    color: white;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.25);
}


/* =========================
   FOOTER
========================= */

footer {
    padding:
        60px
        0
        30px;

    border-top:
        1px solid var(--border);

    background: #040506;

    color: var(--muted);
}


footer a {
    color: #d9dee7;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .header-container {
    min-height: 92px;
    }


    .brand-logo {
    width: 220px;
    height: 52px;
}

    .menu-toggle {
        display: block;
    }


    .main-nav {
        position: absolute;

        top: 72px;
        inset-inline: 20px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 8px;

        padding: 18px;

        border:
            1px solid var(--border);

        border-radius:
            16px;

        background:
            rgba(9, 11, 15, 0.98);

        box-shadow:
            0 25px 70px
            rgba(0, 0, 0, 0.45);
    }


    .main-nav.is-open {
        display: flex;
    }


    .main-nav > a {
        padding:
            11px
            12px;
    }


    .nav-contact {
        text-align: center;
    }


    .language-switch {
        width: 100%;
    }


    .hero {
        min-height: 610px;
    }


    .hero .container {
        padding-block:
            80px;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .about-preview,
    .services-preview,
    .cta,
    .page-hero,
    .contact-section {
        padding:
            72px
            0;
    }

}


@media (max-width: 560px) {

    .container,
    .header-container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }


    .brand-logo {
    width: 125px;
}

    .hero h1 {
        font-size: 42px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .hero-actions a {
        width: 100%;
    }


    .contact-form-wrapper {
        padding: 24px;
    }

}
/* HERO REFINEMENT */

.hero {
    min-height: 640px;
}

.hero .container {
    padding-block: 92px;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    margin-bottom: 24px;
}

html[dir="rtl"] .hero h1 {
    max-width: 820px;
    line-height: 1.18;
}

.hero > .container > p:not(.eyebrow) {
    max-width: 720px;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.9;
    margin-bottom: 34px;
}

.hero-actions a {
    min-width: 150px;
    min-height: 52px;
    padding: 0 26px;
}

@media (max-width: 900px) {
    .hero {
        min-height: 590px;
    }

    .hero .container {
        padding-block: 74px;
    }

    .hero h1 {
        font-size: clamp(38px, 8vw, 56px);
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: 560px;
    }

    .hero h1 {
        font-size: 40px;
    }
}
/* =================================
   PREMIUM CONTENT REFINEMENT
================================= */

.about-preview {
    position: relative;
    overflow: hidden;
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(7, 87, 201, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #f5f7fb
        );

    color: #111827;
}

.about-preview::after {
    content: "";
    position: absolute;

    width: 360px;
    height: 360px;

    inset-inline-end: -180px;
    bottom: -180px;

    border-radius: 50%;

    border:
        1px solid rgba(7, 87, 201, 0.10);
}

.about-preview h2 {
    max-width: 760px;

    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    line-height: 1.18;

    color: #101828;
}

.about-preview p {
    max-width: 760px;

    font-size: 18px;
    line-height: 1.9;

    color: #667085;
}

.about-preview a {
    display: inline-flex;
    align-items: center;

    margin-top: 20px;

    color: var(--brand-blue);

    font-weight: 800;

    text-decoration: none;
}


/* SERVICES */

.services-preview {
    position: relative;

    padding: 110px 0;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(255, 41, 45, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #090c12,
            #050608
        );
}

.services-preview h2 {
    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    color: white;
}

.services-grid {
    gap: 24px;
    margin-top: 50px;
}

.services-grid article {
    position: relative;

    min-height: 270px;

    padding: 36px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    box-shadow:
        0 22px 55px
        rgba(0,0,0,0.20);
}

.services-grid article::before {
    display: block;

    margin-bottom: 34px;

    color: var(--brand-blue-light);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 0.18em;
}

.services-grid article:nth-child(1)::before {
    content: "01";
}

.services-grid article:nth-child(2)::before {
    content: "02";
}

.services-grid article:nth-child(3)::before {
    content: "03";
}

.services-grid article::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    inset-inline-end: -50px;
    bottom: -50px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(7,87,201,0.15),
            transparent 68%
        );
}

.services-grid article:hover {
    transform: translateY(-8px);

    border-color:
        rgba(7,87,201,0.50);
}

.services-grid article h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.services-grid article p {
    color: #98a2b3;
    line-height: 1.85;
}


/* CTA */

.cta {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,41,45,0.10),
            transparent 38%
        ),
        #07090d;
}

.cta h2 {
    max-width: 760px;

    margin-inline: auto;

    font-size:
        clamp(
            34px,
            4vw,
            52px
        );
}

.cta a {
    padding: 14px 30px;

    box-shadow:
        0 16px 38px
        rgba(255,41,45,0.22);
}


@media (max-width: 900px) {

    .about-preview,
    .services-preview,
    .cta {
        padding: 78px 0;
    }

}
/* SERVICES FINAL POLISH */

.services-grid article {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    border:
        1px solid rgba(255, 255, 255, 0.11);

    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.28);

    min-height: 285px;
}

.services-grid article:nth-child(1) {
    border-top:
        2px solid rgba(255, 41, 45, 0.75);
}

.services-grid article:nth-child(2) {
    border-top:
        2px solid rgba(7, 87, 201, 0.85);
}

.services-grid article:nth-child(3) {
    border-top:
        2px solid rgba(255, 41, 45, 0.75);
}

.services-grid article::before {
    font-size: 14px;
    color: #5d8fff;
}

.services-grid article h3 {
    color: #ffffff;
    font-size: 25px;
}

.services-grid article p {
    color: #b1bac7;
    font-size: 16px;
}

.services-grid article:hover {
    transform: translateY(-10px);

    border-color:
        rgba(7, 87, 201, 0.65);

    box-shadow:
        0 32px 75px rgba(0, 0, 0, 0.34);
}
.about-preview {
    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(7, 87, 201, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(255, 41, 45, 0.07),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0b1220 0%,
            #132238 55%,
            #0b111c 100%
        );

    color: #ffffff;
}

.about-preview h2 {
    color: #ffffff;
}

.about-preview p {
    color: #b7c1cf;
}

.about-preview a {
    color: #5f93ff;
}
/* ABOUT PREVIEW - SEAMLESS WITH HERO */

.about-preview {
    background:
        radial-gradient(
            circle at 82% 28%,
            rgba(7, 87, 201, 0.10),
            transparent 34%
        ),
        radial-gradient(
            circle at 12% 85%,
            rgba(255, 41, 45, 0.045),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #07090d 0%,
            #0a0f18 55%,
            #080b11 100%
        );

    color: #ffffff;

    border-top: 1px solid rgba(255,255,255,0.035);
    border-bottom: 1px solid rgba(255,255,255,0.035);
}

.about-preview h2 {
    color: #ffffff;
}

.about-preview p {
    color: #aeb7c4;
}

.about-preview a {
    color: #6d9cff;
}
/* ABOUT PREVIEW - SEAMLESS FINAL */

.about-preview {
    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(7, 87, 201, 0.14),
            transparent 38%
        ),
        radial-gradient(
            circle at 12% 65%,
            rgba(255, 41, 45, 0.035),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #07090d 0%,
            #0a101a 20%,
            #0d1828 50%,
            #0a101a 80%,
            #07090d 100%
        );

    border: 0;
    box-shadow: none;
}

.about-preview::before,
.about-preview::after {
    display: none;
}
/* SERVICES CARDS - UNIFIED RED BRAND */

.services-grid article {
    background: linear-gradient(180deg, rgba(10, 14, 22, 0.96), rgba(7, 10, 16, 0.98));
    border: 1px solid rgba(255, 88, 56, 0.35);
    border-radius: 24px;
    box-shadow:
        0 0 0 1px rgba(255, 88, 56, 0.08),
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(255, 88, 56, 0.12);
}

.services-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    right: 18px;
    left: 18px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 88, 56, 0.95), rgba(255, 88, 56, 0.45));
}

.services-grid article:nth-child(1),
.services-grid article:nth-child(2),
.services-grid article:nth-child(3) {
    border-color: rgba(255, 88, 56, 0.35);
    box-shadow:
        0 0 0 1px rgba(255, 88, 56, 0.08),
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(255, 88, 56, 0.12);
}

.services-grid article:nth-child(1)::before,
.services-grid article:nth-child(2)::before,
.services-grid article:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(255, 88, 56, 0.95), rgba(255, 88, 56, 0.45));
}

.services-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 88, 56, 0.55);
    box-shadow:
        0 0 0 1px rgba(255, 88, 56, 0.12),
        0 18px 40px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(255, 88, 56, 0.18);
}
/* SERVICE CARDS - OLD PREMIUM LOOK, UNIFIED */

.services-grid article,
.services-grid article:nth-child(1),
.services-grid article:nth-child(2),
.services-grid article:nth-child(3) {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-top:
        2px solid rgba(255, 41, 45, 0.72);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.22);

    border-radius: 22px;
}

.services-grid article::before,
.services-grid article:nth-child(1)::before,
.services-grid article:nth-child(2)::before,
.services-grid article:nth-child(3)::before {
    color: #6f96ff;
    background: none;
}

.services-grid article:hover {
    transform: translateY(-7px);

    border-color:
        rgba(255, 41, 45, 0.40);

    border-top-color:
        rgba(255, 41, 45, 0.90);

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.30);
}
/* SERVICE CARDS - RED DEFAULT / BLUE HOVER */

.services-grid article,
.services-grid article:nth-child(1),
.services-grid article:nth-child(2),
.services-grid article:nth-child(3) {
    border-top: 2px solid var(--brand-red);
}

.services-grid article:hover,
.services-grid article:nth-child(1):hover,
.services-grid article:nth-child(2):hover,
.services-grid article:nth-child(3):hover {
    border-top-color: var(--brand-blue);

    border-color:
        rgba(7, 87, 201, 0.45);

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.30),
        0 0 24px rgba(7, 87, 201, 0.16);
}
/* =================================
   CTA - PREMIUM BRAND FINAL
================================= */

.cta {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 41, 45, 0.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 75% 65%,
            rgba(7, 87, 201, 0.12),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #07090d 0%,
            #090d14 55%,
            #050608 100%
        );

    border-top:
        1px solid rgba(255, 255, 255, 0.05);
}

.cta h2 {
    max-width: 780px;
    margin:
        0
        auto
        22px;

    color: #ffffff;

    font-size:
        clamp(
            36px,
            4.5vw,
            56px
        );

    line-height: 1.2;
}

.cta p {
    max-width: 680px;

    margin:
        0
        auto
        34px;

    color: #aeb7c4;

    font-size: 18px;
    line-height: 1.9;
}

.cta a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding:
        0
        30px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            var(--brand-red),
            #ff4347
        );

    color: #ffffff;

    text-decoration: none;

    font-weight: 800;

    box-shadow:
        0 16px 40px
        rgba(255, 41, 45, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cta a:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 50px
        rgba(7, 87, 201, 0.22);
}
/* =================================
   FOOTER - CLEAN BRAND STYLE
================================= */

.site-footer {
    padding:
        80px
        0
        30px;

    background:
        linear-gradient(
            180deg,
            #f4f7fb 0%,
            #eef3f8 100%
        );

    color: #1f2937;
}

.footer-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1.6fr)
        minmax(220px, 0.8fr);

    gap: 70px;

    align-items: start;
}

.footer-brand {
    max-width: 620px;
}

.footer-logo {
    width: 240px;
    max-width: 100%;

    display: block;

    margin-bottom: 24px;
}

.footer-description {
    max-width: 560px;

    margin:
        0
        0
        26px;

    color: #667085;

    font-size: 17px;
    line-height: 1.9;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.footer-social a {
    width: 46px;
    height: 46px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(7, 87, 201, 0.07);

    border:
        1px solid rgba(7, 87, 201, 0.10);

    color: var(--brand-blue);

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.footer-social a:hover {
    transform:
        translateY(-3px);

    background:
        var(--brand-red);

    border-color:
        var(--brand-red);

    color: #ffffff;
}

.footer-company {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.footer-company h3 {
    margin:
        0
        0
        14px;

    color: #111827;

    font-size: 24px;
}

.footer-company a {
    color: #667085;

    text-decoration: none;

    font-size: 16px;

    transition:
        color 0.25s ease;
}

.footer-company a:hover {
    color: var(--brand-red);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 65px;

    padding-top: 24px;

    border-top:
        1px solid rgba(17, 24, 39, 0.08);

    color: #7a8493;

    font-size: 14px;
}


/* RTL */

html[dir="rtl"] .footer-content {
    direction: rtl;
}


/* MOBILE */

@media (max-width: 760px) {

    .site-footer {
        padding:
            65px
            0
            25px;
    }

    .footer-content {
        grid-template-columns:
            1fr;

        gap: 45px;
    }

    .footer-logo {
        width: 210px;
    }

    .footer-description {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;

        margin-top: 45px;
    }

}
/* =================================
   FOOTER - DARK BRAND STYLE
================================= */

.site-footer {
    padding: 80px 0 30px;
    background:
        linear-gradient(
            180deg,
            #07111f 0%,
            #0b1424 45%,
            #0a0f18 100%
        );
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.8fr);
    gap: 70px;
    align-items: start;
}

.footer-brand {
    max-width: 620px;
}

.footer-logo {
    width: 220px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
}

.footer-description {
    max-width: 560px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.9;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: #ff4b2b;
    border-color: #ff4b2b;
    color: #ffffff;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-company h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 24px;
}

.footer-company a,
.footer-company p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.25s ease;
}

.footer-company a:hover {
    color: #ff4b2b;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

html[dir="rtl"] .footer-content {
    direction: rtl;
}

@media (max-width: 760px) {
    .site-footer {
        padding: 60px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        width: 190px;
    }

    .footer-description {
        font-size: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        margin-top: 40px;
    }
}
/* FOOTER SOCIAL ICONS */

.footer-social a svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social a svg .icon-fill {
    fill: currentColor;
    stroke: none;
}

.footer-social a {
    color: var(--brand-blue);
}

.footer-social a:hover {
    color: #ffffff;
    background: var(--brand-red);
    border-color: var(--brand-red);
}
/* FOOTER LEGAL LINKS */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: var(--brand-red);
}

.legal-divider {
    width: 2px;
    height: 18px;
    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            var(--brand-red),
            var(--brand-blue)
        );
}

@media (max-width: 560px) {

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}
/* FOOTER BOTTOM - LEGAL ABOVE, COPYRIGHT LAST */

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;

    margin-top: 55px;
    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-copyright {
    width: 100%;
    text-align: center;

    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
}
/* =================================
   TYPOGRAPHY - AL FIRDAWS MEDIA
================================= */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

html[lang="ar"] body {
    font-family: "Cairo", Arial, sans-serif;
}

html[lang="en"] body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3 {
    font-family: "Cairo", Arial, sans-serif;
    font-weight: 800;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3 {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-weight: 800;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
/* =================================
   STATS SECTION
================================= */

.stats-section {
    padding: 95px 0;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(7, 87, 201, 0.08),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #07090d 0%,
            #0a0f18 55%,
            #07090d 100%
        );

    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stats-heading {
    text-align: center;
    margin-bottom: 50px;
}

.stats-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            32px,
            4vw,
            50px
        );

    line-height: 1.2;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.stat-card {
    text-align: center;

    padding:
        34px
        20px;

    border-radius:
        20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-top:
        2px solid var(--brand-red);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.stat-card:hover {
    transform:
        translateY(-6px);

    border-top-color:
        var(--brand-blue);

    border-color:
        rgba(7, 87, 201, 0.30);

    box-shadow:
        0 20px 45px
        rgba(7, 87, 201, 0.12);
}

.stat-number {
    margin-bottom: 10px;

    color:
        var(--brand-red);

    font-size:
        clamp(
            38px,
            5vw,
            58px
        );

    font-weight: 800;
    line-height: 1;
}

.stat-card:hover .stat-number {
    color:
        var(--brand-blue);
}

.stat-card p {
    margin: 0;

    color: #aeb7c4;

    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 900px) {

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (max-width: 520px) {

    .stats-grid {
        grid-template-columns:
            1fr;
    }

}
/* FIX STATS DIVIDER */

.stats-heading {
    display: block !important;
    height: auto !important;
    margin-bottom: 38px !important;
}

.stats-heading > p,
.stats-heading > h2 {
    display: none !important;
}

.stats-divider {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.stats-divider span {
    display: block !important;
    width: 105px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-red);
    box-shadow: 0 0 10px rgba(255, 41, 45, 0.25);
}
/* HIDE STATS DIVIDER */

.stats-divider {
    display: none !important;
}

.stats-heading {
    margin-bottom: 28px !important;
}
/* HERO PREMIUM BADGE */

.hero-badge {
    position: relative;
    overflow: hidden;

    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;
    padding: 11px 19px;

    border-radius: 999px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255, 41, 45, 0.32);

    box-shadow:
        0 10px 32px rgba(0,0,0,0.30),
        0 0 24px rgba(255,41,45,0.08);

    font-size: 14px;
    font-weight: 700;

    backdrop-filter: blur(10px);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-badge::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(7,87,201,0.14) 50%,
            transparent 75%
        );

    transform: translateX(-100%);
    animation: badgeShine 5s ease-in-out infinite;
}

.hero-badge-dot {
    position: relative;
    z-index: 2;

    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: var(--brand-red);

    box-shadow:
        0 0 0 5px rgba(255,41,45,0.10),
        0 0 14px rgba(255,41,45,0.45);
}

.hero-badge > span:last-child {
    position: relative;
    z-index: 2;
}

.hero-badge:hover {
    transform: translateY(-2px);

    border-color: rgba(7,87,201,0.55);

    box-shadow:
        0 14px 38px rgba(0,0,0,0.34),
        0 0 24px rgba(7,87,201,0.12);
}

@keyframes badgeShine {
    0%, 70%, 100% {
        transform: translateX(-100%);
    }

    85% {
        transform: translateX(100%);
    }
}
.hero-accent {
    color: var(--brand-red);
}
/* =================================
   HERO DIGITAL VISUAL
================================= */

.hero {
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-digital-visual {
    position: absolute;
    z-index: 1;

    width: 340px;
    height: 340px;

    left: 7%;
    top: 50%;

    transform: translateY(-50%);

    pointer-events: none;
    opacity: 0.85;
}


/* الدائرة الرقمية */

.digital-orbit {
    position: absolute;
    inset: 28px;

    border-radius: 50%;

    border:
        1px solid rgba(7, 87, 201, 0.18);

    box-shadow:
        inset 0 0 45px rgba(7, 87, 201, 0.04),
        0 0 60px rgba(7, 87, 201, 0.05);

    animation:
        digitalOrbit 18s linear infinite;
}


/* نقاط الاتصال */

.digital-orbit .node {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--brand-red);

    box-shadow:
        0 0 12px rgba(255, 41, 45, 0.65);
}

.digital-orbit .node-1 {
    top: -4px;
    left: 50%;
}

.digital-orbit .node-2 {
    right: -4px;
    top: 50%;

    background: var(--brand-blue);

    box-shadow:
        0 0 12px rgba(7, 87, 201, 0.65);
}

.digital-orbit .node-3 {
    bottom: -4px;
    left: 38%;
}

.digital-orbit .node-4 {
    left: -4px;
    top: 35%;

    background: var(--brand-blue);

    box-shadow:
        0 0 12px rgba(7, 87, 201, 0.65);
}


/* موجة إعلامية */

.digital-wave {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;

    gap: 8px;

    height: 120px;
}

.digital-wave span {
    width: 6px;
    height: 35px;

    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            var(--brand-blue),
            var(--brand-red)
        );

    box-shadow:
        0 0 16px rgba(7, 87, 201, 0.16);

    animation:
        digitalWave 1.8s ease-in-out infinite;
}

.digital-wave span:nth-child(2) {
    animation-delay: 0.12s;
}

.digital-wave span:nth-child(3) {
    animation-delay: 0.24s;
}

.digital-wave span:nth-child(4) {
    animation-delay: 0.36s;
}

.digital-wave span:nth-child(5) {
    animation-delay: 0.48s;
}

.digital-wave span:nth-child(6) {
    animation-delay: 0.60s;
}

.digital-wave span:nth-child(7) {
    animation-delay: 0.72s;
}

.digital-wave span:nth-child(8) {
    animation-delay: 0.84s;
}

.digital-wave span:nth-child(9) {
    animation-delay: 0.96s;
}


/* الحركة */

@keyframes digitalWave {

    0%,
    100% {
        height: 28px;
        opacity: 0.55;
    }

    50% {
        height: 105px;
        opacity: 1;
    }
}

@keyframes digitalOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* الإنجليزي: ننقل العنصر للجهة المقابلة */

html[dir="ltr"] .hero-digital-visual {
    left: auto;
    right: 7%;
}


/* الموبايل */

@media (max-width: 850px) {

    .hero-digital-visual {
        width: 240px;
        height: 240px;

        left: 50%;
        top: 63%;

        transform: translate(-50%, -50%);

        opacity: 0.22;
    }

    html[dir="ltr"] .hero-digital-visual {
        left: 50%;
        right: auto;
    }

}
.hero-accent {
    color: var(--brand-red) !important;
}
.hero-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.digital-network {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 360px;
    margin-inline: auto;
    opacity: 0.95;
}

.network-line {
    position: absolute;
    display: block;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 77, 41, 0.15),
        rgba(255, 77, 41, 0.65),
        rgba(47, 110, 255, 0.65),
        rgba(47, 110, 255, 0.15)
    );
    box-shadow:
        0 0 10px rgba(255, 77, 41, 0.18),
        0 0 14px rgba(47, 110, 255, 0.16);
    overflow: hidden;
}

.network-line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -18px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.98) 0%,
        rgba(47,110,255,0.85) 35%,
        rgba(255,77,41,0.75) 70%,
        transparent 75%
    );
    box-shadow:
        0 0 8px rgba(255,255,255,0.8,
        0 0 16px rgba(47,110,255,0.6),
        0 0 22px rgba(255,77,41,0.45);
    animation: signal-travel 4.5s linear infinite;
}

.line-1 {
    width: 230px;
    top: 55%;
    left: 12%;
    transform: rotate(8deg);
}

.line-2 {
    width: 170px;
    top: 34%;
    left: 44%;
    transform: rotate(32deg);
}

.line-3 {
    width: 160px;
    top: 67%;
    left: 46%;
    transform: rotate(-26deg);
}

.line-2::after {
    animation-delay: 1s;
}

.line-3::after {
    animation-delay: 2s;
}

.network-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: node-pulse 2.6s ease-in-out infinite;
}

.network-node::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    animation: node-ring 2.6s ease-out infinite;
}

.node-1 {
    top: 52%;
    left: 10%;
    background: #ff5a36;
    box-shadow: 0 0 10px rgba(255,90,54,0.85), 0 0 22px rgba(255,90,54,0.35);
}

.node-2 {
    top: 56%;
    left: 54%;
    background: #2f6eff;
    box-shadow: 0 0 10px rgba(47,110,255,0.85), 0 0 22px rgba(47,110,255,0.35);
    animation-delay: 0.5s;
}

.node-3 {
    top: 26%;
    left: 72%;
    background: #ff5a36;
    box-shadow: 0 0 10px rgba(255,90,54,0.85), 0 0 22px rgba(255,90,54,0.35);
    animation-delay: 1s;
}

.node-4 {
    top: 77%;
    left: 73%;
    background: #2f6eff;
    box-shadow: 0 0 10px rgba(47,110,255,0.85), 0 0 22px rgba(47,110,255,0.35);
    animation-delay: 1.4s;
}

.node-5 {
    top: 38%;
    left: 38%;
    background: #ff5a36;
    box-shadow: 0 0 10px rgba(255,90,54,0.85), 0 0 22px rgba(255,90,54,0.35);
    animation-delay: 1.8s;
}

@keyframes signal-travel {
    0% {
        left: -18px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: calc(100% - 8px);
        opacity: 0;
    }
}

@keyframes node-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}

@keyframes node-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}
/* =================================
   HERO DIGITAL NETWORK - PREMIUM
================================= */

.hero-digital-visual {
    position: absolute;
    left: 6%;
    top: 52%;
    width: 360px;
    height: 360px;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.digital-network {
    position: relative;
    width: 100%;
    height: 100%;
}


/* النواة / الكوكب */

.digital-network::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    width: 92px;
    height: 92px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255,255,255,0.85) 0%,
            rgba(7,87,201,0.75) 18%,
            rgba(7,87,201,0.22) 45%,
            rgba(255,41,45,0.16) 70%,
            rgba(0,0,0,0.15) 100%
        );

    box-shadow:
        0 0 22px rgba(7,87,201,0.40),
        0 0 48px rgba(255,41,45,0.16);

    animation:
        digitalCorePulse 3s ease-in-out infinite;
}


/* المدار */

.digital-network::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    width: 270px;
    height: 150px;

    transform:
        translate(-50%, -50%)
        rotate(-12deg);

    border-radius: 50%;

    border:
        2px solid transparent;

    background:
        linear-gradient(
            #07090d,
            #07090d
        ) padding-box,
        linear-gradient(
            90deg,
            var(--brand-red),
            rgba(255,41,45,0.15),
            var(--brand-blue),
            rgba(7,87,201,0.15),
            var(--brand-red)
        ) border-box;

    box-shadow:
        0 0 18px rgba(7,87,201,0.10),
        0 0 22px rgba(255,41,45,0.08);

    animation:
        digitalOrbitGlow 5s ease-in-out infinite;
}


/* الخطوط */

.network-line {
    position: absolute;

    height: 1px;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            rgba(255,41,45,0.05),
            rgba(255,41,45,0.60),
            rgba(7,87,201,0.70),
            rgba(7,87,201,0.05)
        );

    box-shadow:
        0 0 8px rgba(7,87,201,0.22);
}

.line-1 {
    width: 115px;
    left: 53%;
    top: 48%;
    transform: rotate(-28deg);
}

.line-2 {
    width: 125px;
    left: 54%;
    top: 52%;
    transform: rotate(20deg);
}

.line-3 {
    width: 105px;
    left: 30%;
    top: 48%;
    transform: rotate(155deg);
}

.line-4 {
    width: 110px;
    left: 33%;
    top: 57%;
    transform: rotate(130deg);
}


/* النقاط */

.network-node {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background:
        var(--brand-red);

    box-shadow:
        0 0 10px rgba(255,41,45,0.85),
        0 0 20px rgba(255,41,45,0.30);

    animation:
        networkNodePulse 2.4s ease-in-out infinite;
}

.node-1 {
    left: 76%;
    top: 30%;
}

.node-2 {
    left: 79%;
    top: 64%;

    background: var(--brand-blue);

    box-shadow:
        0 0 10px rgba(7,87,201,0.85),
        0 0 20px rgba(7,87,201,0.30);
}

.node-3 {
    left: 17%;
    top: 32%;

    background: var(--brand-blue);

    box-shadow:
        0 0 10px rgba(7,87,201,0.85),
        0 0 20px rgba(7,87,201,0.30);
}

.node-4 {
    left: 20%;
    top: 70%;
}

.node-5 {
    left: 50%;
    top: 15%;

    background: var(--brand-blue);

    box-shadow:
        0 0 10px rgba(7,87,201,0.85),
        0 0 20px rgba(7,87,201,0.30);
}


/* الحركة */

@keyframes digitalCorePulse {
    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.08);
    }
}

@keyframes digitalOrbitGlow {
    0%,
    100% {
        filter:
            brightness(0.85);
    }

    50% {
        filter:
            brightness(1.35);
    }
}

@keyframes networkNodePulse {
    0%,
    100% {
        transform:
            scale(1);

        opacity:
            0.7;
    }

    50% {
        transform:
            scale(1.6);

        opacity:
            1;
    }
}
/* FORCE HERO DIGITAL VISUAL */

.hero-digital-visual {
    opacity: 1 !important;
    visibility: visible !important;

    width: 420px !important;
    height: 420px !important;

    left: 5% !important;
    right: auto !important;
    top: 52% !important;

    transform: translateY(-50%) !important;

    z-index: 3 !important;
}

.digital-network {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;

    width: 100% !important;
    height: 100% !important;
}
/* =================================
   HERO DIGITAL NETWORK V2
================================= */

.hero-digital-v2 {
    position: absolute;
    top: 50%;
    left: 6%;

    width: 460px;
    height: 360px;

    transform: translateY(-50%);

    z-index: 2;
    pointer-events: none;
}

.hero-network-v2 {
    display: block;

    width: 100%;
    height: 100%;

    overflow: visible;
    opacity: 1;
}

/* English */
html[dir="ltr"] .hero-digital-v2 {
    left: auto;
    right: 6%;
}

/* Mobile */
@media (max-width: 850px) {

    .hero-digital-v2 {
        width: 300px;
        height: 220px;

        left: 50%;
        right: auto;

        top: 63%;

        transform: translate(-50%, -50%);

        opacity: 0.28;
    }

    html[dir="ltr"] .hero-digital-v2 {
        left: 50%;
        right: auto;
    }
}
.hero-side-accent {
    position: relative;
    min-height: 320px;
    opacity: 0.95;
}

.hero-side-accent::before {
    content: "";
    position: absolute;
    left: 4%;
    top: 58%;
    width: 78%;
    height: 2px;
    border-radius: 999px;
    transform: rotate(-11deg);
    transform-origin: left center;
    background: linear-gradient(
        90deg,
        rgba(255, 84, 64, 0.08) 0%,
        rgba(255, 84, 64, 0.45) 30%,
        rgba(72, 130, 255, 0.65) 72%,
        rgba(72, 130, 255, 0.08) 100%
    );
    box-shadow: 0 0 10px rgba(72, 130, 255, 0.16);
}

.hero-side-accent::after {
    content: "";
    position: absolute;
    left: 10%;
    top: 46%;
    width: 42%;
    height: 170px;
    background: radial-gradient(
        circle,
        rgba(255, 84, 64, 0.08) 0%,
        rgba(72, 130, 255, 0.10) 35%,
        rgba(7, 19, 37, 0) 75%
    );
    filter: blur(24px);
}

@media (max-width: 991px) {
    .hero-side-accent {
        min-height: 180px;
    }

    .hero-side-accent::before {
        left: 3%;
        top: 62%;
        width: 62%;
    }

    .hero-side-accent::after {
        left: 8%;
        top: 50%;
        width: 48%;
        height: 110px;
    }
}
/* =================================
   AL FIRDAWS MEDIA TYPOGRAPHY
================================= */

body {
    font-family: "Alexandria", sans-serif;
    font-weight: 400;
}

/* القائمة */
.main-nav a,
.site-header a {
    font-family: "Readex Pro", sans-serif;
    font-weight: 600;
}

/* Hero title */
.hero h1 {
    font-family: "Alexandria", sans-serif;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

/* Hero description */
.hero > .container > p,
.hero-content > p {
    font-family: "Alexandria", sans-serif;
    font-weight: 400;
    line-height: 1.9;
}

/* Badge */
.hero-badge {
    font-family: "Alexandria", sans-serif;
    font-weight: 600;
}

/* Buttons */
.hero-actions a,
.btn,
button {
    font-family: "Alexandria", sans-serif;
    font-weight: 600;
}

/* Section titles */
section h2 {
    font-family: "Alexandria", sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

/* Normal text */
section p,
footer p,
footer a {
    font-family: "Alexandria", sans-serif;
    line-height: 1.85;
}

/* Footer headings */
footer h2,
footer h3,
footer h4 {
    font-family: "Alexandria", sans-serif;
    font-weight: 700;
}
/* =================================
   HERO TYPOGRAPHY TEST
================================= */

/* العربي - العنوان */
html[dir="rtl"] .hero h1 {
    font-family: "Noto Kufi Arabic", sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
    letter-spacing: -0.02em;
}

/* العربي - الوصف */
html[dir="rtl"] .hero h1 + p {
    font-family: "IBM Plex Sans Arabic", sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.9 !important;
}

/* الإنجليزي */
html[dir="ltr"] .hero h1,
html[dir="ltr"] .hero h1 + p {
    font-family: "IBM Plex Sans", sans-serif !important;
}

html[dir="ltr"] .hero h1 {
    font-weight: 700 !important;
}

html[dir="ltr"] .hero h1 + p {
    font-weight: 400 !important;
}

/* ================================
   CTA PREMIUM RED NEON
================================ */

.cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cta .container {
    position: relative;
    z-index: 2;
}

/* وهج نيون أحمر خلف القسم */
.cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 420px;
    height: 420px;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(220, 24, 24, 0.30) 0%,
        rgba(220, 24, 24, 0.16) 28%,
        rgba(220, 24, 24, 0.08) 48%,
        rgba(220, 24, 24, 0.00) 72%
    );

    filter: blur(40px);
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

/* تحسين العنوان */
.cta h2 {
    position: relative;
    z-index: 2;
}

/* تحسين النص */
.cta p {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-inline: auto;
}

/* زر تواصل معنا */
.cta a {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;
    border-radius: 999px;

    text-decoration: none;
    font-weight: 700;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        #c51212 0%,
        #ff2d2d 100%
    );

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 10px 30px rgba(197, 18, 18, 0.35),
        0 0 22px rgba(255, 45, 45, 0.28);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.cta a:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06) inset,
        0 14px 36px rgba(197, 18, 18, 0.42),
        0 0 28px rgba(255, 45, 45, 0.38);
}

/* موبايل */
@media (max-width: 767px) {
    .cta::before {
        width: 280px;
        height: 280px;
        filter: blur(32px);
    }

    .cta a {
        padding: 12px 22px;
    }
}
/* =========================================================
   AL FIRDAWS MEDIA - ABOUT PAGE
========================================================= */

.about-hero,
.about-ecosystem,
.about-direction,
.about-strengths,
.about-process,
.about-cta {
    --about-red: #ff4b2b;
    --about-blue: #1769ff;
    --about-bg: #080d14;
    --about-bg-soft: #0c131e;
    --about-card: rgba(255, 255, 255, 0.035);
    --about-border: rgba(255, 255, 255, 0.08);
    --about-text: #ffffff;
    --about-muted: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   1. ABOUT HERO
========================================================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 110px;
    background:
        radial-gradient(circle at 15% 35%, rgba(23, 105, 255, 0.15), transparent 36%),
        radial-gradient(circle at 82% 52%, rgba(255, 75, 43, 0.13), transparent 34%),
        var(--about-bg);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    align-items: center;
    gap: 70px;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-label,
.about-ecosystem .section-label,
.about-direction .section-label,
.about-strengths .section-label,
.about-process .section-label,
.about-cta .section-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--about-red);
}

.about-hero h1 {
    max-width: 850px;
    margin: 0 0 26px;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--about-text);
}

.about-hero-content > p {
    max-width: 760px;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--about-muted);
}


/* HERO VISUAL */

.about-hero-visual {
    position: relative;
    min-height: 420px;
}

.about-visual-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            circle at 35% 35%,
            rgba(255, 255, 255, 0.16),
            rgba(255, 75, 43, 0.28) 30%,
            rgba(23, 105, 255, 0.16) 65%,
            rgba(255, 255, 255, 0.02) 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 70px rgba(255, 75, 43, 0.14),
        0 0 110px rgba(23, 105, 255, 0.10);
}

.about-visual-core::before,
.about-visual-core::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-visual-core::before {
    inset: -65px;
}

.about-visual-core::after {
    inset: -135px;
    border-color: rgba(23, 105, 255, 0.10);
}

.about-visual-line {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    height: 1px;
    transform-origin: left center;
}

.about-visual-line-one {
    width: 310px;
    transform: rotate(-38deg);
    background: linear-gradient(
        90deg,
        rgba(255, 75, 43, 0.8,
        rgba(255, 75, 43, 0)
    );
}

.about-visual-line-two {
    width: 280px;
    transform: rotate(142deg);
    background: linear-gradient(
        90deg,
        rgba(23, 105, 255, 0.8,
        rgba(23, 105, 255, 0)
    );
}


/* =========================================================
   2. ECOSYSTEM
========================================================= */

.about-ecosystem {
    padding: 110px 0;
    background: #0a1018;
}

.about-ecosystem .section-intro,
.about-strengths .section-intro,
.about-process .section-intro {
    max-width: 820px;
    margin-bottom: 60px;
}

.about-ecosystem h2,
.about-strengths h2,
.about-process h2 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.3;
    color: var(--about-text);
}

.about-ecosystem .section-intro p,
.about-process .section-intro p {
    margin: 0;
    max-width: 760px;
    line-height: 1.9;
    color: var(--about-muted);
}

.ecosystem-flow {
    display: flex;
    align-items: center;
    width: 100%;
}

.ecosystem-step {
    position: relative;
    flex: 0 0 150px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border: 1px solid var(--about-border);
    border-radius: 24px;
    background: var(--about-card);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.ecosystem-step:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 75, 43, 0.45);
    background: rgba(255, 75, 43, 0.055);
}

.ecosystem-step span {
    display: block;
    margin-bottom: 22px;
    color: var(--about-red);
    font-size: 0.8rem;
    font-weight: 700;
}

.ecosystem-step h3 {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
}

.ecosystem-connector {
    flex: 1;
    min-width: 24px;
    height: 1px;
    margin: 0 12px;
    background: linear-gradient(
        90deg,
        rgba(255, 75, 43, 0.65),
        rgba(23, 105, 255, 0.45)
    );
}


/* =========================================================
   3. VISION / MISSION
========================================================= */

.about-direction {
    padding: 110px 0;
    background: var(--about-bg);
}

.about-direction-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.direction-panel {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    padding: 54px;
    border: 1px solid var(--about-border);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );
}

.direction-panel::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.direction-vision::after {
    left: -120px;
    bottom: -120px;
    background: rgba(23, 105, 255, 0.11);
}

.direction-mission::after {
    right: -120px;
    top: -120px;
    background: rgba(255, 75, 43, 0.11);
}

.direction-number {
    position: absolute;
    top: 35px;
    inset-inline-end: 38px;
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.035);
}

.direction-panel h2 {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 0 24px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.4;
    color: #fff;
}

.direction-panel p {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0;
    line-height: 1.9;
    color: var(--about-muted);
}


/* =========================================================
   4. WHAT SETS US APART
========================================================= */

.about-strengths {
    padding: 110px 0;
    background:
        radial-gradient(circle at 50% 100%, rgba(23, 105, 255, 0.10), transparent 38%),
        #0a1018;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.strength-item {
    position: relative;
    min-height: 270px;
    padding: 34px 28px;
    border-top: 2px solid var(--about-red);
    border-radius: 4px 4px 22px 22px;
    background: rgba(255, 255, 255, 0.035);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.strength-item:hover {
    transform: translateY(-6px);
    border-color: var(--about-blue);
    background: rgba(23, 105, 255, 0.055);
}

.strength-index {
    display: inline-block;
    margin-bottom: 42px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--about-red);
}

.strength-item:hover .strength-index {
    color: #4a8bff;
}

.strength-item h3 {
    margin: 0 0 16px;
    font-size: 1.25rem;
    color: #fff;
}

.strength-item p {
    margin: 0;
    line-height: 1.8;
    color: var(--about-muted);
}


/* =========================================================
   5. HOW WE WORK
========================================================= */

.about-process {
    padding: 110px 0;
    background: var(--about-bg);
}

.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.process-track::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 75, 43, 0.8,
        rgba(23, 105, 255, 0.65)
    );
}

.process-step {
    position: relative;
    z-index: 2;
    padding-top: 70px;
}

.process-step span {
    position: absolute;
    top: 8px;
    left: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 75, 43, 0.45);
    background: #0a1018;
    color: var(--about-red);
    font-size: 0.72rem;
    font-weight: 700;
}

.process-step h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #fff;
}


/* =========================================================
   6. ABOUT CTA
========================================================= */

.about-cta {
    position: relative;
    overflow: hidden;
    padding: 110px 0 120px;
    background: #090e15;
}

.about-cta::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 580px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 75, 43, 0.13);
    filter: blur(80px);
    pointer-events: none;
}

.about-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin-inline: auto;
    text-align: center;
}

.about-cta h2 {
    margin: 0 0 22px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.3;
    color: #fff;
}

.about-cta p {
    max-width: 720px;
    margin: 0 auto 34px;
    line-height: 1.9;
    color: var(--about-muted);
}

.about-cta-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(
        135deg,
        #d6301b,
        #ff4b2b
    );
    box-shadow:
        0 12px 32px rgba(255, 75, 43, 0.23),
        0 0 25px rgba(255, 75, 43, 0.12);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-cta-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 16px 38px rgba(255, 75, 43, 0.30),
        0 0 32px rgba(255, 75, 43, 0.18);
}


/* =========================================================
   ARABIC
========================================================= */

html[dir="rtl"] .about-hero h1,
html[dir="rtl"] .about-ecosystem h2,
html[dir="rtl"] .about-direction h2,
html[dir="rtl"] .about-strengths h2,
html[dir="rtl"] .about-process h2,
html[dir="rtl"] .about-cta h2 {
    font-family: "Noto Kufi Arabic", sans-serif;
}

html[dir="rtl"] .about-hero p,
html[dir="rtl"] .about-ecosystem p,
html[dir="rtl"] .about-direction p,
html[dir="rtl"] .about-strengths p,
html[dir="rtl"] .about-process p,
html[dir="rtl"] .about-cta p {
    font-family: "IBM Plex Sans Arabic", sans-serif;
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 950px) {

    .about-hero {
        padding: 85px 0 80px;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-hero-visual {
        min-height: 260px;
    }

    .about-direction-grid {
        grid-template-columns: 1fr;
    }

    .strengths-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ecosystem-flow {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ecosystem-step {
        width: 100%;
        min-height: auto;
    }

    .ecosystem-connector {
        width: 1px;
        height: 28px;
        min-width: 1px;
        margin: 0 0 0 30px;
        background: linear-gradient(
            180deg,
            rgba(255, 75, 43, 0.65),
            rgba(23, 105, 255, 0.45)
        );
    }

    html[dir="rtl"] .ecosystem-connector {
        margin: 0 30px 0 0;
    }

    .process-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 20px;
    }

    .process-track::before {
        display: none;
    }

    .process-step {
        min-height: 110px;
        padding: 62px 20px 20px;
        border: 1px solid var(--about-border);
        border-radius: 18px;
        background: var(--about-card);
    }

    .process-step span {
        top: 14px;
        left: 18px;
    }

    html[dir="rtl"] .process-step span {
        left: auto;
        right: 18px;
    }
}


@media (max-width: 600px) {

    .about-hero,
    .about-ecosystem,
    .about-direction,
    .about-strengths,
    .about-process,
    .about-cta {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero-visual {
        min-height: 220px;
    }

    .about-visual-core {
        width: 110px;
        height: 110px;
    }

    .about-visual-core::before {
        inset: -45px;
    }

    .about-visual-core::after {
        inset: -90px;
    }

    .about-visual-line-one {
        width: 190px;
    }

    .about-visual-line-two {
        width: 180px;
    }

    .direction-panel {
        min-height: auto;
        padding: 36px 26px;
    }

    .direction-number {
        top: 24px;
        inset-inline-end: 24px;
        font-size: 3.5rem;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .strength-item {
        min-height: auto;
    }

    .process-track {
        grid-template-columns: 1fr;
    }

    .about-cta::before {
        width: 300px;
        height: 240px;
    }
}
/* =========================================================
   ABOUT PAGE - PREMIUM EFFECTS
========================================================= */

/* -------------------------
   HERO GLOW
------------------------- */

.about-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    top: -160px;
    inset-inline-end: -120px;
    border-radius: 50%;
    background: rgba(255, 75, 43, 0.10);
    filter: blur(90px);
    pointer-events: none;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    bottom: -180px;
    inset-inline-start: -120px;
    border-radius: 50%;
    background: rgba(23, 105, 255, 0.10);
    filter: blur(95px);
    pointer-events: none;
}


/* -------------------------
   HERO CORE PULSE
------------------------- */

.about-visual-core {
    animation: aboutCorePulse 5s ease-in-out infinite;
}

@keyframes aboutCorePulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 0 60px rgba(255, 75, 43, 0.12),
            0 0 100px rgba(23, 105, 255, 0.08);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow:
            0 0 90px rgba(255, 75, 43, 0.22),
            0 0 130px rgba(23, 105, 255, 0.14);
    }
}


/* -------------------------
   SECTION LABEL
------------------------- */

.about-label,
.section-label {
    position: relative;
}

.about-label::after,
.section-label::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    margin-inline-start: 10px;
    vertical-align: middle;
    border-radius: 99px;
    background:
        linear-gradient(
            90deg,
            var(--about-red),
            var(--about-blue)
        );
    box-shadow:
        0 0 10px rgba(255, 75, 43, 0.25);
}


/* -------------------------
   ECOSYSTEM CARDS
------------------------- */

.ecosystem-step {
    overflow: hidden;
}

.ecosystem-step::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            var(--about-red),
            var(--about-blue)
        );
    opacity: 0.65;
}

.ecosystem-step::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    inset-inline-end: -60px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(23, 105, 255, 0.10);
    filter: blur(25px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ecosystem-step:hover::after {
    opacity: 1;
}


/* -------------------------
   VISION / MISSION
------------------------- */

.direction-panel {
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.direction-panel:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 75, 43, 0.30);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.22),
        0 0 30px rgba(255, 75, 43, 0.05);
}

.direction-vision:hover {
    border-color: rgba(23, 105, 255, 0.35);
}


/* -------------------------
   STRENGTH CARDS
------------------------- */

.strength-item {
    overflow: hidden;
}

.strength-item::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -80px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(23, 105, 255, 0.11);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.strength-item:hover::after {
    opacity: 1;
}


/* -------------------------
   PROCESS TRACK
------------------------- */

.process-step span {
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.process-step:hover span {
    transform: scale(1.10);
    background: rgba(255, 75, 43, 0.10);
    box-shadow:
        0 0 20px rgba(255, 75, 43, 0.25);
}

.process-step h3 {
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.process-step:hover h3 {
    color: var(--about-red);
    transform: translateY(-2px);
}


/* -------------------------
   SUBTLE SECTION DIVIDERS
------------------------- */

.about-ecosystem,
.about-direction,
.about-strengths,
.about-process {
    position: relative;
}

.about-ecosystem::after,
.about-direction::after,
.about-strengths::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 0;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 75, 43, 0.22),
            rgba(23, 105, 255, 0.18),
            transparent
        );
}


/* -------------------------
   ACCESSIBILITY
------------------------- */

@media (prefers-reduced-motion: reduce) {

    .about-visual-core {
        animation: none;
    }

    .ecosystem-step,
    .direction-panel,
    .strength-item,
    .process-step span,
    .process-step h3 {
        transition: none;
    }
}
/* =========================================================
   ABOUT PAGE - STRONGER PREMIUM EFFECTS
========================================================= */

/* HERO LAYERS */
.about-hero {
    position: relative !important;
    overflow: hidden !important;
}

.about-hero-grid {
    position: relative !important;
    z-index: 2 !important;
}

/* RED GLOW */
.about-hero::before {
    content: "" !important;
    position: absolute !important;

    width: 520px !important;
    height: 520px !important;

    top: -180px !important;
    right: -160px !important;

    border-radius: 50% !important;

    background: rgba(255, 60, 35, 0.24) !important;

    filter: blur(110px) !important;

    z-index: 0 !important;

    pointer-events: none !important;

    animation: aboutRedGlow 7s ease-in-out infinite !important;
}

/* BLUE GLOW */
.about-hero::after {
    content: "" !important;
    position: absolute !important;

    width: 520px !important;
    height: 520px !important;

    bottom: -220px !important;
    left: -150px !important;

    border-radius: 50% !important;

    background: rgba(30, 110, 255, 0.20) !important;

    filter: blur(120px) !important;

    z-index: 0 !important;

    pointer-events: none !important;

    animation: aboutBlueGlow 8s ease-in-out infinite !important;
}

@keyframes aboutRedGlow {

    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

@keyframes aboutBlueGlow {

    0%,
    100% {
        opacity: 0.45;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.15);
    }
}


/* HERO CORE */
.about-visual-core {
    animation: aboutCorePulseStrong 4s ease-in-out infinite !important;
}

@keyframes aboutCorePulseStrong {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);

        box-shadow:
            0 0 50px rgba(255, 60, 35, 0.20),
            0 0 100px rgba(30, 110, 255, 0.13);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.08);

        box-shadow:
            0 0 85px rgba(255, 60, 35, 0.36),
            0 0 150px rgba(30, 110, 255, 0.22);
    }
}


/* ECOSYSTEM */
.ecosystem-step {
    position: relative !important;
    overflow: hidden !important;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease !important;
}

.ecosystem-step:hover {
    transform: translateY(-8px) !important;

    border-color:
        rgba(255, 65, 40, 0.55) !important;

    background:
        rgba(255, 65, 40, 0.06) !important;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(255, 65, 40, 0.12) !important;
}


/* VISION / MISSION */
.direction-panel:hover {
    transform: translateY(-8px) !important;
}

.direction-vision:hover {
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.28),
        0 0 35px rgba(30, 110, 255, 0.13) !important;

    border-color:
        rgba(30, 110, 255, 0.45) !important;
}

.direction-mission:hover {
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.28),
        0 0 35px rgba(255, 65, 40, 0.13) !important;

    border-color:
        rgba(255, 65, 40, 0.45) !important;
}


/* STRENGTHS */
.strength-item:hover {
    transform: translateY(-8px) !important;

    border-top-color:
        #1769ff !important;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.24),
        0 0 28px rgba(23, 105, 255, 0.10) !important;
}


/* PROCESS */
.process-step span {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease !important;
}

.process-step:hover span {
    transform: scale(1.15) !important;

    background:
        rgba(255, 65, 40, 0.15) !important;

    box-shadow:
        0 0 0 4px rgba(255, 65, 40, 0.06),
        0 0 25px rgba(255, 65, 40, 0.32) !important;
}

.process-step:hover h3 {
    color: #ff4b2b !important;
}