:root {
    --primary: #4ef2c0;
    --primary-strong: #2ad0a3;
    --accent: #f5c36c;
    --ink: #0c1118;
    --panel: #0f1824;
    --card: #101c2a;
    --stroke: rgba(255, 255, 255, 0.06);
    --muted: #9fb3c9;
    --text: #e9edf5;
    --shadow-lg: 0 30px 90px rgba(0,0,0,0.45);
    --shadow-md: 0 18px 40px rgba(0,0,0,0.35);
    --shadow-sm: 0 8px 18px rgba(0,0,0,0.25);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.6rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --glass: rgba(255, 255, 255, 0.06);
    --gradient-hero: radial-gradient(circle at 20% 20%, rgba(78, 242, 192, 0.08), transparent 25%),
                     radial-gradient(circle at 80% 15%, rgba(245, 195, 108, 0.09), transparent 24%),
                     linear-gradient(135deg, #0b131f 0%, #0f1b2b 50%, #0c121c 100%);
    --gradient-card: linear-gradient(145deg, rgba(78, 242, 192, 0.08), rgba(245, 195, 108, 0.08));
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 2000;
    background: var(--primary);
    color: #041018;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    outline: 2px solid var(--accent);
}

body {
    font-family: 'Tajawal', 'Space Grotesk', sans-serif;
    background: var(--ink);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(78, 242, 192, 0.05), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(245, 195, 108, 0.06), transparent 25%),
        linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

[id] {
    scroll-margin-top: 110px;
}

/* English Font Override */
body.en {
    font-family: 'Space Grotesk', 'Tajawal', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
    font-weight: 800;
}

h1 { font-size: clamp(2.6rem, 4.8vw, 4.2rem); line-height: 1.1; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.2rem); line-height: 1.2; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.3; }

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 17, 24, 0.6);
    backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--stroke);
    padding: 1.1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(12, 17, 24, 0.9);
    padding: 0.85rem 0;
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
}

.logo-icon {
    width: 42px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(78, 242, 192, 0.35));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 10px 28px rgba(78, 242, 192, 0.5));
    transform: translateY(-2px) rotate(5deg);
}

.logo i {
    color: var(--primary);
    filter: drop-shadow(0 8px 16px rgba(78, 242, 192, 0.35));
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    position: relative;
    font-weight: 600;
    color: var(--muted);
    padding: 0.3rem 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after { transform: scaleX(1); }

.lang-switch {
    border: 1px solid var(--stroke) !important;
    padding: 0.55rem 1.1rem !important;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: var(--text) !important;
}

.lang-switch:hover {
    border-color: rgba(78, 242, 192, 0.5) !important;
    color: var(--primary) !important;
}

.btn {
    padding: 0.95rem 2.3rem;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: linear-gradient(115deg, var(--primary) 0%, var(--primary-strong) 50%, var(--accent) 100%);
    color: #041018;
    box-shadow: 0 16px 40px rgba(78, 242, 192, 0.25);
}

.btn-primary:hover { transform: translateY(-3px); }

.btn-ghost {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--stroke);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: rgba(78, 242, 192, 0.5);
    color: var(--primary);
    transform: translateY(-3px);
}

.cta-group {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    align-items: center;
    margin: 1.2rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(78, 242, 192, 0.08);
    border: 1px solid rgba(78, 242, 192, 0.25);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.hero {
    padding: 150px 0 110px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(255,255,255,0.03), transparent 50%, rgba(245, 195, 108, 0.04));
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero h1 {
    color: #f8f7f2;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 10px 40px rgba(78, 242, 192, 0.2);
}

.hero p {
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 620px;
}

.hero-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--stroke);
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.metric {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--stroke);
}

.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.metric-label { color: var(--muted); font-weight: 600; }

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

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
}

.orb-1 { width: 320px; height: 320px; background: rgba(78, 242, 192, 0.35); top: 10%; right: 8%; }
.orb-2 { width: 260px; height: 260px; background: rgba(245, 195, 108, 0.28); bottom: 6%; left: 12%; }

.glass-widget {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px) saturate(140%);
    color: var(--text);
}

.glass-widget.main {
    width: 320px;
    padding: 1.4rem;
    left: 8%;
    top: 12%;
    background-image: var(--gradient-card);
}

.widget-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.widget-title { font-size: 1.4rem; font-weight: 800; }
.widget-sub { color: var(--muted); margin: 0.25rem 0 0.8rem; }

.progress {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
    border: 1px solid var(--stroke);
    margin-bottom: 0.6rem;
}

.progress-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.widget-foot { color: var(--muted); font-weight: 600; font-size: 0.95rem; }

.glass-widget.stats {
    width: 260px;
    padding: 1.2rem;
    right: 6%;
    bottom: 14%;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--stroke);
}

.stat-row:last-child { border-bottom: none; }

.stat-value { font-weight: 800; color: var(--primary); }
.stat-label { color: var(--muted); font-weight: 600; }

.hero-badge {
    position: absolute;
    bottom: 8%;
    left: 18%;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--stroke);
    padding: 0.9rem 1.3rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    gap: 10px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    color: var(--text);
}

.hero-badge i { color: var(--accent); }

.services {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #0b121c 0%, #0a1119 60%, #0c131f 100%);
    position: relative;
    overflow: hidden;
}

.services::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 20%, rgba(78, 242, 192, 0.07), transparent 35%),
                radial-gradient(circle at 80% 70%, rgba(245, 195, 108, 0.07), transparent 35%);
    opacity: 0.7;
}

.services .container { position: relative; z-index: 1; }

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title p {
    color: var(--muted);
    max-width: 640px;
    margin: 0.6rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(78, 242, 192, 0.06), rgba(245, 195, 108, 0.06));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(78, 242, 192, 0.4);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(78, 242, 192, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(78, 242, 192, 0.25);
}

.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--muted); }

.services-grid .service-card:nth-child(odd) .service-icon { background: rgba(245, 195, 108, 0.12); border-color: rgba(245, 195, 108, 0.25); color: var(--accent); }

.about {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #0a1119 0%, #0c1824 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.about-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.pill-list {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.pill {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--stroke);
    color: var(--text);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-points {
    display: grid;
    gap: 1rem;
}

.point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1.2rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--stroke);
    background: rgba(255,255,255,0.03);
}

.point i { color: var(--primary); font-size: 1.3rem; margin-top: 4px; }
.point h4 { margin-bottom: 0.15rem; }
.point p { color: var(--muted); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
    margin-top: var(--spacing-md);
}

.blog-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.blog-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    background: linear-gradient(140deg, rgba(78, 242, 192, 0.08), rgba(245, 195, 108, 0.08));
    border-bottom: 1px solid var(--stroke);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(78, 242, 192, 0.35);
}

.blog-card:hover::before { opacity: 1; }

.blog-content {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.blog-date {
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.blog-card h3 { color: var(--text); }
.blog-card p { color: var(--muted); }

.read-more {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.read-more:hover { gap: 12px; }
html[dir="rtl"] .read-more:hover { transform: translateX(-3px); }

/* Article Pages */
.article-header {
    padding: 120px 0 42px;
    text-align: center;
    background: radial-gradient(circle at 15% 8%, rgba(78, 242, 192, 0.22), transparent 38%),
                radial-gradient(circle at 85% 15%, rgba(245, 195, 108, 0.2), transparent 36%),
                linear-gradient(165deg, #0a121e 0%, #0d1824 48%, #0f1c2a 75%, #0b131d 100%);
    color: var(--text);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(78, 242, 192, 0.15);
    box-shadow: 0 22px 70px rgba(0,0,0,0.42), inset 0 -1px 0 rgba(78, 242, 192, 0.08);
}

.article-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 70%, rgba(78, 242, 192, 0.11), transparent 52%),
                radial-gradient(circle at 75% 75%, rgba(245, 195, 108, 0.1), transparent 48%),
                radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.02), transparent 60%);
    opacity: 1;
    pointer-events: none;
}

.article-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 85px;
    background: linear-gradient(180deg, rgba(12, 17, 24, 0) 0%, rgba(12, 17, 24, 0.65) 60%, rgba(12, 17, 24, 0.98) 100%);
    pointer-events: none;
    z-index: 1;
}

.article-header .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    max-width: 1050px;
    padding: 0 24px;
}

.article-header h1 {
    max-width: 920px;
    margin: 0 auto 0.3rem;
    color: #ffffff;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.48), 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.article-header .blog-date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background: rgba(78, 242, 192, 0.12);
    border: 1px solid rgba(78, 242, 192, 0.3);
    color: var(--primary);
    letter-spacing: 0.05em;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(78, 242, 192, 0.15);
    transition: all 0.3s ease;
}

.article-header .blog-date:hover {
    background: rgba(78, 242, 192, 0.16);
    border-color: rgba(78, 242, 192, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 242, 192, 0.22);
}

.article-featured-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
}

.article-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.9;
}

.article-body h2, .article-body h3 {
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.article-body p { margin-bottom: 1.2rem; color: var(--muted); }

.article-body ul, .article-body ol { margin: 1rem 0 1.5rem; padding-right: 1.5rem; }
html[dir="ltr"] .article-body ul, html[dir="ltr"] .article-body ol { padding-right: 0; padding-left: 1.5rem; }
.article-body li { margin-bottom: 0.8rem; }
.article-body .lead {
    font-size: 1.2rem;
    color: var(--text);
}

.article-page {
    padding: 32px 0 5rem;
}

.article-shell {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.9fr);
    gap: 1.8rem;
    align-items: start;
}

.article-main {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
}

.article-aside {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-aside .card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow-sm);
}

.article-meta-bar {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.2rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--stroke);
    color: var(--text);
    font-weight: 600;
}

.article-highlight {
    background: rgba(78, 242, 192, 0.08);
    border: 1px solid rgba(78, 242, 192, 0.25);
    color: var(--text);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.article-highlight h4 {
    margin-bottom: 0.6rem;
    color: var(--primary);
}

.article-highlight ul {
    padding-right: 1rem;
}
html[dir="ltr"] .article-highlight ul { padding-right: 0; padding-left: 1rem; }

.article-highlight li { color: var(--text); margin-bottom: 0.4rem; }

.article-cta {
    margin-top: 2rem;
}

@media (max-width: 960px) {
    .article-shell {
        grid-template-columns: 1fr;
    }
    .article-aside {
        position: static;
    }
}

.contact-cta {
    background: linear-gradient(135deg, rgba(78, 242, 192, 0.18), rgba(245, 195, 108, 0.2));
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    color: #041018;
    box-shadow: var(--shadow-lg);
    margin: var(--spacing-xl) 0;
}

.contact-cta h2 { color: #041018; }
.contact-cta p { color: #0c1118; }

.contact-cta .btn {
    background: #041018;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-cta .btn:hover { transform: translateY(-4px); }

footer {
    background: #070b10;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--stroke);
}

footer .logo { justify-content: center; }
footer .logo span { color: var(--text); }
footer .logo i { color: var(--primary); }
footer p { color: var(--muted); margin-top: 0.5rem; }

.mobile-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--text);
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(7, 11, 16, 0.95);
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.8rem;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--stroke);
    }

    .nav-links.active { transform: translateY(0); }
    .nav-links a::after { display: none; }
    .mobile-toggle { display: block; }

    .hero {
        padding-top: 140px;
        padding-bottom: 70px;
    }

    .hero-visual { height: 400px; }
    .glass-widget.main { left: 5%; top: 10%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }

    .orb,
    .glass-widget,
    .btn,
    .logo,
    header {
        transition: none !important;
    }
}
@media (max-width: 768px) {
    .glass-widget.stats { right: 5%; bottom: 8%; }
    .hero-metrics { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
    .cta-group { flex-direction: column; align-items: stretch; }
    .cta-group .btn { width: 100%; }
}

@media (max-width: 540px) {
    .hero { padding-top: 130px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-visual { height: 360px; }
    .glass-widget.main { width: 280px; }
    .glass-widget.stats { width: 220px; }
    .blog-image { height: 200px; }
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45); }
html[dir="rtl"] .whatsapp-float { right: auto; left: 28px; }
