﻿:root {
    --exp-primary: #564895;
    --exp-primary-dark: #3d336d;
    --exp-primary-deep: #241f45;
    --exp-soft: #f2eef9;
    --exp-soft-2: #faf8fd;
    --exp-border: #e8e1f0;
    --exp-ink: #221f2d;
    --exp-muted: #726d7b;
    --exp-shadow: 0 22px 60px rgba(43, 36, 74, .13);
}

html {
    scroll-behavior: smooth;
}

.export-page {
    color: var(--exp-ink);
    background: #fff;
    overflow: clip;
}

    .export-page,
    .export-page a,
    .export-page button {
        font-family: inherit;
    }

        .export-page h1,
        .export-page h2,
        .export-page h3,
        .export-page p {
            margin-top: 0;
        }

        .export-page h2 {
            font-size: clamp(2rem, 4vw, 3.15rem);
            font-weight: 850;
            line-height: 1.14;
            letter-spacing: -.035em;
        }

        .export-page h3 {
            font-size: 1.1rem;
            font-weight: 800;
            line-height: 1.45;
        }

        .export-page p {
            color: var(--exp-muted);
            line-height: 1.86;
        }

.exp-section-space {
    padding-block: clamp(76px, 8vw, 122px);
}

.exp-heading {
    max-width: 820px;
    margin-bottom: 52px;
}

    .exp-heading h2 {
        margin-bottom: 16px;
    }

    .exp-heading p {
        max-width: 700px;
        margin-bottom: 0;
    }

    .exp-heading.text-center {
        margin-inline: auto;
    }

        .exp-heading.text-center p {
            margin-inline: auto;
        }

.exp-eyebrow {
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
    color: var(--exp-primary);
    font-size: .79rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.exp-btn-primary,
.exp-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 13px 24px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}

.exp-btn-primary {
    color: #fff;
    background: var(--exp-primary);
    border: 1px solid var(--exp-primary);
    box-shadow: 0 14px 32px rgba(86, 72, 149, .24);
}

    .exp-btn-primary:hover {
        color: #fff;
        background: var(--exp-primary-dark);
        transform: translateY(-2px);
    }

.exp-btn-outline {
    color: var(--exp-primary);
    background: transparent;
    border: 1px solid rgba(86, 72, 149, .42);
}

    .exp-btn-outline:hover {
        color: var(--exp-primary);
        background: var(--exp-soft);
        transform: translateY(-2px);
    }

[dir="rtl"] .exp-icon-flip {
    transform: scaleX(-1);
}

/* hero */
.exp-hero {
    position: relative;
    padding-top: clamp(60px, 7vw, 95px);
    background: radial-gradient(circle at 14% 16%, rgba(86, 72, 149, .12), transparent 28%), linear-gradient(180deg, #fff 0%, #fbf9ff 100%);
}

.exp-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: linear-gradient(rgba(86, 72, 149, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(86, 72, 149, .08) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
    pointer-events: none;
}

.exp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 14px;
    margin-bottom: 22px;
    color: var(--exp-primary);
    background: rgba(86, 72, 149, .1);
    border: 1px solid rgba(86, 72, 149, .16);
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 850;
}

.exp-hero-title {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 5vw, 4.85rem);
    font-weight: 900;

}

    .exp-hero-title span {
        color: var(--exp-primary);
    }

.exp-hero-text {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: 1.07rem;
}

.exp-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 28px;
}

    .exp-hero-points span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: var(--exp-ink);
        font-size: .88rem;
        font-weight: 800;
    }

    .exp-hero-points i {
        color: var(--exp-primary);
    }

.exp-hero-media {
    position: relative;
    max-width: 690px;
    margin-inline-start: auto;
}

    .exp-hero-media > img {
        display: block;
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 30px;
        box-shadow: var(--exp-shadow);
    }

.exp-hero-card {
    position: absolute;
    inset-inline-start: -34px;
    inset-block-end: -34px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 330px;
    padding: 18px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--exp-border);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(35, 29, 58, .17);
    backdrop-filter: blur(12px);
}

.exp-hero-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    color: var(--exp-primary);
    background: var(--exp-soft);
    border-radius: 14px;
    font-size: 1.35rem;
}

.exp-hero-card strong,
.exp-hero-card > div > span {
    display: block;
}

.exp-hero-card strong {
    margin-bottom: 3px;
    color: var(--exp-ink);
    font-size: .93rem;
    line-height: 1.4;
}

.exp-hero-card > div > span {
    color: var(--exp-muted);
    font-size: .78rem;
    line-height: 1.45;
}

/* markets */
.exp-markets {
    background: var(--exp-soft-2);
}

.exp-market-card {
    height: 100%;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--exp-border);
    border-radius: 22px;
    box-shadow: 0 8px 28px rgba(37, 31, 57, .05);
    text-align: start;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.exp-market-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    color: var(--exp-primary);
    background: var(--exp-soft);
    border-radius: 16px;
    font-size: 1.55rem;
    transition: transform .28s ease, background-color .28s ease, color .28s ease;
}

.exp-market-card h3 {
    margin-bottom: 10px;
}

.exp-market-card p {
    margin-bottom: 0;
    font-size: .9rem;
}

/* process */
.exp-process {
    position: relative;
    color: #fff;
    background: radial-gradient(circle at 82% 18%, rgba(104, 87, 173, .38), transparent 30%), linear-gradient(135deg, var(--exp-primary-deep), var(--exp-primary-dark));
}

.exp-process-pattern,
.exp-final-pattern {
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .72) 1px, transparent 0);
    background-size: 34px 34px;
    pointer-events: none;
}

.exp-process h2,
.exp-process p {
    color: #fff;
}

.exp-process p {
    color: rgba(255, 255, 255, .74);
}

.exp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.exp-process-card {
    height: 100%;
    padding: 24px 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .16);
    backdrop-filter: blur(10px);
    text-align: start;
}

.exp-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.exp-process-number {
    color: rgba(255,255,255,.28);
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 900;
}

.exp-process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: var(--exp-primary);
    background: #fff;
    border-radius: 16px;
    font-size: 1.4rem;
}

.exp-process-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.exp-process-card p {
    margin-bottom: 0;
    color: rgba(255,255,255,.72);
    font-size: .9rem;
}

/* map */
.exp-map {
    background: #fff;
}

.exp-map-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--exp-border);
    border-radius: 28px;
    box-shadow: var(--exp-shadow);
    background: linear-gradient(135deg, #fff, var(--exp-soft-2));
}

    .exp-map-card img {
        display: block;
        width: 100%;
        aspect-ratio: 1.25 / 1;
        object-fit: cover;
    }

.exp-map-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #fff;
    background: rgba(60, 50, 107, .94);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(35, 29, 58, .18);
}

.tag-jordan {
    top: 22%;
    left: 42%;
}

.tag-iraq {
    top: 34%;
    left: 69%;
}

.tag-syria {
    top: 18%;
    left: 50%;
}

.tag-palestine {
    top: 30%;
    left: 34%;
}

.exp-map-list {
    display: grid;
    gap: 16px;
}

.exp-map-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--exp-border);
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(43,35,70,.05);
    text-align: start;
}

.exp-map-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--exp-primary);
    background: var(--exp-soft);
    border-radius: 16px;
    font-size: 1.45rem;
}

.exp-map-item h3 {
    margin-bottom: 5px;
}

.exp-map-item p {
    margin-bottom: 0;
}

/* why */
.exp-why {
    position: relative;
    color: #fff;
    background: radial-gradient(circle at 12% 18%, rgba(117, 97, 191, .3), transparent 28%), linear-gradient(135deg, var(--exp-primary-dark), var(--exp-primary));
}

.exp-why-pattern {
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.72) 1px, transparent 0);
    background-size: 34px 34px;
    pointer-events: none;
}

.exp-why h2 {
    color: #fff;
    margin-bottom: 30px;
}

.exp-why-image {
    position: relative;
    max-width: 650px;
    margin-inline: auto;
}

    .exp-why-image img {
        display: block;
        width: 100%;
        aspect-ratio: .84 / 1;
        object-fit: cover;
        border: 8px solid rgba(255,255,255,.1);
        border-radius: 28px;
        box-shadow: 0 24px 70px rgba(0,0,0,.28);
    }

.exp-why-badge {
    position: absolute;
    inset-inline-end: -22px;
    inset-block-end: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 280px;
    padding: 15px 18px;
    color: var(--exp-primary);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,.22);
    font-size: .86rem;
    font-weight: 850;
}

.exp-why-list {
    display: grid;
    gap: 5px;
}

.exp-why-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    text-align: start;
}

    .exp-why-item:last-child {
        border-bottom: 0;
    }

.exp-why-number {
    color: rgba(255,255,255,.28);
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
}

.exp-why-item h3 {
    color: #fff;
    margin-bottom: 5px;
}

.exp-why-item p {
    margin-bottom: 0;
    color: rgba(255,255,255,.72);
}

/* stories */
.exp-stories {
    background: var(--exp-soft-2);
}

.exp-story-card {
    overflow: hidden;
    height: 100%;
    background: #fff;
    border: 1px solid var(--exp-border);
    border-radius: 23px;
    box-shadow: 0 10px 34px rgba(43, 35, 70, .07);
    transition: transform .28s ease, box-shadow .28s ease;
    text-align: start;
}

.exp-story-image {
    position: relative;
    overflow: hidden;
}

    .exp-story-image img {
        display: block;
        width: 100%;
        aspect-ratio: 1.35 / 1;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .exp-story-image span {
        position: absolute;
        inset-inline-start: 16px;
        inset-block-start: 16px;
        padding: 7px 11px;
        color: #fff;
        background: rgba(60, 50, 107, .92);
        border-radius: 999px;
        font-size: .72rem;
        font-weight: 850;
        backdrop-filter: blur(8px);
    }

.exp-story-body {
    padding: 25px;
}

    .exp-story-body h3 {
        margin-bottom: 9px;
    }

    .exp-story-body p {
        margin-bottom: 0;
        font-size: .92rem;
    }

/* philosophy */
.exp-philosophy {
    background: #fff;
}

.exp-philosophy-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: clamp(24px, 4vw, 46px);
    align-items: start;
    max-width: 1050px;
    margin-inline: auto;
    padding: clamp(30px, 5vw, 58px);
    background: radial-gradient(circle at 90% 10%, rgba(86, 72, 149, .1), transparent 30%), linear-gradient(135deg, #fff, var(--exp-soft-2));
    border: 1px solid var(--exp-border);
    border-radius: 30px;
    box-shadow: var(--exp-shadow);
}

.exp-philosophy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    color: #fff;
    background: var(--exp-primary);
    border-radius: 26px;
    box-shadow: 0 16px 34px rgba(86,72,149,.24);
    font-size: 2.35rem;
}

.exp-philosophy-card h2 {
    margin-bottom: 18px;
}

.exp-philosophy-card p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.exp-philosophy-card strong {
    display: block;
    color: var(--exp-primary);
    font-size: clamp(1.12rem, 2.4vw, 1.65rem);
    font-weight: 850;
}

/* final */
.exp-final {
    position: relative;
    padding-block: clamp(78px, 9vw, 124px);
    color: #fff;
    background: radial-gradient(circle at 18% 20%, rgba(255,255,255,.13), transparent 28%), linear-gradient(135deg, var(--exp-primary-dark), var(--exp-primary));
    overflow: hidden;
}

.exp-final-content {
    max-width: 880px;
    margin-inline: auto;
    text-align: center;
}

.exp-final-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 24px;
    color: var(--exp-primary);
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(19,14,40,.2);
    font-size: 2rem;
}

.exp-final-content h2 {
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.55rem);
}

.exp-final-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.82);
    font-size: 1.05rem;
}

.exp-final-content .btn {
    min-width: 190px;
    padding: 13px 22px;
    border-radius: 12px;
    font-weight: 800;
}

/* direction */
.export-page[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

.export-page[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

.export-page .text-center,
.export-page .exp-final-content {
    text-align: center !important;
}

/* reveal */
.export-page.exp-enhanced [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2,.65,.25,1);
    transition-delay: var(--reveal-delay, 0ms);
}

    .export-page.exp-enhanced [data-reveal].exp-visible {
        opacity: 1;
        transform: none;
    }

@media (hover: hover) and (pointer: fine) {
    .exp-market-card:hover {
        transform: translateY(-7px);
        border-color: rgba(86,72,149,.28);
        box-shadow: 0 18px 45px rgba(45,37,76,.11);
    }

        .exp-market-card:hover .exp-market-icon {
            color: #fff;
            background: var(--exp-primary);
            transform: rotate(-4deg) scale(1.05);
        }

    [dir="rtl"] .exp-market-card:hover .exp-market-icon {
        transform: rotate(4deg) scale(1.05);
    }

    .exp-story-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 19px 48px rgba(43,35,70,.12);
    }

        .exp-story-card:hover .exp-story-image img {
            transform: scale(1.055);
        }
}

@media (max-width: 1199.98px) {
    .exp-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .exp-hero-media {
        max-width: 760px;
        margin-inline: auto;
    }

    .exp-hero-card {
        inset-inline-start: 18px;
        inset-block-end: 18px;
    }

    .exp-why-image {
        max-width: 660px;
    }

    .exp-why-badge {
        inset-inline-end: 20px;
    }
}

@media (max-width: 767.98px) {
    .exp-section-space {
        padding-block: 68px;
    }

    .exp-hero {
        padding-top: 54px;
    }

    .exp-hero-title {
        font-size: clamp(2.2rem, 11vw, 3.45rem);
        letter-spacing: -.04em;
    }

    .exp-hero-card {
        position: static;
        max-width: none;
        margin-top: 14px;
    }

    .exp-process-grid {
        grid-template-columns: 1fr;
    }

    .exp-map-item,
    .exp-why-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .exp-map-item-icon,
    .exp-why-number {
        width: 48px;
        min-width: 48px;
    }

    .exp-philosophy-card {
        grid-template-columns: 1fr;
    }

    .exp-philosophy-icon {
        width: 72px;
        height: 72px;
        border-radius: 20px;
        font-size: 1.9rem;
    }

    .exp-map-tag {
        font-size: .68rem;
        padding: 6px 10px;
    }
}

@media (max-width: 575.98px) {
    .exp-btn-primary, .exp-btn-outline {
        width: 100%;
    }

    .exp-hero-points {
        gap: 12px 16px;
    }

    .exp-final-content .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .export-page.exp-enhanced [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

