/* =========================================================
   ESTEDAD FONT
========================================================= */

@font-face {
    font-family: "Estedad";
    src: url("../Estedad-v5.0-Fontjo.com/Estedad[wght,kshd].woff2")
        format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    color: #f4f5fb;

    font-family:
        "Estedad",
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(124, 115, 255, 0.35);
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    appearance: none;
    border: 0;
}

img,
svg {
    display: block;
    max-width: 100%;
}


/* =========================================================
   DESIGN SYSTEM
========================================================= */

:root {
    /* Colors */
    --bg: #0b0e14;
    --bg-soft: #10141c;

    --surface: #151a24;
    --surface-2: #1b202c;
    --surface-3: #232a38;

    --primary: #7c73ff;
    --primary-light: #aaa4ff;
    --primary-dark: #6258df;
    --indigo-soft: #8e86ff;

    --white: #fafaff;
    --text: #e8e9f0;
    --text-soft: #b8bac7;
    --text-muted: #878b9a;
    --text-faint: #626675;

    --success: #57e98a;

    /* Borders */
    --border: rgba(255, 255, 255, 0.11);
    --border-soft: rgba(255, 255, 255, 0.065);
    --border-strong: rgba(255, 255, 255, 0.19);

    /* Layout */
    --container-width: 1240px;
    --container-padding: 28px;
    --section-padding: 140px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 999px;

    /* Motion */
    --ease: cubic-bezier(.22, 1, .36, 1);

    /* Shadows */
    --shadow-card: 0 25px 80px rgba(0, 0, 0, 0.22);
    --shadow-primary: 0 25px 70px rgba(124, 115, 255, 0.22);
}


/* =========================================================
   GLOBAL
========================================================= */

body {
    background:
        radial-gradient(
            circle at 15% -10%,
            rgba(124, 115, 255, 0.11),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 10%,
            rgba(92, 78, 220, 0.08),
            transparent 28%
        ),
        var(--bg);
}

.container {
    width: min(
        calc(100% - (var(--container-padding) * 2)),
        var(--container-width)
    );
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: var(--section-padding);
    isolation: isolate;
}

:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 4px;
}


/* =========================================================
   SECTION SEPARATOR
========================================================= */

.section-separator {
    width: 100%;
    height: 2px;
    margin: 0;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.045) 12%,
            rgba(124, 115, 255, 0.28) 32%,
            rgba(170, 164, 255, 0.72) 50%,
            rgba(124, 115, 255, 0.28) 68%,
            rgba(255, 255, 255, 0.045) 88%,
            transparent 100%
        );

    box-shadow:
        0 0 18px rgba(124, 115, 255, 0.1);

    opacity: 0.95;
}


/* =========================================================
   SECTION PROGRESS
========================================================= */

.section-progress {
    position: fixed;
    top: 50%;
    left: 22px;
    z-index: 1000;

    width: 30px;
    height: 270px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    padding: 18px 0;

    transform:
        translateY(-50%)
        translateX(-12px);

    border: 1px solid rgba(124, 115, 255, 0.28);
    border-radius: var(--radius-full);

    background:
        linear-gradient(
            180deg,
            rgba(124, 115, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        inset 0 0 20px rgba(124, 115, 255, 0.04),
        0 10px 40px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;
    pointer-events: auto;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.45s var(--ease);
}

.section-progress.is-visible {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);
}

.section-progress-line {
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;

    width: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(124, 115, 255, 0.45),
            transparent
        );

    border-radius: var(--radius-full);
    pointer-events: none;
}

.section-progress-dot {
    position: relative;
    z-index: 2;

    width: 8px;
    height: 8px;

    flex: 0 0 auto;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.18);

    appearance: none;
    cursor: pointer;

    transition:
        width 0.3s var(--ease),
        height 0.3s var(--ease),
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s var(--ease);
}

.section-progress-dot:hover {
    width: 10px;
    height: 10px;

    background: rgba(124, 115, 255, 0.7);
    border-color: var(--primary);

    transform: scale(1.08);
}

.section-progress-dot.active {
    width: 11px;
    height: 11px;

    background: var(--primary);
    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(124, 115, 255, 0.12),
        0 0 18px rgba(124, 115, 255, 0.5);
}

.section-progress-dot::after {
    content: attr(data-label);

    position: absolute;
    top: 50%;
    left: calc(100% + 13px);

    padding: 7px 11px;

    transform:
        translateY(-50%)
        translateX(-8px);

    color: var(--text);

    background: rgba(18, 22, 30, 0.94);

    border: 1px solid rgba(124, 115, 255, 0.2);
    border-radius: 8px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(124, 115, 255, 0.06);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.4s var(--ease),
        border-color 0.25s ease;
}

.section-progress-dot::before {
    content: "";

    position: absolute;
    top: 50%;
    left: calc(100% + 7px);

    width: 4px;
    height: 4px;

    transform:
        translateY(-50%)
        scale(0);

    background: var(--primary);
    border-radius: 50%;

    box-shadow:
        0 0 10px rgba(124, 115, 255, 0.7);

    opacity: 0;
    pointer-events: none;

    transition:
        transform 0.3s var(--ease),
        opacity 0.25s ease;
}

.section-progress-dot:hover::after {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);

    border-color:
        rgba(124, 115, 255, 0.32);
}

.section-progress-dot:hover::before {
    opacity: 1;

    transform:
        translateY(-50%)
        scale(1);
}

.section-progress-dot.active:hover::after {
    color: #ffffff;

    background: rgba(25, 29, 40, 0.97);

    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(124, 115, 255, 0.12);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 1000;

    width: min(calc(100% - 32px), 1200px);
    height: 72px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            135deg,
            rgba(28, 33, 44, 0.88),
            rgba(15, 19, 27, 0.78)
        );

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.075);

    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.site-header::before {
    content: "";

    position: absolute;
    inset: 0 12% auto;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            rgba(124, 115, 255, 0.72),
            rgba(255, 255, 255, 0.18),
            transparent
        );

    pointer-events: none;
}

.site-header::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -1px;

    width: 30%;
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    box-shadow:
        0 0 25px rgba(124, 115, 255, 0.5);

    pointer-events: none;
}

.site-header > .header-inner {
    width: 100%;
    max-width: none;
    height: 100%;

    margin: 0;
    padding-inline: 13px;
}

.header-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 24px;

    min-width: 0;

    direction: ltr;
}


/* =========================================================
   HEADER BRAND
========================================================= */

.brand {
    position: relative;
    order: 3;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 260px;
    height: 46px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 12px;

    transition:
        transform 0.4s var(--ease),
        background 0.35s ease;
}

.brand-name {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.brand-name img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: none;

    object-fit: cover;
    object-position: center;

    transform: scale(1.02);

    user-select: none;
    -webkit-user-drag: none;

    transition:
        transform 0.55s var(--ease),
        filter 0.45s ease;
}

.brand::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary-light) 22%,
            var(--primary) 50%,
            var(--primary-light) 78%,
            transparent
        );

    border-radius: var(--radius-full);

    box-shadow:
        0 0 8px rgba(124, 115, 255, 0.65),
        0 0 20px rgba(124, 115, 255, 0.38),
        0 0 38px rgba(124, 115, 255, 0.18);

    opacity: 0;

    transition:
        width 0.55s var(--ease),
        opacity 0.35s ease;
}

.brand::before {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -7px;

    width: 70px;
    height: 14px;

    transform:
        translateX(-50%)
        scaleX(0.35);

    background:
        radial-gradient(
            ellipse,
            rgba(124, 115, 255, 0.34),
            transparent 70%
        );

    filter: blur(8px);

    opacity: 0;

    pointer-events: none;

    transition:
        transform 0.55s var(--ease),
        opacity 0.4s ease;
}

.brand:hover::after {
    width: 72%;
    opacity: 1;
}

.brand:hover::before {
    transform:
        translateX(-50%)
        scaleX(1);

    opacity: 1;
}

.brand:hover .brand-name img {
    transform:
        translateY(-1px)
        scale(1.025);

    filter:
        brightness(1.04)
        saturate(1.05)
        drop-shadow(
            0 0 12px rgba(124, 115, 255, 0.2)
        );
}

.brand:active {
    transform: scale(0.98);
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    order: 2;

    display: flex;
    align-items: center;

    gap: 3px;

    min-width: 0;

    margin-left: auto;
    margin-right: 28px;

    padding: 5px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 15px;

    direction: ltr;
}

.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding-inline: 14px;

    color: var(--text-muted);

    border-radius: 10px;

    font-size: 11px;
    font-weight: 650;

    white-space: nowrap;

    direction: rtl;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.3s var(--ease);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 4px;

    width: 4px;
    height: 4px;

    transform:
        translateX(-50%)
        scale(0);

    background: var(--primary);

    border-radius: 50%;

    box-shadow:
        0 0 14px rgba(124, 115, 255, 0.8);

    transition:
        transform 0.3s var(--ease);
}

.nav-link:hover {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.055);

    transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform:
        translateX(-50%)
        scale(1);
}

.nav-link.active {
    color: #ffffff;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    order: 1;

    display: flex;
    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    direction: ltr;
}

.language-switcher {
    min-width: 40px;
    height: 35px;

    padding-inline: 10px;

    color: var(--text-soft);

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-full);

    font-size: 10px;
    font-weight: 800;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.3s var(--ease);
}

.language-switcher:hover {
    color: #ffffff;

    background:
        rgba(124, 115, 255, 0.12);

    border-color:
        rgba(124, 115, 255, 0.4);

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 4px;

    background:
        rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-md);

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.3s var(--ease);
}

.menu-toggle:hover {
    background:
        rgba(124, 115, 255, 0.08);

    border-color:
        rgba(124, 115, 255, 0.25);

    transform: translateY(-1px);
}

.menu-toggle span {
    display: block;

    width: 16px;
    height: 1.5px;

    background: #ffffff;

    border-radius: var(--radius-full);

    transition:
        transform 0.3s var(--ease),
        opacity 0.25s ease;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: absolute;

    top: calc(100% + 10px);
    left: 0;
    right: 0;

    display: none;

    max-height: calc(100vh - 95px);

    overflow-y: auto;

    padding: 10px;

    background: rgba(17, 21, 29, 0.96);

    border: 1px solid var(--border-strong);
    border-radius: 18px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);

    overscroll-behavior: contain;

    direction: rtl;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: flex;
    align-items: center;

    min-height: 44px;

    padding-inline: 13px;

    color: var(--text-soft);

    border: 1px solid transparent;
    border-radius: 11px;

    font-size: 13px;
    font-weight: 600;

    direction: rtl;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.3s var(--ease);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ffffff;

    background:
        rgba(124, 115, 255, 0.075);

    border-color:
        rgba(124, 115, 255, 0.13);

    transform: translateX(3px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding-top: 140px;
    padding-bottom: 60px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(124, 115, 255, 0.17),
            transparent 27%
        );

    direction: ltr;
}

.hero::before {
    content: "";

    position: absolute;
    top: 18%;
    right: 8%;

    width: 260px;
    height: 260px;

    background:
        radial-gradient(
            circle,
            rgba(166, 159, 255, 0.1),
            transparent 68%
        );

    filter: blur(35px);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
}

.hero-glow-primary {
    top: -200px;
    left: -240px;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(
            circle,
            rgba(124, 115, 255, 0.16),
            transparent 68%
        );

    filter: blur(70px);
}

.hero-glow-secondary {
    right: -200px;
    bottom: -300px;

    width: 760px;
    height: 760px;

    background:
        radial-gradient(
            circle,
            rgba(85, 75, 205, 0.12),
            transparent 68%
        );

    filter: blur(85px);
}

.hero-noise {
    position: absolute;
    inset: 0;

    opacity: 0.022;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.9) 0.45px,
            transparent 0.45px
        );

    background-size: 5px 5px;
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(420px, 0.96fr)
        minmax(0, 1.04fr);

    gap: 70px;

    align-items: center;

    direction: ltr;
}

.hero-container > * {
    min-width: 0;
}

.hero-content {
    grid-column: 2;
    grid-row: 1;
    align-self: center;

    max-width: 790px;

    direction: rtl;
    text-align: right;

    animation:
        hero-content-enter 1s var(--ease) both;
}

.hero-eyebrow {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 19px;

    color: var(--primary-light);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.02em;

    direction: ltr;
}

.hero-eyebrow > span:not(.eyebrow-line) {
    order: 0;

    margin-left: auto;

    direction: rtl;
    text-align: right;

    white-space: nowrap;
}

.eyebrow-line {
    order: 1;

    width: 42px;
    height: 1px;

    flex-shrink: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary)
        );

    box-shadow:
        0 0 18px rgba(124, 115, 255, 0.5);
}

.hero-status {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    max-width: 100%;

    margin-bottom: 25px;
    padding: 8px 13px;

    color: var(--text-soft);

    background:
        rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: var(--radius-full);

    font-size: 10px;
    font-weight: 600;

    direction: rtl;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045);

    transition:
        transform 0.4s var(--ease),
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-status:hover {
    transform: translateY(-2px);

    border-color:
        rgba(87, 233, 138, 0.18);

    background:
        rgba(87, 233, 138, 0.045);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.14);
}

.status-dot {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    background: var(--success);
    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(87, 233, 138, 0.07),
        0 0 18px rgba(87, 233, 138, 0.5);
}

.hero-title {
    max-width: 930px;

    color: var(--white);

    font-size:
        clamp(
            3.2rem,
            5vw,
            5.2rem
        );

    font-weight: 750;

    line-height: 1.28;

    letter-spacing: -0.03em;

    overflow-wrap: break-word;

    direction: rtl;
    text-align: right;
}

.hero-title > span {
    display: block;

    margin: 0;
    padding: 0;

    color: var(--primary-light);

    text-shadow:
        0 0 60px rgba(124, 115, 255, 0.2);

    direction: rtl;
    text-align: right;
}

.hero-title > span:first-child {
    color: var(--white);
}

.hero-description {
    max-width: 640px;

    margin-top: 29px;

    color: var(--text-soft);

    font-size: 16px;
    line-height: 1.95;

    direction: rtl;
    text-align: right;
}

.hero-actions {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 12px;

    margin-top: 55px;

    flex-wrap: wrap;

    direction: ltr;
}

.button {
    position: relative;

    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding-inline: 21px;

    overflow: hidden;
    isolation: isolate;

    border-radius: 13px;

    font-size: 12px;
    font-weight: 750;

    transition:
        transform 0.4s var(--ease),
        box-shadow 0.4s var(--ease),
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.hero-actions .button,
.project-cta .button {
    direction: rtl;
}

.button::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.16) 50%,
            transparent 80%
        );

    transform: translateX(-120%);

    transition:
        transform 0.7s var(--ease);
}

.button:hover::before {
    transform: translateX(120%);
}

.button:active {
    transform: scale(0.98);
}

.button-primary {
    gap: 14px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #8e86ff,
            #655ce2
        );

    box-shadow:
        0 15px 40px rgba(124, 115, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 24px 65px rgba(124, 115, 255, 0.33),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-icon {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background:
        rgba(255, 255, 255, 0.14);

    border-radius: 7px;

    font-size: 14px;

    direction: ltr;
    unicode-bidi: isolate;

    transition:
        transform 0.4s var(--ease);
}

.button-primary:hover .button-icon {
    transform: translate(2px, -2px);
}

.button-secondary {
    color: var(--text);

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.065);

    border-color:
        rgba(255, 255, 255, 0.18);

    transform: translateY(-4px);
}

.hero-meta {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 42px;

    flex-wrap: wrap;

    direction: ltr;
}

.hero-meta-item {
    display: flex;
    align-items: center;

    color: var(--text-muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.08em;

    transition:
        color 0.3s ease,
        transform 0.35s var(--ease);
}

.hero-meta-item:hover {
    color: var(--text-soft);
    transform: translateY(-2px);
}

.hero-meta-dot {
    width: 6px;
    height: 6px;

    margin-right: 8px;

    flex-shrink: 0;

    background: var(--success);
    border-radius: 50%;

    box-shadow:
        0 0 12px rgba(87, 233, 138, 0.55);
}

.hero-meta-divider {
    width: 27px;
    height: 1px;

    flex-shrink: 0;

    background: var(--border-strong);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    grid-column: 1;
    grid-row: 1;
    align-self: center;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;

    direction: ltr;
    text-align: left;

    animation:
        hero-visual-enter 1.1s var(--ease) 0.12s both;
}

.hero-visual-glow {
    position: absolute;

    width: 470px;
    height: 470px;
    max-width: 100%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(124, 115, 255, 0.2),
            rgba(124, 115, 255, 0.055) 42%,
            transparent 72%
        );

    filter: blur(40px);

    animation:
        visual-glow-pulse 7s ease-in-out infinite;
}

.code-window {
    position: relative;
    z-index: 3;

    width: min(100%, 535px);
    min-width: 0;
    top: -65px;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(30, 35, 47, 0.94),
            rgba(14, 18, 25, 0.95)
        );

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 22px;

    box-shadow:
        0 38px 100px rgba(0, 0, 0, 0.3),
        0 0 90px rgba(124, 115, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    transform:
        perspective(1200px)
        rotateY(-7deg)
        rotateX(3deg);

    direction: ltr;
    text-align: left;
    unicode-bidi: isolate;

    transition:
        transform 0.65s var(--ease),
        box-shadow 0.65s var(--ease);
}

.hero-visual:hover .code-window {
    transform:
        perspective(1200px)
        rotateY(-2deg)
        rotateX(1deg)
        translateY(-7px);

    box-shadow:
        0 48px 115px rgba(0, 0, 0, 0.38),
        0 0 105px rgba(124, 115, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.code-window-header {
    height: 50px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding-inline: 17px;

    background:
        rgba(255, 255, 255, 0.035);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    direction: ltr;
}

.window-title {
    order: 1;

    min-width: 0;
    margin-right: auto;

    color: var(--text-muted);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.03em;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    direction: ltr;
    text-align: left;
    unicode-bidi: isolate;
}

.window-status {
    order: 2;

    display: flex;
    align-items: center;

    gap: 6px;

    margin-left: auto;

    flex-shrink: 0;

    color: var(--text-soft);

    font-size: 9px;
    font-weight: 700;

    direction: ltr;
    text-align: right;
}

.window-status span {
    width: 5px;
    height: 5px;

    flex-shrink: 0;

    background: var(--success);
    border-radius: 50%;

    box-shadow:
        0 0 11px rgba(87, 233, 138, 0.6);
}

.window-dots {
    order: 3;

    display: flex;
    align-items: center;

    gap: 6px;

    margin-left: 12px;

    flex-shrink: 0;

    direction: ltr;
}

.window-dots span {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    background:
        rgba(255, 255, 255, 0.24);

    border-radius: 50%;
}

.code-window-body {
    padding: 27px 25px 30px;

    overflow-x: auto;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.012),
            transparent
        );

    direction: ltr;
    text-align: left;

    scrollbar-width: thin;
}

.code-line {
    min-height: 25px;

    display: flex;
    align-items: center;

    width: max-content;
    min-width: 100%;

    white-space: nowrap;

    font-family:
        "Courier New",
        monospace;

    font-size: 11px;
    line-height: 1.6;

    direction: ltr;
    text-align: left;
    justify-content: flex-start;
    unicode-bidi: isolate;
}

.code-line > span {
    direction: ltr;
    unicode-bidi: isolate;
}

.line-number {
    width: 29px;

    margin-right: 18px;

    flex-shrink: 0;

    color:
        rgba(255, 255, 255, 0.21);

    user-select: none;
}

.code-indent {
    padding-left: 18px;
}

.code-indent-more {
    padding-left: 39px;
}

.code-keyword {
    margin-right: 7px;
    color: #b29dff;
}

.code-variable {
    color: #f8f8ff;
}

.code-property {
    color: #9bbcff;
}

.code-string {
    color: #91edb0;
}

.code-symbol {
    margin-inline: 3px;
    color: #7d8190;
}

.code-bracket {
    color: #cbc6ff;
}

.cursor {
    width: 6px;
    height: 14px;

    margin-left: 4px;

    flex-shrink: 0;

    background: var(--primary-light);

    animation:
        cursor-blink 1s steps(1) infinite;
}

.tech-badge {
    position: absolute;
    z-index: 5;

    display: inline-flex;
    align-items: center;

    padding: 10px 14px;

    color: var(--text);

    background:
        rgba(20, 24, 32, 0.78);

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-full);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.24);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    font-size: 9px;
    font-weight: 750;

    letter-spacing: 0.04em;

    white-space: nowrap;

    direction: ltr;
    unicode-bidi: isolate;

    animation:
        badge-float 6s ease-in-out infinite;
}

.tech-badge-react {
    top: 85px;
    left: -13px;

    animation-delay: -1s;
}

.tech-badge-next {
    top: 145px;
    right: -26px;

    animation-delay: -3s;
}

.tech-badge-api {
    right: 12px;
    bottom: 88px;

    animation-delay: -4.5s;
}

.tech-badge-dot {
    width: 6px;
    height: 6px;

    margin-right: 7px;

    flex-shrink: 0;

    background: var(--primary);
    border-radius: 50%;

    box-shadow:
        0 0 13px rgba(124, 115, 255, 0.65);
}

.visual-metric {
    position: absolute;
    left: 3px;
    bottom: 68px;
    z-index: 5;

    min-width: 145px;

    padding: 15px 17px;

    display: flex;
    flex-direction: column;

    background:
        rgba(18, 22, 30, 0.82);

    border: 1px solid rgba(255, 255, 255, 0.095);
    border-radius: 15px;

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(19px);

    direction: ltr;
}

.visual-metric-label {
    color: var(--text-muted);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.16em;
}

.visual-metric strong {
    margin-top: 4px;

    color: #ffffff;

    font-size: 28px;
    font-weight: 750;

    letter-spacing: -0.035em;
}

.visual-metric-text {
    margin-top: 3px;

    color: var(--text-muted);

    font-size: 8px;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 900px;
    min-width: 0;

    direction: rtl;
    text-align: right;
}

.section-heading-centered {
    margin-inline: auto;
    text-align: center;
}

.section-label {
    margin-bottom: 15px;

    color: var(--primary-light);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.03em;

    direction: rtl;
    text-align: right;
}

.section-title {
    color: var(--white);

    font-size:
        clamp(
            3rem,
            5vw,
            5.4rem
        );

    font-weight: 720;

    line-height: 1.08;

    letter-spacing: -0.03em;

    overflow-wrap: break-word;

    direction: rtl;
    text-align: right;
}

.section-title span {
    color: var(--primary-light);

    text-shadow:
        0 0 50px rgba(124, 115, 255, 0.14);
}

.section-description {
    max-width: 670px;

    margin-top: 23px;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 2;

    direction: rtl;
    text-align: right;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding-top: 100px;
    padding-bottom: 40px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.012),
            transparent
        );
}

.about-container {
    display: grid;

    grid-template-columns:
        1.08fr
        0.92fr;

    gap: 90px;

    align-items: center;
}

.about-container > * {
    min-width: 0;
}

.about-heading {
    direction: rtl;
    text-align: right;
}

.about-heading .section-title {
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.about-heading .section-description {
    line-height: 2;
}

.about-heading .section-description + .section-description {
    margin-top: 18px;
}

.about-stats {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;

    direction: ltr;
}

.stat-card {
    min-height: 180px;

    padding: 29px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.02)
        );

    border: 1px solid var(--border);
    border-radius: var(--radius-xl);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    direction: rtl;
    text-align: right;

    transition:
        transform 0.5s var(--ease),
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(124, 115, 255, 0.32);

    background:
        linear-gradient(
            145deg,
            rgba(124, 115, 255, 0.1),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.18);
}

.stat-card strong {
    color: #ffffff;

    font-size: 35px;
    font-weight: 750;

    letter-spacing: -0.035em;

    direction: ltr;
    unicode-bidi: isolate;

    transition:
        color 0.3s ease,
        transform 0.4s var(--ease),
        text-shadow 0.4s ease;
}

.stat-card:hover strong {
    transform: translateY(-2px);

    color: var(--primary-light);

    text-shadow:
        0 0 25px rgba(124, 115, 255, 0.18);
}

.stat-card span {
    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.8;

    direction: rtl;
    text-align: right;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding-block: 80px;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(124, 115, 255, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #0e1219,
            #111720
        );
}

.services-section .section-heading {
    width: 100%;
    max-width: 900px;

    margin-left: auto;
    margin-right: 0;

    direction: rtl;
    text-align: right;
}

.services-grid {
    margin-top: 62px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    direction: ltr;
}

.service-card {
    position: relative;

    min-height: 360px;

    overflow: hidden;
    isolation: isolate;

    background:
        linear-gradient(
            145deg,
            #1a1f29,
            #11151d
        );

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-lg);

    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);

    direction: rtl;
    text-align: right;

    transition:
        transform 0.55s var(--ease),
        border-color 0.35s ease,
        box-shadow 0.45s ease;
}

.service-card-image {
    position: absolute;
    inset: 0 0 auto;

    width: 100%;
    height: 55%;

    overflow: hidden;
    z-index: 1;
}

.service-card-image::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(13, 16, 22, 0.02) 0%,
            rgba(13, 16, 22, 0.04) 32%,
            rgba(13, 16, 22, 0.18) 58%,
            rgba(13, 16, 22, 0.82) 100%
        );

    pointer-events: none;
}

.service-card-image::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 3;

    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(124, 115, 255, 0.08),
            transparent 48%
        );

    mix-blend-mode: screen;
    pointer-events: none;
}

.service-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: 0.96;

    transform: scale(1.01);

    filter:
        saturate(0.92)
        contrast(1.02)
        brightness(1.05);

    transition:
        transform 0.8s var(--ease),
        filter 0.6s ease,
        opacity 0.5s ease;
}

.service-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;

    padding: 30px 32px 31px;

    direction: rtl;
    text-align: right;

    transition:
        transform 0.45s var(--ease);
}

.service-card h3 {
    position: relative;

    color: #ffffff;

    font-size: 21px;
    font-weight: 720;

    line-height: 1.3;
    letter-spacing: -0.025em;

    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.4);
}

.service-card p {
    position: relative;

    max-width: 430px;

    margin-top: 12px;

    color:
        rgba(226, 228, 237, 0.72);

    font-size: 12px;
    line-height: 1.9;

    text-shadow:
        0 2px 15px rgba(0, 0, 0, 0.5);
}

.service-card::before {
    content: "";

    position: absolute;
    left: -20%;
    bottom: -30%;

    width: 140%;
    height: 65%;
    z-index: 2;

    background:
        radial-gradient(
            ellipse at center bottom,
            rgba(124, 115, 255, 0.13),
            transparent 62%
        );

    pointer-events: none;

    transition:
        opacity 0.45s ease,
        transform 0.6s var(--ease);
}

.service-card::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 4;

    border: 1px solid transparent;
    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.06),
            transparent 35%,
            transparent 65%,
            rgba(124, 115, 255, 0.08)
        );

    opacity: 0.65;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(124, 115, 255, 0.38);

    box-shadow:
        0 30px 85px rgba(0, 0, 0, 0.26),
        0 0 45px rgba(124, 115, 255, 0.06);
}

.service-card:hover::before {
    transform: scale(1.08);
    opacity: 1;
}

.service-card:hover .service-card-image img {
    transform: scale(1.06);

    filter:
        saturate(1)
        contrast(1.04)
        brightness(1.1);

    opacity: 1;
}

.service-card:hover .service-card-content {
    transform: translateY(-3px);
}


/* =========================================================
   SKILLS
========================================================= */

.skills-section {
    padding-block: 80px;

    background:
        linear-gradient(
            180deg,
            #0e1219,
            #111620
        );
}

.skills-section .section-heading {
    width: 100%;
    max-width: 900px;

    margin-left: auto;
    margin-right: 0;

    direction: rtl;
    text-align: right;
}

.skills-grid {
    margin-top: 62px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 13px;

    direction: ltr;
}

.skill-card {
    position: relative;

    min-height: 250px;

    padding: 31px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.04);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    direction: rtl;
    text-align: right;

    transition:
        transform 0.45s var(--ease),
        border-color 0.3s ease,
        background 0.3s ease;
}

.skill-card::before {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform 0.5s var(--ease);
}

.skill-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(124, 115, 255, 0.27);

    background:
        rgba(124, 115, 255, 0.065);
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-card h3 {
    color: #ffffff;

    font-size: 16px;

    line-height: 1.3;
    letter-spacing: -0.025em;
}

.skill-list {
    margin-top: 22px;

    display: flex;
    flex-direction: column;

    gap: 9px;

    list-style: none;

    direction: rtl;
}

.skill-list li {
    position: relative;

    padding-right: 13px;

    color: var(--text-muted);

    font-size: 12px;

    direction: rtl;
    text-align: right;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.skill-list li::before {
    content: "";

    position: absolute;
    right: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    transform: translateY(-50%);

    background: var(--primary);

    border-radius: 50%;

    box-shadow:
        0 0 9px rgba(124, 115, 255, 0.45);
}

.skill-list li:hover {
    color: var(--text);
    transform: translateX(-4px);
}


/* =========================================================
   TECHNOLOGY STACK
========================================================= */

.stack-section {
    padding-block: 80px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(124, 115, 255, 0.075),
            transparent 45%
        );
}

.stack-section .section-heading {
    margin-inline: auto;

    direction: rtl;
    text-align: center;
}

.stack-section .section-label,
.stack-section .section-title {
    text-align: center;
}

.stack-list {
    max-width: 970px;

    margin: 55px auto 0;

    display: flex;

    justify-content: center;
    flex-wrap: wrap;

    gap: 9px;

    direction: ltr;
}

.stack-item {
    padding: 11px 15px;

    color: var(--text-soft);

    background:
        rgba(255, 255, 255, 0.042);

    border: 1px solid var(--border);
    border-radius: var(--radius-full);

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;

    direction: ltr;
    unicode-bidi: isolate;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.35s var(--ease),
        box-shadow 0.35s ease;
}

.stack-item:hover {
    color: #ffffff;

    background:
        rgba(124, 115, 255, 0.1);

    border-color:
        rgba(124, 115, 255, 0.32);

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(124, 115, 255, 0.08);
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {
    padding-block: 80px;

    background: #11151d;
}

.experience-section .section-heading {
    width: 100%;
    max-width: 900px;

    margin-left: auto;
    margin-right: 0;

    direction: rtl;
    text-align: right;
}

.experience-grid {
    margin-top: 62px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;

    direction: ltr;
}

.experience-card {
    position: relative;

    min-height: 285px;

    padding: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    overflow: hidden;
    isolation: isolate;

    direction: rtl;
    text-align: right;

    transition:
        transform 0.5s var(--ease),
        border-color 0.3s ease,
        box-shadow 0.4s ease;
}

.experience-card::before {
    content: "";

    position: absolute;
    top: 0;
    right: 32px;

    width: 45px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            transparent
        );

    box-shadow:
        0 0 14px rgba(124, 115, 255, 0.25);

    transition:
        width 0.45s var(--ease);
}

.experience-card::after {
    content: "";

    position: absolute;
    left: -65px;
    bottom: -65px;

    width: 155px;
    height: 155px;

    border: 1px solid rgba(124, 115, 255, 0.08);
    border-radius: 50%;

    pointer-events: none;
    z-index: -1;

    transition:
        transform 0.6s var(--ease),
        border-color 0.4s ease;
}

.experience-number {
    position: absolute;
    top: 26px;
    left: 28px;

    color:
        rgba(255, 255, 255, 0.12);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;

    direction: ltr;
    unicode-bidi: isolate;

    transition:
        color 0.3s ease;
}

.experience-card-top {
    padding-left: 35px;

    direction: rtl;
    text-align: right;
}

.experience-label {
    color: var(--primary-light);

    font-size: 9px;
    font-weight: 800;

    line-height: 1.5;
    letter-spacing: 0.05em;
}

.experience-card h3 {
    margin-top: 19px;

    color: #ffffff;

    font-size: 21px;
    font-weight: 720;

    line-height: 1.3;
    letter-spacing: -0.025em;

    overflow-wrap: break-word;
}

.experience-description {
    max-width: 420px;

    margin-top: 14px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.9;
}

.experience-stack {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 22px;

    direction: ltr;
}

.experience-stack span {
    display: inline-flex;
    align-items: center;

    min-height: 24px;

    padding-inline: 9px;

    color:
        rgba(226, 228, 237, 0.55);

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.065);

    border-radius: var(--radius-full);

    font-size: 9px;
    font-weight: 600;

    direction: ltr;
    unicode-bidi: isolate;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s var(--ease);
}

.experience-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(124, 115, 255, 0.28);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.18),
        0 0 40px rgba(124, 115, 255, 0.035);
}

.experience-card:hover::before {
    width: 68px;
}

.experience-card:hover::after {
    transform: scale(1.08);

    border-color:
        rgba(124, 115, 255, 0.12);
}

.experience-card:hover .experience-number {
    color:
        rgba(124, 115, 255, 0.55);
}

.experience-card:hover .experience-stack span {
    color:
        rgba(226, 228, 237, 0.75);

    border-color:
        rgba(124, 115, 255, 0.15);

    background:
        rgba(124, 115, 255, 0.045);

    transform: translateY(-2px);
}


/* =========================================================
   PROJECT CTA
========================================================= */

.project-cta {
    position: relative;

    padding-block: 160px;

    overflow: hidden;

    text-align: center;

    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);

    background:
        radial-gradient(
            circle at center,
            rgba(124, 115, 255, 0.16),
            transparent 48%
        );
}

.project-cta::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 470px;
    height: 470px;
    max-width: 100vw;

    transform:
        translate(-50%, -50%);

    border:
        1px solid rgba(124, 115, 255, 0.08);

    border-radius: 50%;

    box-shadow:
        0 0 120px rgba(124, 115, 255, 0.08);

    pointer-events: none;
}

.project-cta::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 250px;
    height: 250px;
    max-width: 100vw;

    transform:
        translate(-50%, -50%);

    border:
        1px solid rgba(255, 255, 255, 0.035);

    border-radius: 50%;

    pointer-events: none;
}

.project-cta-inner {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 0;

    direction: rtl;
}

.project-cta .section-label {
    margin-bottom: 0;
    text-align: center;
}

.project-cta h2 {
    max-width: 930px;

    margin-top: 22px;

    color: #ffffff;

    font-size:
        clamp(
            3.2rem,
            6.2vw,
            6.5rem
        );

    font-weight: 720;

    line-height: 1.05;
    letter-spacing: -0.035em;

    overflow-wrap: break-word;

    text-align: center;
}

.project-cta h2 span {
    color: var(--primary-light);
}

.project-cta .button {
    margin-top: 35px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    padding-block: 80px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(124, 115, 255, 0.045),
            transparent 38%
        ),
        var(--bg);
}

.process-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 18px;

    padding-bottom: 95px;

    border-bottom:
        1px solid var(--border-soft);

    direction: rtl;
}

.process-header > div {
    width: 100%;
    max-width: 900px;

    margin-left: auto;

    direction: rtl;
    text-align: right;
}

.process-header .section-label,
.process-header .section-title {
    direction: rtl;
    text-align: right;
}

.process-intro {
    width: 100%;
    max-width: 620px;

    margin-left: auto;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 2;

    direction: rtl;
    text-align: right;
}

.process-timeline {
    position: relative;

    max-width: 900px;

    margin-inline: auto;

    padding:
        95px 0 30px;

    direction: ltr;
}

.process-line {
    position: absolute;

    top: 0;
    bottom: 0;
    left: 50%;

    width: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(124, 115, 255, 0.35) 8%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(124, 115, 255, 0.35) 92%,
            transparent
        );
}

.process-step {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    min-height: 185px;

    margin-bottom: 35px;

    direction: ltr;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-marker {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateX(-50%);

    border:
        1px solid rgba(124, 115, 255, 0.35);

    border-radius: 50%;

    background: var(--bg);

    box-shadow:
        0 0 0 8px var(--bg);

    direction: ltr;
    unicode-bidi: isolate;

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.45s var(--ease);
}

.process-marker span {
    color: var(--primary-light);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.08em;

    direction: ltr;
    unicode-bidi: isolate;
}

.process-content {
    position: relative;

    width: 100%;
    max-width: 340px;

    padding: 3px 0 30px;

    direction: rtl;
    text-align: right;

    transition:
        transform 0.45s var(--ease);
}

.process-step:nth-child(odd) .process-content {
    grid-column: 1;

    margin-left: auto;
    padding-right: 70px;
}

.process-step:nth-child(even) .process-content {
    grid-column: 2;

    padding-left: 70px;
}

.process-tag {
    display: block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.04em;
}

.process-content h3 {
    color: var(--white);

    font-size: 27px;
    font-weight: 600;

    line-height: 1.3;
    letter-spacing: -0.025em;

    overflow-wrap: break-word;
}

.process-content p {
    margin-top: 13px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.95;
}

.process-step:hover .process-marker {
    transform:
        translateX(-50%)
        scale(1.12);

    border-color: var(--primary);

    background:
        rgba(124, 115, 255, 0.08);

    box-shadow:
        0 0 0 8px var(--bg),
        0 0 35px rgba(124, 115, 255, 0.18);
}

.process-step:hover .process-tag {
    color: var(--primary-light);
}

.process-step:hover .process-content h3 {
    color: #ffffff;
}

.process-step:hover .process-content {
    transform: translateY(-3px);
}


/* =========================================================
   SUPPORT
========================================================= */

.support-section {
    position: relative;

    width: 100%;

    padding-block: 80px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(124, 115, 255, 0.1),
            transparent 34%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(92, 78, 220, 0.045),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #090b10 0%,
            #0b0e14 100%
        );

    border-top:
        1px solid rgba(255, 255, 255, 0.05);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);

    isolation: isolate;
}

.support-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    mask-image:
        radial-gradient(
            circle at 50% 40%,
            black 0%,
            transparent 72%
        );

    -webkit-mask-image:
        radial-gradient(
            circle at 50% 40%,
            black 0%,
            transparent 72%
        );

    opacity: 0.28;

    pointer-events: none;

    z-index: -3;
}

.support-section::after {
    content: "";

    position: absolute;

    top: 22%;
    left: 50%;

    width:
        min(
            620px,
            80vw
        );

    height:
        min(
            620px,
            80vw
        );

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(124, 115, 255, 0.08),
            transparent 68%
        );

    filter: blur(60px);

    pointer-events: none;

    z-index: -2;

    animation:
        support-glow 8s ease-in-out infinite;
}

.support-section > .container {
    position: relative;
    z-index: 2;
}

.support-section .section-heading-centered {
    max-width: 850px;

    margin-inline: auto;

    text-align: center;
    direction: rtl;
}

.support-section .section-label {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 11px;
    font-weight: 800;

    direction: rtl;
}

.support-section .section-label::before,
.support-section .section-label::after {
    content: "";

    width: 28px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(124, 115, 255, 0.8)
        );
}

.support-section .section-label::after {
    transform: rotate(180deg);
}

.support-section .section-title {
    max-width: 900px;

    margin-inline: auto;

    color: var(--white);

    font-size:
        clamp(
            3.6rem,
            6.2vw,
            6.6rem
        );

    font-weight: 720;

    line-height: 1.05;
    letter-spacing: -0.035em;

    overflow-wrap: break-word;

    text-align: center;
}

.support-section .section-title span {
    color: var(--primary-light);

    text-shadow:
        0 0 65px rgba(124, 115, 255, 0.17);
}

.support-section .section-description {
    max-width: 560px;

    margin:
        26px auto 0;

    color:
        rgba(232, 233, 240, 0.5);

    font-size: 14px;

    line-height: 2;

    text-align: center;
}

.support-section .skills-grid {
    position: relative;

    width: 100%;
    max-width: 1080px;

    min-width: 0;

    margin:
        82px auto 0;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);

    grid-template-rows:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 16px;

    background: transparent;

    border: 0;

    box-shadow: none;

    overflow: visible;

    direction: ltr;
}

.support-section .skill-card {
    position: relative;

    width: 100%;
    min-width: 0;
    max-width: 100%;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(24, 29, 40, 0.95),
            rgba(13, 17, 24, 0.98)
        );

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 24px;

    box-shadow:
        0 25px 75px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    overflow: hidden;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    direction: rtl;
    text-align: right;

    transition:
        transform 0.45s var(--ease),
        border-color 0.35s ease,
        box-shadow 0.45s ease,
        background 0.35s ease,
        opacity 0.72s ease;
}

.support-section .skills-grid.reveal-stagger > .skill-card {
    opacity: 0;
    transform: translateY(34px);
}

.support-section .skills-grid.reveal-stagger.reveal-visible > .skill-card {
    opacity: 1;
    transform: translateY(0);
}

.support-section .skills-grid.reveal-stagger.reveal-visible > .skill-card:nth-child(1) {
    transition-delay: 0.04s;
}

.support-section .skills-grid.reveal-stagger.reveal-visible > .skill-card:nth-child(2) {
    transition-delay: 0.15s;
}

.support-section .skills-grid.reveal-stagger.reveal-visible > .skill-card:nth-child(3) {
    transition-delay: 0.26s;
}

.support-section .skills-grid.reveal-stagger.reveal-visible > .skill-card:nth-child(4) {
    transition-delay: 0.37s;
}

.support-section .skill-card:first-child {
    grid-column: 1;
    grid-row: 1 / 4;

    min-height: 500px;

    padding: 38px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    background:
        radial-gradient(
            circle at 88% 14%,
            rgba(124, 115, 255, 0.16),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(28, 33, 47, 0.98),
            rgba(12, 16, 23, 0.99)
        );

    border:
        1px solid rgba(124, 115, 255, 0.19);

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.3),
        0 0 70px rgba(124, 115, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    z-index: 3;
}

.support-section .skill-card:first-child::before {
    content: "";

    position: absolute;

    top: -150px;
    right: -130px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(124, 115, 255, 0.2),
            transparent 68%
        );

    filter: blur(12px);

    pointer-events: none;
}

.support-section .skill-card:first-child > h3 {
    position: relative;
    z-index: 2;

    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size:
        clamp(
            3rem,
            4.2vw,
            4.2rem
        );

    font-weight: 720;

    line-height: 1.08;
    letter-spacing: -0.035em;
}

.support-section .skill-card:first-child > h3::before {
    content: "POST LAUNCH";

    display: block;

    margin-bottom: 12px;

    color: var(--primary-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.2em;

    direction: ltr;
    text-align: left;
}

.support-section .skill-card:first-child .skill-list {
    position: relative;
    z-index: 2;

    margin: 22px 0 0;
    padding: 0;

    list-style: none;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    direction: rtl;
}

.support-section .skill-card:first-child .skill-list li {
    position: relative;

    min-width: 0;

    padding:
        13px 27px 13px 13px;

    color:
        rgba(232, 233, 240, 0.72);

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.055);

    border-radius: 12px;

    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;

    direction: rtl;
    text-align: right;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.3s var(--ease);
}

.support-section .skill-card:first-child .skill-list li::before {
    content: "";

    position: absolute;

    top: 50%;
    right: 10px;

    width: 5px;
    height: 5px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 12px rgba(124, 115, 255, 0.55);
}

.support-section .skill-card:first-child .skill-list li:hover {
    color: #ffffff;

    background:
        rgba(124, 115, 255, 0.055);

    border-color:
        rgba(124, 115, 255, 0.18);

    transform: translateY(-2px);
}

.support-section .skill-card:nth-child(2),
.support-section .skill-card:nth-child(3),
.support-section .skill-card:nth-child(4) {
    grid-column: 2;

    min-height: 150px;

    padding: 26px 29px;
}

.support-section .skill-card:nth-child(2) {
    grid-row: 1;
}

.support-section .skill-card:nth-child(3) {
    grid-row: 2;
}

.support-section .skill-card:nth-child(4) {
    grid-row: 3;
}

.support-section .skill-card:nth-child(2)::before,
.support-section .skill-card:nth-child(3)::before,
.support-section .skill-card:nth-child(4)::before {
    content: "";

    position: absolute;

    top: 20px;
    left: 50%;

    width: 82%;
    height: 2px;

    transform:
        translateX(-50%)
        translateY(-12px);

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary-light) 20%,
            var(--primary) 50%,
            var(--primary-light) 80%,
            transparent
        );

    opacity: 0;

    box-shadow:
        0 0 18px rgba(124, 115, 255, 0.28);

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.45s var(--ease);
}

.support-section .skill-card:nth-child(2)::after,
.support-section .skill-card:nth-child(3)::after,
.support-section .skill-card:nth-child(4)::after {
    position: absolute;

    top: 7px;
    left: 15%;
    z-index: 5;

    color: var(--primary-light);

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.16em;

    opacity: 0;
    pointer-events: none;

    direction: ltr;
    unicode-bidi: isolate;

    transform:
        translateX(-50%)
        translateY(-12px);

    transition:
        opacity 0.3s ease,
        transform 0.45s var(--ease);
}

.support-section .skill-card:nth-child(2)::after {
    content: "01";
}

.support-section .skill-card:nth-child(3)::after {
    content: "02";
}

.support-section .skill-card:nth-child(4)::after {
    content: "03";
}

.support-section .skill-card:nth-child(2):hover::before,
.support-section .skill-card:nth-child(3):hover::before,
.support-section .skill-card:nth-child(4):hover::before {
    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);
}

.support-section .skill-card:nth-child(2):hover::after,
.support-section .skill-card:nth-child(3):hover::after,
.support-section .skill-card:nth-child(4):hover::after {
    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);
}

.support-section .skill-card:nth-child(2) > h3,
.support-section .skill-card:nth-child(3) > h3,
.support-section .skill-card:nth-child(4) > h3 {
    position: relative;

    margin: 0;
    padding-right: 17px;

    color: #ffffff;

    font-size: 21px;
    font-weight: 680;

    line-height: 1.3;
    letter-spacing: -0.02em;
}

.support-section .skill-card:nth-child(2) > h3::after,
.support-section .skill-card:nth-child(3) > h3::after,
.support-section .skill-card:nth-child(4) > h3::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 4px;
    height: 26px;

    transform: translateY(-50%);

    border-radius: var(--radius-full);

    background:
        linear-gradient(
            to bottom,
            var(--primary-light),
            var(--primary-dark)
        );

    box-shadow:
        0 0 14px rgba(124, 115, 255, 0.35);
}

.support-section .skill-card:nth-child(2) .skill-list,
.support-section .skill-card:nth-child(3) .skill-list,
.support-section .skill-card:nth-child(4) .skill-list {
    margin: 15px 0 0;
    padding: 0;

    list-style: none;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 7px 16px;

    direction: rtl;
}

.support-section .skill-card:nth-child(2) .skill-list li,
.support-section .skill-card:nth-child(3) .skill-list li,
.support-section .skill-card:nth-child(4) .skill-list li {
    position: relative;

    min-width: 0;

    padding-right: 13px;

    color:
        rgba(232, 233, 240, 0.6);

    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;

    direction: rtl;
    text-align: right;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.support-section .skill-card:nth-child(2) .skill-list li::before,
.support-section .skill-card:nth-child(3) .skill-list li::before,
.support-section .skill-card:nth-child(4) .skill-list li::before {
    content: "";

    position: absolute;

    right: 0;
    top: 0.62em;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 8px rgba(124, 115, 255, 0.5);
}

.support-section .skill-card:nth-child(2) .skill-list li:hover,
.support-section .skill-card:nth-child(3) .skill-list li:hover,
.support-section .skill-card:nth-child(4) .skill-list li:hover {
    color: #ffffff;

    transform: translateX(-3px);
}

.support-section .skill-card:hover {
    border-color:
        rgba(124, 115, 255, 0.26);

    box-shadow:
        0 30px 85px rgba(0, 0, 0, 0.31),
        0 0 42px rgba(124, 115, 255, 0.065),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.support-section .skill-card:first-child:hover {
    border-color:
        rgba(124, 115, 255, 0.34);

    box-shadow:
        0 40px 110px rgba(0, 0, 0, 0.34),
        0 0 90px rgba(124, 115, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.support-section .skill-card:nth-child(2):hover,
.support-section .skill-card:nth-child(3):hover,
.support-section .skill-card:nth-child(4):hover {
    transform: translateY(-6px);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 18% 50%,
            rgba(124, 115, 255, 0.11),
            transparent 32%
        ),
        radial-gradient(
            circle at 82% 20%,
            rgba(92, 78, 220, 0.07),
            transparent 28%
        ),
        var(--bg);
}

.contact-section::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 620px;
    height: 620px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(124, 115, 255, 0.055),
            transparent 68%
        );

    filter: blur(50px);

    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(390px, 0.75fr);

    gap: 100px;

    align-items: center;

    direction: ltr;
}

.contact-container > * {
    min-width: 0;
}

.contact-content {
    direction: rtl;
    text-align: right;
}

.contact-heading {
    max-width: 720px;

    direction: rtl;
    text-align: right;
}

.contact-content .section-label {
    margin-bottom: 17px;

    direction: rtl;
    text-align: right;
}

.contact-title {
    max-width: 720px;

    margin: 0;

    color: var(--white);

    font-size:
        clamp(
            3.6rem,
            5.7vw,
            6.2rem
        );

    font-weight: 720;

    line-height: 1.12;
    letter-spacing: -0.035em;

    overflow-wrap: break-word;

    direction: rtl;
    text-align: right;
}

.contact-title span {
    display: block;

    margin-top: 4px;

    color: var(--primary-light);

    text-shadow:
        0 0 60px rgba(124, 115, 255, 0.16);

    direction: rtl;
    text-align: right;
}

.contact-description {
    max-width: 620px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 2;

    direction: rtl;
    text-align: right;
}

.contact-note {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 32px;

    padding: 9px 13px;

    color: var(--text-muted);

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-full);

    font-size: 10px;
    font-weight: 650;

    direction: rtl;
}

.contact-note-dot {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    background: var(--success);
    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(87, 233, 138, 0.06),
        0 0 14px rgba(87, 233, 138, 0.4);
}

.contact-panel {
    width: 100%;
    max-width: 470px;

    justify-self: end;

    padding: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.018)
        );

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 28px;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    direction: rtl;

    transition:
        border-color 0.35s ease,
        box-shadow 0.45s ease,
        transform 0.5s var(--ease);
}

.contact-panel:hover {
    transform: translateY(-5px);

    border-color:
        rgba(124, 115, 255, 0.24);

    box-shadow:
        0 45px 115px rgba(0, 0, 0, 0.34),
        0 0 60px rgba(124, 115, 255, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-primary {
    position: relative;

    display: block;

    padding: 24px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(124, 115, 255, 0.16),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(124, 115, 255, 0.1),
            rgba(255, 255, 255, 0.025)
        );

    border:
        1px solid rgba(124, 115, 255, 0.17);

    border-radius: 20px;

    direction: rtl;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.4s var(--ease);
}

.contact-primary::after {
    content: "";

    position: absolute;

    right: -50px;
    bottom: -60px;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(124, 115, 255, 0.14),
            transparent 70%
        );

    pointer-events: none;
}

.contact-primary:hover {
    transform: translateY(-3px);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(124, 115, 255, 0.2),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(124, 115, 255, 0.14),
            rgba(255, 255, 255, 0.03)
        );

    border-color:
        rgba(124, 115, 255, 0.34);
}

.contact-primary-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.contact-card-label {
    color: var(--primary-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.04em;
}

.contact-card-arrow {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 9px;

    font-size: 15px;

    direction: ltr;

    transition:
        transform 0.4s var(--ease),
        background 0.3s ease;
}

.contact-primary:hover .contact-card-arrow {
    transform: translate(2px, -2px);

    background:
        rgba(124, 115, 255, 0.15);
}

.contact-primary-email {
    position: relative;
    z-index: 2;

    display: block;

    margin-top: 22px;

    color: #ffffff;

    font-family:
        Inter,
        Arial,
        sans-serif;

    font-size:
        clamp(
            1rem,
            1.8vw,
            1.25rem
        );

    font-weight: 650;

    letter-spacing: -0.025em;

    direction: ltr;
    text-align: left;
    unicode-bidi: isolate;

    overflow-wrap: anywhere;
}

.contact-socials {
    margin-top: 12px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    direction: ltr;
}

.contact-social {
    min-height: 72px;

    padding: 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    color: var(--text-soft);

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.075);

    border-radius: 16px;

    direction: rtl;

    transition:
        color 0.25s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.35s var(--ease);
}

.contact-social:hover {
    color: #ffffff;

    background:
        rgba(124, 115, 255, 0.07);

    border-color:
        rgba(124, 115, 255, 0.22);

    transform: translateY(-3px);
}

.contact-social-name {
    font-size: 12px;
    font-weight: 650;
}

.contact-social-arrow {
    color: var(--text-muted);

    font-size: 13px;

    direction: ltr;
    unicode-bidi: isolate;

    transition:
        color 0.25s ease,
        transform 0.35s var(--ease);
}

.contact-social:hover .contact-social-arrow {
    color: var(--primary-light);

    transform:
        translate(2px, -2px);
}

.contact-availability {
    margin-top: 12px;

    min-height: 48px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding-inline: 16px;

    color: var(--text-muted);

    background:
        rgba(255, 255, 255, 0.022);

    border:
        1px solid rgba(255, 255, 255, 0.055);

    border-radius: 14px;

    font-size: 10px;
    font-weight: 600;

    direction: rtl;
}

.contact-availability-dot {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    background: var(--success);
    border-radius: 50%;

    box-shadow:
        0 0 10px rgba(87, 233, 138, 0.45);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;

    padding: 72px 0 24px;

    background:
        linear-gradient(
            180deg,
            #090c12 0%,
            #080a0f 100%
        );

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(170px, 0.7fr)
        minmax(240px, 0.8fr);

    gap: 70px;

    align-items: start;

    direction: ltr;
}

.footer-brand-block {
    direction: rtl;
    text-align: right;
}

.footer-brand {
    display: flex;
    align-items: center;

    width: 170px;
    height: 38px;

    text-decoration: none;
}

.footer-brand img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: right center;
}

.footer-brand-description {
    max-width: 350px;

    margin-top: 20px;

    color: #777c8d;

    font-size: 12px;
    line-height: 2;

    direction: rtl;
    text-align: right;
}

.footer-navigation-block,
.footer-contact-block {
    direction: rtl;
    text-align: right;
}

.footer-heading {
    display: block;

    margin-bottom: 18px;

    color: #d4d6df;

    font-size: 12px;
    font-weight: 650;

    direction: rtl;
    text-align: right;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 8px;

    direction: rtl;
}

.footer-navigation a {
    position: relative;

    color: #737889;

    font-size: 12px;
    line-height: 1.6;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-navigation a::before {
    content: "";

    position: absolute;

    top: 50%;
    right: -12px;

    width: 4px;
    height: 4px;

    transform:
        translateY(-50%);

    background: #8179ff;
    border-radius: 50%;

    opacity: 0;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.footer-navigation a:hover {
    color: #aaa5ff;

    transform: translateX(-4px);
}

.footer-navigation a:hover::before {
    opacity: 1;

    transform:
        translateY(-50%)
        translateX(-2px);
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;

    direction: rtl;
}

.footer-contact-links a {
    color: #737889;

    font-size: 12px;
    font-weight: 600;

    direction: rtl;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-contact-links a:hover {
    color: var(--primary-light);

    transform: translateX(-4px);
}

.footer-contact-links .footer-contact-email {
    direction: ltr;
    text-align: left;
    unicode-bidi: isolate;

    white-space: nowrap;

    color: #8b8fa0;

    font-family:
        Inter,
        Arial,
        sans-serif;

    font-size: 12px;
}

.footer-contact-links .footer-contact-email:hover {
    color: var(--primary-light);
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 6px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 58px;
    height: 30px;

    padding-inline: 10px;

    color: #74798b;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 9px;

    font-size: 10px;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-social-links a:hover {
    color: #aaa5ff;

    border-color:
        rgba(124, 115, 255, 0.28);

    background:
        rgba(124, 115, 255, 0.07);

    transform: translateY(-2px);
}

.footer-divider {
    width: 100%;
    height: 1px;

    margin: 52px 0 20px;

    background:
        rgba(255, 255, 255, 0.06);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    direction: ltr;
}

.footer-bottom p {
    margin: 0;

    color: #505565;

    font-size: 10px;
    line-height: 1.8;

    direction: rtl;
}

.footer-bottom p:first-child {
    text-align: right;
}

.footer-bottom p:last-child {
    text-align: left;
}

.footer-bottom span {
    color: #7771ee;
}


/* =========================================================
   REVEAL SYSTEM
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(32px);

    transition:
        opacity 0.8s ease,
        transform 0.8s var(--ease);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;

    transform: translateX(-38px);

    transition:
        opacity 0.8s ease,
        transform 0.8s var(--ease);
}

.reveal-right {
    opacity: 0;

    transform: translateX(38px);

    transition:
        opacity 0.8s ease,
        transform 0.8s var(--ease);
}

.reveal-left.reveal-visible,
.reveal-right.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;

    transform: scale(0.94);

    transition:
        opacity 0.8s ease,
        transform 0.8s var(--ease);
}

.reveal-scale.reveal-visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-stagger > * {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity 0.7s ease,
        transform 0.7s var(--ease);
}

.reveal-stagger.reveal-visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.reveal-visible > *:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-stagger.reveal-visible > *:nth-child(2) {
    transition-delay: 0.12s;
}

.reveal-stagger.reveal-visible > *:nth-child(3) {
    transition-delay: 0.19s;
}

.reveal-stagger.reveal-visible > *:nth-child(4) {
    transition-delay: 0.26s;
}

.reveal-stagger.reveal-visible > *:nth-child(5) {
    transition-delay: 0.33s;
}

.reveal-stagger.reveal-visible > *:nth-child(6) {
    transition-delay: 0.4s;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes visual-glow-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes cursor-blink {
    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

@keyframes badge-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes support-glow {
    0%,
    100% {
        opacity: 0.55;
    }

    50% {
        opacity: 0.85;
    }
}

@keyframes hero-content-enter {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-visual-enter {
    from {
        opacity: 0;
        transform:
            translateY(35px)
            scale(0.96);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   BACKDROP FALLBACK
========================================================= */

@supports not (backdrop-filter: blur(1px)) {
    .site-header,
    .mobile-menu,
    .code-window,
    .tech-badge,
    .visual-metric,
    .stat-card,
    .support-section .skill-card,
    .contact-panel {
        background: #151a24;
    }
}


/* =========================================================
   LARGE TABLET — 1100
========================================================= */

@media (max-width: 1100px) {

    :root {
        --container-padding: 24px;
        --section-padding: 115px;
    }

    .site-header {
        width:
            calc(100% - 24px);
    }

    .desktop-nav {
        gap: 1px;
        margin-right: 18px;
    }

    .nav-link {
        padding-inline: 10px;
        font-size: 10px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        grid-column: 1;
        grid-row: 1;

        max-width: 850px;
    }

    .hero-visual {
        grid-column: 1;
        grid-row: 2;

        min-height: 470px;
    }

    .hero-title {
        font-size:
            clamp(
                3rem,
                7vw,
                4.8rem
            );

        line-height: 1.25;
    }

    .hero-title > span {
        line-height: 1.25;
    }

    .code-window {
        width:
            min(
                100%,
                540px
            );
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-panel {
        max-width: 620px;
        justify-self: start;
    }

    .contact-title {
        font-size:
            clamp(
                3.5rem,
                8vw,
                5.5rem
            );
    }

    .services-grid,
    .skills-grid,
    .experience-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .support-section .skills-grid {
        max-width: 900px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        grid-template-rows:
            auto
            auto
            auto;

        gap: 14px;
    }

    .support-section .skill-card:first-child {
        grid-column: 1 / -1;
        grid-row: 1;

        min-height: 390px;
        padding: 34px;
    }

    .support-section .skill-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;

        min-height: 210px;
    }

    .support-section .skill-card:nth-child(3) {
        grid-column: 2;
        grid-row: 2;

        min-height: 210px;
    }

    .support-section .skill-card:nth-child(4) {
        grid-column: 1 / -1;
        grid-row: 3;

        min-height: 190px;
    }
}


/* =========================================================
   TABLET / SMALL DESKTOP — 900
========================================================= */

@media (max-width: 900px) {

    .site-header {
        width:
            calc(100% - 20px);
    }

    .header-inner {
        gap: 16px;
    }

    .desktop-nav {
        gap: 0;
        padding: 4px;
    }

    .nav-link {
        min-height: 36px;

        padding-inline: 8px;

        font-size: 9px;
    }

    .header-actions {
        gap: 6px;
    }

    .process-header {
        padding-bottom: 65px;
    }

    .process-timeline {
        padding-top: 70px;
    }

    .process-line {
        left: 27px;
    }

    .process-step {
        display: block;

        min-height: auto;

        padding-left: 80px;

        margin-bottom: 70px;
    }

    .process-marker {
        left: 27px;
    }

    .process-content,
    .process-step:nth-child(odd) .process-content,
    .process-step:nth-child(even) .process-content {
        width: 100%;
        max-width: 600px;

        padding: 0 0 30px;

        margin: 0;

        text-align: right;
    }

    .project-cta {
        padding-block: 105px;
    }

    .project-cta h2 {
        font-size:
            clamp(
                3rem,
                7vw,
                5rem
            );
    }

    .process-step.reveal-left,
    .process-step.reveal-right {
        transform: translateY(32px);
    }

    .process-step.reveal-left.reveal-visible,
    .process-step.reveal-right.reveal-visible {
        transform: translateY(0);
    }
}


/* =========================================================
   MOBILE — 800
========================================================= */

@media (max-width: 800px) {

    :root {
        --container-padding: 20px;
        --section-padding: 95px;
    }

    html {
        scroll-padding-top: 90px;
    }

    /* Progress */
    .section-progress {
        left: 10px;

        width: 26px;
        height: 230px;

        padding: 16px 0;
    }

    .section-progress-line {
        top: 16px;
        bottom: 16px;
    }

    .section-progress-dot {
        width: 7px;
        height: 7px;
    }

    .section-progress-dot.active,
    .section-progress-dot:hover {
        width: 9px;
        height: 9px;
    }

    .section-progress-dot::after {
        left:
            calc(100% + 10px);

        padding: 6px 9px;

        font-size: 9px;
    }

    .section-progress-dot::before {
        left:
            calc(100% + 5px);

        width: 3px;
        height: 3px;
    }

    /* Header */
    .site-header {
        top: 10px;

        width:
            calc(100% - 20px);

        height: 66px;

        border-radius: 18px;
    }

    .header-inner {
        padding-inline: 9px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .brand {
        width: 125px;
        height: 40px;
    }

    /* Hero */
    .hero {
        min-height: auto;

        padding-top: 115px;
        padding-bottom: 65px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero-eyebrow {
        gap: 9px;

        margin-bottom: 16px;

        font-size: 10px;

        letter-spacing: 0.02em;
    }

    .eyebrow-line {
        width: 29px;
    }

    .hero-status {
        margin-bottom: 19px;

        padding: 7px 10px;

        font-size: 9px;
    }

    .hero-title {
        max-width: 100%;

        font-size:
            clamp(
                2.7rem,
                10vw,
                4rem
            );

        line-height: 1.24;
        letter-spacing: -0.025em;
    }

    .hero-title > span {
        line-height: 1.24;
    }

    .hero-description {
        margin-top: 21px;

        font-size: 14px;

        line-height: 1.9;
    }

    .hero-actions {
        margin-top: 26px;

        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        gap: 10px;
    }

    .button {
        width: 100%;
        min-height: 50px;
    }

    .hero-actions .button {
        justify-content: center;
    }

    .hero-meta {
        margin-top: 27px;

        flex-wrap: wrap;

        gap: 9px;
    }

    .hero-meta-item {
        font-size: 8px;

        letter-spacing: 0.04em;
    }

    /* Hero visual */
    .hero-visual {
        min-height: 360px;
    }

    .hero-visual-glow {
        width: 330px;
        height: 330px;

        filter: blur(30px);
    }

    .code-window {
        width: 100%;
        max-width: 500px;

        border-radius: 18px;

        transform:
            perspective(1000px)
            rotateY(-2deg)
            rotateX(1deg);
    }

    .code-window-header {
        height: 44px;

        padding-inline: 13px;
    }

    .window-title {
        max-width: 150px;
        font-size: 8px;
    }

    .window-status {
        font-size: 8px;
    }

    .code-window-body {
        padding:
            22px 14px 24px;
    }

    .code-line {
        min-height: 22px;
        font-size: 8px;
    }

    .line-number {
        width: 19px;
        margin-right: 9px;
    }

    .code-indent {
        padding-left: 7px;
    }

    .code-indent-more {
        padding-left: 17px;
    }

    .tech-badge {
        padding: 8px 10px;
        font-size: 8px;
    }

    .tech-badge-react {
        top: 27px;
        left: 0;
    }

    .tech-badge-next {
        top: 72px;
        right: 0;
    }

    .tech-badge-api {
        right: 3px;
        bottom: 53px;
    }

    .visual-metric {
        left: 0;
        bottom: 20px;

        min-width: 105px;

        padding: 10px 12px;
    }

    .visual-metric strong {
        font-size: 20px;
    }

    /* Sections */
    .section-title {
        font-size: 3rem;
    }

    .section-description {
        font-size: 14px;
    }

    .services-grid,
    .skills-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    /* Support */
    .support-section {
        padding-block: 95px;
    }

    .support-section .section-title {
        font-size:
            clamp(
                3rem,
                11vw,
                4.5rem
            );

        line-height: 1.06;
        letter-spacing: -0.025em;
    }

    .support-section .section-description {
        font-size: 12px;
        line-height: 1.9;
    }

    .support-section .skills-grid {
        width: 100%;
        max-width: none;

        margin-top: 58px;

        display: flex;
        flex-direction: column;

        gap: 12px;
    }

    .support-section .skill-card:first-child {
        width: 100%;

        min-height: 380px;

        padding: 30px;

        order: 1;
    }

    .support-section .skill-card:first-child > h3 {
        font-size:
            clamp(
                2rem,
                9vw,
                2.7rem
            );

        line-height: 1.04;
    }

    .support-section .skill-card:first-child .skill-list {
        margin-top: 22px;

        grid-template-columns: 1fr;

        gap: 9px;
    }

    .support-section .skill-card:first-child .skill-list li {
        font-size: 12px;
    }

    .support-section .skill-card:nth-child(2),
    .support-section .skill-card:nth-child(3),
    .support-section .skill-card:nth-child(4) {
        width: 100%;

        min-height: 180px;

        padding: 25px;

        order: 2;
    }

    .support-section .skill-card:nth-child(2) > h3,
    .support-section .skill-card:nth-child(3) > h3,
    .support-section .skill-card:nth-child(4) > h3 {
        font-size: 19px;
    }

    .support-section .skill-card:nth-child(2) .skill-list,
    .support-section .skill-card:nth-child(3) .skill-list,
    .support-section .skill-card:nth-child(4) .skill-list {
        gap: 8px 14px;
    }

    .support-section .skill-card:nth-child(2) .skill-list li,
    .support-section .skill-card:nth-child(3) .skill-list li,
    .support-section .skill-card:nth-child(4) .skill-list li {
        font-size: 11px;
    }

    /* Project CTA */
    .project-cta {
        padding-block: 90px;
    }

    .project-cta h2 {
        font-size:
            clamp(
                2.8rem,
                10vw,
                4.5rem
            );

        line-height: 1.06;
        letter-spacing: -0.025em;
    }

    /* Contact */
    .contact-container {
        gap: 45px;
    }

    .contact-title {
        font-size:
            clamp(
                2.9rem,
                10vw,
                4.5rem
            );

        line-height: 1.12;
    }

    .contact-description {
        font-size: 13px;
        line-height: 1.9;
    }

    .contact-panel {
        max-width: none;
        padding: 14px;

        border-radius: 23px;
    }

    .contact-primary {
        padding: 21px;
        border-radius: 18px;
    }

    .contact-social {
        min-height: 64px;
        padding: 15px;
    }

    /* Footer */
    .site-footer {
        padding-top: 60px;
    }

    .footer-main {
        grid-template-columns:
            1fr 1fr;

        gap: 40px 30px;
    }

    .footer-brand-block {
        grid-column: 1 / -1;
    }

    .footer-brand {
        width: 155px;
        height: 36px;
    }

    .footer-brand-description {
        max-width: 500px;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 6px;
    }
}


/* =========================================================
   MOBILE HERO CODE HIDE — 700
========================================================= */

@media (max-width: 700px) {

    .hero {
        isolation: isolate;
    }

    .hero::after {
        content: "";

        position: absolute;

        left: 50%;
        bottom: 10px;

        width: 330px;
        height: 220px;

        transform:
            translateX(-50%);

        background:
            radial-gradient(
                circle,
                rgba(124, 115, 255, 0.15),
                rgba(124, 115, 255, 0.045) 40%,
                transparent 73%
            );

        filter: blur(38px);

        pointer-events: none;

        z-index: -1;
    }

    .hero-visual {
        display: none;
    }
}


/* =========================================================
   MOBILE PROCESS — 600
========================================================= */

@media (max-width: 600px) {

    .process-header {
        padding-bottom: 50px;
    }

    .process-timeline {
        padding-top: 55px;
    }

    .process-step {
        padding-left: 65px;

        margin-bottom: 55px;
    }

    .process-line {
        left: 22px;
    }

    .process-marker {
        left: 22px;

        width: 44px;
        height: 44px;
    }

    .process-marker span {
        font-size: 10px;
    }

    .process-content h3 {
        font-size: 23px;
    }

    .process-content p {
        font-size: 12px;
    }

    .project-cta {
        padding-block: 80px;
    }

    .project-cta h2 {
        font-size: 2.9rem;

        line-height: 1.06;
    }

    .project-cta .button {
        width: auto;
        min-width: 180px;
    }
}


/* =========================================================
   SMALL MOBILE — 500
========================================================= */

@media (max-width: 500px) {

    :root {
        --container-padding: 16px;
        --section-padding: 82px;
    }

    /* Progress */
    .section-progress {
        left: 7px;

        width: 23px;
        height: 200px;

        padding: 14px 0;
    }

    .section-progress-line {
        top: 14px;
        bottom: 14px;
    }

    .section-progress-dot {
        width: 6px;
        height: 6px;
    }

    .section-progress-dot.active,
    .section-progress-dot:hover {
        width: 8px;
        height: 8px;
    }

    /* Header */
    .site-header {
        width:
            calc(100% - 16px);

        height: 62px;

        border-radius: 16px;
    }

    .header-inner {
        padding-inline: 7px;
    }

    .brand {
        width: 112px;
        height: 36px;
    }

    .language-switcher {
        min-width: 34px;
        height: 31px;

        font-size: 8px;
    }

    .menu-toggle {
        width: 35px;
        height: 35px;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
        padding-bottom: 55px;
    }

    .hero-eyebrow {
        font-size: 9px;
    }

    .hero-status {
        font-size: 8px;
    }

    .hero-title {
        font-size: 2.55rem;
        line-height: 1.23;
    }

    .hero-title > span {
        line-height: 1.23;
    }

    .hero-description {
        font-size: 13px;
    }

    .button {
        min-height: 48px;
        font-size: 11px;
    }

    .button-icon {
        width: 23px;
        height: 23px;

        font-size: 13px;
    }

    .hero-meta {
        gap: 7px;
    }

    .hero-meta-item {
        font-size: 7px;
    }

    .hero-meta-divider {
        display: none;
    }

    /* Section */
    .section-title {
        font-size: 2.7rem;

        line-height: 1.08;
        letter-spacing: -0.02em;
    }

    .section-label {
        font-size: 12px;
    }

    .section-description {
        font-size: 13px;

        line-height: 1.9;
    }

    /* About */
    .stat-card {
        min-height: 165px;

        padding: 23px;
    }

    .stat-card strong {
        font-size: 30px;
    }

    .stat-card span {
        font-size: 10px;

        line-height: 1.75;
    }

    /* Services */
    .services-grid,
    .skills-grid,
    .experience-grid {
        gap: 12px;
    }

    .service-card {
        min-height: 330px;
    }

    .service-card-content {
        padding:
            25px 24px 26px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 11px;
    }

    /* Skills */
    .skill-card {
        min-height: auto;

        padding: 25px;
    }

    /* Experience */
    .experience-card {
        min-height: 270px;

        padding: 28px;
    }

    .experience-card::before {
        right: 28px;
    }

    .experience-number {
        top: 23px;
        left: 24px;
    }

    /* Support */
    .support-section {
        padding-block: 82px;
    }

    .support-section .section-title {
        font-size: 2.7rem;

        line-height: 1.07;
        letter-spacing: -0.02em;
    }

    .support-section .section-description {
        font-size: 11px;
    }

    .support-section .skill-card:first-child {
        min-height: 360px;

        padding: 25px;
    }

    .support-section .skill-card:first-child > h3 {
        font-size: 1.85rem;
    }

    .support-section .skill-card:nth-child(2),
    .support-section .skill-card:nth-child(3),
    .support-section .skill-card:nth-child(4) {
        min-height: 170px;

        padding: 22px;
    }

    .support-section .skill-card:nth-child(2) .skill-list,
    .support-section .skill-card:nth-child(3) .skill-list,
    .support-section .skill-card:nth-child(4) .skill-list {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-title {
        font-size: 2.75rem;

        line-height: 1.13;
    }

    .contact-description {
        font-size: 12px;
    }

    .contact-note {
        font-size: 9px;
    }

    .contact-primary {
        padding: 18px;
    }

    .contact-primary-email {
        font-size: 0.93rem;
    }

    .contact-socials {
        grid-template-columns: 1fr;
    }

    .contact-social {
        min-height: 56px;
    }

    .contact-availability {
        min-height: 45px;

        font-size: 9px;
    }

    /* Footer */
    .site-footer {
        padding-top: 55px;
        padding-bottom: 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand-block,
    .footer-navigation-block,
    .footer-contact-block {
        grid-column: auto;
    }

    .footer-brand {
        width: 155px;
        height: 35px;
    }

    .footer-brand-description {
        max-width: 100%;

        margin-top: 16px;

        font-size: 11px;
    }

    .footer-heading {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .footer-navigation,
    .footer-contact-links {
        gap: 10px;
    }

    .footer-navigation a,
    .footer-contact-links a {
        font-size: 10px;
    }

    .footer-contact-links .footer-contact-email {
        font-size: 11px;
    }

    .footer-divider {
        margin-top: 40px;
        margin-bottom: 18px;
    }

    .footer-bottom {
        padding-top: 0;
    }

    .footer-bottom p {
        font-size: 8px;
    }
}


/* =========================================================
   EXTRA SMALL — 420
========================================================= */

@media (max-width: 420px) {

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 145px;
    }

    .experience-card {
        min-height: 250px;

        padding: 25px;
    }

    .experience-card::before {
        right: 25px;
    }

    .experience-card h3 {
        font-size: 19px;
    }

    .experience-description {
        font-size: 11px;
    }

    .experience-stack {
        margin-top: 18px;
    }

    .process-step {
        padding-left: 58px;
    }

    .process-content h3 {
        font-size: 21px;
    }

    .process-content p {
        font-size: 11px;
    }

    .project-cta {
        padding-block: 70px;
    }

    .project-cta h2 {
        font-size: 2.6rem;

        line-height: 1.07;
    }

    .contact-title {
        font-size: 2.8rem;
    }
}


/* =========================================================
   EXTRA SMALL — 380
========================================================= */

@media (max-width: 380px) {

    :root {
        --container-padding: 12px;
    }

    /* Progress */
    .section-progress {
        left: 5px;

        width: 21px;
        height: 185px;

        padding: 13px 0;
    }

    .section-progress-line {
        top: 13px;
        bottom: 13px;
    }

    .section-progress-dot {
        width: 5px;
        height: 5px;
    }

    .section-progress-dot.active,
    .section-progress-dot:hover {
        width: 7px;
        height: 7px;
    }

    /* Header */
    .site-header {
        width:
            calc(100% - 12px);
    }

    .header-inner {
        padding-inline: 5px;
    }

    .brand {
        width: 102px;
        height: 33px;
    }

    .language-switcher {
        min-width: 32px;
        padding-inline: 8px;
    }

    .menu-toggle {
        width: 33px;
        height: 33px;
    }

    /* Hero */
    .hero {
        padding-top: 96px;
    }

    .hero-title {
        font-size: 2.3rem;
        line-height: 1.22;
    }

    .hero-title > span {
        line-height: 1.22;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-meta-item {
        font-size: 6.5px;
    }

    /* Section */
    .section-title {
        font-size: 2.4rem;

        line-height: 1.09;
        letter-spacing: -0.015em;
    }

    .section-label {
        font-size: 10px;
    }

    /* Support */
    .support-section {
        padding-block: 75px;
    }

    .support-section .section-title {
        font-size: 2.4rem;

        line-height: 1.08;
        letter-spacing: -0.015em;
    }

    .support-section .skill-card:first-child {
        min-height: 345px;

        padding: 22px;
    }

    .support-section .skill-card:first-child > h3 {
        font-size: 1.65rem;
    }

    .support-section .skill-card:nth-child(2),
    .support-section .skill-card:nth-child(3),
    .support-section .skill-card:nth-child(4) {
        padding: 20px;
    }

    /* CTA */
    .project-cta h2 {
        font-size: 2.35rem;

        line-height: 1.08;
        letter-spacing: -0.015em;
    }

    /* Contact */
    .contact-title {
        font-size: 2.6rem;

        line-height: 1.08;
        letter-spacing: -0.015em;
    }

    .contact-panel {
        padding: 11px;
    }

    .contact-primary {
        padding: 16px;
    }

    .contact-card-arrow {
        width: 28px;
        height: 28px;
    }

    /* Process */
    .process-step {
        padding-left: 54px;
    }

    .process-line,
    .process-marker {
        left: 18px;
    }

    .process-marker {
        width: 40px;
        height: 40px;
    }

    .process-content h3 {
        font-size: 20px;
    }

    .process-content p {
        font-size: 10.5px;
    }

    /* Footer */
    .footer-brand {
        width: 145px;
        height: 32px;
    }

    .footer-brand-description {
        font-size: 10px;
    }

    .footer-contact-links .footer-contact-email {
        font-size: 10px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        animation-delay: 0s !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-stagger > *,
    .hero-content,
    .hero-visual,
    .support-section .skills-grid.reveal-stagger > .skill-card {
        opacity: 1 !important;

        transform: none !important;

        animation: none !important;

        transition: none !important;
    }

    .button::before,
    .skill-card::before {
        display: none;
    }
}

/* =========================================================
   MOBILE HEADER — FINAL
========================================================= */

@media (max-width: 1100px) {

    .site-header {
        top: 12px;

        width: calc(100% - 24px);
        height: 66px;

        border-radius: 19px;
    }

    .site-header > .header-inner {
        padding-inline: 10px;
    }

    .header-inner {
        gap: 10px;
    }

    /* Hide desktop navigation */
    .desktop-nav {
        display: none;
    }

    /* Show mobile button */
    .menu-toggle {
        display: flex;
    }

    /* Mobile brand */
    .brand {
        order: 3;

        width: 190px;
        height: 42px;

        border-radius: 10px;
    }

    .brand-name {
        width: 100%;
        height: 100%;
    }

    .brand-name img {
        width: 100%;
        height: 100%;

        object-fit: contain;
        object-position: center;

        transform: none;
    }

    .brand:hover .brand-name img {
        transform: none;
        filter: none;
    }

    .brand::after,
    .brand::before {
        display: none;
    }

    /* Header actions */
    .header-actions {
        order: 1;

        margin-left: 0;

        gap: 7px;
    }

    /* Mobile menu */
    .mobile-menu {
        top: calc(100% + 9px);

        left: 0;
        right: 0;

        width: 100%;
        max-height: calc(100vh - 92px);

        padding: 8px;

        background:
            linear-gradient(
                180deg,
                rgba(19, 23, 32, 0.98),
                rgba(11, 14, 20, 0.97)
            );

        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 17px;

        box-shadow:
            0 24px 70px rgba(0, 0, 0, 0.42),
            inset 0 1px 0 rgba(255, 255, 255, 0.045);

        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);

        overflow-y: auto;
        overscroll-behavior: contain;

        direction: rtl;
    }

    .mobile-menu::before {
        content: "";

        display: block;

        width: 38px;
        height: 2px;

        margin: 2px auto 8px;

        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(124, 115, 255, 0.9),
                transparent
            );

        border-radius: 999px;

        box-shadow:
            0 0 14px rgba(124, 115, 255, 0.35);
    }

    .mobile-nav-link {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: space-between;

        min-height: 48px;

        margin-bottom: 3px;
        padding: 0 14px;

        color: rgba(255, 255, 255, 0.68);

        background: transparent;

        border: 1px solid transparent;
        border-radius: 12px;

        font-size: 13px;
        font-weight: 650;

        direction: rtl;

        transition:
            color 0.25s ease,
            background 0.25s ease,
            border-color 0.25s ease,
            transform 0.25s var(--ease);
    }

    .mobile-nav-link:last-child {
        margin-bottom: 0;
    }

    .mobile-nav-link::before {
        content: "";

        width: 5px;
        height: 5px;

        flex-shrink: 0;

        background: rgba(255, 255, 255, 0.18);

        border-radius: 50%;

        transition:
            background 0.25s ease,
            box-shadow 0.25s ease,
            transform 0.25s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        color: #ffffff;

        background:
            linear-gradient(
                90deg,
                rgba(124, 115, 255, 0.11),
                rgba(124, 115, 255, 0.035)
            );

        border-color:
            rgba(124, 115, 255, 0.16);

        transform: none;
    }

    .mobile-nav-link:hover::before,
    .mobile-nav-link.active::before {
        background: var(--primary);

        box-shadow:
            0 0 10px rgba(124, 115, 255, 0.8);

        transform: scale(1.15);
    }

    /* Open button */
    .menu-toggle {
        position: relative;

        width: 40px;
        height: 40px;

        padding: 0;

        background:
            rgba(255, 255, 255, 0.045);

        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 12px;

        flex-shrink: 0;

        transition:
            background 0.25s ease,
            border-color 0.25s ease,
            transform 0.25s var(--ease);
    }

    .menu-toggle:hover {
        background:
            rgba(124, 115, 255, 0.10);

        border-color:
            rgba(124, 115, 255, 0.28);

        transform: none;
    }

    .menu-toggle span {
        width: 16px;
        height: 1.5px;

        background: #ffffff;

        border-radius: 999px;

        transition:
            transform 0.3s var(--ease),
            opacity 0.2s ease;
    }

    /* Hamburger → X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }

}


@media (max-width: 600px) {

    .site-header {
        top: 9px;

        width: calc(100% - 18px);
        height: 62px;

        border-radius: 17px;
    }

    .site-header > .header-inner {
        padding-inline: 8px;
    }

    .brand {
        width: 158px;
        height: 38px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;

        border-radius: 11px;
    }

    .mobile-menu {
        top: calc(100% + 7px);

        padding: 7px;

        border-radius: 15px;
    }

    .mobile-nav-link {
        min-height: 46px;

        padding-inline: 12px;

        font-size: 12.5px;

        border-radius: 11px;
    }

}


@media (max-width: 380px) {

    .site-header {
        width: calc(100% - 14px);
    }

    .brand {
        width: 140px;
        height: 36px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
    }

    .mobile-nav-link {
        min-height: 44px;

        font-size: 12px;
    }

}

@media (max-width: 1100px) {

    .header-inner {
        direction: ltr;
    }

    .brand {
        order: 2;
        margin-left: auto;
        margin-right: 0;
    }

    .header-actions {
        order: 1;
        margin-left: 0;
        margin-right: 0;
    }

}
@media (max-width: 1100px) {

    .mobile-menu {
        direction: rtl;
    }

    .mobile-nav-link {
        direction: rtl;

        justify-content: flex-start;

        text-align: right;

        padding-right: 14px;
        padding-left: 14px;
    }

    .mobile-nav-link::before {
        order: 2;

        margin-right: auto;
        margin-left: 0;
    }

}

/* =========================================================
   ABOUT — MODERN PREMIUM OVERRIDE
========================================================= */

.about-section {
    position: relative !important;

    isolation: isolate !important;

    padding-top: 140px !important;
    padding-bottom: 140px !important;

    overflow: hidden !important;
}


.about-section::before {
    content: "" !important;

    position: absolute !important;

    top: 10% !important;
    right: -180px !important;

    width: 500px !important;
    height: 500px !important;

    background:
        radial-gradient(
            circle,
            rgba(124, 115, 255, 0.13),
            transparent 68%
        ) !important;

    filter: blur(35px) !important;

    pointer-events: none !important;
}


.about-section::after {
    content: "" !important;

    position: absolute !important;

    bottom: -200px !important;
    left: -180px !important;

    width: 520px !important;
    height: 520px !important;

    background:
        radial-gradient(
            circle,
            rgba(72, 104, 255, 0.07),
            transparent 70%
        ) !important;

    filter: blur(45px) !important;

    pointer-events: none !important;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.about-modern {
    position: relative !important;
    z-index: 2 !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.85fr) !important;

    grid-template-areas:
        "intro visual"
        "stats stats" !important;

    gap: 70px 90px !important;

    width: 100% !important;
}


/* =========================================================
   INTRO
========================================================= */

.about-modern-intro {
    grid-area: intro !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: flex-start !important;

    max-width: 760px !important;

    direction: rtl !important;

    text-align: right !important;
}


.about-modern-label {
    display: inline-flex !important;

    align-items: center !important;

    gap: 11px !important;

    margin-bottom: 24px !important;

    color: rgba(170, 164, 255, 0.9) !important;

    font-size: 11px !important;
    font-weight: 750 !important;

    letter-spacing: 0.04em !important;

    direction: rtl !important;
}


.about-modern-label-line {
    display: block !important;

    width: 42px !important;
    height: 1px !important;

    background:
        linear-gradient(
            90deg,
            rgba(124, 115, 255, 0),
            rgba(124, 115, 255, 0.95)
        ) !important;

    box-shadow:
        0 0 12px rgba(124, 115, 255, 0.45) !important;
}


.about-modern-title {
    margin: 0 !important;

    max-width: 720px !important;

    color: #ffffff !important;

    font-size: clamp(42px, 5vw, 74px) !important;

    font-weight: 800 !important;

    line-height: 1.18 !important;

    letter-spacing: -0.045em !important;

    text-wrap: balance !important;

    direction: rtl !important;

    text-align: right !important;
}


.about-modern-title span {
    display: block !important;

    margin-top: 8px !important;

    color: var(--primary-light) !important;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #aaa4ff 42%,
            #7167ff 100%
        ) !important;

    -webkit-background-clip: text !important;
    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}


.about-modern-description {
    display: flex !important;

    flex-direction: column !important;

    gap: 17px !important;

    max-width: 700px !important;

    margin-top: 30px !important;
}


.about-modern-description p {
    margin: 0 !important;

    color: rgba(214, 219, 230, 0.72) !important;

    font-size: 15px !important;

    font-weight: 450 !important;

    line-height: 2.15 !important;

    direction: rtl !important;

    text-align: right !important;
}


.about-modern-description strong {
    color: #ffffff !important;

    font-weight: 750 !important;
}


.about-modern-actions {
    display: flex !important;

    align-items: center !important;

    gap: 10px !important;

    margin-top: 34px !important;

    direction: rtl !important;
}


.about-modern-button {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 12px !important;

    min-height: 48px !important;

    padding: 0 18px !important;

    border-radius: 13px !important;

    text-decoration: none !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    white-space: nowrap !important;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease !important;
}


.about-modern-button span {
    font-size: 16px !important;

    line-height: 1 !important;
}


.about-modern-button-primary {
    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            rgba(124, 115, 255, 0.95),
            rgba(100, 91, 228, 0.92)
        ) !important;

    border: 1px solid rgba(164, 158, 255, 0.3) !important;

    box-shadow:
        0 12px 30px rgba(91, 82, 220, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
}


.about-modern-button-secondary {
    color: rgba(255, 255, 255, 0.76) !important;

    background: rgba(255, 255, 255, 0.035) !important;

    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}


.about-modern-button:hover {
    transform: translateY(-2px) !important;
}


.about-modern-button-primary:hover {
    box-shadow:
        0 18px 40px rgba(91, 82, 220, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}


.about-modern-button-secondary:hover {
    color: #ffffff !important;

    background: rgba(124, 115, 255, 0.08) !important;

    border-color: rgba(124, 115, 255, 0.24) !important;
}


/* =========================================================
   VISUAL
========================================================= */

.about-modern-visual {
    grid-area: visual !important;

    position: relative !important;

    min-height: 470px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    border-radius: 28px !important;

    background:
        linear-gradient(
            145deg,
            rgba(22, 26, 37, 0.92),
            rgba(10, 13, 19, 0.82)
        ) !important;

    border: 1px solid rgba(255, 255, 255, 0.085) !important;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}


.about-modern-visual::before {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    background:
        linear-gradient(
            135deg,
            rgba(124, 115, 255, 0.08),
            transparent 38%,
            rgba(80, 117, 255, 0.035)
        ) !important;

    pointer-events: none !important;
}


.about-modern-visual-grid {
    position: absolute !important;

    inset: 0 !important;

    opacity: 0.42 !important;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ) !important;

    background-size: 42px 42px !important;

    mask-image:
        radial-gradient(
            circle at center,
            black 20%,
            transparent 78%
        ) !important;

    pointer-events: none !important;
}


.about-modern-orb {
    position: absolute !important;

    border-radius: 50% !important;

    filter: blur(2px) !important;

    pointer-events: none !important;
}


.about-modern-orb-one {
    top: 35px !important;
    right: 45px !important;

    width: 150px !important;
    height: 150px !important;

    background:
        radial-gradient(
            circle,
            rgba(124, 115, 255, 0.32),
            transparent 70%
        ) !important;

    filter: blur(10px) !important;
}


.about-modern-orb-two {
    bottom: 20px !important;
    left: 35px !important;

    width: 130px !important;
    height: 130px !important;

    background:
        radial-gradient(
            circle,
            rgba(70, 126, 255, 0.15),
            transparent 70%
        ) !important;

    filter: blur(16px) !important;
}


.about-modern-brand-card {
    position: relative !important;
    z-index: 3 !important;

    width: min(82%, 390px) !important;

    padding: 30px !important;

    border-radius: 23px !important;

    background:
        linear-gradient(
            145deg,
            rgba(29, 33, 46, 0.88),
            rgba(14, 17, 24, 0.92)
        ) !important;

    border: 1px solid rgba(255, 255, 255, 0.1) !important;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;

    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;

    direction: ltr !important;

    transform: rotate(-2deg) !important;

    transition:
        transform 0.5s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.5s ease !important;
}


.about-modern-brand-card:hover {
    transform: rotate(0deg) translateY(-5px) !important;

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.42),
        0 0 45px rgba(124, 115, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}


.about-modern-brand-top {
    display: flex !important;

    align-items: center !important;

    gap: 9px !important;

    color: rgba(255, 255, 255, 0.5) !important;

    font-size: 9px !important;
    font-weight: 750 !important;

    text-transform: uppercase !important;

    letter-spacing: 0.14em !important;
}


.about-modern-status-dot {
    width: 7px !important;
    height: 7px !important;

    flex-shrink: 0 !important;

    background: #7c73ff !important;

    border-radius: 50% !important;

    box-shadow:
        0 0 10px rgba(124, 115, 255, 0.85) !important;
}


.about-modern-brand-name {
    margin-top: 38px !important;

    color: #ffffff !important;

    font-family: inherit !important;

    font-size: clamp(32px, 4vw, 48px) !important;

    font-weight: 800 !important;

    line-height: 1 !important;

    letter-spacing: -0.055em !important;
}


.about-modern-brand-name span {
    color: #8982ff !important;

    text-shadow:
        0 0 24px rgba(124, 115, 255, 0.28) !important;
}


.about-modern-brand-card > p {
    margin: 17px 0 0 !important;

    color: rgba(255, 255, 255, 0.48) !important;

    font-size: 12px !important;
    font-weight: 550 !important;

    line-height: 1.7 !important;

    letter-spacing: 0.03em !important;
}


.about-modern-brand-line {
    width: 100% !important;
    height: 1px !important;

    margin-top: 28px !important;

    background:
        linear-gradient(
            90deg,
            rgba(124, 115, 255, 0),
            rgba(124, 115, 255, 0.8),
            rgba(124, 115, 255, 0)
        ) !important;
}


.about-modern-brand-meta {
    display: flex !important;

    flex-wrap: wrap !important;

    gap: 7px !important;

    margin-top: 18px !important;
}


.about-modern-brand-meta span {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    min-height: 28px !important;

    padding: 0 9px !important;

    color: rgba(255, 255, 255, 0.55) !important;

    background: rgba(255, 255, 255, 0.035) !important;

    border: 1px solid rgba(255, 255, 255, 0.07) !important;

    border-radius: 8px !important;

    font-size: 8px !important;
    font-weight: 700 !important;

    letter-spacing: 0.04em !important;
}


/* =========================================================
   STATS
========================================================= */

.about-modern-stats {
    grid-area: stats !important;

    display: grid !important;

    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    gap: 18px !important;
}


.about-modern-stat {
    position: relative !important;

    display: flex !important;

    align-items: center !important;

    gap: 24px !important;

    min-width: 0 !important;

    padding: 28px !important;

    border-radius: 20px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        ) !important;

    border: 1px solid rgba(255, 255, 255, 0.075) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045) !important;

    overflow: hidden !important;

    direction: rtl !important;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease !important;
}


.about-modern-stat::before {
    content: "" !important;

    position: absolute !important;

    top: 0 !important;
    right: 0 !important;

    width: 90px !important;
    height: 90px !important;

    background:
        radial-gradient(
            circle,
            rgba(124, 115, 255, 0.12),
            transparent 70%
        ) !important;

    pointer-events: none !important;
}


.about-modern-stat:hover {
    transform: translateY(-4px) !important;

    border-color: rgba(124, 115, 255, 0.2) !important;

    background:
        linear-gradient(
            145deg,
            rgba(124, 115, 255, 0.075),
            rgba(255, 255, 255, 0.018)
        ) !important;
}


.about-modern-stat-number {
    position: relative !important;
    z-index: 1 !important;

    min-width: 95px !important;

    color: #ffffff !important;

    font-size: clamp(40px, 4vw, 58px) !important;

    font-weight: 850 !important;

    line-height: 1 !important;

    letter-spacing: -0.05em !important;

    text-align: center !important;

    text-shadow:
        0 0 28px rgba(124, 115, 255, 0.16) !important;
}


.about-modern-stat-content {
    position: relative !important;
    z-index: 1 !important;

    min-width: 0 !important;
}


.about-modern-stat-kicker {
    display: block !important;

    margin-bottom: 7px !important;

    color: rgba(156, 150, 255, 0.8) !important;

    font-size: 8px !important;
    font-weight: 800 !important;

    letter-spacing: 0.16em !important;

    direction: ltr !important;

    text-align: right !important;
}


.about-modern-stat-content h3 {
    margin: 0 !important;

    color: #ffffff !important;

    font-size: 16px !important;
    font-weight: 750 !important;

    line-height: 1.6 !important;

    direction: rtl !important;

    text-align: right !important;
}


.about-modern-stat-content p {
    margin: 5px 0 0 !important;

    color: rgba(203, 209, 221, 0.58) !important;

    font-size: 11px !important;
    font-weight: 450 !important;

    line-height: 1.9 !important;

    direction: rtl !important;

    text-align: right !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .about-modern {
        grid-template-columns: 1fr !important;

        grid-template-areas:
            "intro"
            "visual"
            "stats" !important;

        gap: 45px !important;
    }


    .about-modern-intro {
        max-width: 850px !important;
    }


    .about-modern-visual {
        min-height: 420px !important;
    }


    .about-modern-brand-card {
        width: min(76%, 430px) !important;
    }

}


@media (max-width: 700px) {

    .about-section {
        padding-top: 95px !important;
        padding-bottom: 95px !important;
    }


    .about-modern {
        gap: 32px !important;
    }


    .about-modern-label {
        margin-bottom: 18px !important;

        font-size: 10px !important;
    }


    .about-modern-title {
        font-size: clamp(34px, 10vw, 50px) !important;

        line-height: 1.25 !important;
    }


    .about-modern-description {
        margin-top: 22px !important;

        gap: 13px !important;
    }


    .about-modern-description p {
        font-size: 13px !important;

        line-height: 2.05 !important;
    }


    .about-modern-actions {
        width: 100% !important;

        gap: 8px !important;

        margin-top: 25px !important;
    }


    .about-modern-button {
        flex: 1 1 0 !important;

        min-height: 46px !important;

        padding: 0 12px !important;

        font-size: 11px !important;
    }


    .about-modern-visual {
        min-height: 350px !important;

        border-radius: 22px !important;
    }


    .about-modern-brand-card {
        width: 82% !important;

        padding: 23px !important;

        border-radius: 19px !important;
    }


    .about-modern-brand-name {
        margin-top: 28px !important;

        font-size: 34px !important;
    }


    .about-modern-brand-card > p {
        font-size: 10px !important;
    }


    .about-modern-stats {
        grid-template-columns: 1fr !important;

        gap: 12px !important;
    }


    .about-modern-stat {
        gap: 18px !important;

        padding: 22px !important;

        border-radius: 17px !important;
    }


    .about-modern-stat-number {
        min-width: 78px !important;

        font-size: 42px !important;
    }


    .about-modern-stat-content h3 {
        font-size: 14px !important;
    }


    .about-modern-stat-content p {
        font-size: 10.5px !important;

        line-height: 1.85 !important;
    }

}


@media (max-width: 430px) {

    .about-modern-title {
        font-size: 32px !important;
    }


    .about-modern-description p {
        font-size: 12.5px !important;
    }


    .about-modern-actions {
        flex-direction: column !important;

        align-items: stretch !important;
    }


    .about-modern-button {
        width: 100% !important;
    }


    .about-modern-visual {
        min-height: 315px !important;
    }


    .about-modern-brand-card {
        width: 85% !important;

        padding: 20px !important;
    }


    .about-modern-brand-name {
        font-size: 30px !important;
    }


    .about-modern-brand-meta span {
        font-size: 7px !important;
    }

}


@media (prefers-reduced-motion: reduce) {

    .about-modern-button,
    .about-modern-brand-card,
    .about-modern-stat {
        transition: none !important;
    }

}