html[dir="rtl"] {
    direction: rtl;
}


    html[dir="rtl"] .hero-grid {
        direction: rtl;
    }


    html[dir="rtl"] .nav {
        direction: rtl;
    }


    html[dir="rtl"] .controls {
        direction: rtl;
    }


    html[dir="rtl"] .lang-menu {
        right: auto;
        left: 0;
    }


html {
    scroll-behavior: smooth;
}

:root {
    /* Neutrals */
    --ink: #0d1626;
    --muted: #5b6a84;
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-2: #f6f9fd;
    --line: rgba(13, 22, 38, .10);
    /* Brand */
    --blue0: #061424;
    --blue1: #0a2a4a;
    --blue2: #0f3b64;
    --brand: #1a6dff;
    --brand-strong: #1559d8;
    --brand-soft: #2aa8ff;
    --on-brand: #ffffff;
    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(13, 22, 38, .06), 0 2px 8px rgba(13, 22, 38, .05);
    --shadow-md: 0 8px 24px rgba(13, 22, 38, .09);
    --shadow-lg: 0 24px 60px rgba(13, 22, 38, .14);
    --shadow-brand: 0 10px 24px rgba(26, 109, 255, .26);
    /* Shape + rhythm */
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-pill: 999px;
    --control-h: 40px;
    --max: 1160px;
    --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    --ease: cubic-bezier(.4, 0, .2, 1);
    --hero-scrim: linear-gradient(180deg, rgba(6,18,34,.78) 0%, rgba(6,18,34,.56) 42%, rgba(6,18,34,.80) 100%);
}




html[data-theme="dark"] {
    --ink: #eef3fb;
    --muted: #9fb0cb;
    --bg: #0b1220;
    --surface: #111b2d;
    --surface-2: #0e1727;
    --line: rgba(255, 255, 255, .12);
    --brand: #4d97ff;
    --brand-strong: #2f80f0;
    --brand-soft: #7ab8ff;
    --on-brand: #06131f;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.32);
    --shadow-md: 0 10px 28px rgba(0,0,0,.45);
    --shadow-lg: 0 24px 60px rgba(0,0,0,.55);
    --shadow-brand: 0 10px 24px rgba(0, 0, 0, .45);
    --hero-scrim: linear-gradient(180deg, rgba(4,10,20,.82) 0%, rgba(4,10,20,.62) 42%, rgba(4,10,20,.88) 100%);
}


.light-page,
.dark-page {
    min-height: 100vh;
    overflow: visible;
}

/* ---------- Base ---------- */
* {
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, video, svg {
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

p {
    margin: 0
}

button {
    font: inherit
}

.container {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto
}

:focus-visible {
    outline: 2px solid var(--brand-soft);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ---------- Announcement bar ---------- */
.topbar {
    background: linear-gradient(90deg, var(--blue1), var(--blue2));
    color: rgba(255,255,255,.90);
    font-size: 13.5px;
    font-weight: 500;
}

html.topbar-hidden .topbar {
    display: none
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
}

.topbar .actions {
    display: flex;
    gap: 8px;
    align-items: center
}

.pillbtn, .linkbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 14px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s var(--ease), border-color .18s var(--ease);
}

.pillbtn {
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.12);
    color: #fff;
}

    .pillbtn:hover {
        background: rgba(255,255,255,.22)
    }

.linkbtn {
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255,255,255,.78);
}

    .linkbtn:hover {
        background: rgba(255,255,255,.12);
        color: #fff
    }

/* ---------- Header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto
}

    .brand picture {
        display: block
    }

    .brand img {
        height: 44px;
        width: auto;
        display: block
    }

html[data-theme="dark"] .brand img {
    filter: brightness(1.12) contrast(1.03)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 15px;
}

    .nav-links a {
        padding: 8px 12px;
        border-radius: var(--r-sm);
        color: var(--muted);
        transition: color .18s var(--ease), background .18s var(--ease);
    }

        .nav-links a:hover {
            color: var(--ink);
            background: color-mix(in srgb, var(--ink) 6%, transparent)
        }

/* ---------- Controls / buttons ---------- */
.controls {
    display: flex;
    gap: 8px;
    align-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: var(--control-h);
    padding: 0 16px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--ink) 4%, transparent);
    color: var(--ink);
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}

    .btn:hover {
        transform: translateY(-1px);
        background: color-mix(in srgb, var(--ink) 8%, transparent);
        border-color: color-mix(in srgb, var(--ink) 20%, transparent);
    }

    .btn:active {
        transform: translateY(0)
    }

.btn-primary {
    border-color: transparent;
    background: linear-gradient(135deg, var(--brand-soft), var(--brand));
    color: var(--on-brand);
    box-shadow: var(--shadow-brand);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--brand-soft), var(--brand-strong));
        border-color: transparent;
        box-shadow: 0 14px 30px rgba(26, 109, 255, .32);
    }

.iconbtn {
    height: var(--control-h);
    width: var(--control-h);
    flex: 0 0 auto;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--ink) 4%, transparent);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s var(--ease), transform .18s var(--ease), border-color .18s var(--ease);
}

    .iconbtn:hover {
        background: color-mix(in srgb, var(--ink) 8%, transparent);
        border-color: color-mix(in srgb, var(--ink) 20%, transparent);
        transform: translateY(-1px);
    }

    .iconbtn svg {
        width: 18px;
        height: 18px;
        display: block
    }

/* ---------- Language dropdown ---------- */
.lang {
    position: relative
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: var(--control-h);
    padding: 0 14px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--ink) 4%, transparent);
    color: var(--ink);
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s var(--ease), border-color .18s var(--ease);
}

    .lang-btn:hover {
        background: color-mix(in srgb, var(--ink) 8%, transparent);
        border-color: color-mix(in srgb, var(--ink) 20%, transparent)
    }

    .lang-btn .chev {
        width: 14px;
        height: 14px;
        opacity: .6;
        transition: transform .2s var(--ease)
    }

    .lang-btn[aria-expanded="true"] .chev {
        transform: rotate(180deg)
    }

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-end: 0;
    min-width: 200px;
    margin: 0;
    padding: 6px;
    list-style: none;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s var(--ease);
}

    .lang-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }

    .lang-menu li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 12px;
        border-radius: var(--r-sm);
        cursor: pointer;
        font-weight: 500;
        font-size: 14.5px;
        color: var(--ink);
        transition: background .14s var(--ease);
    }

        .lang-menu li:hover,
        .lang-menu li:focus-visible {
            background: color-mix(in srgb, var(--brand) 12%, transparent)
        }

        .lang-menu li[aria-selected="true"] {
            font-weight: 600
        }

            .lang-menu li[aria-selected="true"]::after {
                content: "";
                margin-inline-start: auto;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: var(--brand);
            }

.flag {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--ink) 18%, transparent);
    flex: 0 0 auto;
}

.flag-en {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 42'%3E%3Crect width='60' height='42' fill='%23012169'/%3E%3Cpath d='M0 0 60 42M60 0 0 42' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M0 0 60 42M60 0 0 42' stroke='%23C8102E' stroke-width='6'/%3E%3Cpath d='M30 0v42M0 21h60' stroke='%23fff' stroke-width='14'/%3E%3Cpath d='M30 0v42M0 21h60' stroke='%23C8102E' stroke-width='8'/%3E%3C/svg%3E");
}

.flag-fr {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 42'%3E%3Crect width='20' height='42' fill='%230054A5'/%3E%3Crect x='20' width='20' height='42' fill='%23fff'/%3E%3Crect x='40' width='20' height='42' fill='%23EF4135'/%3E%3C/svg%3E");
}

.flag-ar {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 42'%3E%3Crect width='60' height='42' fill='%2300663A'/%3E%3Cpath d='M10 28h40' stroke='%23fff' stroke-width='3'/%3E%3Cpath d='M18 33h24' stroke='%23fff' stroke-width='3'/%3E%3C/svg%3E");
}

/* ---------- Mobile menu ---------- */
.hamburger {
    display: none
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    background: var(--bg);
}

    .mobile-menu.open {
        display: block
    }

    .mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 10px 0 16px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-menu a {
        display: block;
        padding: 12px 12px;
        border-radius: var(--r-sm);
        font-weight: 500;
        color: var(--ink);
    }

        .mobile-menu a:hover {
            background: color-mix(in srgb, var(--ink) 6%, transparent)
        }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: var(--blue1);
    color: rgba(255,255,255,.94);
    overflow: hidden;
    isolation: isolate;
    background-image: url('/images/iflex-hero-bg-light.png');
    z-index: 0;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url('/images/iflex-hero-bg-light.png');
        background-image: -webkit-image-set(url('/images/iflex-hero-bg-light.webp') 1x);
        background-image: image-set( url('/images/iflex-hero-bg-light.avif') type('image/avif'), url('/images/iflex-hero-bg-light.webp') type('image/webp'), url('/images/iflex-hero-bg-light.png') type('image/png'));
        z-index: 0;
    }

html[data-theme="dark"] .hero::before {
    background-image: url('/images/iflex-hero-bg-dark.png');
    background-image: -webkit-image-set(url('/images/iflex-hero-bg-dark.webp') 1x);
    background-image: image-set( url('/images/iflex-hero-bg-dark.avif') type('image/avif'), url('/images/iflex-hero-bg-dark.webp') type('image/webp'), url('/images/iflex-hero-bg-dark.png') type('image/png'));
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-scrim);
    z-index: 1;
}

.hero-inner {
    position: relative;
    padding: 64px 0 0;
    z-index: 3
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 150px;
}

.hero {
    min-height: auto;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 14px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.10);
    color: rgba(255,255,255,.90);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .01em;
    width: fit-content;
    backdrop-filter: blur(6px);
}

    .kicker .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--brand-soft);
        box-shadow: 0 0 0 4px rgba(42,168,255,.20);
    }

.hero h1 {
    margin: 20px 0 14px;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    font-weight: 700;
    max-width: 16ch;
    text-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.hero-lead {
    color: rgba(255,255,255,.86);
    font-size: 17px;
    line-height: 1.7;
    max-width: 58ch;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero .btn {
    border-color: rgba(255,255,255,.24);
    background: rgba(255,255,255,.10);
    color: #fff;
    backdrop-filter: blur(6px);
}

    .hero .btn:hover {
        background: rgba(255,255,255,.18);
        border-color: rgba(255,255,255,.34)
    }

.hero .btn-primary {
    border-color: transparent;
    background: linear-gradient(135deg, #38b0ff, #1a6dff);
    color: #fff;
}

    .hero .btn-primary:hover {
        background: linear-gradient(135deg, #4dbaff, #2a7bff);
        border-color: transparent
    }

.hero-wave {
    position: relative;
    margin-top: -1px;
    z-index: 5;
    pointer-events: none
}

    .hero-wave svg {
        display: block;
        width: 100%;
        height: 110px
    }

/* ---------- Login card ---------- */
.card {
    border-radius: var(--r-lg);
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(9, 22, 42, .55);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(0,0,0,.40);
    overflow: hidden;
    max-width: 380px;
    width: 100%;
    margin-inline-start: auto;
    color: #fff;
}

.card-header {
    padding: 20px 22px 16px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(135deg, rgba(42,168,255,.16), rgba(26,109,255,.06));
}

    .card-header h2 {
        font-size: 19px;
        letter-spacing: -.01em
    }

    .card-header p {
        margin-top: 6px;
        color: rgba(255,255,255,.72);
        font-size: 13.5px
    }

.card-body {
    padding: 18px 22px 22px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px
}

.card label {
    font-size: 13px;
    color: rgba(255,255,255,.80);
    font-weight: 500
}

.input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    height: 46px;
    border-radius: var(--r-md);
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.75);
    transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}

    .input:focus-within {
        border-color: rgba(90,180,255,.75);
        background: rgba(255,255,255,.12);
        box-shadow: 0 0 0 3px rgba(42,168,255,.18);
    }

    .input svg {
        width: 18px;
        height: 18px;
        flex: 0 0 auto
    }

    .input input {
        width: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        color: #fff;
        font-size: 14.5px;
        min-width: 0;
    }

        .input input::placeholder {
            color: rgba(255,255,255,.50)
        }

.toggle {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.88);
    cursor: pointer;
    transition: background .18s var(--ease);
}

    .toggle:hover {
        background: rgba(255,255,255,.16)
    }

.login-btn {
    margin-top: 4px;
    width: 100%;
    height: 46px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 15px;
    border: 0;
    background: linear-gradient(135deg, #38b0ff, #1a6dff);
    color: #fff;
    box-shadow: 0 12px 28px rgba(26,109,255,.30);
    cursor: pointer;
    transition: transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s var(--ease);
}

    .login-btn:hover {
        transform: translateY(-1px);
        filter: brightness(1.06);
        box-shadow: 0 16px 34px rgba(26,109,255,.36)
    }

    .login-btn:active {
        transform: translateY(0)
    }

.form-note {
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255,255,255,.75);
    min-height: 0;
}

    .form-note:empty {
        display: none
    }

.card-links {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 13px;
}

    .card-links a {
        color: rgba(255,255,255,.80)
    }

        .card-links a:hover {
            color: #fff;
            text-decoration: underline
        }

/* ---------- Sections ---------- */
section {
    padding: 88px 0;
    scroll-margin-top: 90px
}

#home {
    scroll-margin-top: 0
}

.section-title {
    text-align: center;
    margin: 0 0 12px;
    font-size: clamp(26px, 3vw, 34px);
    letter-spacing: -.02em;
}

.section-sub {
    text-align: center;
    margin: 0 auto 52px;
    color: var(--muted);
    max-width: 62ch;
    line-height: 1.7;
    font-weight: 400;
    font-size: 16px;
}

.story {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 48px;
    align-items: center;
    padding: 32px 0;
}

    .story.reverse {
        grid-template-columns: .85fr 1fr
    }

.copy h3 {
    margin-bottom: 14px;
    font-size: clamp(22px, 2.3vw, 30px);
    letter-spacing: -.02em;
}

.copy p {
    color: var(--muted);
    line-height: 1.75;
    font-weight: 400;
    font-size: 16.5px;
    max-width: 56ch;
}

.media {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.story.reverse .media {
    justify-content: flex-start
}

.circle {
    width: 320px;
    height: 320px;
    max-width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 8px solid color-mix(in srgb, var(--brand) 18%, transparent);
    background: linear-gradient(135deg, var(--blue1), var(--blue2));
    overflow: hidden;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

    .circle:hover {
        transform: translateY(-4px);
        box-shadow: 0 30px 70px rgba(13,22,38,.20)
    }

    .circle picture {
        display: contents
    }

    .circle img,
    .circle video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.03);
        z-index: 1;
    }

    .circle::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: radial-gradient(120% 100% at 30% 20%, rgba(255,255,255,.14), transparent 55%);
        pointer-events: none;
    }

.wave-section {
    background: var(--surface-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mini {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    padding: 26px 24px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

    .mini:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: color-mix(in srgb, var(--brand) 30%, transparent);
    }

    .mini .glyph {
        width: 46px;
        height: 46px;
        border-radius: var(--r-md);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
        background: color-mix(in srgb, var(--brand) 10%, transparent);
        color: var(--brand);
        margin-bottom: 18px;
    }

    .mini h4 {
        margin-bottom: 8px;
        font-size: 18px;
        letter-spacing: -.01em;
        font-weight: 600
    }

    .mini p {
        color: var(--muted);
        line-height: 1.7;
        font-weight: 400;
        font-size: 15px
    }

.about {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    padding: 34px;
    max-width: 900px;
    margin: 0 auto;
}

    .about p {
        color: var(--muted);
        line-height: 1.8;
        font-weight: 400;
        text-align: center;
        font-size: 16px
    }

    .about strong {
        color: var(--ink);
        font-weight: 600
    }

/* ---------- Footer ---------- */
footer {
    background: var(--blue0);
    color: rgba(255,255,255,.82);
    padding: 48px 0 40px;
}

.footer-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-brand {
    font-weight: 500;
    font-size: 14px;
    color: rgba(255,255,255,.72)
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 12px;
    font-size: 14px
}

    .footer-links a {
        color: rgba(255,255,255,.82);
        transition: color .18s var(--ease)
    }

        .footer-links a:hover {
            color: #fff;
            text-decoration: underline
        }

.contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
    font-style: normal
}

    .contact .line {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255,255,255,.82)
    }

        .contact .line a:hover {
            text-decoration: underline;
            color: #fff
        }

    .contact svg {
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
        color: var(--brand-soft)
    }

/* ---------- RTL ---------- */
html[dir="rtl"] .card {
    margin-inline-start: auto
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .hero-lead {
    max-width: none
}

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

    .reveal.in {
        opacity: 1;
        transform: none
    }

    .reveal.delay-1 {
        transition-delay: .07s
    }

    .reveal.delay-2 {
        transition-delay: .14s
    }

    .reveal.delay-3 {
        transition-delay: .21s
    }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal, .reveal.in {
        opacity: 1;
        transform: none
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: inline-flex
    }

    .btn-subscribe {
        display: none
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 130px
    }

    .card {
        margin-inline: auto;
        max-width: 520px
    }

    .story, .story.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center
    }

    .copy p {
        margin-inline: auto
    }

    .media, .story.reverse .media {
        justify-content: center;
        order: -1
    }

    .mini-grid {
        grid-template-columns: 1fr 1fr
    }

    section {
        padding: 68px 0
    }

    .hero-inner {
        padding-top: 48px
    }
}

@media (max-width: 720px) {
    .container {
        width: min(var(--max), calc(100% - 32px))
    }

    .topbar .wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .lang-btn .label {
        display: none
    }

    .lang-btn {
        padding: 0 12px
    }

    .nav {
        gap: 10px
    }

    .controls .btn-primary {
        display: none
    }

    .brand {
        min-width: 0
    }

        .brand img {
            max-width: 150px
        }

    .mini-grid {
        grid-template-columns: 1fr
    }

    .brand img {
        height: 38px
    }

    .circle {
        width: 260px;
        height: 260px
    }

    .hero-wave svg {
        height: 70px
    }

    section {
        padding: 56px 0
    }

    .about {
        padding: 26px 22px
    }

    .footer-row {
        flex-direction: column;
        gap: 24px
    }
}








.help-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.help-container {
    max-width: 1000px;
    margin: auto;
}

.help-header {
    text-align: center;
    margin-bottom: 40px;
}

    .help-header h2 {
        font-size: 36px;
        color: var(--ink);
        margin-bottom: 15px;
    }

    .help-header p {
        color: var(--muted);
        font-size: 18px;
    }


.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}


.faq-question {
    width: 100%;
    padding: 20px;
    border: none;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
}


.faq-icon {
    font-size: 24px;
}


.faq-answer {
    padding: 0 20px 20px;
    color: var(--muted);
    line-height: 1.6;
}


.help-footer {
    margin-top: 50px;
    text-align: center;
}


    .help-footer h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }


.help-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--ink);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}










.about-section {
    padding: 90px 20px;
    background: var(--bg);
}


.about-container {
    max-width: 1200px;
    margin: auto;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}


.about-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    background: #eef2ff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}



.about-text h2 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 25px;
}



.about-text p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}



.about-features {
    margin-top: 30px;
}



.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}



.feature-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    color: #16a34a;
    font-weight: bold;
}



.feature-item h4 {
    margin: 0 0 5px;
    color: var(--ink);
}



.feature-item p {
    margin: 0;
    font-size: 15px;
}



.about-button {
    display: inline-block;
    margin-top: 25px;
    padding: 13px 30px;
    background: var(--ink);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}



.about-image {
    display: flex;
    justify-content: center;
}



.image-card {
    width: 100%;
    height: 420px;
    border-radius: 25px;
    background: linear-gradient( 135deg, #0d1626, #334155 );
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
    padding: 40px;
    color: white;
}



.stat {
    display: flex;
    flex-direction: column;
}



    .stat strong {
        font-size: 42px;
    }



    .stat span {
        font-size: 16px;
        opacity: .8;
    }



@media(max-width:900px) {

    .about-content {
        grid-template-columns: 1fr;
    }


    .about-text h2 {
        font-size: 32px;
    }


    .about-image {
        margin-top: 30px;
    }
}












.footer-section {
    background: var(--ink);
    color: white;
    padding: 70px 20px 30px;
}



.footer-container {
    max-width: 1200px;
    margin: auto;
}



.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}



.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}



.footer-brand h3 {
    font-size: 32px;
    margin: 0 0 15px;
}



.footer-brand p {
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 350px;
}



.footer-column h4 {
    font-size: 17px;
    margin-bottom: 10px;
}



.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: .2s;
}



    .footer-column a:hover {
        color: white;
    }



.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}



    .social-links a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
    }



.footer-divider {
    height: 1px;
    background: rgba(255,255,255,.15);
    margin: 45px 0 25px;
}



.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 14px;
}



    .footer-bottom p {
        margin: 0;
    }



@media(max-width:900px) {


    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }


    .footer-brand {
        grid-column: span 2;
    }
}



@media(max-width:600px) {


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}



html,
body {
    height: auto;
    min-height: 100%;
    overflow-y: auto !important;
}

#app {
    min-height: 100vh;
}
}
