:root {
    --navy: #0F2A47;
    --blue: #1B6FA8;
    --turquoise: #17BEBB;
    --gold: #F2A93B;
    --dark: #0F2A47;
    --gray: #848484;
    --white: #ffffff;
    --bg-light: #F7F9FC;

    --gradient-primary: linear-gradient(90deg, #1B6FA8 0%, #17BEBB 100%);
    --trial-gradient: linear-gradient(90deg, #F2A93B 0%, #E09525 100%);
    --trust-gradient: linear-gradient(90deg, #1B6FA8 0%, #17BEBB 100%);
    --bg-gradient: linear-gradient(
        90deg,
        rgba(15, 42, 71, 0.05) 0%,
        rgba(23, 190, 187, 0.08) 100%
    );
}

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

html,
body {
    scroll-behavior: smooth;
    background: var(--bg-light);
    color: var(--dark);
    overflow-x: hidden;
    font-family: "Changa", sans-serif;
    font-optical-sizing: auto;
}

a {
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section {
    scroll-margin-top: 100px;
}

/* Main Section */
.hero-header-section {
    width: 100%;
    min-height: 823px;
    background: var(--bg-gradient);
    display: flex;
    justify-content: center;
    padding: 24px 24px 40px;
    padding-top: 120px !important;
}

.page-shell {
    width: 100%;
    max-width: 1440px;
    position: relative;
}

/* Header */
.main-header {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 24px;
    left: 0;
    z-index: 1000;
    transition: 0.35s ease;
    pointer-events: none;
}

.main-header .header-inner {
    pointer-events: auto;
}

.main-header.scrolled {
    top: 10px;
}

.main-header.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(15, 42, 71, 0.08);
}

.header-inner {
    width: 100%;
    max-width: 1160px;
    min-height: 68px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    white-space: nowrap;
}

.brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 14px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
    transition: 0.25s ease;
    position: relative;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 34px;
    right: 0;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 40px rgba(15, 42, 71, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 9999;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--dark);
    font-size: 14px;
    white-space: nowrap;
    transition: 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(23, 190, 187, 0.08);
    color: var(--turquoise);
}

.nav-link.active {
    color: var(--navy);
    font-weight: 500;
}

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

.lang-switch {
    height: 37px;
    min-width: 58px;
    padding: 0 12px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(15, 42, 71, 0.14);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.25s ease;
}

.lang-switch i {
    font-size: 13px;
}

.lang-switch:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Unified CTA Trial Button */
.trial-btn {
    width: fit-content;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--trial-gradient);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(242, 169, 59, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(242, 169, 59, 0.38);
}

.trial-btn-icon {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.trial-btn-text {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

/* Hero */
.hero-content {
    width: 100%;
    max-width: 930px;
    margin: 78px auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-top-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-top-text {
    font-size: 16px;
    color: var(--dark);
    font-weight: 400;
}

.trusted-avatars {
    display: flex;
    align-items: center;
    direction: ltr;
}

.avatar-frame {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 0.5px solid rgba(15, 42, 71, 0.2);
    background: #fff;
    margin-left: -10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

.avatar-frame:first-child {
    margin-left: 0;
}

.hero-title {
    color: var(--dark);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.1px;
}

.trust-pill {
    padding: 10px 25px;
    border-radius: 999px;
    background: var(--trust-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    vertical-align: middle;
    margin: 0 4px;
    box-shadow: 0 14px 30px rgba(27, 190, 187, 0.25);
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.trust-pill .sparkle {
    color: var(--white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-trial-btn {
    margin-top: 18px;
}

.hero-stats {
    margin-top: 46px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 72px;
    flex-wrap: wrap;
}

.stat-box {
    min-width: 160px;
    text-align: center;
}

.stat-number {
    color: var(--navy);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    color: #8d8d8d;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
    .header-inner {
        max-width: 100%;
        gap: 14px;
    }

    .main-nav {
        gap: 20px;
    }

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

@media (max-width: 992px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 26px;
        padding: 16px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 24px;
    }

    .hero-content {
        margin-top: 60px;
    }

    .hero-title {
        font-size: 44px;
        line-height: 1.45;
    }

    .trust-pill {
        width: auto;
        min-width: 190px;
        height: auto;
        min-height: 64px;
        font-size: 34px;
        padding: 10px 22px;
    }

    .hero-stats {
        gap: 34px;
    }
}

@media (max-width: 768px) {
    .hero-header-section {
        min-height: auto;
        padding: 16px 16px 34px;
    }

    .page-shell {
        min-height: auto;
    }

    .brand-text {
        font-size: 14px;
    }

    .nav-link,
    .hero-top-text,
    .trial-btn-text {
        font-size: 14px;
    }

    .hero-title {
        font-size: 34px;
        letter-spacing: 0;
    }

    .trust-pill {
        min-width: 160px;
        min-height: 56px;
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-top-badge {
        flex-direction: column;
        gap: 10px;
    }

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

    .trust-pill {
        min-width: 145px;
        font-size: 24px;
        padding: 10px 18px;
    }
}

/* ===== SECTION ===== */
.works-section {
    width: 100%;
    padding: 80px 24px 120px;
    background: var(--bg-light);
    overflow: hidden;
}

.works-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* ===== HEADING ===== */
.works-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.works-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(23, 190, 187, 0.1);
    color: var(--turquoise);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.works-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.title-muted {
    font-size: 42px;
    font-weight: 700;
    color: #929292;
    line-height: 1.4;
}

.title-dark {
    color: var(--navy);
}

.works-trial-btn {
    margin-top: 22px;
}

/* ===== SLIDER WRAP ===== */
.works-slider-wrap {
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
}

/* ===== SCROLL AREA ===== */
.works-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.works-slider::-webkit-scrollbar {
    display: none;
}

/* ===== TRACK ===== */
.works-track {
    display: flex;
    gap: 22px;
    width: max-content;
    padding: 0 110px;
}

/* ===== CARD ===== */
.work-card {
    flex: 0 0 552px;
    width: 552px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* ===== CARD INNER ===== */
.work-card-inner {
    width: 100%;
    height: 436px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    padding: 24px;
    box-shadow: 0 14px 28px rgba(15, 42, 71, 0.06);
}

/* ===== COLORS ===== */
.work-card-pink {
    background: linear-gradient(180deg, #e4f2f7 0%, #d5e9f0 100%);
}

.work-card-blue {
    background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%);
}

.work-card-white {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

/* ===== TITLE ===== */
.work-card-title {
    position: absolute;
    top: 22px;
    right: 28px;
    left: 28px;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    text-align: right;
    line-height: 1.4;
    z-index: 2;
}

/* ===== IMAGE ===== */
.work-card-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 82%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 10px;
}

.work-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
}

/* ===== STATES ===== */
.work-card.is-focus {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.work-card.is-side {
    opacity: 0.45;
    filter: blur(3px);
    transform: scale(0.96);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .title-muted {
        font-size: 36px;
    }

    .work-card {
        flex: 0 0 480px;
        width: 480px;
    }

    .work-card-inner {
        height: 390px;
    }

    .work-card-title {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .works-track {
        padding: 0 30px;
    }

    .work-card {
        flex: 0 0 78vw;
        width: 78vw;
    }

    .work-card-inner {
        height: 62vw;
    }

    .work-card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .title-muted {
        font-size: 26px;
    }

    .work-card {
        flex: 0 0 88vw;
        width: 88vw;
    }

    .work-card-inner {
        height: 70vw;
    }
}

@media (max-width: 520px) {
    .title-muted {
        font-size: 22px;
    }

    .work-card {
        flex: 0 0 92vw;
        width: 92vw;
    }

    .work-card-inner {
        height: 76vw;
    }

    .work-card-title {
        font-size: 18px;
    }
}

/* sec 03 */
.clients-section {
    width: 100%;
    padding: 70px 24px 70px;
    background: linear-gradient(90deg, #0F2A47 0%, #1B6FA8 100%);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 80% 45%,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size:
        120px 120px,
        140px 140px;
    opacity: 0.35;
    pointer-events: none;
}

.clients-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.clients-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.clients-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(242, 169, 59, 0.15);
    color: var(--gold);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 16px;
}

.clients-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
}

.title-gray {
    color: #929292;
}

.title-white {
    color: #ffffff;
}

.clients-trial-btn {
    margin-top: 20px;
}

.clients-slider-area {
    margin-top: 50px;
    position: relative;
    min-height: 360px;
}

.clients-slider {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.client-card {
    position: absolute;
    top: 40px;
    width: 420px;
    min-height: 220px;
    background: #ffffff;
    border-radius: 18px;
    padding: 54px 24px 24px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transition: 0.45s ease;
}

.client-card .client-avatar {
    position: absolute;
    top: -22px;
    right: 50%;
    transform: translateX(50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--navy);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.client-card .client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-quote {
    color: #303030;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.client-name {
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.client-role {
    color: #8a8a8a;
    font-size: 14px;
    line-height: 1.5;
}

/* center */
.client-card.is-active {
    top: 0;
    right: 50%;
    transform: translateX(50%) scale(1.05);
    opacity: 1;
    filter: brightness(1) blur(0);
    z-index: 3;
}

.client-card.is-active .client-avatar {
    width: 74px;
    height: 74px;
    top: -28px;
}

/* اليمين - إضافة التظليل التعتيمي */
.client-card.is-prev {
    right: calc(50% + 320px);
    transform: translateX(50%) scale(0.96);
    opacity: 0.6;
    filter: brightness(0.65) blur(2px);
}

/* اليسار - إضافة التظليل التعتيمي */
.client-card.is-next {
    right: calc(50% - 320px);
    transform: translateX(50%) scale(0.96);
    opacity: 0.6;
    filter: brightness(0.65) blur(2px);
}

.clients-nav {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.clients-arrow {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.clients-arrow:hover {
    transform: translateY(-2px);
}

.clients-arrow-prev {
    background: var(--gold);
    color: #ffffff;
}

.clients-arrow-next {
    background: #ffffff;
    color: var(--navy);
}

@media (max-width: 1200px) {
    .clients-title {
        font-size: 36px;
    }

    .client-card {
        width: 290px;
    }

    .client-card.is-active {
        width: 420px;
    }

    .client-card.is-prev {
        right: calc(50% + 240px);
    }

    .client-card.is-next {
        right: calc(50% - 240px);
    }
}

@media (max-width: 992px) {
    .clients-section {
        padding: 70px 18px 90px;
    }

    .clients-title {
        font-size: 30px;
    }

    .clients-slider-area {
        min-height: 540px;
    }

    .clients-slider {
        height: 460px;
    }

    .client-card,
    .client-card.is-prev,
    .client-card.is-next,
    .client-card.is-active {
        right: 50%;
        transform: translateX(50%) scale(1);
        width: min(92vw, 430px);
    }

    .client-card {
        top: 120px;
        opacity: 0;
        pointer-events: none;
    }

    .client-card.is-active {
        top: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .client-card.is-prev {
        top: 70px;
        opacity: 0.35;
        transform: translateX(50%) scale(0.93);
        filter: brightness(0.65) blur(2px);
    }

    .client-card.is-next {
        top: 250px;
        opacity: 0.35;
        transform: translateX(50%) scale(0.93);
        filter: brightness(0.65) blur(2px);
    }
}

@media (max-width: 768px) {
    .clients-title {
        font-size: 25px;
    }

    .clients-badge {
        font-size: 20px;
        height: 38px;
    }

    .client-card,
    .client-card.is-active {
        width: min(94vw, 370px);
        padding-right: 18px;
        padding-left: 18px;
    }

    .client-quote {
        font-size: 15px;
        line-height: 1.8;
    }
}
/* sec04 */
.about-section {
    width: 100%;
    padding: 80px 24px 90px;
    background: var(--bg-light);
}

.about-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.about-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 34px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(23, 190, 187, 0.1);
    color: var(--turquoise);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 16px;
}

.about-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
}

.about-title-gray {
    color: #929292;
}

.about-title-dark {
    color: var(--navy);
}

/* grid */
.about-grid {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* card */
.about-card {
    border-radius: 22px;
    overflow: hidden;
    padding: 18px;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    min-height: 274px;
}

.about-card-blue {
    background: #dbeafe;
}

.about-card-gray {
    background: #e2e8f0;
}

.about-card-pink {
    background: #e0f2fe;
}

.about-card-content {
    text-align: right;
    margin-bottom: 14px;
}

.about-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 8px;
}

.about-card-accent-blue {
    color: var(--blue);
}

.about-card-accent-pink {
    color: var(--turquoise);
}

.about-card-accent-cyan {
    color: var(--turquoise);
}

.about-card-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #666666;
    max-width: 470px;
}

.about-card-image {
    width: 100%;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.about-card-image img {
    border-radius: 18px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* wide card */
.about-card-wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 208px;
}

.about-card-image-side {
    width: 34%;
    min-width: 260px;
    height: 250px;
    margin: 0;
    flex-shrink: 0;
}

.about-card-content-side {
    margin-bottom: 0;
    flex: 1;
}

.about-trial-btn {
    margin-top: 16px;
}

.about-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* responsive */
@media (max-width: 1200px) {
    .about-title {
        font-size: 36px;
    }

    .about-grid {
        max-width: 1000px;
    }

    .about-card-title {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 65px 18px 75px;
    }

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

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

    .about-card-wide {
        grid-column: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .about-card-image-side {
        width: 100%;
        min-width: auto;
        height: 170px;
    }

    .about-card-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 24px;
        gap: 6px;
    }

    .about-badge {
        font-size: 20px;
        height: 38px;
    }

    .about-card {
        padding: 16px;
    }

    .about-card-title {
        font-size: 22px;
    }

    .about-card-text {
        font-size: 14px;
    }

    .about-card-image {
        height: 160px;
    }
}

@media (max-width: 520px) {
    .about-section {
        padding: 52px 14px 60px;
    }

    .about-title {
        font-size: 21px;
        line-height: 1.5;
    }

    .about-card-title {
        font-size: 20px;
    }

    .about-card-image {
        height: 145px;
        padding: 12px;
    }

    .about-card-image-side {
        height: 145px;
    }
}

/* sec 05 */

.contact-section {
    width: 100%;
    padding: 80px 24px 90px;
    background: var(--bg-light);
}

.contact-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.contact-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 34px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(23, 190, 187, 0.1);
    color: var(--turquoise);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 16px;
}

.contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
}

.contact-title-gray {
    color: #929292;
}

.contact-title-dark {
    color: var(--navy);
}

.contact-grid {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 18px;
    align-items: stretch;
}

/* الفورم */
.contact-form-card {
    background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 22px;
    padding: 22px 18px 18px;
    min-height: 540px;
}

.contact-form-title {
    color: var(--navy);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-field label {
    color: var(--navy);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: right;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    color: var(--navy);
    font-family: inherit;
    font-size: 14px;
    padding: 0 18px;
}

.contact-field input {
    height: 52px;
}

.contact-field textarea {
    min-height: 130px;
    resize: none;
    padding-top: 16px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a3a3a3;
}

.contact-submit-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 999px;
    margin-top: 4px;
    background: var(--gold);
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(242, 169, 59, 0.25);
    transition: 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(242, 169, 59, 0.35);
}

/* كرت المعلومات */
.contact-info-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px 22px 26px;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 14px 28px rgba(15, 42, 71, 0.05);
}

.contact-image-wrap {
    width: 100%;
    height: 453px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* معلومات التواصل */
.contact-info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 18px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.contact-info-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #777777;
    font-size: 16px;
    justify-content: flex-start;
}

.contact-info-label i {
    font-size: 15px;
    color: #777777;
}

.contact-info-value {
    color: var(--navy);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
}

/* السوشال */
.contact-socials {
    margin-top: 22px;
    text-align: right;
}

.contact-socials-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #777777;
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-social-icons a {
    color: #2d2d2d;
    font-size: 18px;
    transition: 0.25s ease;
}

.contact-social-icons a:hover {
    color: var(--turquoise);
}

/* responsive */
@media (max-width: 1200px) {
    .contact-title {
        font-size: 36px;
    }

    .contact-grid {
        max-width: 980px;
        grid-template-columns: 380px 1fr;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .contact-info-value {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 65px 18px 75px;
    }

    .contact-title {
        font-size: 30px;
    }

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

    .contact-form-card,
    .contact-info-card {
        min-height: auto;
    }

    .contact-info-list {
        grid-template-columns: 1fr;
    }

    .contact-image-wrap {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 24px;
        gap: 6px;
    }

    .contact-badge {
        font-size: 20px;
        height: 38px;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .contact-form-subtitle {
        font-size: 14px;
    }

    .contact-info-value {
        font-size: 20px;
    }

    .contact-image-wrap {
        height: 190px;
    }
}

@media (max-width: 520px) {
    .contact-section {
        padding: 52px 14px 60px;
    }

    .contact-title {
        font-size: 21px;
        line-height: 1.5;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .contact-field input {
        height: 48px;
    }

    .contact-submit-btn {
        height: 48px;
    }

    .contact-image-wrap {
        height: 170px;
    }

    .contact-social-icons {
        gap: 14px;
    }
}

/* =========================
   CTA SECTION
========================= */
.cta-section {
    width: 100%;
    padding: 40px 24px 0;
    background: var(--bg-light);
}

.cta-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.cta-card {
    width: 100%;
    max-width: 1120px;
    min-height: 255px;
    margin: 0 auto;
    border-radius: 22px;
    padding: 38px 24px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at bottom left,
            rgba(23, 190, 187, 0.2) 0%,
            transparent 45%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(27, 111, 168, 0.2) 0%,
            transparent 45%
        ),
        #ffffff;
    box-shadow: 0 14px 30px rgba(15, 42, 71, 0.05);
}

.cta-logo {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
}

.cta-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-title {
    color: var(--navy);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.cta-text {
    color: #757575;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-trial-btn {
    margin-top: 2px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    width: 100%;
    background: var(--bg-light);
    margin-top: 38px;
    border-top: 1px solid #e7e7e7;
    padding: 34px 24px 30px;
}

.footer-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-top {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.footer-brand-text {
    color: var(--navy);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.footer-brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #333333;
    font-size: 15px;
    font-weight: 400;
    transition: 0.25s ease;
}

.footer-nav a:hover {
    color: var(--turquoise);
}

.footer-bottom {
    width: 100%;
    max-width: 1120px;
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-socials a {
    color: #232323;
    font-size: 18px;
    transition: 0.25s ease;
}

.footer-socials a:hover {
    color: var(--turquoise);
}

.footer-copy {
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.footer-copy span {
    color: var(--blue);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .cta-title {
        font-size: 36px;
    }

    .cta-text {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .cta-section {
        padding: 30px 18px 0;
    }

    .cta-card {
        min-height: 220px;
        padding: 32px 20px 30px;
    }

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

    .cta-text {
        font-size: 17px;
        line-height: 1.7;
    }

    .cta-text br {
        display: none;
    }

    .site-footer {
        padding: 28px 18px 26px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
        gap: 16px 22px;
    }
}

@media (max-width: 768px) {
    .cta-card {
        border-radius: 18px;
        min-height: 205px;
    }

    .cta-logo {
        width: 38px;
        height: 38px;
        margin-bottom: 14px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-text {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-brand-text {
        font-size: 16px;
    }

    .footer-brand-logo {
        width: 40px;
        height: 40px;
    }

    .footer-copy {
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .cta-section {
        padding: 24px 14px 0;
    }

    .cta-card {
        padding: 26px 16px 24px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .site-footer {
        margin-top: 28px;
        padding: 24px 14px 22px;
    }

    .footer-nav {
        gap: 12px 16px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .footer-socials {
        gap: 14px;
    }
}

/* Programs Page */

.programs-hero {
    min-height: 100vh;
    padding: 140px 24px 80px;
    background: var(--bg-gradient);
    overflow: hidden;
}

.programs-hero-container,
.programs-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

.programs-hero-container {
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
    gap: 50px;
}

.programs-badge {
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(23, 190, 187, 0.1);
    color: var(--turquoise);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.programs-title {
    font-size: 58px;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 18px;
}

.programs-title span {
    display: block;
    color: var(--blue);
}

.programs-subtitle {
    color: #666;
    font-size: 20px;
    line-height: 1.9;
    max-width: 620px;
}

.programs-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-programs-btn {
    min-width: 150px;
}

.secondary-programs-btn {
    height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 24px rgba(15, 42, 71, 0.06);
}

.programs-orbit {
    height: 480px;
    position: relative;
    border-radius: 50%;
}

.orbit-glow {
    position: absolute;
    inset: 42px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(23, 190, 187, 0.18), transparent 60%),
        radial-gradient(
            circle at bottom,
            rgba(27, 111, 168, 0.22),
            transparent 55%
        );
    animation: pulseGlow 3s infinite alternate;
}

.orbit-center {
    position: absolute;
    inset: 100px !important;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 25px 60px rgba(15, 42, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 15px !important;
    z-index: 2;
    overflow: visible !important;
}

.orbit-center span {
    color: var(--navy);
    font-size: 15px !important; 
    font-weight: 700;
    display: block !important;
    white-space: pre-line !important;
    width: 100%;
    line-height: 1.2 !important;
    margin-bottom: 6px;
}

.orbit-center p {
    color: #777;
    font-size: 11px !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    max-width: 100%;
}

.orbit-item {
    position: absolute;
    width: 128px;
    height: 128px;
    border: none;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(15, 42, 71, 0.08);
    color: var(--dark);
    cursor: pointer;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: 0.3s ease;
}

.orbit-item i {
    color: var(--turquoise);
    font-size: 26px;
}

.orbit-item span {
    font-size: 14px;
}

.orbit-item.active,
.orbit-item:hover {
    transform: translateY(-8px) scale(1.04);
    background: var(--gradient-primary);
    color: #fff;
}

.orbit-item.active i,
.orbit-item:hover i {
    color: #fff;
}

.orbit-item:nth-of-type(1) {
    top: 0;
    right: 175px;
}
.orbit-item:nth-of-type(2) {
    top: 120px;
    right: 0;
}
.orbit-item:nth-of-type(3) {
    bottom: 40px;
    right: 50px;
}
.orbit-item:nth-of-type(4) {
    bottom: 40px;
    left: 50px;
}
.orbit-item:nth-of-type(5) {
    top: 120px;
    left: 0;
}

@keyframes pulseGlow {
    from {
        transform: scale(0.96);
        opacity: 0.7;
    }
    to {
        transform: scale(1.05);
        opacity: 1;
    }
}

.programs-list-section {
    padding: 90px 24px;
    background: var(--bg-light);
}

.section-head {
    text-align: center;
    margin-bottom: 44px;
}

.section-head h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-head p {
    color: #777;
    font-size: 18px;
}

.programs-stack {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 0 30px;
}

.programs-stack::-webkit-scrollbar {
    display: none;
}

.program-card {
    flex: 0 0 82%;
    min-height: 480px;
    scroll-snap-align: center;
    border-radius: 30px;
    padding: 34px;
    background: linear-gradient(135deg, #ffffff 0%, #eef9fc 100%);
    box-shadow: 0 22px 50px rgba(15, 42, 71, 0.08);
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 28px;
    align-items: center;
    opacity: 0.55;
    filter: blur(2px);
    transform: scale(0.96);
    transition: 0.35s ease;
    cursor: pointer;
}

.program-card.is-active {
    cursor: default;
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.program-tag {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(27, 111, 168, 0.1);
    color: var(--blue);
    margin-bottom: 16px;
}

.program-card h3 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 14px;
}

.program-card p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.program-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.program-card li {
    color: #444;
    font-size: 16px;
}

.program-card li::before {
    content: "✓";
    color: var(--turquoise);
    margin-left: 8px;
    font-weight: 700;
}

.program-card-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.demo-link {
    color: var(--turquoise);
    font-weight: 600;
}

.program-card-visual {
    height: 350px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at top right,
            rgba(23, 190, 187, 0.2),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(27, 111, 168, 0.25),
            transparent 40%
        ),
        #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fake-dashboard {
    width: 82%;
    height: 75%;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 42, 71, 0.12);
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fake-dashboard div,
.fake-dashboard::before,
.fake-dashboard::after {
    content: "";
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(23, 190, 187, 0.14),
        rgba(27, 111, 168, 0.15)
    );
}

.fake-dashboard.school,
.fake-dashboard.kids,
.fake-dashboard.baby,
.fake-dashboard.gym {
    display: block;
    position: relative;
}

.fake-dashboard.school::before,
.fake-dashboard.kids::before,
.fake-dashboard.baby::before,
.fake-dashboard.gym::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 18px;
}

.fake-dashboard.school::before {
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}
.fake-dashboard.kids::before {
    background: linear-gradient(135deg, #e4f2f7, #fff);
}
.fake-dashboard.baby::before {
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
}
.fake-dashboard.gym::before {
    background: linear-gradient(135deg, #0F2A47, #1B6FA8);
}

.smart-picker-section {
    padding: 80px 24px;
    background: linear-gradient(90deg, #0F2A47 0%, #1B6FA8 100%);
}

.smart-picker-card {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 28px;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 34px;
    backdrop-filter: blur(16px);
}

.smart-picker-text h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 12px;
}

.smart-picker-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.8;
}

.picker-box {
    background: #fff;
    border-radius: 24px;
    padding: 22px;
}

.picker-box select,
.demo-form input,
.demo-form select,
.demo-form textarea,
.demo-form email {
    width: 100%;
    height: 52px;
    border: none;
    outline: none;
    border-radius: 16px;
    padding: 0 16px;
    font-family: inherit;
    background: #f4f7fb;
    color: var(--dark);
}

.picker-result {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: var(--bg-gradient);
}

.picker-result h3 {
    color: var(--blue);
    margin-bottom: 8px;
}

.picker-result p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.picker-result a {
    color: var(--turquoise);
    font-weight: 600;
}

.demo-section {
    padding: 90px 24px;
    background: var(--bg-light);
}

.demo-card {
    border-radius: 30px;
    padding: 38px;
    background:
        radial-gradient(
            circle at bottom left,
            rgba(23, 190, 187, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at top right,
            rgba(27, 111, 168, 0.2),
            transparent 35%
        ),
        #fff;
    box-shadow: 0 22px 50px rgba(15, 42, 71, 0.08);
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 28px;
    align-items: center;
}

.demo-card h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 12px;
}

.demo-card p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.demo-form {
    display: grid;
    gap: 12px;
}

.demo-form button {
    height: 52px;
    border: none;
    border-radius: 999px;
    background: var(--trial-gradient);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* laptop */
@media (max-width: 1200px) {
    .programs-hero-container,
    .program-card,
    .smart-picker-card,
    .demo-card {
        grid-template-columns: 1fr 400px;
    }

    .programs-title {
        font-size: 48px;
    }
}

/* tablet */
@media (max-width: 992px) {
    .programs-hero-container,
    .program-card,
    .smart-picker-card,
    .demo-card {
        grid-template-columns: 1fr;
    }

    .programs-orbit {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }

    .program-card {
        flex-basis: 90%;
    }

    .program-card-visual {
        height: 280px;
    }
}

/* mobile */
@media (max-width: 768px) {
    .programs-hero {
        padding: 180px 16px 60px;
    }

    .programs-title,
    .section-head h2,
    .smart-picker-text h2,
    .demo-card h2 {
        font-size: 30px;
    }

    .programs-subtitle,
    .section-head p,
    .program-card p,
    .smart-picker-text p,
    .demo-card p {
        font-size: 15px;
    }

    .programs-orbit {
        height: auto;
        display: grid;
        gap: 12px;
    }

    .orbit-glow,
    .orbit-center {
        position: static;
        border-radius: 24px;
    }

    .orbit-center {
        min-height: 170px;
        margin-bottom: 12px;
    }

    .orbit-item {
        position: static;
        width: 100%;
        height: 72px;
        border-radius: 18px;
        flex-direction: row;
    }

    .program-card {
        flex-basis: 94%;
        padding: 22px;
        min-height: auto;
        cursor: pointer;
    }

    .program-card.is-active {
        cursor: default;
    }

    .program-card h3 {
        font-size: 26px;
    }

    .program-card-visual {
        height: 220px;
    }

    .smart-picker-card,
    .demo-card {
        padding: 22px;
    }
}

/* small mobile */
@media (max-width: 520px) {
    .programs-hero {
        padding-top: 210px;
    }

    .programs-title {
        font-size: 26px;
    }

    .programs-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .secondary-programs-btn,
    .hero-programs-btn {
        width: 100%;
        justify-content: center;
    }

    .program-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .program-card-actions .trial-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Pro Details */

.details-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

.details-hero {
    min-height: 100vh;
    padding: 150px 24px 90px;
    background: var(--bg-gradient);
    overflow: hidden;
}

.details-hero-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 54px;
    align-items: center;
}

.details-hero-content h1 {
    color: var(--dark);
    font-size: 58px;
    line-height: 1.35;
    margin-bottom: 18px;
}

.details-hero-content p {
    color: #666;
    font-size: 20px;
    line-height: 1.9;
    max-width: 620px;
}

.details-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.details-secondary-btn {
    height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 24px rgba(15, 42, 71, 0.06);
}

.details-hero-visual {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-dashboard-card {
    width: 100%;
    max-width: 460px;
    height: 360px;
    border-radius: 32px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 30px 70px rgba(15, 42, 71, 0.13);
    position: relative;
    z-index: 2;
}

.details-dashboard-card::before {
    content: "";
    position: absolute;
    inset: -30px;
    border-radius: 44px;
    background:
        radial-gradient(
            circle at top right,
            rgba(23, 190, 187, 0.2),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(27, 111, 168, 0.25),
            transparent 35%
        );
    z-index: -1;
}

.dash-top {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.dash-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(23, 190, 187, 0.3);
}

.dash-body {
    height: calc(100% - 28px);
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
}

.dash-sidebar {
    border-radius: 20px;
    background: linear-gradient(180deg, #0F2A47, #071c33);
}

.dash-content {
    display: grid;
    grid-template-rows: 1fr 100px;
    gap: 14px;
}

.dash-chart {
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(23, 190, 187, 0.12),
            rgba(27, 111, 168, 0.16)
        ),
        #f4f7fb;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.dash-grid span {
    border-radius: 16px;
    background: #f1f5fb;
}

.floating-pill {
    position: absolute;
    z-index: 3;
    min-width: 130px;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(15, 42, 71, 0.12);
    animation: floatMove 3s infinite alternate ease-in-out;
}

.pill-one {
    top: 34px;
    right: 10px;
}

.pill-two {
    bottom: 42px;
    left: 12px;
    animation-delay: 0.5s;
}

@keyframes floatMove {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-12px);
    }
}

.program-overview-section,
.program-value-section,
.before-after-section,
.suitable-section {
    padding: 90px 24px;
    background: var(--bg-light);
}

.program-value-section,
.suitable-section {
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: center;
}

.overview-content h2,
.suitable-card h2 {
    font-size: 42px;
    color: var(--dark);
    line-height: 1.45;
    margin-bottom: 14px;
}

.overview-content p,
.suitable-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.9;
}

.overview-numbers {
    display: grid;
    gap: 14px;
}

.overview-numbers div {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(15, 42, 71, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.overview-numbers strong {
    color: var(--turquoise);
    font-size: 36px;
}

.overview-numbers span {
    color: var(--blue);
    font-size: 18px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-card {
    background: var(--bg-light);
    border-radius: 26px;
    padding: 26px;
    transition: 0.25s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    background: var(--bg-gradient);
}

.value-card i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(23, 190, 187, 0.1);
    color: var(--turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.value-card h3 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.before-box,
.after-box {
    border-radius: 30px;
    padding: 32px;
    min-height: 280px;
}

.before-box {
    background: #fff;
    border: 1px solid rgba(15, 42, 71, 0.08);
}

.after-box {
    background:
        radial-gradient(
            circle at top right,
            rgba(23, 190, 187, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(27, 111, 168, 0.2),
            transparent 35%
        ),
        #fff;
    box-shadow: 0 22px 50px rgba(15, 42, 71, 0.08);
}

.before-box h3,
.after-box h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 18px;
}

.before-box ul,
.after-box ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.before-box li,
.after-box li {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

.before-box li::before {
    content: "×";
    color: #999;
    margin-left: 10px;
    font-weight: 700;
}

.after-box li::before {
    content: "✓";
    color: var(--turquoise);
    margin-left: 10px;
    font-weight: 700;
}

.suitable-card {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 30px;
    align-items: center;
    border-radius: 32px;
    padding: 38px;
    background:
        radial-gradient(
            circle at bottom left,
            rgba(23, 190, 187, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at top right,
            rgba(27, 111, 168, 0.22),
            transparent 35%
        ),
        var(--bg-light);
}

.suitable-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.suitable-list span {
    min-height: 92px;
    border-radius: 22px;
    background: #fff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    box-shadow: 0 14px 30px rgba(15, 42, 71, 0.06);
}

@media (max-width: 992px) {
    .overview-grid,
    .before-after-grid,
    .suitable-card {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .program-overview-section,
    .program-value-section,
    .before-after-section,
    .suitable-section {
        padding: 70px 16px;
    }

    .overview-content h2,
    .suitable-card h2 {
        font-size: 30px;
    }

    .overview-content p,
    .suitable-card p {
        font-size: 15px;
    }

    .value-grid,
    .suitable-list {
        grid-template-columns: 1fr;
    }

    .before-box,
    .after-box,
    .suitable-card {
        padding: 24px;
    }
}

.pain-section,
.modules-section,
.journey-section,
.gallery-section,
.faq-section {
    padding: 90px 24px;
    background: var(--bg-light);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pain-card {
    background: #fff;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(15, 42, 71, 0.06);
}

.pain-card i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(23, 190, 187, 0.1);
    color: var(--turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.pain-card h3 {
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 10px;
}

.pain-card p {
    color: #666;
    line-height: 1.8;
}

.modules-section {
    background: #fff;
}

.modules-grid {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 22px;
    align-items: stretch;
}

.modules-tabs {
    display: grid;
    gap: 12px;
}

.module-tab {
    border: none;
    border-radius: 20px;
    padding: 18px;
    background: #f4f7fb;
    color: var(--dark);
    font-family: inherit;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.25s ease;
    text-align: right;
}

.module-tab i {
    color: var(--turquoise);
}

.module-tab.active,
.module-tab:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateX(-6px);
}

.module-tab.active i,
.module-tab:hover i {
    color: #fff;
}

.module-preview {
    min-height: 390px;
    border-radius: 30px;
    padding: 30px;
    background:
        radial-gradient(
            circle at top right,
            rgba(23, 190, 187, 0.16),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(27, 111, 168, 0.2),
            transparent 35%
        ),
        var(--bg-light);
}

.module-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.module-preview-header span {
    color: var(--navy);
    font-size: 28px;
    font-weight: 700;
}

.module-preview-header i {
    color: var(--turquoise);
}

.module-preview p {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
    max-width: 620px;
}

.module-preview-ui {
    margin-top: 28px;
    height: 190px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}

.module-preview-ui span {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 42, 71, 0.05);
}

.module-preview-ui span:first-child {
    grid-row: span 2;
    background: linear-gradient(
        135deg,
        rgba(23, 190, 187, 0.12),
        rgba(27, 111, 168, 0.16)
    );
}

.journey-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.journey-step {
    position: relative;
    background: #fff;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(15, 42, 71, 0.06);
}

.journey-step span {
    color: var(--turquoise);
    font-size: 34px;
    font-weight: 700;
}

.journey-step h3 {
    color: var(--dark);
    font-size: 24px;
    margin: 10px 0;
}

.journey-step p {
    color: #666;
    line-height: 1.8;
}

.gallery-section {
    background: #fff;
}

.gallery-slider {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr 54px;
    gap: 18px;
    align-items: center;
}

.gallery-track {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 30px;
}

.gallery-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.96);
    transition: 0.35s ease;
}

.gallery-item.active {
    opacity: 1;
    transform: scale(1);
}

.gallery-fake-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at top right,
            rgba(23, 190, 187, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(27, 111, 168, 0.22),
            transparent 40%
        ),
        #f4f7fb;
}

.screen-two {
    background:
        radial-gradient(
            circle at top left,
            rgba(27, 111, 168, 0.25),
            transparent 40%
        ),
        #eef9fc;
}

.screen-three {
    background:
        radial-gradient(
            circle at bottom,
            rgba(23, 190, 187, 0.2),
            transparent 42%
        ),
        #e0f2fe;
}

.gallery-arrow {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--dark);
    box-shadow: 0 14px 30px rgba(15, 42, 71, 0.1);
    cursor: pointer;
}

.gallery-prev {
    background: var(--gradient-primary);
    color: #fff;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15, 42, 71, 0.05);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px;
    font-family: inherit;
    color: var(--dark);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question i {
    color: var(--turquoise);
    transition: 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-answer p {
    padding: 0 22px 22px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 160px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

@media (max-width: 1200px) {
    .details-hero-grid {
        grid-template-columns: 1fr 430px;
    }

    .details-hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .details-hero-grid,
    .modules-grid,
    .demo-card {
        grid-template-columns: 1fr;
    }

    .pain-grid,
    .journey-line {
        grid-template-columns: 1fr;
    }

    .details-hero-visual {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .details-hero {
        padding: 190px 16px 70px;
    }

    .details-hero-content h1,
    .section-head h2,
    .module-preview-header span,
    .demo-card h2 {
        font-size: 30px;
    }

    .details-hero-content p {
        font-size: 16px;
    }

    .details-dashboard-card {
        height: 300px;
    }

    .dash-body {
        grid-template-columns: 70px 1fr;
    }

    .gallery-slider {
        grid-template-columns: 1fr;
    }

    .gallery-arrow {
        display: none;
    }

    .gallery-track {
        height: 280px;
    }

    .module-tab.active,
    .module-tab:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 520px) {
    .details-hero {
        padding-top: 220px;
    }

    .details-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .details-hero-actions .trial-btn,
    .details-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .details-dashboard-card {
        height: 260px;
        padding: 14px;
    }

    .floating-pill {
        display: none;
    }

    .pain-card,
    .module-preview,
    .journey-step {
        padding: 22px;
    }
}

.value-card,
.pain-card {
    width: 100%;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
    justify-content: center;
    gap: 28px;
}

.suitable-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.value-grid,
.pain-grid,
.journey-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.value-card,
.pain-card,
.journey-step {
    flex: 1 1 260px;
}

.faq-list {
    max-width: 900px;
    margin-inline: auto;
}

.orbit-item {
    overflow: hidden;
}

.orbit-item span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    max-width: 100%;
    overflow: hidden;
    text-align: center;
    line-height: 1.35;
    overflow-wrap: break-word;
}

.orbit-center {
    overflow: hidden;
    padding-inline: 24px;
}

.orbit-center [data-orbit-title] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    max-width: 100%;
    margin-inline: auto;
    line-height: 1.15;
    text-align: center;
    font-size: 14px;
    overflow-wrap: break-word;
}

.orbit-center [data-orbit-text] {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;

    overflow: hidden;
    max-width: 100%;
    margin-top: 10px;
    line-height: 1.8;
    text-align: center;
    font-size: clamp(13px, 1vw, 16px);
    overflow-wrap: break-word;
}

.orbit-center [data-orbit-title] {
    font-size: 13px !important;
    line-height: 1.2 !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    display: block !important;
}

.orbit-center span {
    font-size: 13px !important;
    line-height: 1.2 !important;
    display: block !important;
}
/* ===== إجبار التظليل والتعتيم للبطاقات الجانبية ===== */

/* 1. حصر الطبقات داخل حواف البطاقة */
.client-card {
    overflow: hidden;
}

/* 2. إضافة طبقة تظليل داكنة فوق البطاقات الجانبية (اليمين واليسار) */
.client-card.is-prev::after,
.client-card.is-next::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 42, 71, 0.45) !important; /* طبقة تعتيم كحلية تناسب الهوية */
    border-radius: inherit;
    pointer-events: none;
    z-index: 5;
    transition: 0.45s ease;
}

/* 3. التأكد من إزالة التظليل عن البطاقة النشطة في المنتصف */
.client-card.is-active::after {
    display: none !important;
}

/* 4. تطبيق التعتيم والشفافية للبطاقات الجانبية */
.client-card.is-prev,
.client-card.is-next {
    opacity: 0.55 !important;
    filter: brightness(0.7) blur(1.5px) !important;
}
/* =========================================================
   FINAL CLIENTS CARDS OVERRIDE
   الهدف: الحفاظ على تصميم اللابتوب، وإلغاء الكروت الجانبية على الهاتف.
   يجب أن تأتي هذه القواعد بعد جميع تنسيقات قسم العملاء السابقة.
   ========================================================= */

/* Desktop / Laptop: البطاقة الرئيسية في المنتصف والكروت الجانبية تبقى ظاهرة */
@media (min-width: 769px) {
    .clients-slider-area {
        position: relative !important;
        min-height: 380px !important;
        padding-bottom: 64px !important;
    }

    .clients-slider {
        position: relative !important;
        height: auto !important;
        min-height: 300px !important;
        padding: 60px 0 20px !important;
        overflow: visible !important;
    }

    .client-card {
        position: absolute !important;
        top: 40px !important;
        overflow: hidden !important;
    }

    .client-card.is-active {
        top: 0 !important;
        right: 50% !important;
        transform: translateX(50%) scale(1.05) !important;
        opacity: 1 !important;
        filter: none !important;
        z-index: 3 !important;
    }

    .client-card.is-prev {
        right: calc(50% + 320px) !important;
        transform: translateX(50%) scale(0.96) !important;
        opacity: 0.55 !important;
        filter: brightness(0.7) blur(1.5px) !important;
    }

    .client-card.is-next {
        right: calc(50% - 320px) !important;
        transform: translateX(50%) scale(0.96) !important;
        opacity: 0.55 !important;
        filter: brightness(0.7) blur(1.5px) !important;
    }

    /* الأسهم أسفل منطقة البطاقات */
    .clients-nav {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: 0 !important;
        z-index: 10 !important;
    }
}

/* Mobile: بطاقة واحدة فقط بنفس روح تصميم اللابتوب، بدون كروت جانبية */
@media (max-width: 768px) {
    .clients-section {
        overflow: hidden !important;
    }

    .clients-slider-area {
        width: 100% !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 0 0 70px !important;
        overflow: visible !important;
    }

    .clients-slider {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 48px 0 0 !important;
        overflow: visible !important;
    }

    /* إخفاء البطاقات الجانبية بالكامل على الهاتف */
    .client-card.is-prev,
    .client-card.is-next {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* عرض البطاقة النشطة فقط */
    .client-card,
    .client-card.is-active {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: min(94vw, 420px) !important;
        max-width: 420px !important;
        min-height: 220px !important;
        height: auto !important;
        margin: 0 auto !important;
        padding: 54px 20px 24px !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        box-sizing: border-box !important;
        display: none !important;
        visibility: hidden !important;
        overflow: hidden !important;
    }

    .client-card.is-active {
        display: block !important;
        visibility: visible !important;
        z-index: 3 !important;
    }

    .client-card.is-active .client-avatar {
        width: 68px !important;
        height: 68px !important;
        top: -24px !important;
    }

    .client-card .client-quote {
        font-size: 15px !important;
        line-height: 1.9 !important;
        margin-bottom: 16px !important;
    }

    .client-card .client-name {
        font-size: 17px !important;
    }

    .client-card .client-role {
        font-size: 13px !important;
    }

    /* الأسهم أسفل البطاقة مثل اللابتوب */
    .clients-nav {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        margin: 20px auto 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        z-index: 10 !important;
    }

    .clients-arrow {
        width: 46px !important;
        height: 46px !important;
        flex: 0 0 46px !important;
    }
}

/* الهواتف الصغيرة */
@media (max-width: 480px) {
    .clients-slider {
        padding-top: 42px !important;
    }

    .client-card,
    .client-card.is-active {
        width: calc(100vw - 28px) !important;
        max-width: 370px !important;
        padding: 52px 16px 22px !important;
    }

    .client-card .client-quote {
        font-size: 14px !important;
        line-height: 1.85 !important;
    }
}
