/* =============================================
   DoroobMedical CMS — Refined Medical SaaS
   Aesthetic: Clean B2B / Light & Professional
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Core Palette */
    --primary: #0c4a6e;
    --primary-light: #0369a1;
    --primary-dark: #083344;
    --accent: #059669;
    --accent-light: #10b981;
    --accent-pale: #d1fae5;
    --warm: #f59e0b;
    --warm-light: #fbbf24;
    --warm-dark: #d97706;

    /* Surfaces */
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --surface-muted: #f1f5f9;
    --surface-card: #ffffff;
    --surface-section: #f8fafc;

    /* Text */
    --text-dark: #0f172a;
    --text-heading: #0f172a;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-hero: #ffffff;

    /* Borders */
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Derived / Effect tokens */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Shadows — subtle, professional */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-soft: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-card: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-elevated: 0 10px 15px -3px rgba(15, 23, 42, 0.07), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

    /* Radii */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 0.15s;
    --t-normal: 0.3s;
    --t-slow: 0.6s;
}

/* ============ Reset & Base ============ */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-body);
    direction: rtl;
    line-height: 1.8;
    background: var(--surface);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.25;
    letter-spacing: -0.015em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.text-accent { color: var(--warm) !important; }

/* ============ Scroll Reveal Animation ============ */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============ Section Titles ============ */
.cms-section__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.cms-section__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    padding: 5px 14px;
    background: rgba(5, 150, 105, 0.06);
    border-radius: var(--r-full);
    border: 1px solid rgba(5, 150, 105, 0.12);
}

.cms-section__subtitle i {
    font-size: 0.7rem;
}

.cms-section__desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 640px;
}

.cms-section__desc--center {
    margin-left: auto;
    margin-right: auto;
}

/* ============ Buttons ============ */
.cms-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--r-full);
    transition: all var(--t-normal) var(--ease-out);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cms-btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity var(--t-normal);
}

.cms-btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
    color: #fff;
}

.cms-btn-hero:hover::before { opacity: 1; }
.cms-btn-hero span, .cms-btn-hero i { position: relative; z-index: 1; }

.cms-btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--r-full);
    transition: all var(--t-normal) var(--ease-out);
    cursor: pointer;
}

.cms-btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    transform: translateY(-2px);
}

.cms-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1.5px solid transparent;
    border-radius: var(--r-full);
    transition: all var(--t-normal) var(--ease-out);
    cursor: pointer;
}

.cms-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 74, 110, 0.2);
    background: var(--primary-light);
    color: #fff;
}

.cms-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--r-full);
    transition: all var(--t-normal) var(--ease-out);
    cursor: pointer;
}

.cms-btn-secondary:hover {
    background: var(--accent-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.cms-btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: linear-gradient(135deg, var(--warm) 0%, var(--warm-dark) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--r-full);
    transition: all var(--t-normal) var(--ease-out);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
    cursor: pointer;
}

.cms-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
    color: #fff;
}

/* ============ Navbar ============ */
.fixed-nav-container { position: relative; z-index: 100; }

.cms-navbar {
    padding: 1rem 0;
    transition: all var(--t-normal) var(--ease-out);
}

.cms-navbar.scrolled {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    z-index: 1000;
    padding: 0.6rem 0;
}

.cms-navbar__brand { text-decoration: none; display: flex; align-items: center; }
.cms-navbar__logo { height: 38px; width: auto; transition: all var(--t-normal); }
.scrolled .cms-navbar__logo { height: 32px; }

/* Logo: white on dark hero/page-header backgrounds */
.hero-section .cms-navbar__logo,
.page-header .cms-navbar__logo {
    filter: brightness(0) invert(1);
}

/* Logo: back to original on scrolled (light bg) */
.scrolled .cms-navbar__logo {
    filter: none;
}

/* Logo: brighten on dark mode scrolled navbar */
[data-theme="dark"] .scrolled .cms-navbar__logo {
    filter: brightness(0) invert(1) opacity(0.9);
}

.cms-navbar__brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.01em;
}

/* Hero navbar overrides — white text on dark hero */
.hero-section .cms-navbar__brand-text,
.page-header .cms-navbar__brand-text { color: #fff; }

.hero-section .cms-navbar__link,
.page-header .cms-navbar__link { color: rgba(255, 255, 255, 0.75); }

.hero-section .cms-navbar__link:hover,
.hero-section .cms-navbar__link.active,
.page-header .cms-navbar__link:hover { color: #fff; }

.hero-section .cms-navbar__toggle,
.page-header .cms-navbar__toggle { color: #fff; border-color: rgba(255, 255, 255, 0.2); }

.hero-section .cms-btn-primary,
.page-header .cms-btn-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.hero-section .cms-btn-primary:hover,
.page-header .cms-btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary);
}

/* Scrolled state — dark text on white navbar */
.scrolled .cms-navbar__brand-text { color: var(--primary); }
.scrolled .cms-navbar__link { color: var(--text-body); }
.scrolled .cms-navbar__link:hover,
.scrolled .cms-navbar__link.active { color: var(--accent); }
.scrolled .cms-btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.scrolled .cms-btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); }

.cms-navbar__links { gap: 2px; }

.cms-navbar__link {
    padding: 8px 14px;
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--r-full);
    text-decoration: none;
    transition: color var(--t-fast);
    position: relative;
}

.cms-navbar__link:hover,
.cms-navbar__link.active {
    color: var(--accent);
}

.cms-navbar__toggle {
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 8px 12px;
    color: var(--text-heading);
    cursor: pointer;
    transition: all var(--t-fast);
}

/* Mobile Menu — Bottom Sheet */
.cms-mobile-menu {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    max-height: 85vh;
    background: var(--primary-dark);
    z-index: 1060;
    transform: translateY(100%);
    transition: transform 0.35s var(--ease-out);
    display: flex;
    flex-direction: column;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    overflow: hidden;
}

.cms-mobile-menu.open { transform: translateY(0); }

/* Drag handle */
.cms-mobile-menu__handle {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--r-full);
    margin: 10px auto 0;
    flex-shrink: 0;
}

.cms-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cms-mobile-menu__header .cms-navbar__brand-text { color: #fff; font-size: 1.15rem; }

.cms-mobile-menu__close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
}

.cms-mobile-menu__close:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

.cms-mobile-menu__body {
    padding: 0.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cms-mobile-menu__link {
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
}

.cms-mobile-menu__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.cms-mobile-menu .cms-btn-primary {
    background: var(--accent);
    border: none;
    text-align: center;
    justify-content: center;
    margin-top: 12px;
}

.cms-mobile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-normal);
}

.cms-mobile-overlay.open { opacity: 1; visibility: visible; }

/* ============ Hero Section ============ */
.hero-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 40%, #0284c7 100%);
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
}

.hero-section__nav { position: relative; z-index: 10; }

.hero-section__content {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.min-vh-75 { min-height: 70vh; }

/* Background orbs — very subtle */
.hero-section__orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-orb--1 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    top: -5%; right: 5%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb--2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    bottom: 5%; left: 10%;
    animation: orbFloat2 25s ease-in-out infinite;
}

.hero-orb--3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    top: 40%; left: 35%;
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-15px, 10px) scale(1.03); }
    66% { transform: translate(10px, -8px) scale(0.97); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12px, -10px) scale(1.04); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 8px); }
}

/* Dot grid — barely visible */
.hero-section__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.03;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Hero Badge */
.hero-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--r-full);
    color: #a7f3d0;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-section__badge i { font-size: 0.75rem; }

/* Hero Title */
.hero-section__title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-hero);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

/* Gradient text accent */
.hero-section__title em {
    font-style: normal;
    background: linear-gradient(135deg, #34d399, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    max-width: 520px;
}

.hero-section__desc p { margin: 0; }

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2rem;
}

/* Trust Indicators */
.hero-section__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-trust-item i {
    color: var(--accent-light);
    font-size: 0.8rem;
}

/* Hero Image */
.hero-section__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-section__image-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

.hero-section__img {
    position: relative;
    z-index: 1;
    max-height: 380px;
    border-radius: var(--r-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Floating stat cards */
.hero-float-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-md);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-float-card i {
    font-size: 1.2rem;
    color: var(--accent-light);
}

.hero-float-card strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-float-card small {
    font-size: 0.72rem;
    opacity: 0.65;
}

.hero-float-card--1 {
    top: 15%;
    left: -10%;
    animation: floatCard 5s ease-in-out infinite;
}

.hero-float-card--2 {
    bottom: 20%;
    right: -5%;
    animation: floatCard 6s ease-in-out 1.5s infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Wave */
.hero-section__wave {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    z-index: 3;
}

.hero-section__wave svg { display: block; width: 100%; height: auto; }

/* ============ Page Header (non-home) ============ */
.page-header {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
    padding-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 250px; height: 250px;
    top: -80px; left: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* ============ Features Section ============ */
.cms-features {
    padding: 5rem 0;
    background: var(--surface);
    position: relative;
}

.cms-feature-card {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: all var(--t-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.cms-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--t-normal) var(--ease-out);
}

.cms-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--border-light);
}

.cms-feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cms-feature-card__icon {
    width: 48px; height: 48px;
    border-radius: var(--r-md);
    background: rgba(5, 150, 105, 0.07);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    transition: all var(--t-normal);
}

.cms-feature-card:hover .cms-feature-card__icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.cms-feature-card__title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.cms-feature-card__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ============ Industries Section ============ */
.cms-industries {
    padding: 5rem 0;
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
}

.cms-industries::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    top: -180px; right: -180px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.04), transparent 70%);
    pointer-events: none;
}

.cms-industry-card {
    background: var(--surface-card);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-soft);
    height: 100%;
    margin: 8px;
    transition: all var(--t-normal) var(--ease-out);
    border: 1px solid var(--border);
}

.cms-industry-card:hover {
    box-shadow: var(--shadow-elevated);
    border-color: rgba(5, 150, 105, 0.12);
    transform: translateY(-3px);
}

.cms-industry-card__icon {
    width: 48px; height: 48px;
    border-radius: var(--r-md);
    background: rgba(5, 150, 105, 0.06);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cms-industry-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.cms-industry-card__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* Splide overrides */
.splide__arrow {
    background: var(--text-heading) !important;
    opacity: 1 !important;
    width: 40px !important; height: 40px !important;
    border-radius: 50% !important;
    transition: all var(--t-fast) !important;
}

.splide__arrow:hover { background: var(--accent) !important; }
.splide__arrow svg { fill: #fff !important; width: 14px !important; height: 14px !important; }
.splide__pagination__page { background: var(--text-muted) !important; }
.splide__pagination__page.is-active { background: var(--accent) !important; transform: scale(1.3); }

/* ============ Statistics Section ============ */
.cms-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
    position: relative;
    overflow: hidden;
}

.cms-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.cms-stats::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    bottom: -120px; left: -80px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cms-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    transition: all var(--t-normal) var(--ease-out);
    position: relative;
    z-index: 1;
}

.cms-stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
}

.cms-stat-card__number {
    display: block;
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #38bdf8, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.cms-stat-card__label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
}

/* ============ Testimonials Section ============ */
.cms-testimonials {
    padding: 5rem 0;
    background: var(--surface);
}

.cms-testimonial-card {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all var(--t-normal) var(--ease-out);
}

.cms-testimonial-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.cms-testimonial-card__quote {
    position: absolute;
    top: 0.75rem; left: 1rem;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--surface-muted);
    font-weight: 900;
    opacity: 0.3;
    z-index: 0;
}

.cms-testimonial-card__content,
.cms-testimonial-card__author {
    position: relative;
    z-index: 1;
}

.cms-testimonial-card__content {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    min-height: 85px;
}

.cms-testimonial-card__content p { margin: 0; }

.cms-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.cms-testimonial-card__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.cms-testimonial-card__name {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-heading);
}

.cms-testimonial-card__rating {
    color: var(--warm);
    font-size: 0.65rem;
    display: flex;
    gap: 2px;
}

/* ============ CTA Section ============ */
.cms-cta { padding: 4rem 0; }

.cms-cta__box {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
    border-radius: var(--r-xl);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.cms-cta__box::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    top: -80px; left: -80px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.cms-cta__box::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    bottom: -60px; right: -40px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.cms-cta__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    position: relative;
    z-index: 1;
}

.cms-cta__desc {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.cms-cta .cms-btn-accent { position: relative; z-index: 1; }

/* ============ FAQ Section ============ */
.cms-faq {
    padding: 5rem 0;
    background: var(--surface-alt);
}

.cms-faq-card {
    background: var(--surface-card);
    border-radius: var(--r-lg);
    padding: 0;
    box-shadow: var(--shadow-xs);
    transition: all var(--t-normal) var(--ease-out);
    border: 1px solid var(--border);
    border-right: 3px solid transparent;
    overflow: hidden;
}

.cms-faq-card:hover,
.cms-faq-card.open {
    box-shadow: var(--shadow-card);
    border-right-color: var(--accent);
}

.cms-faq-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    gap: 12px;
}

.cms-faq-card__question {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.cms-faq-card__question i {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 0.85rem;
}

.cms-faq-card__toggle {
    background: rgba(5, 150, 105, 0.07);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--t-fast);
    font-size: 0.75rem;
}

.cms-faq-card__toggle:hover {
    background: var(--accent);
    color: #fff;
}

.cms-faq-card.open .cms-faq-card__toggle {
    background: var(--accent);
    color: #fff;
    transform: rotate(180deg);
}

.cms-faq-card__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.cms-faq-card__answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin: 0;
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

/* ============ Contact Page ============ */
.cms-contact-page { padding-top: 2rem; }

.cms-contact-form-wrapper {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.cms-contact-form-wrapper .form-control {
    border-radius: var(--r-sm);
    border: 1.5px solid var(--border);
    font-family: 'Tajawal', sans-serif;
    padding: 11px 16px;
    font-size: 0.93rem;
    transition: all var(--t-fast);
    background: var(--surface);
    color: var(--text-body);
}

.cms-contact-form-wrapper .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.08);
    outline: none;
}

.cms-contact-form-wrapper .form-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-heading);
}

.cms-contact-info-card {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
}

.cms-contact-info-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    margin: 0;
}

.cms-contact-info-card a { color: var(--primary-light); font-weight: 500; }
.cms-contact-info-card a:hover { color: var(--accent); }

.cms-contact-social-link {
    width: 42px; height: 42px;
    border-radius: var(--r-sm);
    background: var(--text-heading);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--t-normal) var(--ease-out);
    text-decoration: none;
}

.cms-contact-social-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.2);
}

/* ============ Blogs Page ============ */
.cms-blogs-page .card {
    border: 1px solid var(--border);
    border-radius: var(--r-lg) !important;
    transition: all var(--t-normal) var(--ease-out);
}

.cms-blogs-page .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.cms-blog-content {
    font-size: 1.02rem;
    line-height: 2;
    color: var(--text-body);
}

.cms-blog-content p { margin-bottom: 1.25rem; }
.cms-blog-content img { border-radius: var(--r-md); margin: 1.5rem 0; }

/* ============ Footer ============ */
.cms-footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
}

.cms-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.cms-footer__logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.85);
    transition: all var(--t-normal);
}

.cms-footer__logo:hover {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.cms-footer__brand-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cms-footer__brand-text i {
    color: var(--accent-light);
}

.cms-footer__tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 4px 0 0;
}

.cms-footer__social {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.cms-footer__social-link {
    width: 38px; height: 38px;
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all var(--t-normal) var(--ease-out);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cms-footer__social-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
    border-color: transparent;
}

.cms-footer__copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

/* ============ Responsive ============ */
@media (max-width: 991.98px) {
    .hero-section { min-height: auto; padding-bottom: 4rem; }
    .hero-section__title { font-size: 2.2rem; }
    .hero-section__desc { font-size: 1rem; }
    .min-vh-75 { min-height: auto; padding: 3rem 0; }
    .cms-section__title { font-size: 1.75rem; }

    .cms-features, .cms-industries, .cms-stats,
    .cms-testimonials, .cms-faq { padding: 3.5rem 0; }

    .cms-cta__box { padding: 2.5rem 2rem; text-align: center; }
    .cms-stat-card__number { font-size: 2rem; }
    .hero-float-card { display: none; }

    /* Hide hamburger toggle + old mobile menu + old chat widget on mobile (tab bar replaces them) */
    .cms-navbar__toggle { display: none !important; }
    .cms-mobile-menu,
    .cms-mobile-overlay { display: none !important; }
    .cp-style1 { display: none !important; }

    /* Footer padding for tab bar */
    .cms-footer { padding-bottom: 5rem; }
    .cms-contact-page { padding-bottom: 3rem; }
}

@media (max-width: 575.98px) {
    .hero-section__title { font-size: 1.75rem; }
    .hero-section__badge { font-size: 0.75rem; }
    .cms-section__title { font-size: 1.45rem; }
    .hero-section__actions { flex-direction: column; }
    .hero-section__trust { gap: 10px; }

    .cms-feature-card, .cms-faq-card,
    .cms-testimonial-card { padding: 1.5rem; }

    .cms-cta__title { font-size: 1.3rem; }
    .cms-cta__box { padding: 2rem 1.5rem; border-radius: var(--r-lg); }
}

/* ============ Utility ============ */
.space-between-blocks { padding: 3.5rem 0; }

/* ============ Mobile Tab Bar ============ */
.cms-tabbar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 64px;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1060;
    padding: 0 4px;
    padding-bottom: env(safe-area-inset-bottom, 0);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .cms-tabbar {
    background: #020617;
    border-top-color: #1e293b;
}

.cms-tabbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    padding: 6px 2px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.68rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    transition: color var(--t-fast);
    -webkit-tap-highlight-color: transparent;
}

.cms-tabbar__item i {
    font-size: 1.15rem;
    transition: transform var(--t-fast);
}

.cms-tabbar__item.active,
.cms-tabbar__item:hover {
    color: var(--accent-light);
}

.cms-tabbar__item.active i {
    transform: scale(1.1);
}

/* FAB center button */
.cms-tabbar__fab {
    position: relative;
}

.cms-tabbar__fab-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -22px;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
    transition: all var(--t-fast);
}

.cms-tabbar__fab-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.cms-tabbar__fab:hover .cms-tabbar__fab-icon,
.cms-tabbar__fab.active .cms-tabbar__fab-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.45);
}

.cms-tabbar__fab span:last-child {
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1px;
}

.cms-tabbar__fab:hover span:last-child,
.cms-tabbar__fab.active span:last-child {
    color: var(--accent-light);
}

/* CTA tab highlight */
.cms-tabbar__cta {
    color: var(--warm) !important;
}

.cms-tabbar__cta:hover {
    color: var(--warm-light) !important;
}

/* ============ Contact Bottom Sheet ============ */
.cms-contact-sheet {
    position: fixed;
    bottom: 64px;
    bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    left: 0; right: 0;
    background: var(--primary-dark);
    z-index: 1059;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    padding: 0 1.25rem 1.25rem;
    transform: translateY(110%);
    transition: transform 0.3s var(--ease-out);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .cms-contact-sheet {
    background: #0f172a;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cms-contact-sheet.open {
    transform: translateY(0);
}

.cms-contact-sheet__handle {
    width: 36px; height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--r-full);
    margin: 10px auto 12px;
}

.cms-contact-sheet__title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cms-contact-sheet__items {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cms-contact-sheet__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    min-width: 70px;
    transition: all var(--t-fast);
    -webkit-tap-highlight-color: transparent;
}

.cms-contact-sheet__item i {
    font-size: 1.3rem;
}

.cms-contact-sheet__item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.cms-contact-sheet__item--whatsapp i { color: #25d366; }
.cms-contact-sheet__item--call i { color: #38bdf8; }
.cms-contact-sheet__item--email i { color: #f59e0b; }
.cms-contact-sheet__item--form i { color: #a78bfa; }

.cms-contact-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1058;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-normal);
}

.cms-contact-sheet-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Hide tab bar on desktop */
@media (min-width: 992px) {
    .cms-tabbar,
    .cms-contact-sheet,
    .cms-contact-sheet-overlay { display: none !important; }
}

/* ============ Theme Toggle Button ============ */
.cms-theme-toggle {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--t-fast);
    font-size: 0.95rem;
    padding: 0;
}

.cms-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.scrolled .cms-theme-toggle {
    border-color: var(--border);
    color: var(--text-body);
}

.scrolled .cms-theme-toggle:hover {
    background: var(--surface-muted);
    color: var(--text-heading);
    border-color: var(--border);
}

.cms-theme-toggle-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.95rem;
    background: transparent;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all var(--t-fast);
    width: 100%;
    text-align: right;
}

.cms-theme-toggle-mobile:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* ============ Dark Mode ============ */
[data-theme="dark"] {
    --primary: #38bdf8;
    --primary-light: #7dd3fc;
    --primary-dark: #0c4a6e;
    --accent: #34d399;
    --accent-light: #6ee7b7;
    --accent-pale: rgba(52, 211, 153, 0.15);
    --warm: #fbbf24;
    --warm-light: #fcd34d;
    --warm-dark: #f59e0b;
    --surface: #0f172a;
    --surface-alt: #1e293b;
    --surface-muted: #334155;
    --surface-card: #1e293b;
    --surface-section: #1e293b;
    --text-dark: #f1f5f9;
    --text-heading: #f1f5f9;
    --text-body: #cbd5e1;
    --text-muted: #94a3b8;
    --border: #334155;
    --border-light: #1e293b;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-elevated: 0 10px 15px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.4);
}

/* Dark: Smooth transitions */
body, .cms-navbar, .cms-feature-card, .cms-industry-card,
.cms-testimonial-card, .cms-faq-card, .cms-contact-form-wrapper,
.cms-contact-info-card, .cms-footer, .cms-section__subtitle {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Dark: Hero section */
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
}

[data-theme="dark"] .hero-section__wave path {
    fill: #0f172a;
}

/* Dark: Navbar scrolled */
[data-theme="dark"] .cms-navbar.scrolled {
    background: rgba(15, 23, 42, 0.92);
    border-bottom-color: #334155;
}

[data-theme="dark"] .scrolled .cms-navbar__brand-text {
    color: #38bdf8;
}

[data-theme="dark"] .scrolled .cms-navbar__link {
    color: #cbd5e1;
}

[data-theme="dark"] .scrolled .cms-navbar__link:hover,
[data-theme="dark"] .scrolled .cms-navbar__link.active {
    color: #34d399;
}

[data-theme="dark"] .scrolled .cms-btn-primary {
    background: #38bdf8;
    border-color: #38bdf8;
    color: #0f172a;
}

[data-theme="dark"] .scrolled .cms-btn-primary:hover {
    background: #7dd3fc;
    border-color: #7dd3fc;
}

[data-theme="dark"] .scrolled .cms-theme-toggle {
    border-color: #334155;
    color: #cbd5e1;
}

[data-theme="dark"] .scrolled .cms-theme-toggle:hover {
    background: #334155;
    color: #f1f5f9;
}

/* Dark: Stats section */
[data-theme="dark"] .cms-stats {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
}

/* Dark: CTA box */
[data-theme="dark"] .cms-cta__box {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
}

/* Dark: Page header (non-home) */
[data-theme="dark"] .page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Dark: Footer */
[data-theme="dark"] .cms-footer {
    background: #020617;
}

/* Dark: Mobile menu */
[data-theme="dark"] .cms-mobile-menu {
    background: #020617;
}

/* Dark: Bootstrap text overrides */
[data-theme="dark"] .text-dark {
    color: var(--text-heading) !important;
}

[data-theme="dark"] .text-muted {
    color: var(--text-muted) !important;
}

/* Dark: Form controls */
[data-theme="dark"] .form-control {
    background: var(--surface-alt);
    border-color: var(--border);
    color: var(--text-body);
}

[data-theme="dark"] .form-control:focus {
    background: var(--surface-alt);
    border-color: var(--accent);
    color: var(--text-heading);
}

[data-theme="dark"] .form-control::placeholder {
    color: var(--text-muted);
}

/* Dark: Blog cards */
[data-theme="dark"] .cms-blogs-page .card {
    background: var(--surface-card);
    border-color: var(--border);
}

[data-theme="dark"] .cms-blogs-page .card .card-body {
    color: var(--text-body);
}

/* Dark: Splide arrows */
[data-theme="dark"] .splide__arrow {
    background: var(--surface-muted) !important;
}

[data-theme="dark"] .splide__arrow:hover {
    background: var(--accent) !important;
}

/* Dark: Feature card icon background */
[data-theme="dark"] .cms-feature-card__icon {
    background: rgba(52, 211, 153, 0.12);
}

[data-theme="dark"] .cms-industry-card__icon {
    background: rgba(52, 211, 153, 0.12);
}

/* Dark: Section subtitle badge */
[data-theme="dark"] .cms-section__subtitle {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.2);
}

/* Dark: FAQ card toggle */
[data-theme="dark"] .cms-faq-card__toggle {
    background: rgba(52, 211, 153, 0.12);
}

/* Dark: Contact page */
[data-theme="dark"] .cms-contact-form-wrapper {
    background: var(--surface-card);
    border-color: var(--border);
}

[data-theme="dark"] .cms-contact-info-card {
    background: var(--surface-alt);
    border-color: var(--border);
}

/* Dark: Testimonial quote mark */
[data-theme="dark"] .cms-testimonial-card__quote {
    color: var(--surface-muted);
}

/* Dark: Contact social link */
[data-theme="dark"] .cms-contact-social-link {
    background: var(--surface-muted);
}

/* Dark: Industries section alt background */
[data-theme="dark"] .cms-industries {
    background: var(--surface-alt);
}

/* Dark: FAQ section alt background */
[data-theme="dark"] .cms-faq {
    background: var(--surface-alt);
}
