/* Innovia — Tech Premium Theme v1.6.1 */

:root {
    --ui-radius: 16px;
    --ui-radius-lg: 20px;
    --ui-shadow: 0 4px 24px rgba(5, 10, 20, 0.08);
    --ui-shadow-lg: 0 24px 64px rgba(0, 132, 255, 0.15);
    --ui-gradient: linear-gradient(135deg, var(--tech-blue, #0084FF) 0%, var(--tech-cyan, #00D4FF) 50%, var(--tech-violet, #7C3AED) 100%);
    --ui-gradient-soft: linear-gradient(135deg, rgba(0,132,255,0.12) 0%, rgba(0,212,255,0.08) 100%);
    --ui-surface: #ffffff;
    --ui-surface-glass: rgba(255, 255, 255, 0.72);
    --ui-muted: #64748b;
    --ui-border: rgba(0, 132, 255, 0.1);
    --tech-blue: #0084FF;
    --tech-cyan: #00D4FF;
    --tech-violet: #7C3AED;
    --tech-dark: #050A14;
    --tech-dark-2: #0A1120;
    --tech-glow: 0 0 40px rgba(0, 212, 255, 0.3);
    --tech-glow-sm: 0 0 20px rgba(0, 132, 255, 0.2);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

/* ── Base ── */
body.theme-tech {
    font-family: var(--font-family-en, 'Plus Jakarta Sans', 'Inter', sans-serif);
    color: var(--text-color, #1E293B);
    background-color: var(--background-color, #F0F4FA);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 132, 255, 0.08) 0%, transparent 60%),
        linear-gradient(rgba(0, 132, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 132, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.theme-tech.rtl {
    font-family: var(--font-family-ar, 'Cairo', sans-serif);
}

/* ── Scroll reveal ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.hero-section [data-reveal] { transform: translateY(16px); }

/* ── Skip link ── */
.skip-link {
    position: absolute; top: -100px; left: 0;
    background: var(--ui-gradient); color: #fff;
    padding: 0.5rem 1rem; z-index: 9999; text-decoration: none;
    border-radius: 0 0 8px 0; font-weight: 600;
}
body.rtl .skip-link { left: auto; right: 0; border-radius: 0 0 0 8px; }
.skip-link:focus { top: 0; }

/* ── Header (adaptive dark/light) ── */
.site-header {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    position: sticky; top: 0; z-index: 200;
    transition: all 0.35s var(--ease-out);
}

.site-header.header-dark {
    background: rgba(5, 10, 20, 0.65);
    border-bottom-color: rgba(0, 212, 255, 0.12);
}

.site-header.header-dark .navbar-brand { color: #fff !important; }
.site-header.header-dark .nav-link { color: rgba(255,255,255,0.85) !important; }
.site-header.header-dark .nav-link:hover {
    color: var(--tech-cyan) !important;
    background: rgba(0, 212, 255, 0.08);
}
.site-header.header-dark .navbar-toggler-icon {
    filter: invert(1);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--ui-border);
    box-shadow: 0 4px 30px rgba(5, 10, 20, 0.08);
}

.site-header.header-dark.is-scrolled {
    background: rgba(5, 10, 20, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 212, 255, 0.2);
}

.navbar-brand {
    color: var(--heading-color, #0A0F1C) !important;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-family: 'Space Grotesk', var(--font-family-en), sans-serif;
}

.navbar-nav .nav-link {
    font-weight: 600; font-size: 0.92rem;
    padding: 0.5rem 1rem !important; border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.navbar-nav .nav-link:hover {
    color: var(--tech-blue) !important;
    background: rgba(0, 132, 255, 0.08);
}

/* Header nav compact + toolbar */
.header-nav .nav-link {
    font-size: 0.875rem;
    padding: 0.45rem 0.65rem !important;
    white-space: nowrap;
}

.header-toolbar {
    flex-shrink: 0;
    padding-inline-end: 0.25rem;
}

.header-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(0, 132, 255, 0.25);
    background: rgba(0, 132, 255, 0.06);
    color: inherit;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.header-icon-btn:hover {
    background: rgba(0, 132, 255, 0.14);
    border-color: rgba(0, 212, 255, 0.45);
    color: var(--tech-cyan);
}

.site-header.header-dark .header-icon-btn {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

.site-header.header-dark .header-icon-btn:hover {
    background: rgba(0, 212, 255, 0.12);
    color: var(--tech-cyan);
}

.header-icon-btn .cart-badge {
    position: absolute;
    top: -4px;
    inset-inline-end: -4px;
    min-width: 1.1rem;
    font-size: 0.62rem;
    padding: 0.2em 0.45em;
    line-height: 1;
}

.lang-switch {
    display: inline-flex;
    border-radius: 10px;
    border: 1px solid rgba(0, 132, 255, 0.25);
    overflow: hidden;
    background: rgba(0, 132, 255, 0.04);
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.lang-switch-btn.is-active {
    background: var(--tech-blue, #0084FF);
    color: #fff;
}

.lang-switch-btn:not(.is-active):hover {
    background: rgba(0, 132, 255, 0.1);
}

.site-header.header-dark .lang-switch {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.site-header.header-dark .lang-switch-btn {
    color: rgba(255, 255, 255, 0.85);
}

.site-header.header-dark .lang-switch-btn.is-active {
    background: rgba(0, 212, 255, 0.25);
    color: #fff;
}

.header-cta {
    white-space: nowrap;
    padding-inline: 1rem !important;
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .header-nav .nav-link {
        font-size: 0.82rem;
        padding: 0.4rem 0.5rem !important;
    }
}

@media (max-width: 991.98px) {
    .header-toolbar {
        width: 100%;
        padding-top: 0.75rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(0, 132, 255, 0.12);
        justify-content: flex-start;
    }

    .header-cta {
        display: inline-flex !important;
    }
}

/* ── Section headers ── */
.section-header { max-width: 680px; margin-inline: auto; }

.section-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--tech-blue);
    background: var(--ui-gradient-soft);
    padding: 0.4rem 1rem; border-radius: 999px;
    border: 1px solid rgba(0, 132, 255, 0.15);
    margin-bottom: 0.85rem;
}

.section-eyebrow i { font-size: 0.85rem; opacity: 0.8; }

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: var(--heading-color, #0A0F1C);
    line-height: 1.12;
    font-family: 'Space Grotesk', var(--font-family-en), sans-serif;
}

.section-line {
    width: 64px; height: 3px;
    background: var(--ui-gradient);
    border-radius: 4px;
    margin: 1.25rem auto 0;
    box-shadow: var(--tech-glow-sm);
}

/* ── Sections ── */
.page-section { position: relative; z-index: 1; }

.section-statistics {
    background: linear-gradient(180deg, #0A1120 0%, #0F1729 100%);
    color: #e2e8f0;
}
.section-statistics .section-eyebrow { color: var(--tech-cyan); border-color: rgba(0,212,255,0.2); background: rgba(0,212,255,0.08); }
.section-statistics .section-title { color: #fff; }
.section-statistics .stat-label { color: #94a3b8; }

.section-services_grid,
.section-products_grid,
.section-industries_grid {
    background: linear-gradient(180deg, #fff 0%, #F0F4FA 100%);
}

.section-features_grid {
    background: linear-gradient(135deg, rgba(0,132,255,0.04) 0%, rgba(124,58,237,0.04) 100%);
}

.section-client_logos {
    background: var(--tech-dark);
    overflow: hidden;
}
.section-client_logos .section-eyebrow { color: var(--tech-cyan); background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.2); }
.section-client_logos .section-title { color: #fff; }
.section-client_logos .section-line { box-shadow: 0 0 20px rgba(0,212,255,0.4); }

.section-testimonials {
    background: linear-gradient(180deg, #F0F4FA 0%, #E8EEF8 100%);
}

.section-blog_posts { background: #fff; }

.section-cta .premium-cta {
    background: var(--tech-dark);
    border-radius: var(--ui-radius-lg);
    padding: 4.5rem 2rem !important;
    color: #fff;
    position: relative; overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: var(--ui-shadow-lg), inset 0 1px 0 rgba(255,255,255,0.05);
}

.section-cta .premium-cta::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0,132,255,0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(124,58,237,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.section-cta .premium-cta::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px);
    background-size: 100% 4px;
    pointer-events: none; opacity: 0.5;
}

.section-cta .premium-cta h2,
.section-cta .premium-cta .lead { color: #fff; position: relative; z-index: 1; }

.section-cta .premium-cta .btn-glow {
    background: var(--ui-gradient);
    color: #fff; border: none;
    box-shadow: var(--tech-glow);
    position: relative; z-index: 1;
}

/* ══════════════════════════════════════
   HERO — Dark Tech Immersive
   ══════════════════════════════════════ */
.hero-section {
    background: var(--tech-dark);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    pointer-events: none; overflow: hidden;
}

.hero-aurora {
    position: absolute; inset: -50%;
    background:
        conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(0,132,255,0.15) 60deg, transparent 120deg, rgba(0,212,255,0.12) 180deg, transparent 240deg, rgba(124,58,237,0.1) 300deg, transparent 360deg);
    animation: auroraSpin 20s linear infinite;
    opacity: 0.7;
}

@keyframes auroraSpin {
    to { transform: rotate(360deg); }
}

.hero-blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.55;
    animation: blobFloat 14s ease-in-out infinite;
}

.blob-1 { width: 520px; height: 520px; background: rgba(0, 132, 255, 0.35); top: -160px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: rgba(0, 212, 255, 0.25); bottom: -100px; left: -80px; animation-delay: -5s; }
.blob-3 { width: 280px; height: 280px; background: rgba(124, 58, 237, 0.3); top: 35%; left: 40%; animation-delay: -10s; }

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,212,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 45%, black 10%, transparent 75%);
}

.hero-scanline {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,212,255,0.015) 2px, rgba(0,212,255,0.015) 4px);
    pointer-events: none;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(24px,-24px) scale(1.06); }
    66% { transform: translate(-18px,18px) scale(0.94); }
}

.min-vh-75 { min-height: 88vh; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(0, 212, 255, 0.08);
    color: var(--tech-cyan);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.06em;
    border: 1px solid rgba(0, 212, 255, 0.25);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--tech-cyan);
    box-shadow: 0 0 12px var(--tech-cyan);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    font-weight: 800; letter-spacing: -0.04em;
    line-height: 1.06; margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', var(--font-family-en), sans-serif;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 45%, #0084FF 70%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem; color: #94a3b8;
    margin-bottom: 2rem; max-width: 520px; line-height: 1.75;
}

.floating-card { animation: floatCard 7s ease-in-out infinite; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Terminal glass card */
.glass-card {
    background: rgba(10, 17, 32, 0.85);
    backdrop-filter: blur(24px);
    border-radius: var(--ui-radius-lg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4), var(--tech-glow-sm), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    color: #e2e8f0;
}

.glass-card .card-body,
.glass-card .card-title,
.glass-card h1, .glass-card h2, .glass-card h3,
.glass-card h4, .glass-card h5, .glass-card h6 {
    color: #f8fafc;
}

.glass-card .text-muted,
.glass-card .list-group-item {
    color: #94a3b8 !important;
}

.glass-card a:not(.btn) {
    color: var(--tech-cyan);
}

.glass-card a:not(.btn):hover {
    color: #7dd3fc;
}

/* ── Frontend forms — Design System 2.0 (see design-system/components.css)
   Context themes: .form-theme-light | .form-theme-dark | .form-theme-checkout */

body.ds-2 #main-content .form-label,
body.ds-2 #main-content .form-check-label,
body.ds-2 .frontend-form.form-theme-light .form-label {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium, 600);
}

body.ds-2 .glass-card:not(.form-theme-light) .frontend-form,
body.ds-2 .glass-card.form-theme-dark .frontend-form {
    /* dark glass contexts use form-theme-dark via components.css */
}

.section-contact_form {
    color: var(--text-primary, #fff);
}

.section-contact_form h2 {
    color: inherit;
}

.section-contact_form .dynamic-form {
    background: rgba(10, 17, 32, 0.85);
    backdrop-filter: blur(24px);
    border-radius: var(--ui-radius-lg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
}

.section-contact_form .dynamic-form p {
    color: var(--text-muted, rgba(255, 255, 255, 0.75));
}

.glass-card .table {
    --bs-table-color: inherit;
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--border-subtle, rgba(0, 212, 255, 0.12));
}

.glass-card .list-group-item.bg-transparent {
    color: inherit;
    border-color: var(--border-subtle, rgba(0, 212, 255, 0.12));
}

.hero-card-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.85rem 1.15rem;
    display: flex; gap: 0.45rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.hero-card-body { padding: 1.75rem; }

.metric-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.08);
    font-weight: 500; color: #94a3b8; font-size: 0.92rem;
}

.metric-row:last-child { border-bottom: 0; }

.tech-metric-cyan { color: var(--tech-cyan) !important; font-family: 'Space Grotesk', monospace; font-size: 1.1rem; text-shadow: 0 0 20px rgba(0,212,255,0.5); }
.tech-metric-green { color: #34d399 !important; font-family: 'Space Grotesk', monospace; font-size: 1.1rem; }
.tech-metric-violet { color: #a78bfa !important; font-family: 'Space Grotesk', monospace; font-size: 1.1rem; }

.hero-image {
    border-radius: var(--ui-radius-lg) !important;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: var(--ui-shadow-lg), var(--tech-glow-sm);
}

/* ── Cards ── */
.solution-card,
.feature-card {
    background: var(--ui-surface);
    border-radius: var(--ui-radius);
    border: 1px solid var(--ui-border);
    box-shadow: var(--ui-shadow);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
    height: 100%; color: inherit;
    position: relative; overflow: hidden;
}

.solution-card::before,
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--ui-gradient);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s var(--ease-out);
}

body.rtl .solution-card::before,
body.rtl .feature-card::before { transform-origin: right; }

.solution-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ui-shadow-lg), var(--tech-glow-sm);
    border-color: rgba(0, 132, 255, 0.25);
    color: inherit;
}

.solution-card:hover::before,
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 54px; height: 54px; border-radius: 14px;
    background: var(--ui-gradient-soft);
    border: 1px solid rgba(0, 132, 255, 0.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--tech-blue);
    font-size: 1.3rem;
    box-shadow: var(--tech-glow-sm);
}

.solution-card h5,
.feature-card h5 {
    font-weight: 700;
    font-family: 'Space Grotesk', var(--font-family-en), sans-serif;
}

/* ── Statistics (dark section) ── */
.glass-stat {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--ui-radius);
    padding: 2rem 1rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.glass-stat:hover {
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: var(--tech-glow-sm);
}

.stat-value {
    font-size: clamp(2.25rem, 4vw, 3.2rem);
    font-weight: 800; letter-spacing: -0.03em;
    background: linear-gradient(135deg, #00D4FF 0%, #0084FF 60%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    font-family: 'Space Grotesk', sans-serif;
}

/* ── Logo marquee ── */
.logo-marquee {
    position: relative; overflow: hidden; padding: 2rem 0;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-marquee-track {
    display: flex; align-items: center; gap: 4rem;
    width: max-content;
    animation: marqueeRoll 30s linear infinite;
}

body.rtl .logo-marquee-track { animation-name: marqueeRollRtl; }

@keyframes marqueeRoll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeRollRtl { 0% { transform: translateX(0); } 100% { transform: translateX(50%); } }

.logo-marquee-item {
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    min-width: 130px; text-decoration: none;
    transition: transform 0.3s;
}

.logo-marquee-item:hover { transform: scale(1.1); }

.client-logo {
    max-height: 48px; width: auto; object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.55);
    transition: filter 0.3s, opacity 0.3s;
}

.logo-marquee-item:hover .client-logo {
    filter: brightness(0) invert(1) opacity(0.95);
}

.client-name { font-weight: 600; color: #64748b; white-space: nowrap; }

/* ── Testimonials carousel ── */
.testimonials-carousel {
    position: relative; max-width: 800px;
    margin: 0 auto; padding: 0 3rem;
}

.carousel-viewport { overflow: hidden; border-radius: var(--ui-radius-lg); }

.carousel-track {
    display: flex;
    transition: transform 0.65s var(--ease-out);
}

.carousel-slide { flex: 0 0 100%; padding: 0 0.5rem; }

.premium-testimonial {
    background: #fff;
    border-radius: var(--ui-radius-lg);
    padding: 2.75rem 2.25rem;
    box-shadow: var(--ui-shadow-lg);
    border: 1px solid var(--ui-border);
    text-align: center;
    position: relative;
}

.premium-testimonial::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 3px;
    background: var(--ui-gradient);
    border-radius: 0 0 4px 4px;
    box-shadow: var(--tech-glow-sm);
}

.quote-icon {
    width: 52px; height: 52px; margin: 0 auto 1.25rem;
    border-radius: 14px;
    background: var(--ui-gradient);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    box-shadow: var(--tech-glow-sm);
}

.testimonial-quote {
    font-size: 1.15rem; line-height: 1.75;
    color: var(--text-color); margin-bottom: 1.5rem;
    font-style: italic;
}

.carousel-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px; border-radius: 12px;
    border: 1px solid var(--ui-border);
    background: #fff; color: var(--tech-blue);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: var(--ui-shadow);
    transition: all 0.25s; z-index: 2;
}

.carousel-nav:hover {
    background: var(--ui-gradient); color: #fff;
    border-color: transparent;
    box-shadow: var(--tech-glow-sm);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }
body.rtl .carousel-prev { left: auto; right: 0; }
body.rtl .carousel-next { right: auto; left: 0; }
body.rtl .carousel-prev i, body.rtl .carousel-next i { transform: scaleX(-1); }

.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }

.carousel-dot {
    width: 8px; height: 8px; border-radius: 999px; border: none;
    background: rgba(0, 132, 255, 0.2); padding: 0;
    cursor: pointer; transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--tech-blue);
    width: 24px;
    box-shadow: var(--tech-glow-sm);
}

/* ── Buttons ── */
.btn-primary {
    background: var(--ui-gradient);
    border: none;
    border-radius: var(--button-radius, 10px);
    font-weight: 700;
    padding: 0.7rem 1.6rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative; overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--tech-glow);
    background: var(--ui-gradient); border: none;
}

.btn-glow { box-shadow: var(--tech-glow-sm); }

.btn-outline-primary {
    color: var(--tech-cyan);
    border: 1.5px solid rgba(0, 212, 255, 0.5);
    border-radius: var(--button-radius, 10px);
    font-weight: 700; background: rgba(0, 212, 255, 0.06);
}

.hero-section .btn-outline-primary {
    color: var(--tech-cyan);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.08);
}

.hero-section .btn-outline-primary:hover {
    background: rgba(0, 212, 255, 0.18);
    color: #fff; border-color: var(--tech-cyan);
}

.btn-outline-primary:hover {
    background: var(--tech-blue);
    border-color: var(--tech-blue); color: #fff;
}

.btn-modern { padding: 0.75rem 2rem; }

/* ── Footer ── */
.site-footer {
    background: var(--tech-dark);
    color: #94a3b8;
    position: relative;
    border-top: 1px solid rgba(0, 212, 255, 0.15);
}

.site-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--tech-cyan), var(--tech-violet), transparent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.site-footer a { color: #cbd5e0; text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--tech-cyan); }

.footer-nav {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center;
}

.footer-divider { border-color: rgba(0, 212, 255, 0.1); margin: 1.75rem 0; }

.site-footer .form-control {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(0, 212, 255, 0.35);
    color: #ffffff !important;
}

.site-footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.55) !important;
}

.site-footer .form-control:focus {
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff !important;
    border-color: var(--tech-cyan);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.2);
}

/* ── RTL ── */
body.rtl .hero-description { margin-inline-start: 0; margin-inline-end: auto; }
body.rtl .dropdown-menu { text-align: right; }
body.rtl .accordion-button::after { margin-left: 0; margin-right: auto; }
body.rtl .metric-row { flex-direction: row-reverse; }

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .hero-section .min-vh-75 { min-height: auto; }
    .testimonials-carousel { padding: 0 2.5rem; }
    .carousel-nav { width: 40px; height: 40px; }
}

@media (max-width: 575.98px) {
    .section-cta .premium-cta { padding: 2.5rem 1.25rem !important; }
    .premium-testimonial { padding: 2rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .hero-blob, .hero-aurora, .floating-card, .logo-marquee-track, .pulse-dot { animation: none !important; }
    * { transition: none !important; }
}

/* ── Store ── */
.store-card { border: 1px solid rgba(0, 132, 255, 0.15); transition: transform .25s, box-shadow .25s; }
.store-card .card-text { color: #94a3b8 !important; }
.store-card .card-title { color: #f8fafc; }
.store-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 132, 255, 0.12); }
.store-card-img { height: 160px; object-fit: cover; }
.store-type-badge { background: rgba(0, 132, 255, 0.15); color: var(--tech-cyan); }
.store-price { font-weight: 700; color: var(--tech-cyan); }
.store-price-box { background: rgba(0, 132, 255, 0.08); border: 1px solid rgba(0, 132, 255, 0.2); }
.store-cart-table { --bs-table-bg: transparent; }
.cart-row-loading { opacity: 0.65; pointer-events: none; }
.store-sticky-purchase { position: sticky; top: 1rem; }
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { animation: none !important; transition: none !important; }
}
@media (max-width: 1199.98px) {
    .store-sticky-purchase { position: static; }
}
.store-detail-img { max-height: 360px; object-fit: cover; width: 100%; }
