.about-page {
    direction: rtl;
    text-align: right;
    padding: clamp(24px, 3vw, 40px) 0 74px;
    font-family: var(--body-fonts, "abdulla", "abdullaa", "Noto Sans Arabic", "Noto Kufi Arabic", Tahoma, "Segoe UI", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", Arial, sans-serif);
    color: #d7d7d7;
    position: relative;
}

.about-page::before,
.about-page::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(52px);
    z-index: 0;
}

.about-page::before {
    width: 320px;
    height: 320px;
    top: -10px;
    right: -110px;
    background: radial-gradient(circle, rgba(26, 166, 214, 0.24), rgba(26, 166, 214, 0));
}

.about-page::after {
    width: 380px;
    height: 380px;
    bottom: 20px;
    left: -130px;
    background: radial-gradient(circle, rgba(88, 91, 255, 0.2), rgba(88, 91, 255, 0));
}

.about-page__container {
    width: min(1240px, 94vw);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-page__hero {
    position: relative;
    border-radius: 26px;
    min-height: clamp(270px, 48vw, 430px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    isolation: isolate;
    background: linear-gradient(150deg, rgba(12, 19, 42, 0.96), rgba(5, 10, 24, 0.95));
}

.about-page__hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 44px, 44px 100%;
    opacity: 0.12;
    mix-blend-mode: soft-light;
}

.about-page__hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.06) contrast(1.08) brightness(0.5);
    transform: scale(1.02);
}

.about-page__hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(70% 80% at 85% 18%, rgba(123, 82, 255, 0.2), rgba(0, 0, 0, 0) 65%),
        linear-gradient(180deg, rgba(2, 6, 18, 0.36) 0%, rgba(2, 6, 18, 0.9) 72%),
        linear-gradient(110deg, rgba(13, 187, 173, 0.16), rgba(6, 15, 35, 0.84));
}

.about-page__hero-content {
    position: relative;
    z-index: 2;
    max-width: min(860px, 94%);
    margin: auto;
    min-height: inherit;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 14px;
    text-align: center;
    padding: clamp(24px, 4vw, 50px) clamp(18px, 3.6vw, 52px);
}

.about-page__hero-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #f3f5ff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(145deg, #1dd6c8, #5f66ff);
    box-shadow: 0 12px 28px rgba(25, 119, 255, 0.34);
}

.about-page__hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    color: rgba(231, 238, 255, 0.98);
    font-size: 12px;
    letter-spacing: 0.09em;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(10, 19, 45, 0.52);
}

.about-page__hero-title {
    margin: 0;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.01em;
    font-size: clamp(31px, 4.3vw, 54px);
    line-height: 1.16;
    text-wrap: balance;
}

.about-page__hero-lead {
    margin: 0;
    color: rgba(227, 233, 245, 0.95);
    font-size: clamp(15px, 2.2vw, 20px);
    line-height: 1.9;
    max-width: min(72ch, 96%);
}

.about-page__hero-actions {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.about-page__hero-btn {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    min-width: 168px;
}

.about-page__hero-btn--primary {
    color: #f6fcff;
    border: 1px solid rgba(137, 202, 255, 0.64);
    background: linear-gradient(135deg, rgba(25, 160, 190, 0.9), rgba(76, 93, 255, 0.9));
    box-shadow: 0 14px 26px rgba(30, 90, 160, 0.42);
}

.about-page__hero-btn--ghost {
    color: #dbe5ff;
    border: 1px solid rgba(255, 255, 255, 0.23);
    background: rgba(12, 18, 36, 0.58);
}

.about-page__hero-btn--soft {
    color: #d8f7f2;
    border: 1px solid rgba(29, 214, 200, 0.45);
    background: rgba(10, 33, 38, 0.64);
}

.about-page__hero-btn:hover {
    transform: translateY(-2px);
}

.about-page__hero-btn--ghost:hover {
    border-color: rgba(122, 170, 255, 0.42);
    background: rgba(17, 28, 56, 0.74);
}

.about-page__hero-btn--soft:hover {
    border-color: rgba(105, 255, 225, 0.5);
    background: rgba(11, 40, 46, 0.78);
}

.about-page__section {
    margin-top: clamp(26px, 3.2vw, 44px);
    scroll-margin-top: 108px;
}

.about-page__section-head {
    margin-bottom: 18px;
    display: grid;
    gap: 6px;
}

.about-page__section-title {
    margin: 0;
    color: #f2f6ff;
    font-size: clamp(24px, 3.1vw, 34px);
    line-height: 1.25;
    font-weight: 780;
}

.about-page__section-subtitle {
    margin: 0;
    color: rgba(205, 215, 236, 0.9);
    font-size: 14px;
    line-height: 1.75;
}

.about-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 1.7vw, 22px);
    align-items: stretch;
}

.about-page__single {
    display: grid;
    gap: clamp(14px, 1.7vw, 22px);
}

.about-page__card {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
        rgba(7, 14, 34, 0.9);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    min-height: 230px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-page__card:hover {
    transform: translateY(-4px);
    border-color: rgba(112, 184, 255, 0.4);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.44);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
        rgba(8, 16, 38, 0.95);
}

.about-page__card--summary {
    border-color: rgba(109, 206, 255, 0.28);
}

.about-page__card--features,
.about-page__card--social,
.about-page__card--points {
    min-height: 0;
}

.about-page__icon-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    inset-inline-end: 14px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: rgba(230, 238, 255, 0.95);
    background: linear-gradient(140deg, rgba(22, 196, 183, 0.85), rgba(79, 86, 255, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 22px rgba(20, 102, 193, 0.35);
    pointer-events: none;
}

.about-page__icon-badge svg {
    width: 18px;
    height: 18px;
}

.about-page__card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.about-page__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-page__card-content {
    padding: clamp(16px, 2.2vw, 24px);
    padding-top: clamp(52px, 5vw, 62px);
    padding-inline-end: clamp(58px, 6vw, 70px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.about-page__card-media + .about-page__card-content {
    padding-top: clamp(18px, 2.4vw, 28px);
    padding-inline-end: clamp(16px, 2.2vw, 24px);
}

.about-page__card-title {
    margin: 0;
    color: #f6f7fb;
    font-size: clamp(21px, 2.7vw, 31px);
    line-height: 1.25;
    font-weight: 760;
    letter-spacing: 0.01em;
}

.about-page__card-body {
    margin: 0;
    color: #d7d7d7;
    font-size: clamp(15px, 1.9vw, 16px);
    line-height: 1.95;
    word-break: break-word;
}

.about-page__feature-list {
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.about-page__feature-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    color: #dfe4f7;
    font-size: 15px;
    line-height: 1.9;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-page__feature-item:last-child {
    border-bottom: none;
}

.about-page__check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex: 0 0 24px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #dcf7f3;
    margin-top: 2px;
    background: linear-gradient(145deg, rgba(16, 174, 161, 0.88), rgba(90, 102, 255, 0.9));
    box-shadow: 0 7px 16px rgba(32, 78, 168, 0.34);
}

.about-page__grid--contact {
    align-items: stretch;
}

.about-page__card--contact {
    border-color: rgba(95, 207, 199, 0.34);
    background:
        linear-gradient(160deg, rgba(22, 196, 183, 0.11), rgba(88, 91, 255, 0.07)),
        rgba(7, 14, 34, 0.92);
}

.about-page__contact-block {
    display: grid;
    gap: 10px;
}

.about-page__contact-block + .about-page__contact-block {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-page__contact-label {
    margin: 0;
    color: #f4f7ff;
    font-size: 14px;
    font-weight: 730;
    letter-spacing: 0.01em;
}

.about-page__contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.about-page__contact-item {
    margin: 0;
}

.about-page__contact-link,
.about-page__contact-address {
    min-height: 52px;
    padding: 0 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.about-page__contact-link {
    color: #ecf2ff;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.about-page__contact-link:hover {
    transform: translateY(-2px);
    border-color: rgba(105, 166, 255, 0.45);
    background: rgba(35, 66, 120, 0.22);
    box-shadow: 0 12px 24px rgba(28, 45, 91, 0.35);
}

.about-page__contact-inline-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e9f6ff;
    background: linear-gradient(145deg, rgba(16, 174, 161, 0.9), rgba(90, 102, 255, 0.9));
    box-shadow: 0 8px 16px rgba(32, 78, 168, 0.32);
}

.about-page__contact-inline-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.about-page__contact-phone {
    color: #eef4ff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    unicode-bidi: plaintext;
}

.about-page__contact-address {
    margin: 0;
    color: #e9eeff;
    font-size: 16px;
    line-height: 1.8;
}

.about-page__social-row {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.about-page__social-btn {
    min-height: 48px;
    width: 100%;
    padding: 0 12px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #e6ebff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-page__social-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-page__social-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

.about-page__social-label {
    letter-spacing: 0.02em;
    opacity: 0.98;
    font-weight: 700;
}

.about-page__social-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(105, 166, 255, 0.45);
    box-shadow: 0 12px 24px rgba(28, 45, 91, 0.42);
}

.about-page__social-btn.is-disabled {
    opacity: 0.56;
    cursor: default;
    filter: grayscale(0.2);
}

.about-page__cta-row {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-page__cta-btn {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.about-page__cta-btn--primary {
    color: #f5fbff;
    border: 1px solid rgba(137, 202, 255, 0.62);
    background: linear-gradient(135deg, rgba(25, 160, 190, 0.9), rgba(76, 93, 255, 0.9));
}

.about-page__cta-btn--ghost {
    color: #dbe5ff;
    border: 1px solid rgba(255, 255, 255, 0.23);
    background: rgba(12, 18, 36, 0.58);
}

.about-page__cta-btn:hover {
    transform: translateY(-2px);
}

.about-page__point-list {
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.about-page__point-item {
    position: relative;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #e2e8fb;
    line-height: 1.8;
    font-size: 15px;
}

.about-page__point-item::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #54d1c8;
    box-shadow: 0 0 0 5px rgba(84, 209, 200, 0.15);
}

.about-page__empty {
    margin-top: 24px;
    border-radius: 24px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    background: rgba(7, 14, 34, 0.78);
    min-height: min(44vh, 360px);
    padding: clamp(22px, 4vw, 40px);
    display: grid;
    place-content: center;
    text-align: center;
    gap: 10px;
}

.about-page__empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: rgba(223, 232, 255, 0.94);
    background: linear-gradient(145deg, rgba(16, 174, 161, 0.6), rgba(90, 102, 255, 0.58));
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.about-page__empty-icon svg {
    width: 26px;
    height: 26px;
}

.about-page__empty-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(27px, 4.2vw, 42px);
    line-height: 1.2;
    font-weight: 800;
}

.about-page__empty-text {
    margin: 0;
    color: #d7d7d7;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.9;
    max-width: 54ch;
}

.about-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.about-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .about-page__grid {
        grid-template-columns: 1fr;
    }

    .about-page__hero {
        min-height: clamp(250px, 58vw, 360px);
    }
}

@media (max-width: 767px) {
    .about-page {
        padding-top: 18px;
    }

    .about-page__container {
        width: min(1200px, 95vw);
    }

    .about-page__hero {
        border-radius: 20px;
    }

    .about-page__hero-content {
        padding: 20px 14px;
    }

    .about-page__card {
        border-radius: 18px;
    }

    .about-page__card-title {
        font-size: clamp(21px, 7vw, 27px);
    }

    .about-page__card-body,
    .about-page__point-item {
        font-size: 15px;
        line-height: 1.9;
    }

    .about-page__hero-actions,
    .about-page__cta-row {
        width: 100%;
    }

    .about-page__hero-btn,
    .about-page__cta-btn {
        flex: 1 1 100%;
        min-width: 0;
    }

    .about-page__social-btn {
        min-height: 42px;
        padding: 0 10px;
        justify-content: center;
    }

    .about-page__social-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-page__social-label {
        font-size: 12px;
    }

    .about-page__card-content {
        padding-top: 52px;
        padding-inline-end: 52px;
    }

    .about-page__card-media + .about-page__card-content {
        padding-top: 16px;
        padding-inline-end: 14px;
    }

    .about-page__contact-link,
    .about-page__contact-address {
        min-height: 48px;
        padding: 10px 12px;
    }

    .about-page__contact-phone,
    .about-page__contact-address {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-page__card,
    .about-page__social-btn,
    .about-page__contact-link,
    .about-page__hero-btn,
    .about-page__cta-btn,
    .about-reveal {
        transition: none !important;
        transform: none !important;
    }

    .about-reveal {
        opacity: 1 !important;
    }
}
