/* YAZDA Landing Page - Based on Figma Design */

:root {
    /* Primary Brand Colors */
    --brand-300: #DFFFEB;
    --brand-400: #B3FFD0;
    --brand-500: #66EA98;
    --brand-600: #48CF7C;
    --brand-700: #3CAD67;

    /* Surface Colors */
    --surface-white: #FFFFFF;
    --surface-neutral-50: #F9FAFB;
    --surface-neutral-100: #F3F4F6;
    --surface-neutral-400: #9CA3AF;
    --surface-neutral-600: #4B5563;
    --surface-neutral-700: #374151;
    --surface-neutral-800: #1F2937;
    --surface-neutral-900: #111827;

    /* Warning Colors */
    --warning-50: #FEFCE8;
    --warning-100: #FEF9C3;
    --warning-200: #FEF08A;
    --warning-400: #FACC15;
    --warning-500: #EAB308;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    direction: rtl;
    background: var(--surface-white);
    color: var(--surface-neutral-900);
}

/* Navigation Bar */
.navbar {
    background: var(--brand-300) !important;
    border: 1px solid var(--brand-400);
    border-radius: 92px;
    padding: 0px 24px;
    margin: 32px auto;
    max-width: 1140px;
}

.navbar-brand .logo {
    width: 73px;
    height: 73px;
}

.navbar-nav {
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--surface-neutral-900);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link.active {
    font-weight: 700;
    color: var(--brand-700);
}

.navbar.navbar-expand-lg.navbar-light .nav-link.active {
    color: #3CAD67;
}

.nav-link:hover {
    color: var(--brand-700);
}

.btn-download-app {
    background: var(--brand-700);
    color: var(--surface-white);
    padding: 12px 18px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download-app:hover {
    background: var(--brand-600);
    color: var(--surface-white);
}

@media (min-width: 992px) {
    .navbar.navbar-expand-lg .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .navbar.navbar-expand-lg .navbar-brand {
        order: 1;
        margin: 0;
    }

    .navbar.navbar-expand-lg .navbar-collapse {
        order: 2;
        flex: 1;
        display: flex;
        align-items: center;
        width: 100%;
        margin: 0;
    }

    .navbar.navbar-expand-lg .navbar-nav {
        margin: 0 auto;
    }

    .navbar.navbar-expand-lg .btn-download-app {
        margin-inline-start: auto;
    }
}

/* Hero Section */
.hero-section {
    padding: 104px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 658px;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(180px);
    padding: 8px 20px;
    border-radius: 92px;
}

.badge-item img {
    width: 32px;
    height: 32px;
}

.badge-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--surface-white);
}

.equals-sign {
    font-size: 20px;
    font-weight: 700;
    color: var(--surface-neutral-900);
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--surface-neutral-900);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--surface-neutral-700);
    margin-bottom: 32px;
}

.hero-win-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-700);
    margin-bottom: 24px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--brand-700);
    color: var(--surface-white);
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--brand-600);
    color: var(--surface-white);
    transform: translateY(-2px);
}

.hero-info-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--surface-neutral-50);
    border-radius: 50px;
}

.info-badge img {
    width: 24px;
    height: 24px;
}

.info-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--surface-neutral-900);
}

.hero-image {
    flex: 1;
    max-width: 482px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left bottom;
}

/* Hero Background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 472px;
    background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-600) 100%);
    border-radius: 60px;
    z-index: -1;
}

/* Hero Section (Figma match) - scoped to Arabic home hero */
.hero-section.hero-section--figma::before {
    content: none;
}

.hero-section.hero-section--figma {
    /* Keep section spacing, but the background is now on .hero-card */
    padding-top: 48px;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.hero-section--figma .hero-card {
    position: relative;
    width: 100%;
    max-width: 1140px;
    height: 472px;
    margin: 0 auto;
    border-radius: 60px;
    overflow: hidden;
    background-color: transparent;
    background-image: url("images/figma/hero_desktop.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-section--figma .hero-card__accent {
    position: absolute;
    left: 560px;
    top: -85px;
    width: 660px;
    height: 697px;
    background: var(--brand-700);
    opacity: 0.55;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-section--figma .hero-card__pattern {
    position: absolute;
    left: 180px;
    top: 6px;
    width: 960px;
    height: 466px;
    background-image: url("images/figma/hero-pattern.svg");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.12;
    z-index: 2;
    pointer-events: none;
}

.hero-section--figma .hero-card__media {
    position: absolute;
    left: 0;
    top: -9px;
    width: 482px;
    height: 470px;
    z-index: 3;
    pointer-events: none;
}

.hero-section--figma .hero-card__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section--figma .hero-card__content {
    position: absolute;
    right: 40px;
    top: 104px;
    width: 658px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 48px;
    z-index: 4;
    text-align: right;
}

.hero-section--figma .hero-card__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 17px;
    width: 100%;
    text-align: right;
}

.hero-section--figma .hero-card__eyebrow {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.56;
    color: var(--surface-white);
    text-align: right;
    width: 100%;
}

.hero-section--figma .hero-card__headline {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--surface-white);
    text-align: right;
    width: 100%;
}

.hero-section--figma .hero-card__win {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--surface-white);
    text-align: right;
    width: 100%;
}

.hero-section--figma .hero-card__cta {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 18px;
    height: 46px;
    border-radius: 100px;
    background: var(--warning-500);
    color: var(--surface-white);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
    align-self: flex-start;
}

.hero-section--figma .hero-card__cta:hover {
    transform: translateY(-1px);
    background: var(--warning-400);
    color: var(--surface-white);
}

.hero-section--figma .hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(180px);
    border-radius: 92px;
    color: var(--surface-white);
}

.hero-section--figma .hero-pill__text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--surface-white);
}

.hero-section--figma .hero-pill__icon {
    width: 33px;
    height: 33px;
}

.hero-section--figma .hero-pill--prize {
    min-width: 164px;
    height: 55px;
    padding: 8px 16px;
}

.hero-section--figma .hero-pill--stats {
    min-width: 211px;
    height: 55px;
    padding: 8px 20px 8px 5px;
}

.hero-section--figma .hero-pill__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 41px;
    background: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--surface-white);
    white-space: nowrap;
}

.hero-section--figma .hero-card__meta {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-section--figma .hero-card__prize {
    position: absolute;
    left: 44px;
    top: 257px;
}

.hero-section--figma .hero-card__equals {
    position: absolute;
    left: 229px;
    top: 210px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--surface-neutral-900);
}

.hero-section--figma .hero-card__stats {
    position: absolute;
    left: 231px;
    top: 320px;
}

@media (max-width: 768px) {
    .hero-section.hero-section--figma {
        /* Must beat the later `.hero-section { padding: ... }` mobile rules */
        padding-top: 36px;
        padding-bottom: 40px;
    }

    .hero-section--figma .hero-card {
        /* Mobile Figma card is a compact fixed-width card */
        max-width: 420px;
        height: auto;
        aspect-ratio: 1673 / 2892;
        border-radius: 60px;
        padding-left: 24px;
        padding-right: 40px;
        display: flex;
        flex-direction: column;
        background-color: transparent;
        background-image: url("images/figma/Hero_mobile.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .hero-section--figma .hero-card__accent {
        /* Based on Figma mobile accent (large blurred ellipse) */
        left: 0px;
        top: 160px;
        width: 564px;
        height: 550px;
        filter: blur(112px);
        transform: none;
    }

    .hero-section--figma .hero-card__pattern {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0.12;
        background-size: cover;
    }

    .hero-section--figma .hero-card__content {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
        padding: 32px 16px 20px;
        align-items: flex-end;
        text-align: right;
        gap: 20px;
        direction: rtl;

    }

    .hero-section--figma .hero-card__copy {
        align-items: flex-end;
        gap: 12px;
    }

    .hero-section--figma .hero-card__eyebrow {
        font-size: 20px;
    }

    .hero-section--figma .hero-card__headline {
        font-size: 18px;
        line-height: 1.56;
        font-weight: 700;

    }

    .hero-section--figma .hero-card__win {
        font-size: 16px;
        font-weight: 500;
    }

    .hero-section--figma .hero-card__media {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 256.72px;
        z-index: 3;
        order: 2;
    }

    .hero-section--figma .hero-card__media-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 0 0 60px 60px;
    }

    .hero-section--figma .hero-card__meta {
        position: absolute;
        inset: auto 0 0 0;
        z-index: 5;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 16px 60px;
        direction: rtl;
        flex-wrap: nowrap;
    }

    .hero-section--figma .hero-card__prize,
    .hero-section--figma .hero-card__stats {
        position: static;
        flex: 0 0 auto;
    }

    .hero-section--figma .hero-card__prize {
        order: 2;
                      transform: translateY(-20px);


    }

    .hero-section--figma .hero-card__stats {
        order: 1;
                       transform: translateY(12px);

    }

    .hero-section--figma .hero-card__equals {
        display: none;
    }

    .hero-section--figma .hero-card__equals {
        padding: 0;
    }

    .hero-section--figma .hero-pill {
        width: auto;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(40px);
    }

    .hero-section--figma .hero-pill__text,
    .hero-section--figma .hero-pill__chip {
        font-size: 14px;
        line-height: 1;
    }

    .hero-section--figma .hero-pill__chip {
        padding: 8px 14px;
        margin: 0;
        line-height: 1;
    }

    .hero-section--figma .hero-pill--prize,
    .hero-section--figma .hero-pill--stats {
        min-width: 0;
        height: auto;
        padding-right:20px;
        padding-left: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .hero-section--figma .hero-pill--prize {
        padding-top: 2px;
        padding-bottom: 2px;
        padding-left: 10px;
        padding-right: 10px;
    }


}

/* About Section - "شو هو YAZDA؟" */
.about-section {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    background: var(--surface-white);
    overflow: hidden;
    margin: 0;
}

/* Match hero width (1140px) */
.about-section > .container {
    max-width: 1140px;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1200px) {
    .about-section > .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.about-section::before {
    content: "";
    position: absolute;
    top: -219px;
    right: -470px;
    width: 892px;
    height: 892px;
    background: #DFFFEB;
    opacity: 0.3;
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 0;
    position: relative;
    z-index: 1;
    direction: ltr;
}

.about-text {
    flex: 1;
    max-width: 466px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 36px;
    direction: rtl;
}

.about-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--surface-neutral-900);
    margin: 0;
}

.about-title__star {
    display: inline-block;
    width: 75px;
    height: 27px;
    margin-top: -48px;
    margin-bottom: 0;
    pointer-events: none;
}

.about-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--surface-neutral-700);
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    direction: rtl;
}

.about-feature-item .icon {
    width: 40px;
    height: 43px;
    flex-shrink: 0;
    color: var(--brand-700);
}

.about-feature-item__icon {
    width: 40px;
    height: 43px;
    flex-shrink: 0;
    object-fit: contain;
    object-position: left bottom;
}

.about-feature-item p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--surface-neutral-900);
    margin: 0;
}

.about-mockups {
    flex: 1;
    max-width: 561px;
    position: relative;
}

.about-mockups--figma {
    width: min(587px, 100%);
    max-width: 587px;
    aspect-ratio: 587 / 563;
    height: auto;
    padding: 0;
}

.about-mockups--figma img {
    display: block;
}

.about-mockups__shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-mockups__mockups {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 78.8%;
    height: auto;
    z-index: 1;
}

.about-mockups__star {
    position: absolute;
    left: 23.2%;
    top: 15.7%;
    width: 12.8%;
    height: auto;
    z-index: 2;
}

/* Divider Line */
.section-divider {
    width: 1138px;
    height: 2px;
    background: var(--surface-neutral-100);
    margin: 0 auto;
}

/* Steps Section - "خطوات الدخول للتحدي" */
.steps-section {
    padding: 80px 0;
    background: var(--surface-white);
    border-radius: 50px;
}

.steps-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 96px 40px 96px 0;
}

.steps-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--surface-neutral-900);
    margin-bottom: 48px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: var(--surface-white);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: var(--surface-neutral-50);
}

.step-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
}

.step-content {
    flex: 1;
}

.step-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-700);
    margin-bottom: 8px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--surface-neutral-900);
    margin-bottom: 8px;
}

.step-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--surface-neutral-700);
}

/* Steps Section (Figma) - Arabic landing refresh */
.steps-section.steps-section--figma {
    padding: 0px 12px 12px;
    background: var(--surface-white);
    border-radius: 0;
}

@media (min-width: 769px) {
    .steps-section.steps-section--figma {
        padding-top: 0;
    }
}

.steps-section--figma .steps-frame {
    width: min(1140px, 100% - 32px);
    height: 350px;
    margin: 0 auto;
    background: var(--surface-white);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0px 40px 0px 0;
    direction: ltr;
}

.steps-section--figma .steps-visual {
    width: 561px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.steps-section--figma .steps-visual__mask {
    width: 561px;
    height: 240px;
    background: #D9D9D9;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-section--figma .steps-visual__track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    width: max-content;
    padding: 0 120px;
    height: 100%;
    will-change: transform;
}

.steps-section--figma .steps-visual__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 8px;
    min-width: 140px;
    background: var(--surface-white);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
    position: relative;
    z-index: 1;
    cursor: pointer;
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.steps-section--figma .steps-visual__card::after {
    content: "";
    position: absolute;
    left: -28px;
    top: 50%;
    width: 32px;
    height: 0;
    border-top: 1px dashed var(--surface-neutral-400);
    transform: translateY(-50%);
    opacity: 0.9;
}

.steps-section--figma .steps-visual__card:first-child::after {
    display: none;
}

.steps-section--figma .steps-visual__card--active::after {
    border-top-color: var(--brand-700);
}

.steps-section--figma .steps-visual__media {
    width: 108px;
    height: 108px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.steps-section--figma .steps-visual__label {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--surface-neutral-500);
}

.steps-section--figma .steps-visual__card--active .steps-visual__label {
    color: var(--surface-neutral-900);
}

.steps-section--figma .steps-visual__mask--scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    direction: ltr;
}

.steps-section--figma .steps-visual__mask--scroll:active {
    cursor: grabbing;
}

.steps-section--figma .steps-visual__mask--scroll::-webkit-scrollbar {
    display: none;
}

.steps-section--figma .steps-content {
    width: 539px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    text-align: right;
    direction: rtl;
}

.steps-section--figma .steps-heading {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.steps-section--figma .steps-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--surface-neutral-900);
    direction: rtl;
    text-align: center;
}

.steps-section--figma .steps-title__underline {
    display: block;
    width: 183px;
    height: 25px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: 300px;
    align-self: flex-start;
    background: url("images/figma/line.png") no-repeat center / contain;
}

.steps-section--figma .steps-items {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.steps-section--figma .steps-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: right;
}

.steps-section--figma .steps-item__icon {
    width: 44px;
    height: 44px;
    position: relative;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--surface-white);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
    overflow: hidden;
}

.steps-section--figma .steps-item__text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--surface-neutral-900);
    flex: 1;
}

.steps-section--figma .steps-item--highlight .steps-item__text {
    color: var(--brand-700);
}

/* Steps Section (Figma) - Horizontal scroll list */
.steps-section--figma .steps-frame.steps-frame--scroll {
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0 40px 40px;
}

.steps-section--figma .steps-frame.steps-frame--scroll .steps-heading {
    padding-bottom: 0;
}

.steps-section--figma .steps-stepper {
    position: relative;
    width: 100%;
    padding: 24px 12px 8px;
}

.steps-section--figma .steps-progress-line {
    position: absolute;
    top: 58px;
    left: calc(12px + 110px);
    right: calc(12px + 110px);
    height: 4px;
    background: var(--surface-neutral-100);
    border-radius: 999px;
    z-index: 1;
}

.steps-section--figma .steps-progress-fill {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: var(--brand-700);
    border-radius: 999px;
    transition: width 0.5s ease, height 0.5s ease;
}

.steps-section--figma .steps-stepper-list {
    list-style: none;
    margin: 0;
    padding: 0 4px 12px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
    direction: rtl;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    -ms-overflow-style: none;
    overscroll-behavior: contain;
}

.steps-section--figma .steps-stepper-list:active {
    cursor: grabbing;
}

.steps-section--figma .steps-stepper-list::-webkit-scrollbar {
    display: none;
}

.steps-section--figma .steps-stepper-item {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    scroll-snap-align: center;
    cursor: pointer;
    position: relative;
}

@media (min-width: 769px) {
    .steps-section--figma .steps-stepper-item::before {
        content: "";
        position: absolute;
        right: calc(100% + 16px);
        top: 34px;
        width: 32px;
        height: 24px;
        background: url("images/figma/line_horz.png") no-repeat center / contain;
        opacity: 1;
    }

    .steps-section--figma .steps-stepper-item:first-child::before {
        display: none;
    }
}

@media (min-width: 1025px) {
    .steps-section.steps-section--figma {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .steps-section--figma .steps-frame,
    .steps-section--figma .steps-frame.steps-frame--scroll {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .steps-section--figma .steps-stepper {
        padding: 12px 24px 0;
    }

    .steps-section--figma .steps-progress-line {
        display: none;
    }

    .steps-section--figma .steps-stepper-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 72px 72px;
        align-items: start;
        justify-items: center;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
        cursor: default;
    }

    .steps-section--figma .steps-stepper-item {
        width: 100%;
        max-width: 260px;
    }

    .steps-section--figma .steps-stepper-item::before {
        content: none;
    }

    .steps-section--figma .steps-stepper-item::after {
        content: "";
        position: absolute;
        right: calc(100% + 20px);
        top: 34px;
        width: 54px;
        height: 24px;
        background: url("images/figma/line_horz.png") no-repeat center / contain;
    }

    .steps-section--figma .steps-stepper-item:nth-child(3)::after,
    .steps-section--figma .steps-stepper-item:nth-child(4)::after {
        display: none;
    }

    .steps-section--figma .steps-stepper-item:nth-child(n + 4)::after {
        background-image: url("images/figma/line_right.png");
    }

    .steps-section--figma .steps-stepper-item:nth-child(1) { order: 1; }
    .steps-section--figma .steps-stepper-item:nth-child(2) { order: 2; }
    .steps-section--figma .steps-stepper-item:nth-child(3) { order: 3; }
    .steps-section--figma .steps-stepper-item:nth-child(4) { order: 6; }
    .steps-section--figma .steps-stepper-item:nth-child(5) { order: 5; }
    .steps-section--figma .steps-stepper-item:nth-child(6) { order: 4; }

    .steps-section--figma .steps-stepper-item:nth-child(4)::before {
        content: "";
        position: absolute;
        top: -50px;
        right: 45%;
        width: 14px;
        height: 45px;
        background: url("images/figma/line_buttom.png") no-repeat center / contain;
        transform: translateX(-50%);
    }
}

.steps-section--figma .stepper-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    position: relative;
}

.steps-section--figma .stepper-icon__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.steps-section--figma .stepper-icon__img--active {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.98);
}

.steps-section--figma .stepper-text {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #111827;
    transition: color 0.5s ease;
}

.steps-section--figma .steps-stepper-item.active .stepper-text {
    color: #111827;
}

.steps-section--figma .steps-stepper-item.active .stepper-icon__img--inactive {
    opacity: 0;
}

.steps-section--figma .steps-stepper-item.active .stepper-icon__img--active {
    opacity: 1;
    transform: scale(1);
}

.steps-section--figma .steps-scroll {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 12px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    direction: rtl;
}

.steps-section--figma .steps-scroll::-webkit-scrollbar {
    height: 6px;
}

.steps-section--figma .steps-scroll::-webkit-scrollbar-thumb {
    background: var(--surface-neutral-400);
    border-radius: 999px;
}

.steps-section--figma .steps-scroll__item {
    flex: 0 0 auto;
    width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    position: relative;
    scroll-snap-align: center;
}

.steps-section--figma .steps-scroll__item::after {
    content: "";
    position: absolute;
    right: calc(100% + 24px);
    top: 20px;
    width: 32px;
    height: 24px;
    border: 0;
    background: url("images/figma/line_horz.png") no-repeat center / contain;
}

.steps-section--figma .steps-scroll__item:last-child::after {
    display: none;
}

.steps-section--figma .steps-scroll__icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    object-position: center;
}

.steps-section--figma .steps-scroll__text {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: #111827;
}

.steps-section--figma .parallax-layer {
    position: absolute;
    inset: 0;
    display: block;
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
}

.steps-section--figma .parallax-layer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.steps-section--figma .parallax-layer--back {
    transform: translate(-6px, 6px) scale(0.96);
    opacity: 0.55;
    filter: blur(0.6px);
}

.steps-section--figma .parallax-layer--front {
    transform: translate(0, 0) scale(1);
}

.steps-section--figma .parallax-card:hover .parallax-layer--back,
.steps-section--figma .steps-item:hover .parallax-layer--back {
    transform: translate(-10px, 10px) scale(0.94);
    opacity: 0.45;
}

.steps-section--figma .parallax-card:hover .parallax-layer--front,
.steps-section--figma .steps-item:hover .parallax-layer--front {
    transform: translate(6px, -6px) scale(1.04);
}

@media (max-width: 1200px) {
    .steps-section--figma .steps-frame {
        width: calc(100% - 32px);
        padding: 72px 32px 72px 16px;
    }

    .steps-section--figma .steps-visual,
    .steps-section--figma .steps-visual__mask {
        width: 100%;
        max-width: 561px;
    }
}

@media (max-width: 1024px) {
    .steps-section--figma .steps-frame {
        flex-direction: column;
        height: auto;
        padding: 48px 24px;
        gap: 32px;
        direction: rtl;
    }

    .steps-section--figma .steps-visual {
        width: 100%;
        height: auto;
    }

    .steps-section--figma .steps-visual__mask {
        width: 100%;
    }

    .steps-section--figma .steps-visual__track {
        width: max-content;
        padding: 0 80px;
        justify-content: flex-start;
    }

    .steps-section--figma .steps-content {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .steps-section--figma .steps-items {
        align-items: center;
    }

    .steps-section--figma .steps-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .steps-section--figma .steps-item__text {
        text-align: center;
    }

    .steps-section--figma .steps-frame.steps-frame--scroll {
        padding: 12px 24px 24px;
    }

    .steps-section--figma .steps-scroll {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .steps-section--figma {
        padding: 24px 0 0;
        margin-bottom: 0;
    }

    .steps-section--figma .steps-frame {
        border-radius: 32px;
        padding: 36px 18px;
    }

    .steps-section--figma .steps-title {
        font-size: 32px;
        font-weight: 700;
        white-space: nowrap;
    }

    .steps-section--figma .steps-title__underline {
        width: 140px;
        height: 20px;
        margin: 8px auto 0;
        align-self: center;
    }

    .steps-section--figma .steps-item__text {
        font-size: 18px;
    }

    .steps-section--figma .steps-visual__mask {
        height: 220px;
    }

    .steps-section--figma .steps-visual__card {
        min-width: 128px;
    }

    .steps-section--figma .steps-visual__label {
        font-size: 18px;
    }

    .steps-section--figma .steps-visual__card::after {
        display: none;
    }

    .steps-section--figma .steps-visual__track {
        padding: 0 48px;
    }

    .steps-section--figma .steps-frame.steps-frame--scroll {
        padding: 12px 18px 0;
        gap: 24px;
    }

    .steps-section--figma .steps-stepper {
        padding: 0;
    }

    .steps-section--figma .steps-progress-line {
        display: none;
    }

    .steps-section--figma .steps-progress-fill {
        width: 100%;
        height: 0%;
    }

    .steps-section--figma .steps-stepper-list {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding-right: 0;
        overflow: visible;
        scroll-snap-type: none;
        scrollbar-width: none;
        cursor: default;
    }

    .steps-section--figma .steps-stepper-list::-webkit-scrollbar {
        display: none;
    }

    .steps-section--figma .steps-stepper-item {
        width: min(240px, 100%);
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        position: relative;
    }

    .steps-section--figma .stepper-icon {
        width: 88px;
        height: 88px;
    }


    .steps-section--figma .stepper-text {
        font-size: 16px;
        text-align: center;
        font-weight: 700;
        color: #111827;
    }

    .steps-section--figma .steps-stepper-item.active .stepper-text {
        color: #111827;
    }

    .steps-section--figma .steps-stepper-item::after {
        content: "";
        display: block;
        width: 14px;
        height: 48px;
        background: url("images/figma/line_buttom.png") no-repeat center / contain;
        margin-top: 10px;
    }

    .steps-section--figma .steps-stepper-item:last-child::after {
        display: none;
    }

    .steps-section--figma .steps-stepper-item.active::after {
        background: url("images/figma/line_buttom.png") no-repeat center / contain;
    }
}

/* How to Win Section - "كيف بتفوز؟" */
.how-to-win-section {
    padding: 80px 0;
    background: var(--surface-neutral-800);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.how-to-win-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    align-items: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-to-win-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--surface-white);
    margin-bottom: 48px;
    text-align: center;
}

.formulas-section {
    margin-bottom: 48px;
}

.formula-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.formula-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(180px);
    padding: 8px 20px;
    border-radius: 92px;
}

.formula-box span {
    font-size: 18px;
    font-weight: 600;
    color: var(--surface-white);
}

.formula-equals {
    font-size: 20px;
    font-weight: 700;
    color: var(--surface-white);
}

.paths-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    width: 100%;
}

.path-card {
    width: 295px;
    background: transparent;
    border-radius: 20px;
    padding: 7px 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: right;
}

.path-card.success {
    background: transparent;
    border: none;
}

.path-card.fail {
    background: transparent;
    border: none;
}

.path-card.win {
    background: transparent;
    border: none;
}

.path-icon {
    width: 64px;
    height: 64px;
    border-radius: 13px;
    background: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.path-icon svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
}

.path-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
}

.path-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
}

.path-title,
.path-description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Background Pattern for How to Win Section */
.how-to-win-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 21px);
    opacity: 0.12;
    z-index: 1;
}

/* How to Win Section - Figma base layout */
.how-to-win-section.yazda-info {
    height: 417px;
    padding: 0;
    background: #1F2937;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    direction: rtl;
    max-width: 1140px;
    margin: 0 auto;
}

.how-to-win-section.yazda-info .how-to-win-container {
    max-width: 1140px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 59px;
}

.how-to-win-section.yazda-info .yazda-info__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px;
}

.how-to-win-section.yazda-info .yazda-info__top {
    width: 482px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.how-to-win-section.yazda-info .how-to-win-title.yazda-info__title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

.how-to-win-section.yazda-info .yazda-info__formulas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
}

.how-to-win-section.yazda-info .yazda-info__formula {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-direction: row-reverse;
}

.how-to-win-section.yazda-info .yazda-info__formula-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.how-to-win-section.yazda-info .yazda-info__formula-text span,
.how-to-win-section.yazda-info .yazda-info__equals {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: #FFFFFF;
}

.how-to-win-section.yazda-info .yazda-info__formula-icon {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
    object-position: left bottom;
}

.how-to-win-section.yazda-info .yazda-info__cards {
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.how-to-win-section.yazda-info .yazda-info__card {
    width: max-content;
    border-radius: 20px;
    padding: 7px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: #FFFFFF;
    flex-direction: row;
    direction: ltr;
}

.how-to-win-section.yazda-info .yazda-info__text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
    flex: 0 1 auto;
}

.how-to-win-section.yazda-info .yazda-info__card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.how-to-win-section.yazda-info .yazda-info__card-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.how-to-win-section.yazda-info .yazda-info__icon {
    width: 64px;
    height: 64px;
    border-radius: 13px;
    background: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    order: 1;
}

.how-to-win-section.yazda-info .yazda-info__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: left bottom;
}

.how-to-win-section.yazda-info .yazda-info__divider {
    width: 1px;
    height: 64px;
    background: rgba(255, 255, 255, 0.24);
    flex-shrink: 0;
    margin-inline: 0;
}

.how-to-win-section.yazda-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.25;
    z-index: 1;
    mask-image: radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.05) 96%);
}

/* Testimonials Section - "?? ????? ???" */
.testimonials-section {
    padding: 80px 0;
    background: var(--surface-white);
}

.testimonials-container {
    max-width: 1140px;
    margin: 0 auto;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.testimonials-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--surface-neutral-900);
    margin-top: 0;
    margin-bottom: 32px;
    text-align: center;
    align-self: center;
}

.testimonials-why {
    width: auto;
    height: 140px;
    margin: 0;
    display: block;
}

.testimonials-ornament {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.testimonials-arrow {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonials-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

.avatar-bubble {
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.avatar-bubble img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    object-position: left bottom;
}

.avatar-bubble--sm {
    width: 24px;
    height: 24px;
}

.avatar-bubble--md {
    width: 32px;
    height: 32px;
}

.avatar-bubble--lg {
    width: 40px;
    height: 40px;
}

.avatar-bubble--xl {
    width: 48px;
    height: 48px;
}

.avatar-bubble--neutral-200 {
    background-color: #E5E7EB;
}

.avatar-bubble--neutral-300 {
    background-color: #D1D5DB;
}

.avatar-bubble--brand {
    background-color: var(--brand-700);
}

.testimonials-cards {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 26px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    direction: ltr;
}

.testimonials-cards::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc((100% - 52px) / 3);
    max-width: calc((100% - 52px) / 3);
    background: var(--surface-white);
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    text-align: right;
    height: 159px;
    scroll-snap-align: start;
    direction: rtl;
}

.testimonial-quote {
    margin: 0;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--surface-neutral-900);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: auto;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--surface-neutral-900);
}

.testimonial-avatar {
    width: 24px;
    height: 24px;
    border-radius: 24px;
    background: var(--brand-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    object-position: left bottom;
}

@media (max-width: 992px) {
    .testimonials-title {
        font-size: 40px;
        margin-bottom: 32px;
        align-self: center;
        text-align: center;
    }

    .testimonials-cards {
        flex-direction: row;
        align-items: stretch;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 26px) / 2);
        max-width: calc((100% - 26px) / 2);
        height: auto;
    }

    .testimonial-quote {
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}

@media (max-width: 576px) {
    .faq-section.faq-section--figma {
        padding: 24px 16px;
        margin-top: 8px;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-why {
        width: 100%;
        height:auto;
    }

    .testimonials-avatars {
        gap: 10px;
    }

    .testimonials-cards {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
        padding: 8px 16px 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonials-cards::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 92%;
        max-width: 92%;
        scroll-snap-align: center;
        height: auto;
    }
}

/* Subscription Section - "???? ????????" (Figma) */
.subscription-section.subscription-section--figma {
    padding: 0;
    background: transparent;
    position: relative;
}

.subscription-card {
    position: relative;
    width: 1112px;
    height: auto;
    margin: 0 auto;
    border-radius: 50px;
    background: var(--warning-50);
    overflow: hidden;
    padding: 32px 40px;
    display: grid;
    grid-template-columns: 462px minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
        "header header"
        "visuals accordion";
    column-gap: 0px;
    row-gap: 0px;
    box-sizing: border-box;
}

.subscription-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(250, 204, 21, 0.4) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.35;
    z-index: 0;
    -webkit-mask-image: radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.04) 96%);
    mask-image: radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.04) 96%);
}

.subscription-card__accent {
    position: absolute;
    left: 699px;
    top: 210px;
    width: 564px;
    height: 660px;
    background: var(--warning-200);
    opacity: 0.5;
    filter: blur(112px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.subscription-card__header {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    grid-area: header;
}

.subscription-card__title {
    width: 594px;
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--surface-neutral-900);
}

.subscription-card__subtitle {
    width: 530px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.56;
    color: var(--surface-neutral-700);
}

.subscription-accordion {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    direction: ltr;
    z-index: 2;
    grid-area: accordion;
}

.accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: 16px;
    padding: 20px 16px;
    border-radius: 20px;
    background: transparent;
}

.accordion-toggle__text {
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--surface-neutral-900);
}

.accordion-toggle__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.subscription-visuals {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 366px;
    height: 237px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    grid-area: visuals;
    align-self: center;
    justify-self: center;
}

.subscription-visuals__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
}

/* FAQ Section - "??????? ???????" (Figma) */
.faq-section.faq-section--figma {
    position: relative;
    padding: 40px 0;
    min-height: auto;
    background: var(--surface-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

.faq-section.faq-section--figma .faq-section__container {
    max-width: 1140px;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
}

.faq-section.faq-section--figma .faq-layout {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 16px;
}

.faq-section.faq-section--figma .faq-accordion {
    flex: 1 1 596px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-section.faq-section--figma .faq-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--surface-neutral-50);
}

.faq-section.faq-section--figma .faq-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 16px;
    cursor: pointer;
}

.faq-section.faq-section--figma .faq-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--surface-neutral-900);
    text-align: right;
    width: 100%;
    padding-bottom: 1px;
}

.faq-section.faq-section--figma .faq-item.is-open .faq-title {
    color: var(--brand-700);
    font-weight: 700;
}

.faq-section.faq-section--figma .faq-icon {
    width: 24px;
    height: 24px;
    background: none !important;      /* إزالة اللون الأخضر */
    background-color: transparent !important; /* للتأكيد على شفافية الخلفية */
    border: none !important;          /* إزالة أي إطار دائر */
    border-radius: 0 !important;      /* إلغاء استدارة الزوايا */
    box-shadow: none !important;      /* إزالة أي ظل قد يوحي بوجود شكل */
    padding: 0 !important;            /* إزالة المسافات الداخلية التي تظهر اللون */
    display: flex;                    /* لضمان بقاء الأيقونة في المنتصف */
    align-items: center;
    justify-content: center;
}

.faq-section.faq-section--figma .faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 16px;
    gap: 10px;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-section.faq-section--figma .faq-item.is-open .faq-answer {
    max-height: 220px;
    opacity: 1;
}

.faq-section.faq-section--figma .faq-icon .icon-plus,
.faq-section.faq-section--figma .faq-icon .icon-minus {
    display: none;
}

.faq-section.faq-section--figma .faq-item.is-open .faq-icon .icon-minus {
    display: block;
}

.faq-section.faq-section--figma .faq-item:not(.is-open) .faq-icon .icon-plus {
    display: block;
}

.faq-section.faq-section--figma .faq-answer p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--surface-neutral-900);
    text-align: right;
}

.faq-section.faq-section--figma .faq-copy {
    flex: 1 1 503px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: right;
}

.faq-section.faq-section--figma .faq-heading {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--surface-neutral-900);
    max-width: 503px;
}

.faq-section.faq-section--figma .faq-description {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56;
    color: var(--surface-neutral-700);
    max-width: 530px;
}

.faq-section.faq-section--figma .faq-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.faq-section.faq-section--figma .faq-decor--top {
    left: 0;
    top: 0;
    width: 1440px;
    height: 405.52px;
}

.faq-section.faq-section--figma .faq-decor--top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section.faq-section--figma .faq-illustration {
    width: 500px;
    height: 495px;
    align-self: flex-end;
    margin-top: 24px;
}

.faq-section.faq-section--figma .faq-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
}

@media (max-width: 1200px) {
    .faq-section.faq-section--figma {
        padding: 48px 20px;
    }

    .faq-section.faq-section--figma .faq-layout {
        flex-direction: column;
        align-items: flex-end;
        gap: 28px;
    }

    .faq-section.faq-section--figma .faq-decor--top {
        width: 100%;
        height: auto;
    }

    .faq-section.faq-section--figma .faq-illustration {
        width: 320px;
        height: auto;
        align-self: center;
    }
}

/* Footer Section (Figma) */
.footer-figma {
    padding: 56px 0 0;
    background: transparent;
}

.footer-figma__container {
    max-width: 1140px;
    padding: 0;
}

.footer-figma__card {
    position: relative;
    width: 1140px;
    height: 586px;
    margin: 0 auto;
    border-radius: 60px;
    background-color: var(--surface-white);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    direction: rtl;
}

.footer-figma__content {
    position: absolute;
    right: 40px;
    top: 142px;
    width: 502px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    text-align: right;
    direction: rtl;
    z-index: 2;
}

.footer-figma__pattern {
    position: absolute;
    left: -485px;
    top: -62px;
    width: 1113px;
    height: 436px;
    background-image: radial-gradient(circle, rgba(17, 24, 39, 0.12) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.footer-figma__title-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 1;
    width: 100%;
}

.footer-figma__title {
    margin: 0;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 1.5;
    color: var(--surface-neutral-900);
    white-space: nowrap;
    width: 100%;
    text-align: right;
}

.footer-figma__title-accent {
    position: relative;
    color: var(--brand-700);
    padding: 0;
    z-index: 1;
    width: 224px;
    height: 102px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.footer-figma__title-accent::before {
    content: "";
    position: absolute;
    inset: -8px -12px;
    border: 4px solid var(--brand-700);
    border-radius: 999px;
    transform: rotate(-2deg);
    z-index: -1;
}

.footer-figma__underline {
    display: block;
    width: 150px;
    height: 6px;
    background: var(--brand-700);
    border-radius: 999px;
    align-self: flex-end;
    transform: rotate(-2deg);
}

.footer-figma__features {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 17px;
    z-index: 1;
}

.footer-figma__feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--surface-neutral-900);
}

.footer-figma__feature-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0;
}

.footer-figma__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    z-index: 1;
    width: 100%;
    max-width: 380px;
    align-self: flex-start;
}

.footer-figma__store {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    height: 55px;
    padding: 0 18px;
    border-radius: 14px;
    background: #FFFFFF;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
    text-decoration: none;
    color: #000000;
    font-family: "Cairo", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-align: right;
}

.footer-figma__store-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.footer-figma__store-text {
    grid-column: 2;
    grid-row: 1;
    display: block;
}

.footer-figma__store-name {
    grid-column: 2;
    grid-row: 2;
    display: block;
}

.footer-figma__store-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-copyright {
    padding-top: 24px;
    margin-top: 24px;
    background: transparent;
    text-align: center;
}

.footer-copyright p {
    font-size: 14px;
    font-weight: 400;
    color: var(--surface-neutral-700);
    margin: 0;
}

@media (max-width: 1200px) {
    .footer-figma__container {
        padding: 0 20px;
    }

    .footer-figma__card {
        width: 100%;
    }

    .footer-figma__content {
        right: 24px;
        width: min(502px, 100%);
    }

}

@media (max-width: 768px) {
    #footer-container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        background-image: none !important;
    }

    .footer-figma {
        padding-top: 32px;
    }

    .footer-figma__card {
        height: 100vh;
        min-height: 670px;
        padding: 28px 18px 24px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 100%;
    }

    .footer-figma__content {
        position: relative;
        right: 0;
        top: auto;
        width: 100%;
        order: 1;
        padding-right: 0px;
    }

    .footer-figma__title {
        font-size: 32px;
        width: 100%;
        text-align: right;
        white-space: nowrap;
    }

    .footer-figma__title-wrap {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .footer-figma__title-accent {
        width: 121px;
        height: 55px;
    }

    .footer-figma__features {
        width: 100%;
    }

    .footer-figma__feature {
        font-size: 14px;
    }

    .footer-figma__actions {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        order: 2;
    }

    .footer-figma__store {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        height: 48px;
        padding: 0 12px;
        border-radius: 12px;
        box-shadow: none;
    }

    .footer-figma__store-text,
    .footer-figma__store-name {
        font-size: 13px;
        line-height: 1.2;
    }

}

/* Download Section Button */
.download-section {
    padding: 40px 0;
    text-align: center;
}

.download-section-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-neutral-900);
    border: 1px solid var(--surface-neutral-600);
    color: var(--surface-white);
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    transition: all 0.3s ease;
}

.download-section-btn:hover {
    background: var(--surface-neutral-800);
    color: var(--surface-white);
    transform: translateY(-2px);
}

.download-section-btn img {
    width: 40px;
    height: 40px;
}

/* Responsive Styles - Mobile */
@media (max-width: 768px) {
    /* Container Adjustments */
    .navbar,
    .hero-content,
	    .about-section > .container,
    .steps-container,
    .how-to-win-container,
    .testimonials-container,
    .subscription-container,
    .faq-container,
    .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Navigation */
    .navbar {
        border-radius: 50px;
        padding: 16px 20px;
        margin: 16px 20px;
    }

    .navbar-brand .logo {
        width: 50px;
        height: 50px;
    }

    .navbar-nav {
        gap: 0;
        padding-top: 0;
    }

    .navbar-toggler,
    .navbar-nav {
        display: none !important;
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0px;
    }

    .navbar-collapse {
        display: flex !important;
        flex: 0 0 auto;
        width: auto;
    }

    .btn-download-app {
        width: auto;
        margin-top: 0;
    }

    .nav-link {
        font-size: 16px;
    }

    .btn-download-app {
        width: 100%;
        text-align: center;
        margin-top: 0px;
    }

    /* Hero Section */
    .hero-section {
        padding: 60px 0;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-info-badges {
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-section::before {
        height: 350px;
        border-radius: 30px;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 0px;
    }

    .about-text {
        max-width: 100%;
	        text-align: center;
	        align-items: center;
    }

    .about-title {
	        font-size: 32px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-mockups {
        max-width: 100%;
    }

	    .about-feature-item {
	        justify-content: center;
	    }

    .about-features {
        gap: 16px;
    }

    .about-feature-item p {
        font-size: 16px;
        font-weight: 700;
    }

    .about-feature-item .icon,
    .about-feature-item__icon {
        width: 40px;
        height: 43px;
    }

    /* Steps Section */
    .steps-title {
        font-size: 32px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-title {
        font-size: 20px;
    }

    /* How to Win Section */
    .how-to-win-title {
        font-size: 32px;
    }

    .paths-grid {
        grid-template-columns: 1fr;
        align-items: center;
    }

    /* How to Win Section - yazda-info (Mobile) */
    .how-to-win-section.yazda-info {
        height: auto;
        padding: 40px 16px 28px;
        border-radius: 36px;
        margin: 0 16px;
    }

    .how-to-win-section.yazda-info .how-to-win-container {
        padding-top: 0;
    }

    .how-to-win-section.yazda-info .yazda-info__content {
        gap: 24px;
    }

    .how-to-win-section.yazda-info .yazda-info__top {
        width: 100%;
        align-items: center;
        gap: 16px;
    }

    .how-to-win-section.yazda-info .how-to-win-title.yazda-info__title {
        font-size: 32px;
        text-align: center;
    }

    .how-to-win-section.yazda-info .yazda-info__formulas {
        justify-content: center;
        gap: 16px;
    }

    .how-to-win-section.yazda-info .yazda-info__formula-text span,
    .how-to-win-section.yazda-info .yazda-info__equals {
        font-size: 14px;
        line-height: 1.6;
    }

    .how-to-win-section.yazda-info .yazda-info__formula-icon {
        width: 22px;
        height: 22px;
    }

    .how-to-win-section.yazda-info .yazda-info__cards {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-left: 16px;
        margin-right: 32px;
    }

    .how-to-win-section.yazda-info .yazda-info__divider {
        width: 1px;
        height: 24px;
        align-self: flex-start;
        margin-right: 32px;
        margin-block: 4px;
    }

    .how-to-win-section.yazda-info .yazda-info__card {
        width: 100%;
        max-width: 280px;
        justify-content: flex-end;
        gap: 12px;
    }

    .how-to-win-section.yazda-info .yazda-info__card-title {
        font-size: 16px;
    }

    .how-to-win-section.yazda-info .yazda-info__card-desc {
        font-size: 12px;
    }

    /* Testimonials Section */
    .testimonials-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Subscription Section */
    .subscription-section.subscription-section--figma {
        padding: 24px 0;
    }

    .subscription-card {
        width: min(1112px, 100% - 32px);
        height: auto;
        padding: 24px 20px 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .subscription-card__accent {
        left: -120px;
        top: 200px;
    }

    .subscription-card__header {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
    }

    .subscription-card__title {
        width: 100%;
        font-size: 32px;
    }

    .subscription-card__subtitle {
        width: 100%;
        font-size: 16px;
    }

    .subscription-accordion {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        gap: 0px;
    }

    .accordion-toggle {
        width: 100%;
    }

    .subscription-visuals {
        position: relative;
        left: auto;
        top: auto;
        width: min(462px, 100%);
        height: auto;
    }

    .subscription-visuals__image {
        height: auto;
    }

    /* FAQ Section */
    .faq-section.faq-section--figma {
        padding: 40px 20px;
        min-height: auto;
        justify-content: flex-start;
    }

    .faq-section.faq-section--figma .faq-layout {
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
    }

    .faq-section.faq-section--figma .faq-heading {
        font-size: 32px;
        max-width: 100%;
    }

    .faq-section.faq-section--figma .faq-description {
        font-size: 16px;
        max-width: 100%;
    }

    .faq-section.faq-section--figma .faq-title {
        font-size: 18px;
    }

    .faq-section.faq-section--figma .faq-item:not(.is-open) .faq-title {
        font-weight: 500;
    }

    .faq-section.faq-section--figma .faq-decor--top {
        width: 100%;
        height: auto;
    }

    .faq-section.faq-section--figma .faq-illustration {
        width: min(360px, 100%);
        height: auto;
        margin: 20px auto 0;
    }
}
