:root {
    --ink: #06131f;
    --ink-2: #0a1a2b;
    --ink-3: #0e2133;
    --card: rgba(255, 255, 255, 0.04);
    --line: rgba(255, 255, 255, 0.09);
    --txt: #f2f3f5;
    --muted: #9aa7b5;
    --brand: #b9c2cc; /* فضي معدني — لون الهوية | metallic silver */
    --brand-2: #8b939d;
    --brand-lite: #d7dce2; /* فضي فاتح للنصوص والأيقونات على الخلفية الداكنة */
    --brand-grad: linear-gradient(115deg, #f4f6f8, #c3cad2 45%, #8b939d);
    /* لمسة أزرق ملكي عميق — تُستخدم بشكل طفيف جداً كما في المرجع | subtle deep-royal blue accent */
    --accent: #3355b0;
    --accent-lite: #7d9bea;
    --accent-grad: linear-gradient(115deg, #4a6fd6, #2f55b5 55%, #23408f);
}
html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: var(--ink);
    color: var(--txt);
    font-family: "Cairo", sans-serif;
    overflow-x: clip;
}
a {
    color: inherit;
    text-decoration: none;
}
::selection {
    background: var(--brand);
    color: #06131f;
}
img {
    max-width: 100%;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes loaderPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.75;
    }
}
@keyframes loaderBar {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}
@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}
@keyframes kbZoomIn {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.14);
    }
}
@keyframes kbZoomOut {
    from {
        transform: scale(1.16);
    }
    to {
        transform: scale(1.04);
    }
}
@keyframes dotFill {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes floatSoft {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition:
        opacity 0.55s ease,
        visibility 0.55s;
}
#loader.fade {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#loader .ring {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--brand-lite);
    animation: spinSlow 1s linear infinite;
}

/* Header */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition:
        background 0.35s,
        box-shadow 0.35s,
        border-color 0.35s;
    background: linear-gradient(180deg, rgba(6, 19, 31, 0.62), transparent);
    border-bottom: 1px solid transparent;
}
#site-header.scrolled {
    background: rgba(6, 19, 31, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}
.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.header-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.header-logo-img {
    height: 58px;
    width: auto;
    display: block;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14.5px;
    font-weight: 600;
    padding: 8px 13px;
    white-space: nowrap;
    transition: color 0.2s;
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    inset-inline-start: 13px;
    width: calc(100% - 26px);
    height: 2px;
    border-radius: 2px;
    background: var(--brand-grad);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}
.nav-link:hover {
    color: #fff;
}
.nav-link:hover::after {
    transform: scaleX(1);
}
.lang-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-family: "Cairo", sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 999px;
    cursor: pointer;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: all 0.2s;
    display: inline-block;
}
.lang-btn:hover {
    border-color: var(--brand-lite);
    color: var(--brand-lite);
}
.call-btn {
    background: var(--brand-grad);
    color: #06131f;
    font-weight: 800;
    font-size: 13.5px;
    padding: 10px 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}
.burger {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.burger:hover {
    border-color: var(--brand-lite);
    color: var(--brand-lite);
}
.search-btn {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.search-btn:hover {
    border-color: var(--brand-lite);
    color: var(--brand-lite);
}
#mobile-menu {
    display: none;
    background: rgba(6, 19, 31, 0.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding: 14px 24px 20px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
#mobile-menu.open {
    display: flex;
}
#mobile-menu a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    font-weight: 700;
    padding: 11px 12px;
    border-radius: 10px;
}
#mobile-menu a:hover {
    color: var(--brand-lite);
    background: rgba(255, 255, 255, 0.06);
}
#mobile-menu .call-mobile {
    margin-top: 10px;
    background: var(--brand-grad);
    color: #06131f;
    font-weight: 800;
    font-size: 15px;
    padding: 12px;
    border-radius: 999px;
    text-align: center;
}
@media (max-width: 1080px) {
    .header-nav,
    .header-call {
        display: none;
    }
    .burger {
        display: flex;
    }
    .header-spacer {
        flex: 1;
    }
    .header-inner {
        justify-content: space-between;
    }
}
@media (max-width: 480px) {
    .header-inner {
        gap: 18px;
    }
    .header-logo-img {
        height: 40px;
    }
    .header-actions {
        gap: 8px;
    }
    .search-btn,
    .burger {
        width: 36px;
        height: 36px;
    }
    .lang-btn {
        padding: 6px 11px;
        font-size: 12px;
    }
    .hero-kicker {
        letter-spacing: 0;
        word-spacing: 0;
    }
    .feature-kicker {
        letter-spacing: normal;
        word-spacing: 0;
    }
    .sec-kicker {
        letter-spacing: normal;
        word-spacing: 0;
    }
}

/* Hero slider */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--ink);
    display: flex;
    flex-direction: column;
}
/* وميض أزرق خافت جداً يمنح الهيرو عمقاً (لمسة المرجع) */
.hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset-inline-start: -8%;
    top: 8%;
    width: 60%;
    height: 70%;
    pointer-events: none;
    background: radial-gradient(
        closest-side,
        rgba(51, 85, 176, 0.22),
        transparent 72%
    );
    filter: blur(10px);
    opacity: 0;
    animation: heroGlowIn 2.4s ease-out 0.3s forwards;
}
html[dir="rtl"] .hero::after {
    inset-inline-start: auto;
    inset-inline-end: -8%;
}
@keyframes heroGlowIn {
    to {
        opacity: 1;
    }
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 1.2s ease,
        transform 1.2s cubic-bezier(0.2, 0.7, 0.3, 1),
        visibility 1.2s;
    transform: scale(1.04);
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}
.hero-slide .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    will-change: transform;
}
.hero-slide.active .bg {
    animation: kbZoomIn 9s ease-out forwards;
}
.hero-slide.active:nth-child(even) .bg {
    animation-name: kbZoomOut;
}
.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 19, 31, 0.96) 0%,
        rgba(6, 19, 31, 0.35) 45%,
        rgba(6, 19, 31, 0.55) 100%
    );
}
html[dir="rtl"] .hero-shade-x {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        270deg,
        rgba(6, 19, 31, 0.88) 12%,
        rgba(6, 19, 31, 0.25) 65%,
        transparent 100%
    );
}
html[dir="ltr"] .hero-shade-x {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(6, 19, 31, 0.88) 12%,
        rgba(6, 19, 31, 0.25) 65%,
        transparent 100%
    );
}
.hero-copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 100svh;
    padding: 150px 0 210px;
    max-width: 780px;
    text-align: start;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-lite);
    will-change: opacity, transform;
}
.hero-kicker::before {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--accent-grad);
    border-radius: 2px;
    transform-origin: inline-start;
    animation: kickerDraw 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) 0.55s both;
}
@keyframes kickerDraw {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
.hero-title {
    margin: 0 0 20px;
    font-size: clamp(34px, 5.2vw, 62px);
    font-weight: 900;
    line-height: 1.12;
    text-wrap: balance;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}
.hero-text {
    margin: 0 0 34px;
    font-size: clamp(15px, 1.4vw, 17.5px);
    line-height: 2;
    color: rgba(255, 255, 255, 0.82);
    text-wrap: pretty;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hero-copy-ctn {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    padding-inline: clamp(24px, 5vw, 72px);
}
.hero-copy > * {
    opacity: 0;
    transform: translateY(44px);
    filter: blur(6px);
    animation: heroCopyIn 0.95s cubic-bezier(0.16, 0.84, 0.3, 1) forwards;
}
.hero-copy > *:nth-child(1) {
    animation-delay: 0.15s;
}
.hero-copy > *:nth-child(2) {
    animation-delay: 0.32s;
}
.hero-copy > *:nth-child(3) {
    animation-delay: 0.49s;
}
.hero-copy > *:nth-child(4) {
    animation-delay: 0.66s;
}
@keyframes heroCopyIn {
    to {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}
.hero-ui {
    position: absolute;
    z-index: 5;
    inset-inline: 0;
    bottom: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.hero-dots {
    display: flex;
    gap: 10px;
}
.hero-dots button {
    position: relative;
    width: 44px;
    height: 5px;
    border-radius: 999px;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.22);
    overflow: hidden;
    transition: background 0.3s;
}
.hero-dots button .fill {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    width: 0;
    border-radius: 999px;
    background: var(--accent-grad);
    box-shadow: 0 0 10px rgba(51, 85, 176, 0.7);
}
.hero-dots button.active .fill {
    animation: dotFill var(--hero-interval, 6.5s) linear forwards;
}
.hero-arrows {
    display: flex;
    gap: 10px;
}
.hero-arrow {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(6, 19, 31, 0.35);
    backdrop-filter: blur(6px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s;
}
.hero-arrow:hover {
    background: var(--brand-grad);
    border-color: transparent;
    color: #06131f;
}
html[dir="rtl"] .hero-arrow svg {
    transform: scaleX(-1);
}

/* ═══ About Us ═══ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}
.about-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
}
.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-body {
    margin: 0;
    font-size: 16px;
    line-height: 2.05;
    color: var(--muted);
    white-space: pre-line;
    text-wrap: pretty;
}
.about-cta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px 26px;
    margin-top: 32px;
    padding: 22px 26px;
    border-radius: 18px;
    border: 1px solid rgba(223, 227, 232, 0.26);
    background: linear-gradient(
        120deg,
        rgba(223, 227, 232, 0.12),
        rgba(223, 227, 232, 0.02)
    );
    overflow: hidden;
}
.about-cta::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--brand-grad);
}
.about-cta-content {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.about-cta-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(223, 227, 232, 0.14);
    border: 1px solid rgba(223, 227, 232, 0.3);
    color: var(--brand-lite);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-cta-text {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.6;
}
.about-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 28px;
    border-radius: 999px;
    background: var(--brand-grad);
    color: #06131f;
    font-family: "Cairo", sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
    transition:
        transform 0.22s,
        box-shadow 0.22s;
    white-space: nowrap;
}
.about-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}
html[dir="rtl"] .about-cta-btn svg {
    transform: scaleX(-1);
}
@media (max-width: 520px) {
    .about-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 800px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-media {
        aspect-ratio: 16 / 9;
    }
    .hero-kicker {
        letter-spacing: normal;
    }
    .feature-kicker {
        letter-spacing: normal;
    }
    .sec-kicker {
        letter-spacing: normal;
    }
}

/* ═══ Editorial feature split (image + copy) ═══ */
.feature {
    position: relative;
    background: var(--ink-2);
    overflow: hidden;
}
.feature + .feature {
    border-top: 1px solid var(--line);
}
.feature-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    align-items: stretch;
}
.feature--rev .feature-media {
    order: 2;
}
.feature--rev .feature-body {
    order: 1;
}
.feature-media {
    position: relative;
    overflow: hidden;
    height: clamp(300px, 40vh, 380px);
}
.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.feature:hover .feature-media img {
    transform: scale(1.045);
}
.feature-veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(6, 19, 31, 0.18),
        rgba(6, 19, 31, 0.42)
    );
}
.feature-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(22px, 2.4vw, 34px) clamp(28px, 4.5vw, 64px);
    background:
        radial-gradient(
            120% 90% at 100% 0%,
            rgba(51, 85, 176, 0.1),
            transparent 60%
        ),
        var(--ink-2);
}
html[dir="rtl"] .feature-body {
    background:
        radial-gradient(
            120% 90% at 0% 0%,
            rgba(51, 85, 176, 0.1),
            transparent 60%
        ),
        var(--ink-2);
}
.feature-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-lite);
    will-change: opacity, transform;
}
.feature-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-grad);
}
.feature-title {
    margin: 0 0 11px;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
    line-height: 1.14;
    text-wrap: balance;
}
.feature-text {
    margin: 0;
    font-size: clamp(14px, 1.1vw, 15.5px);
    line-height: 1.75;
    color: var(--muted);
    max-width: 48ch;
    text-wrap: pretty;
}
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--txt);
    width: fit-content;
    position: relative;
    transition:
        color 0.25s,
        gap 0.25s;
}
.feature-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    inset-inline-start: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-grad);
    transform: scaleX(0);
    transform-origin: inline-start;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.feature-link:hover {
    color: var(--accent-lite);
    gap: 14px;
}
.feature-link:hover::after {
    transform: scaleX(1);
}
html[dir="rtl"] .feature-link svg {
    transform: scaleX(-1);
}
@media (max-width: 800px) {
    .feature-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .feature-media {
        order: 0;
    }
    .feature-body {
        order: 1;
    }
    .feature-media {
        aspect-ratio: 16 / 9;
    }
}
.hero-scroll {
    position: absolute;
    z-index: 5;
    bottom: 152px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    animation: floatSoft 2.6s ease-in-out infinite;
}
@media (max-width: 900px) {
    .hero-scroll {
        display: none;
    }
}

/* Stats strip */
.hero-stats {
    position: absolute;
    z-index: 6;
    inset-inline: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 24, 39, 0.72),
        rgba(6, 18, 30, 0.9)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
}
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.stat-cell {
    padding: 24px 18px;
    text-align: center;
    border-inline-start: 1px solid var(--line);
}
.stat-cell:first-child {
    border-inline-start: none;
}
.stat-num {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.1;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-num small {
    font-size: 0.6em;
}
.stat-label {
    margin: 4px 0 0;
    font-size: clamp(11.5px, 1.1vw, 13.5px);
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.06em;
}
@media (max-width: 720px) {
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-cell {
        padding: 16px 10px;
    }
    .stat-cell:nth-child(3) {
        border-inline-start: none;
    }
    .stat-cell:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
    .hero-copy {
        padding-bottom: 260px;
    }
    .hero-ui {
        bottom: 200px;
    }
}

/* Sections */
.sec {
    position: relative;
    padding: clamp(56px, 9vw, 92px) 24px;
    scroll-margin-top: 78px;
    overflow: hidden;
}
.sec-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-lite);
    will-change: opacity, transform;
}
.sec-kicker::before {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--brand-grad);
    border-radius: 2px;
}
.sec-title {
    margin: 0 0 18px;
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 900;
    line-height: 1.2;
    text-wrap: balance;
}
.sec-intro {
    margin: 0 0 54px;
    max-width: 840px;
    font-size: 16.5px;
    line-height: 2;
    color: var(--muted);
    text-wrap: pretty;
}

/* رأس القسم: نص العنوان + زر إجراء على الطرف المقابل */
.sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin-bottom: 54px;
}
.sec-head-text {
    flex: 1 1 480px;
    min-width: 0;
}

/* Image layers behind sections */
.bg-layer {
    position: absolute;
    inset: -60px 0;
    z-index: 0;
    pointer-events: none;
}
.bg-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}
.bg-layer .veil {
    position: absolute;
    inset: 0;
}
.sec > .container {
    position: relative;
    z-index: 2;
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition:
        opacity 0.85s cubic-bezier(0.2, 0.7, 0.3, 1),
        transform 0.85s cubic-bezier(0.2, 0.7, 0.3, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}
[data-reveal="left"] {
    transform: translateX(-44px);
}
[data-reveal="right"] {
    transform: translateX(44px);
}
[data-reveal="zoom"] {
    transform: scale(0.92);
}
[data-reveal].revealed {
    opacity: 1;
    transform: none;
}
html[dir="rtl"] [data-reveal="left"] {
    transform: translateX(44px);
}
html[dir="rtl"] [data-reveal="right"] {
    transform: translateX(-44px);
}
html[dir="rtl"] [data-reveal="left"].revealed,
html[dir="rtl"] [data-reveal="right"].revealed {
    transform: none;
}

/* Buttons */
.btn-accent {
    background: var(--brand-grad);
    color: #06131f;
    border: none;
    font-family: "Cairo", sans-serif;
    font-weight: 800;
    font-size: 15.5px;
    padding: 14px 34px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.22s,
        box-shadow 0.22s;
}
.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
}
.btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-weight: 700;
    font-size: 15.5px;
    padding: 12.5px 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    backdrop-filter: blur(4px);
    transition: all 0.22s;
}
.btn-ghost:hover {
    border-color: var(--brand-lite);
    color: var(--brand-lite);
    background: rgba(223, 227, 232, 0.06);
}

/* Cards */
.grid {
    display: grid;
    gap: 22px;
}
/* شبكة الخدمات — عدد الأعمدة يُتحكم به من لوحة التحكم عبر المتغير --svc-cols */
.svc-grid {
    grid-template-columns: repeat(var(--svc-cols, 4), minmax(0, 1fr));
}
@media (max-width: 860px) {
    .svc-grid {
        grid-template-columns: repeat(var(--svc-cols-t, 2), minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }
}

/* مربع البحث السريع (autocomplete) بقسم المنتجات بالصفحة الرئيسية */
.home-search-wrap {
    position: relative;
    flex: 1 1 320px;
    max-width: 380px;
}
.home-search-icon {
    position: absolute;
    inset-inline-start: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}
.home-search-input {
    width: 100%;
    padding: 11px 14px;
    padding-inline-start: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    font-family: "Cairo", sans-serif;
    font-size: 14px;
    color: var(--txt);
    outline: none;
    color-scheme: dark;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.home-search-input::placeholder {
    color: var(--muted);
}
.home-search-input:focus {
    border-color: var(--brand-lite);
    box-shadow: 0 0 0 3px rgba(223, 227, 232, 0.14);
}
.home-search-results {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-start: 0;
    inset-inline-end: 0;
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    max-height: 320px;
    z-index: 50;
    display: none;
}
.home-search-results.open {
    display: block;
}
.home-search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--txt);
    transition: background-color 0.15s;
}
.home-search-result:hover,
.home-search-result.active {
    background: rgba(223, 227, 232, 0.08);
}
.home-search-result-code {
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
    direction: ltr;
    unicode-bidi: isolate;
}
.home-search-empty {
    padding: 14px 16px;
    font-size: 13.5px;
    color: var(--muted);
}

/* شبكة منتجات الكتالوج — عدد الأعمدة يُتحكم به من لوحة التحكم عبر المتغير --cat-cols */
#catalog-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(var(--cat-cols, 4), minmax(0, 1fr));
}
@media (max-width: 860px) {
    #catalog-grid {
        grid-template-columns: repeat(var(--cat-cols-t, 2), minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    #catalog-grid {
        grid-template-columns: 1fr;
    }
}

.logo-grid {
    grid-template-columns: repeat(var(--logo-cols, 6), minmax(0, 1fr));
}
@media (max-width: 860px) {
    .logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}
.svc-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 34px 28px 30px;
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.055),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}
.svc-card::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--brand-grad);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s ease;
}
.svc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 227, 232, 0.45);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
}
.svc-card:hover::after {
    transform: scaleY(1);
}
.icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(223, 227, 232, 0.1);
    border: 1px solid rgba(223, 227, 232, 0.3);
    color: var(--brand-lite);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s;
}
.svc-card:hover .icon-badge {
    background: var(--brand-grad);
    border-color: transparent;
    color: #06131f;
    transform: rotate(-6deg) scale(1.06);
}

.prod-card {
    position: relative;
    background: var(--ink-3);
    border-radius: 20px;
    padding: 28px 26px;
    border: 1px solid var(--line);
    overflow: hidden;
    transition:
        transform 0.28s,
        border-color 0.28s,
        box-shadow 0.28s;
}
.prod-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        90% 90% at 50% -20%,
        rgba(223, 227, 232, 0.12),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.35s;
}
.prod-card:hover {
    transform: translateY(-7px);
    border-color: rgba(223, 227, 232, 0.4);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}
.prod-card:hover::before {
    opacity: 1;
}
.prod-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    color: var(--brand-lite);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.prod-card:hover .prod-icon {
    background: var(--brand-grad);
    border-color: transparent;
    color: #06131f;
}

/* CTA banner */
.cta-banner {
    position: relative;
    margin-top: 60px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
}
.cta-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-banner .veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(6, 19, 31, 0.94) 20%,
        rgba(6, 19, 31, 0.55) 70%,
        rgba(6, 19, 31, 0.35)
    );
}
html[dir="rtl"] .cta-banner .veil {
    background: linear-gradient(
        260deg,
        rgba(6, 19, 31, 0.94) 20%,
        rgba(6, 19, 31, 0.55) 70%,
        rgba(6, 19, 31, 0.35)
    );
}
.cta-banner-inner {
    position: relative;
    z-index: 2;
    padding: clamp(36px, 6vw, 70px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

/* Car brands — flip cards */
.flip-card {
    position: relative;
    min-height: 116px;
    perspective: 1200px;
    cursor: pointer;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 116px;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 14px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.flip-card-front {
    background: #f6f6f4;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}
.flip-card-front img {
    max-width: 74%;
    max-height: 58%;
    object-fit: contain;
}
.flip-card-back {
    background: var(--brand-grad);
    transform: rotateY(180deg);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}
.flip-card-back span {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #06131f;
    text-align: center;
}
.flip-hint {
    position: absolute;
    bottom: 8px;
    inset-inline-end: 8px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.07);
    color: #7a7d82;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flip-card-static .flip-card-face {
    position: absolute;
    inset: 0;
    background: #f6f6f4;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}
.brand-name-static {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #16181c;
    text-align: center;
}

/* Partners */
.partner-tile {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 12px;
    text-align: center;
    background: var(--card);
    font-family: "Cairo", sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--txt);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}
.partner-tile.clickable {
    cursor: pointer;
}
.partner-tile.clickable:hover {
    border-color: rgba(223, 227, 232, 0.55);
    background-color: rgba(223, 227, 232, 0.07);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
/* بطاقة الشريك التي تحمل شعاراً — خلفية بيضاء لإبراز الشعار */
.partner-tile.has-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 16px;
    min-height: 96px;
}
.partner-tile.has-logo img {
    max-width: 100%;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.partner-tile.has-logo.clickable:hover {
    background-color: #fff;
    border-color: rgba(223, 227, 232, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
/* جسم مودال الشريك — الشعار بجانب النص */
.partner-modal-body {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.partner-modal-logo {
    flex: 0 0 auto;
    width: 128px;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-modal-logo[hidden] {
    display: none;
}
.partner-modal-logo img {
    max-width: 100%;
    max-height: 84px;
    object-fit: contain;
    display: block;
}
html[dir="rtl"] .partner-modal-body {
    flex-direction: row-reverse;
}
@media (max-width: 800px) {
    .partner-modal-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    html[dir="rtl"] .partner-modal-body {
        flex-direction: column;
    }
    .partner-modal-logo {
        width: 100%;
        max-width: 180px;
    }
}

/* News */
.news-stage {
    position: relative;
    height: 440px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--ink-3);
}
.news-slide {
    position: absolute;
    inset: 0;
    transition: opacity 0.7s ease;
    opacity: 0;
    pointer-events: none;
}
.news-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    height: 100%;
}
.news-img {
    position: relative;
    min-height: 200px;
    background: var(--ink-2) center/cover no-repeat;
    overflow: hidden;
}
.news-img .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: var(--ink-2) center/cover no-repeat;
}
.news-img .slide.active {
    opacity: 1;
}
.news-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, var(--ink-3));
}
html[dir="rtl"] .news-img::after {
    background: linear-gradient(270deg, transparent 60%, var(--ink-3));
}
.news-body {
    padding: clamp(24px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-lite);
}
.news-slide-title {
    transition: color 0.2s;
}
.news-slide-title:hover,
.news-slide-title:focus-visible {
    color: var(--brand-lite);
    outline: none;
}
.news-dots {
    position: absolute;
    bottom: 20px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
html[dir="rtl"] .news-dots {
    transform: translateX(50%);
}
.news-dots button {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.25);
    padding: 0;
}
.news-dots button.active {
    width: 28px;
    background: var(--brand-lite);
}
@media (max-width: 720px) {
    .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 190px 1fr;
    }
    .news-stage {
        height: 500px;
    }
    .news-img::after {
        background: linear-gradient(180deg, transparent 55%, var(--ink-3));
    }
    html[dir="rtl"] .news-img::after {
        background: linear-gradient(180deg, transparent 55%, var(--ink-3));
    }
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 26px;
    align-items: stretch;
}
.contact-info-card {
    position: relative;
    background: linear-gradient(165deg, #102337, #071320);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 42px 34px;
    color: #fff;
    overflow: hidden;
}
.contact-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        120% 90% at 85% -10%,
        rgba(223, 227, 232, 0.16),
        transparent 55%
    );
    pointer-events: none;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(223, 227, 232, 0.1);
    border: 1px solid rgba(223, 227, 232, 0.32);
    color: var(--brand-lite);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 999px;
    transition:
        transform 0.2s,
        opacity 0.2s;
}
.contact-quick-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    color: #fff;
}
/* أيقونات مواقع التواصل أسفل بطاقة التواصل */
.contact-social-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}
.contact-social-icon:hover {
    transform: translateY(-3px);
    background: var(--brand-grad);
    border-color: transparent;
    color: #06131f;
}
.contact-form-card {
    background: rgba(13, 31, 48, 0.82);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 42px 34px;
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.contact-form-card input,
.contact-form-card textarea {
    color-scheme: dark;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--brand-lite) !important;
    box-shadow: 0 0 0 3px rgba(223, 227, 232, 0.14);
}
@media (max-width: 860px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Partner modal */
#partner-modal {
    position: fixed;
    inset: 0;
    background: rgba(3, 10, 17, 0.72);
    backdrop-filter: blur(6px);
    z-index: 190;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
#partner-modal.open {
    display: flex;
}
.modal-box {
    background: var(--ink-3);
    border: 1px solid var(--line);
    color: var(--txt);
    border-radius: 22px;
    max-width: 520px;
    width: 100%;
    padding: 36px 34px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.modal-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 15px;
    color: var(--txt);
    font-weight: 700;
    transition: all 0.2s;
}
.modal-close:hover {
    background: var(--brand-grad);
    border-color: transparent;
    color: #06131f;
}

/* ═══ Global site search (header command palette) ═══ */
#global-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 260;
    background: rgba(3, 10, 17, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 24px 24px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
#global-search-overlay.open {
    display: flex;
    opacity: 1;
}
.gsearch-box {
    width: 100%;
    max-width: 640px;
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: translateY(-14px);
    opacity: 0;
    transition:
        transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1),
        opacity 0.3s;
}
#global-search-overlay.open .gsearch-box {
    transform: none;
    opacity: 1;
}
.gsearch-field {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
.gsearch-icon {
    position: absolute;
    inset-inline-start: 22px;
    color: var(--muted);
    pointer-events: none;
}
.gsearch-input {
    flex: 1;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 20px 56px;
    font-family: "Cairo", sans-serif;
    font-size: 16px;
    color: var(--txt);
    color-scheme: dark;
}
.gsearch-input::placeholder {
    color: var(--muted);
}
.gsearch-close {
    position: absolute;
    inset-inline-end: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    width: 32px;
    height: 32px;
    border-radius: 999px;
    color: var(--txt);
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    transition: all 0.2s;
}
.gsearch-close:hover {
    background: var(--brand-grad);
    border-color: transparent;
    color: #06131f;
}
.gsearch-results {
    max-height: 60vh;
    overflow-y: auto;
}
.gsearch-group {
    padding: 10px 8px;
}
.gsearch-group + .gsearch-group {
    border-top: 1px solid var(--line);
}
.gsearch-group-label {
    margin: 0;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.gsearch-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.15s;
}
.gsearch-result:hover,
.gsearch-result.active {
    background: rgba(223, 227, 232, 0.08);
}
.gsearch-result-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-lite);
}
.gsearch-result-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gsearch-result-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--txt);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gsearch-result-meta {
    font-size: 12px;
    color: var(--muted);
}
.gsearch-empty,
.gsearch-hint {
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
}
@media (max-width: 640px) {
    #global-search-overlay {
        padding: 70px 16px 16px;
    }
}

/* Catalog */
.page-banner {
    position: relative;
    padding: 190px 24px 110px;
    overflow: hidden;
}
.page-banner .bg-layer {
    inset: 0;
}
.chip {
    font-family: "Cairo", sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    padding: 9px 20px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.22s;
    background: rgba(255, 255, 255, 0.05);
    color: var(--txt);
    border: 1px solid var(--line);
    display: inline-block;
}
.chip:hover {
    border-color: var(--brand-lite);
    color: var(--brand-lite);
}
.chip.active {
    background: var(--brand-grad);
    color: #06131f;
    border-color: transparent;
    font-weight: 800;
}
.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}
.catalog-toolbar-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.catalog-search-wrap {
    position: relative;
    flex: 1 1 280px;
}
.catalog-search-icon {
    position: absolute;
    inset-inline-start: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}
.catalog-search-input {
    width: 100%;
    padding: 13px 16px;
    padding-inline-start: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    font-family: "Cairo", sans-serif;
    font-size: 14.5px;
    color: var(--txt);
    outline: none;
    color-scheme: dark;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.catalog-search-input::placeholder {
    color: var(--muted);
}
.catalog-select {
    position: relative;
    flex: 0 0 200px;
}
@media (min-width: 860px) {
    .catalog-select {
        flex-basis: 300px;
    }
}
.catalog-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    font-family: "Cairo", sans-serif;
    font-size: 14.5px;
    color: var(--txt);
    cursor: pointer;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.catalog-select-trigger:hover,
.catalog-select-trigger:focus-visible {
    border-color: var(--brand-lite);
    outline: none;
}
.catalog-select.open .catalog-select-trigger {
    border-color: var(--brand-lite);
    box-shadow: 0 0 0 3px rgba(223, 227, 232, 0.14);
}
.catalog-select-trigger svg {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.2s;
}
.catalog-select.open .catalog-select-trigger svg {
    transform: rotate(180deg);
}
.catalog-select-list {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-start: 0;
    inset-inline-end: 0;
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    max-height: 280px;
    z-index: 50;
    display: none;
}
.catalog-select.open .catalog-select-list {
    display: block;
}
.catalog-select-option {
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--txt);
    cursor: pointer;
    transition: background-color 0.15s;
}
.catalog-select-option:hover {
    background: rgba(223, 227, 232, 0.08);
}
.catalog-select-option.selected {
    color: var(--brand-lite);
    background: rgba(223, 227, 232, 0.06);
}
.catalog-sort-group {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.sort-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    color: var(--txt);
    cursor: pointer;
    transition: all 0.2s;
}
.sort-btn:hover {
    border-color: var(--brand-lite);
    color: var(--brand-lite);
}
.sort-btn.active {
    background: var(--brand-grad);
    color: #06131f;
    border-color: transparent;
}
.catalog-search-input:focus {
    border-color: var(--brand-lite);
    box-shadow: 0 0 0 3px rgba(223, 227, 232, 0.14);
}
.cat-card {
    background: var(--ink-3);
    border-radius: 20px;
    border: 1px solid var(--line);
    overflow: hidden;
    transition:
        transform 0.28s,
        box-shadow 0.28s,
        border-color 0.28s;
}
.cat-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5);
    border-color: rgba(223, 227, 232, 0.4);
}
.cat-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--ink-2);
    overflow: hidden;
}
.cat-media .slide {
    position: absolute;
    inset: 0;
    transition:
        opacity 0.5s ease,
        transform 0.6s ease;
    opacity: 0;
    background: var(--ink-2) center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
}
.cat-media .slide.active {
    opacity: 1;
}
.cat-card:hover .cat-media .slide.active {
    transform: scale(1.06);
}

/* ═══ Category tiles (homepage) ═══ */
.cat-tile {
    display: flex;
    flex-direction: column;
    background: var(--ink-3);
    border-radius: 20px;
    border: 1px solid var(--line);
    overflow: hidden;
    text-decoration: none;
    color: var(--txt);
    transition:
        transform 0.28s,
        box-shadow 0.28s,
        border-color 0.28s;
}
.cat-tile:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5);
    border-color: rgba(223, 227, 232, 0.4);
}
.cat-tile-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--ink-2);
    overflow: hidden;
}
.cat-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cat-tile:hover .cat-tile-media img {
    transform: scale(1.07);
}
.cat-tile-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(223, 227, 232, 0.5);
}
.cat-tile-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cat-tile-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}
.cat-tile-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--brand-lite);
    transition: gap 0.25s;
}
.cat-tile:hover .cat-tile-btn {
    gap: 13px;
}
html[dir="rtl"] .cat-tile-btn svg {
    transform: scaleX(-1);
}

/* ═══ Product card media (single static image) ═══ */
.cat-card.is-clickable {
    cursor: pointer;
}
.cat-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.cat-card:hover .cat-media-img {
    transform: scale(1.06);
}
.cat-media-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
}
.cat-media-badge {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: rgba(6, 19, 31, 0.62);
    backdrop-filter: blur(4px);
    padding: 4px 9px;
    border-radius: 999px;
}

/* ═══ Product dialog ═══ */
#product-modal {
    position: fixed;
    inset: 0;
    z-index: 195;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(3, 10, 17, 0.78);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
#product-modal.open {
    display: flex;
    opacity: 1;
}
.pm-box {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    width: 100%;
    max-width: 760px;
    max-height: 86vh;
    overflow: hidden;
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    transform: scale(0.94) translateY(10px);
    opacity: 0;
    transition:
        transform 0.32s cubic-bezier(0.2, 0.7, 0.3, 1),
        opacity 0.32s;
}
#product-modal.open .pm-box {
    transform: none;
    opacity: 1;
}
.pm-close {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    z-index: 12;
}
.pm-media {
    position: relative;
    direction: ltr;
    background: var(--ink-2);
    min-height: 320px;
    overflow: hidden;
}
.pm-slider {
    position: absolute;
    inset: 0;
}
.pm-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    background: var(--ink-2) center/contain no-repeat;
}
.pm-slide.active {
    opacity: 1;
}
.pm-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(6, 19, 31, 0.6);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}
.pm-arrow:hover {
    background: var(--brand-grad);
    color: #06131f;
    border-color: transparent;
}
.pm-prev {
    left: 10px;
}
.pm-next {
    right: 10px;
}
.pm-arrow.hidden {
    display: none;
}
.pm-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    z-index: 6;
    display: flex;
    justify-content: center;
    gap: 7px;
}
.pm-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
    transition: all 0.25s;
}
.pm-dots button.active {
    background: var(--brand-lite);
    width: 22px;
}
.pm-info {
    padding: clamp(22px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}
.pm-category-list {
    align-self: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pm-category-list:empty {
    display: none;
}
.pm-category {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--brand-lite);
    background: rgba(223, 227, 232, 0.1);
    border: 1px solid rgba(223, 227, 232, 0.25);
    padding: 3px 12px;
    border-radius: 999px;
}
.pm-name {
    margin: 0;
    font-size: clamp(19px, 2.4vw, 25px);
    font-weight: 900;
    line-height: 1.3;
}
.pm-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
}
.pm-meta:empty {
    display: none;
}
.pm-code {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--muted);
}
.pm-brand {
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.pm-desc {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--muted);
    white-space: pre-line;
}
.pm-desc:empty {
    display: none;
}
@media (max-width: 640px) {
    .pm-box {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }
    .pm-media {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
    .pm-info {
        overflow-y: visible;
    }
}

/* ═══ News cards (editorial) ═══ */
.news-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
@media (max-width: 900px) {
    .news-grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .news-grid-cards {
        grid-template-columns: 1fr;
    }
}
.news-card {
    display: flex;
    flex-direction: column;
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.28s,
        box-shadow 0.28s,
        border-color 0.28s;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5);
    border-color: rgba(223, 227, 232, 0.35);
}
.news-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--ink-2);
    overflow: hidden;
}
.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card-media img {
    transform: scale(1.06);
}
.news-card-media-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(223, 227, 232, 0.35);
}
.news-card-count {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: rgba(6, 19, 31, 0.62);
    backdrop-filter: blur(4px);
    padding: 4px 9px;
    border-radius: 999px;
}
.news-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 24px 24px;
}
.news-card-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-lite);
}
.news-card-title {
    position: relative;
    margin: 0;
    padding-bottom: 13px;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.4;
}
.news-card-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 38px;
    height: 3px;
    border-radius: 3px;
    background: var(--brand-grad);
}
.news-card-excerpt {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--muted);
}
.news-card-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 800;
    color: var(--brand-lite);
    transition: gap 0.25s;
}
.news-card:hover .news-card-more {
    gap: 12px;
}
html[dir="rtl"] .news-card-more svg,
html[dir="rtl"] .news-sec .btn-accent svg {
    transform: scaleX(-1);
}
.news-hidden {
    display: none !important;
}

/* ═══ Pagination ═══ */
.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 52px;
}
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-size: 14.5px;
    font-weight: 800;
    color: var(--brand-lite);
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: 12px;
    text-decoration: none;
    transition:
        transform 0.2s,
        border-color 0.2s,
        background 0.2s,
        color 0.2s,
        box-shadow 0.2s;
}
a.page-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 220, 226, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}
.page-btn.is-active {
    color: #06131f;
    background: var(--brand-grad);
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    cursor: default;
}
.page-btn.is-disabled {
    opacity: 0.38;
    cursor: not-allowed;
}
.page-nav {
    color: var(--brand-lite);
}
html[dir="rtl"] .page-nav svg {
    transform: scaleX(-1);
}
.page-ellipsis {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    min-width: 28px;
    height: 44px;
    padding-bottom: 6px;
    color: var(--muted);
    font-weight: 800;
}
@media (max-width: 480px) {
    .pagination {
        gap: 7px;
    }
    .page-btn {
        min-width: 40px;
        height: 40px;
        font-size: 13.5px;
    }
}

/* ═══ News article dialog ═══ */
#news-modal {
    position: fixed;
    inset: 0;
    z-index: 196;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 4vh 20px;
    background: rgba(3, 10, 17, 0.8);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}
#news-modal.open {
    display: flex;
    opacity: 1;
}
.nm-box {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 980px;
    margin: auto;
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    transform: scale(0.95) translateY(12px);
    opacity: 0;
    transition:
        transform 0.32s cubic-bezier(0.2, 0.7, 0.3, 1),
        opacity 0.32s;
}
#news-modal.open .nm-box {
    transform: none;
    opacity: 1;
}
.nm-close {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    z-index: 12;
}
.nm-media {
    position: relative;
    direction: ltr;
    flex: 0 0 44%;
    align-self: stretch;
    min-height: 340px;
    background: #050e17;
    overflow: hidden;
}
.nm-slider {
    position: absolute;
    inset: 0;
}
.nm-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: #050e17 center/cover no-repeat;
}
.nm-slide.active {
    opacity: 1;
}
.nm-prev {
    left: 10px;
}
.nm-next {
    right: 10px;
}
.nm-article {
    flex: 1;
    min-width: 0;
    align-self: center;
    max-height: 92vh;
    overflow-y: auto;
    padding: clamp(26px, 4vw, 44px);
}
.nm-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--brand-lite);
}
.nm-title {
    position: relative;
    margin: 14px 0 0;
    padding-bottom: 20px;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    line-height: 1.3;
}
.nm-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: var(--brand-grad);
}
.nm-body {
    margin-top: 22px;
    font-size: 16px;
    line-height: 2.05;
    color: #c9ced7;
    white-space: pre-line;
}
@media (max-width: 720px) {
    .nm-box {
        flex-direction: column;
        max-width: 620px;
    }
    .nm-media {
        flex: none;
        width: 100%;
        min-height: 0;
        height: clamp(180px, 30vh, 260px);
    }
    .nm-article {
        align-self: stretch;
        max-height: none;
    }
}
.flip-btn {
    position: absolute;
    top: 50%;
    inset-inline-end: 10px;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(6, 19, 31, 0.6);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition:
        background 0.2s,
        color 0.2s;
}
.flip-btn:hover {
    background: var(--brand-grad);
    color: #06131f;
}

/* Footer */
footer.site-footer {
    position: relative;
    background: #040d17;
    color: #fff;
    padding: 80px 24px 32px;
    border-top: 1px solid var(--line);
    overflow: hidden;
}
footer.site-footer::before {
    content: "";
    position: absolute;
    top: -140px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 620px;
    height: 260px;
    background: radial-gradient(
        closest-side,
        rgba(223, 227, 232, 0.12),
        transparent
    );
    pointer-events: none;
}
html[dir="rtl"] footer.site-footer::before {
    transform: translateX(50%);
}
.footer-head {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--line);
}
.foot-label {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-lite);
}
.foot-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: color 0.2s;
}
.foot-link:hover {
    color: var(--brand-lite);
}
.foot-pill {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 999px;
    transition: all 0.2s;
}

/* شريط الحقوق السفلي — في المنتصف */
.footer-bottom {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.footer-copy {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}
.footer-copy-sym {
    color: var(--brand-lite);
    font-weight: 800;
}
.footer-copy-brand {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}
.footer-copy-dot {
    color: rgba(255, 255, 255, 0.28);
}
.foot-pill:hover {
    background: var(--brand-grad);
    border-color: transparent;
    color: #06131f;
}

.wa-float {
    position: fixed;
    bottom: 26px;
    inset-inline-end: 26px;
    z-index: 80;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s;
}
.wa-float:hover {
    transform: scale(1.1);
}

@media (max-width: 640px) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
    }
    .hero-kicker,
    .feature-kicker,
    .sec-kicker {
        letter-spacing: 0 !important;
        word-spacing: 0 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .hero-slide.active .bg {
        animation: none;
    }
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-copy > * {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .hero-scroll {
        animation: none;
    }
}
