        :root {
            --bg-primary: #f8fafc;
            --bg-secondary: #ffffff;
            --bg-card: rgba(255, 255, 255, 0.95);
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #94a3b8;
            --accent-primary: #2b485f;
            --accent-secondary: #5a8fb0;
            --accent-dark: #1a3344;
            --accent-glow: rgba(43, 72, 95, 0.2);
            --border-light: rgba(0, 0, 0, 0.06);
            --form-border: rgba(15, 23, 42, 0.14);
            --form-border-hover: rgba(43, 72, 95, 0.45);
            --shadow-sm: 0 10px 40px -12px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 20px 40px -16px rgba(0, 0, 0, 0.15);
            --gradient-accent: linear-gradient(135deg, #2b485f, #5a8fb0);
            --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
        }

        [data-theme="dark"] {
            --bg-primary: #0f172a;
            --bg-secondary: #1e293b;
            --bg-card: rgba(30, 41, 59, 0.95);
            --text-primary: #f1f5f9;
            --text-secondary: #cbd5e1;
            --text-muted: #64748b;
            --border-light: rgba(255, 255, 255, 0.05);
            --form-border: rgba(148, 163, 184, 0.35);
            --form-border-hover: rgba(124, 180, 212, 0.5);
            --gradient-dark: linear-gradient(135deg, #020617, #0f172a);
        }

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

        body {
            font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            transition: background 0.3s ease, color 0.3s ease;
            overflow-x: hidden;
        }

        html { scroll-behavior: smooth; }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-primary); }
        ::-webkit-scrollbar-thumb { background: var(--accent-primary); border-radius: 10px; }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

        /* Site header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1100;
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.08);
        }

        .site-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            min-height: 68px;
            padding: 0.45rem 0;
        }

        .site-header__brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 800;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .site-header__logo-img {
            display: block;
            height: 48px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            border-radius: 10px;
        }

        .site-header__nav {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.2rem 1rem;
            flex: 1;
        }

        .site-header__nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.45rem 0.65rem;
            border-radius: 10px;
            transition: color 0.2s, background 0.2s;
        }

        .site-header__nav a:hover {
            color: var(--accent-primary);
            background: var(--accent-glow);
        }

        .site-header__tools {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .lang-switch {
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            padding: 3px;
            background: var(--bg-primary);
            border: 1px solid var(--border-light);
            gap: 2px;
        }

        .lang-switch button {
            border: none;
            padding: 0.4rem 0.7rem;
            min-width: 2.6rem;
            border-radius: 999px;
            font-family: inherit;
            font-weight: 800;
            font-size: 0.78rem;
            cursor: pointer;
            background: transparent;
            color: var(--text-secondary);
            transition: background 0.2s, color 0.2s;
        }

        .lang-switch button.is-active {
            background: var(--gradient-accent);
            color: #fff;
            box-shadow: 0 2px 10px var(--accent-glow);
        }

        .lang-switch button:not(.is-active):hover {
            color: var(--accent-primary);
        }

        .site-header__burger {
            display: none;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            background: var(--bg-card);
            color: var(--text-primary);
            cursor: pointer;
            font-size: 1.25rem;
            transition: background 0.2s, border-color 0.2s;
        }

        .site-header__burger:hover {
            border-color: var(--accent-primary);
            background: var(--accent-glow);
        }

        .site-header__backdrop {
            display: none;
        }

        @media (max-width: 900px) {
            .site-header__burger {
                display: inline-flex;
            }

            .site-header__nav {
                position: fixed;
                top: 68px;
                left: 0;
                right: 0;
                z-index: 1099;
                max-height: calc(100vh - 68px);
                overflow-y: auto;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 0;
                flex: none;
                padding: 0.75rem 1.25rem 1.5rem;
                background: var(--bg-card);
                border-bottom: 1px solid var(--border-light);
                box-shadow: var(--shadow-md);
                transform: translateY(-12px);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
            }

            .site-header__nav.is-open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .site-header__nav a {
                padding: 0.95rem 0.75rem;
                border-bottom: 1px solid var(--border-light);
                border-radius: 0;
            }

            .site-header__nav a:last-child {
                border-bottom: none;
            }

            .site-header__backdrop {
                display: block;
                position: fixed;
                inset: 68px 0 0 0;
                background: rgba(15, 23, 42, 0.42);
                z-index: 1098;
            }
        }

        /* Preloader */
        .preloader {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: radial-gradient(ellipse at 50% 20%, rgba(43, 72, 95, 0.28), transparent 55%),
                linear-gradient(160deg, #0f172a 0%, #1e293b 45%, #0f172a 100%);
            color: #fff;
        }

        .preloader-inner {
            text-align: center;
            padding: 2rem;
        }

        .preloader-flame {
            width: 72px;
            height: 72px;
            margin: 0 auto 1.5rem;
            position: relative;
        }

        .preloader-flame::before,
        .preloader-flame::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50% 50% 40% 40%;
            background: var(--gradient-accent);
            animation: flamePulse 1.2s ease-in-out infinite;
        }

        .preloader-flame::after {
            inset: 12px;
            opacity: 0.85;
            animation-delay: 0.15s;
            filter: blur(2px);
        }

        @keyframes flamePulse {
            0%, 100% { transform: scale(1) translateY(0); opacity: 1; }
            50% { transform: scale(1.08) translateY(-4px); opacity: 0.92; }
        }

        .preloader-ring {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.25rem;
            border-radius: 50%;
            border: 3px solid rgba(90, 143, 176, 0.3);
            border-top-color: #5a8fb0;
            border-right-color: #2b485f;
            animation: spin 0.9s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(-360deg); }
        }

        .preloader-title {
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            margin-bottom: 0.35rem;
        }

        .preloader-sub {
            font-size: 0.95rem;
            opacity: 0.75;
        }

        .preloader-dots {
            display: flex;
            gap: 0.4rem;
            justify-content: center;
            margin-top: 1.25rem;
        }

        .preloader-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #5a8fb0;
            animation: dotBounce 1s ease-in-out infinite;
        }

        .preloader-dots span:nth-child(2) { animation-delay: 0.15s; }
        .preloader-dots span:nth-child(3) { animation-delay: 0.3s; }

        @keyframes dotBounce {
            0%, 100% { transform: translateY(0); opacity: 0.4; }
            50% { transform: translateY(-6px); opacity: 1; }
        }

        .preloader-fade-leave-active {
            transition: opacity 0.55s ease, transform 0.55s ease;
        }

        .preloader-fade-leave-to {
            opacity: 0;
            transform: scale(1.02);
        }

        .load-error {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-primary);
            padding: 2rem;
            text-align: center;
        }

        .load-error button {
            margin-top: 1rem;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 100px;
            background: var(--gradient-accent);
            color: #fff;
            font-family: inherit;
            font-weight: 600;
            cursor: pointer;
        }

        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 5.5rem;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(43, 72, 95, 0.2) 0%, transparent 70%);
        }

        .hero-content { position: relative; z-index: 2; color: white; }

        .section-stats {
            --stat-brand: #2b485f;
            padding: 3rem 0 3.25rem;
            background: linear-gradient(180deg, rgba(43, 72, 95, 0.06) 0%, var(--bg-secondary) 100%);
            border-bottom: 1px solid var(--border-light);
        }

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

        .stat-item {
            text-align: center;
            padding: 0.5rem 0.75rem;
            background: transparent;
            border: none;
            box-shadow: none;
        }

        .stat-item__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.65rem;
            font-size: 1.85rem;
            line-height: 1;
            color: var(--stat-brand);
            opacity: 0.95;
        }

        .stat-item__value {
            font-size: 2.05rem;
            font-weight: 900;
            line-height: 1.1;
            color: var(--stat-brand);
            letter-spacing: -0.02em;
            margin-bottom: 0.35rem;
            font-variant-numeric: tabular-nums;
        }

        .stat-item__suf {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--accent-secondary);
        }

        .stat-item__label {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.35;
        }

        .stat-item__hint {
            margin-top: 0.35rem;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-muted);
            line-height: 1.4;
        }

        [data-theme="dark"] .section-stats {
            background: linear-gradient(180deg, rgba(124, 180, 212, 0.08) 0%, var(--bg-secondary) 100%);
        }

        [data-theme="dark"] .stat-item__icon {
            color: #8ecae6;
        }

        [data-theme="dark"] .stat-item__value {
            color: #8ecae6;
        }

        [data-theme="dark"] .stat-item__suf {
            color: #7cb4d4;
        }

        .section-vision {
            --vm-brand: #2b485f;
            padding: 4.5rem 0 5rem;
            background: linear-gradient(
                165deg,
                rgba(43, 72, 95, 0.09) 0%,
                var(--bg-secondary) 45%,
                rgba(43, 72, 95, 0.06) 100%
            );
            border-bottom: 1px solid var(--border-light);
        }

        .section-vision__head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 2.75rem;
        }

        .section-vision__head h2 {
            font-size: 2.25rem;
            font-weight: 900;
            color: var(--vm-brand);
            margin-bottom: 0.65rem;
        }

        .section-vision__head p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        .vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.75rem;
            align-items: stretch;
        }

        .vision-card {
            position: relative;
            overflow: hidden;
            padding: 2.25rem 2rem 2.5rem;
            border-radius: 28px;
            border: 1px solid rgba(43, 72, 95, 0.18);
            background: linear-gradient(
                145deg,
                rgba(43, 72, 95, 0.11) 0%,
                rgba(255, 255, 255, 0.97) 100%
            );
            box-shadow: 0 18px 48px -20px rgba(43, 72, 95, 0.22);
        }

        .vision-card--mission {
            background: linear-gradient(
                145deg,
                rgba(43, 72, 95, 0.13) 0%,
                rgba(255, 255, 255, 0.95) 52%,
                rgba(43, 72, 95, 0.06) 100%
            );
        }

        .vision-card--vision {
            background: linear-gradient(
                155deg,
                rgba(43, 72, 95, 0.09) 0%,
                rgba(241, 245, 249, 0.98) 100%
            );
        }

        .vision-card__watermark {
            position: absolute;
            width: min(46%, 220px);
            height: auto;
            opacity: 0.07;
            bottom: 0.5rem;
            inset-inline-start: 0.75rem;
            pointer-events: none;
            object-fit: contain;
            filter: grayscale(0.15);
        }

        .vision-card__icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            margin-bottom: 1.15rem;
            color: #fff;
            background: linear-gradient(135deg, var(--vm-brand), #5a8fb0);
            box-shadow: 0 10px 28px rgba(43, 72, 95, 0.28);
        }

        .vision-card h3 {
            font-size: 1.45rem;
            font-weight: 900;
            color: var(--vm-brand);
            margin-bottom: 0.85rem;
            position: relative;
            z-index: 1;
        }

        .vision-card p {
            font-size: 1.05rem;
            line-height: 1.85;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }

        [data-theme="dark"] .vision-card {
            background: linear-gradient(
                145deg,
                rgba(43, 72, 95, 0.35) 0%,
                var(--bg-card) 100%
            );
            border-color: rgba(124, 180, 212, 0.28);
        }

        [data-theme="dark"] .vision-card--mission,
        [data-theme="dark"] .vision-card--vision {
            background: linear-gradient(
                145deg,
                rgba(43, 72, 95, 0.32) 0%,
                var(--bg-secondary) 100%
            );
        }

        [data-theme="dark"] .section-vision__head h2 {
            color: #8ecae6;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .vision-grid {
                grid-template-columns: 1fr;
            }

            .stat-item__icon {
                font-size: 1.65rem;
                margin-bottom: 0.5rem;
            }

            .stat-item__value {
                font-size: 1.75rem;
            }
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            animation: whatsappPulse 2s infinite;
            will-change: transform;
        }

        .whatsapp-float a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            color: white;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none !important;
            border: none;
            outline: none;
            line-height: 1;
            overflow: hidden;
            -webkit-tap-highlight-color: transparent;
        }

        .whatsapp-float a:hover,
        .whatsapp-float a:focus,
        .whatsapp-float a:focus-visible {
            text-decoration: none;
            border: none;
            outline: none;
        }

        .whatsapp-float a i {
            text-decoration: none;
        }

        .whatsapp-float a:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
        }

        @keyframes whatsappPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .scroll-to-top {
            position: fixed;
            bottom: 32px;
            left: 32px;
            z-index: 1000;
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-accent);
            color: #fff;
            font-size: 1.15rem;
            box-shadow: 0 10px 28px var(--accent-glow);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 32px var(--accent-glow);
        }

        .scroll-to-top.is-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(8px);
        }

        .partners-section {
            padding: 72px 0 80px;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, sans-serif;
        }

        .partners-section .container > div:first-child h2,
        .partners-section .container > div:first-child p {
            font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, sans-serif;
        }

        .partners-swiper {
            overflow: hidden;
            padding: 20px 0 28px;
        }

        .partner-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 320px;
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-md);
            transition:
                box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.45s ease,
                transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .partner-slide.is-clickable {
            cursor: pointer;
        }

        .partner-slide:hover {
            box-shadow:
                0 12px 28px rgba(15, 23, 42, 0.12),
                0 28px 56px -8px rgba(43, 72, 95, 0.28),
                0 0 0 1px rgba(43, 72, 95, 0.08);
            border-color: rgba(43, 72, 95, 0.18);
            transform: translateY(-2px);
        }

        .partner-slide__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-size: cover;
            background-position: center;
            transform: scale(1);
            transform-origin: center center;
            transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .partner-slide:hover .partner-slide__bg {
            transform: scale(1.08);
        }

        .partner-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.28) 0%,
                rgba(15, 23, 42, 0.55) 45%,
                rgba(0, 0, 0, 0.7) 100%
            );
            pointer-events: none;
            z-index: 1;
        }

        .partner-slide__panel {
            position: relative;
            z-index: 2;
            width: 88%;
            max-width: 280px;
            margin: 0 auto;
            padding: 1.35rem 1.25rem;
            text-align: center;
            border-radius: 20px;
            background: transparent;
            border: none;
            box-shadow: none;
        }

        .partner-slide__line {
            margin: 0.45rem 0;
            font-size: 1rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.94);
            line-height: 1.5;
            font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, sans-serif;
            text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
        }

        .partner-slide__line:first-child {
            margin-top: 0;
        }

        .partner-slide__line:last-child {
            margin-bottom: 0;
        }

        .partner-slide__tag {
            display: block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.78);
            margin-bottom: 0.25rem;
            font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, sans-serif;
        }

        .partner-slide__value {
            display: block;
            font-size: 1.05rem;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
        }

        .success-partners-section {
            position: relative;
            padding: 64px 0 76px;
            overflow: hidden;
            font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, sans-serif;
            background:
                linear-gradient(
                    165deg,
                    rgba(43, 72, 95, 0.09) 0%,
                    var(--bg-secondary) 42%,
                    rgba(90, 143, 176, 0.07) 100%
                );
            border-top: 1px solid rgba(43, 72, 95, 0.12);
            border-bottom: 1px solid var(--border-light);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }

        .success-partners-section__watermark {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            user-select: none;
            overflow: hidden;
        }

        .success-partners-section__watermark-text {
            font-size: clamp(3.5rem, 16vw, 12rem);
            font-weight: 900;
            letter-spacing: 0.03em;
            line-height: 1;
            color: var(--accent-primary);
            opacity: 0.07;
            white-space: nowrap;
        }

        [data-theme="dark"] .success-partners-section {
            background: linear-gradient(
                165deg,
                rgba(13, 18, 32, 0.9) 0%,
                var(--bg-secondary) 45%,
                rgba(43, 72, 95, 0.25) 100%
            );
            border-top-color: rgba(124, 180, 212, 0.15);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        [data-theme="dark"] .success-partners-section__watermark-text {
            color: #7dd3fc;
            opacity: 0.1;
        }

        .success-partners-section__inner {
            position: relative;
            z-index: 1;
        }

        .success-partners-section__head {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 2.25rem;
        }

        .success-partners-section__title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .success-partners-section__title span {
            color: var(--accent-primary);
        }

        .success-partners-section__sub {
            margin-top: 0.75rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .success-partners-logos {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 1.25rem 1.75rem;
        }

        .success-partners-logos__cell {
            flex: 0 1 var(--sp-cell-flex-basis, 360px);
            max-width: var(--sp-cell-max-w, 480px);
            min-height: var(--sp-cell-min-h, 192px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 1.35rem;
            border-radius: 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .success-partners-logos__cell:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: rgba(43, 72, 95, 0.2);
        }

        .success-partners-logos__cell img {
            max-width: 100%;
            max-height: var(--sp-logo-max-h, 144px);
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(0.15);
        }

        .success-partners-logos__link {
            cursor: pointer;
            border-radius: 10px;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .success-partners-logos__link:hover {
            transform: scale(1.03);
            opacity: 0.95;
        }

        @media (max-width: 640px) {
            .success-partners-logos {
                justify-content: flex-start;
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 0.5rem;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x proximity;
            }

            .success-partners-logos__cell {
                flex: 0 0 auto;
                min-width: min(var(--sp-cell-max-w, 480px), 78vw);
                scroll-snap-align: start;
            }
        }

        .btn-primary {
            background: var(--gradient-accent);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 1rem;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:focus-visible,
        .btn-primary:visited {
            text-decoration: none;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px var(--accent-glow);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 0.9rem 2.3rem;
            border-radius: 100px;
            transition: all 0.3s;
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-outline:hover,
        .btn-outline:focus,
        .btn-outline:focus-visible,
        .btn-outline:visited {
            text-decoration: none;
        }

        .btn-outline:hover {
            background: white;
            color: var(--accent-primary);
            transform: scale(1.05);
        }

        .service-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border-radius: 32px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 1px solid var(--border-light);
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-md);
        }

        .service-card p {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.7;
            min-height: calc(1.7em * 2);
        }

        .service-card__image {
            width: 100%;
            height: 170px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 0.85rem;
            border: 1px solid var(--border-light);
        }

        .service-card__whatsapp {
            margin-top: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            text-decoration: none;
            color: #fff;
            background: #25d366;
            padding: 0.5rem 0.9rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.84rem;
            transition: transform 0.2s ease, filter 0.2s ease;
        }

        .service-card__whatsapp:hover {
            filter: brightness(0.95);
            transform: translateY(-1px);
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--accent-primary);
            background: var(--bg-card);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            box-shadow: var(--shadow-sm);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .swiper-pagination-bullet { background: var(--accent-primary); }

        .hide-scrollbar {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .hide-scrollbar::-webkit-scrollbar { display: none; }

        .reels-wrapper {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 1rem;
        }

        .reel-item {
            min-width: 280px;
            scroll-snap-align: start;
            border-radius: 28px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 9 / 16;
            background: var(--bg-secondary);
        }

        .reel-item video,
        .reel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .reel-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
        }

        .form-group { margin-bottom: 1.1rem; }

        .contact-form-card .form-group:last-of-type {
            margin-bottom: 1.35rem;
        }

        .contact-form-card .form-group input,
        .contact-form-card .form-group textarea,
        .contact-form-card .form-group select {
            width: 100%;
            padding: 0.95rem 1.1rem;
            border-radius: 14px;
            border: 1.5px solid var(--form-border);
            background: var(--bg-secondary);
            color: var(--text-primary);
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .contact-form-card .form-group input:hover,
        .contact-form-card .form-group textarea:hover,
        .contact-form-card .form-group select:hover {
            border-color: var(--form-border-hover);
        }

        .contact-form-card .form-group input:focus,
        .contact-form-card .form-group textarea:focus,
        .contact-form-card .form-group select:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }

        .btn-about-pdf {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            margin-top: 1.25rem;
            padding: 0.85rem 1.5rem;
            border-radius: 14px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            color: var(--accent-dark);
            background: var(--bg-secondary);
            border: 2px solid var(--accent-primary);
            box-shadow: 0 6px 20px var(--accent-glow);
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
        }

        .btn-about-pdf:hover {
            background: var(--accent-glow);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px var(--accent-glow);
        }

        [data-theme="dark"] .btn-about-pdf {
            color: #8ecae6;
            border-color: #7cb4d4;
        }

        .section-cta {
            padding: 72px 0;
            background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
        }

        .cta-card {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            align-items: center;
            padding: 2.5rem 2.75rem;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(43, 72, 95, 0.08), rgba(90, 143, 176, 0.12));
            border: 1px solid rgba(43, 72, 95, 0.22);
            box-shadow: var(--shadow-md);
        }

        .cta-card__eyebrow {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--accent-primary);
            margin-bottom: 0.65rem;
        }

        .cta-card__title {
            font-size: 1.85rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 0.65rem;
            color: var(--text-primary);
        }

        .cta-card__subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 520px;
            margin-bottom: 0.5rem;
            line-height: 1.65;
        }

        .cta-card__hint {
            font-size: 0.88rem;
            color: var(--text-muted);
            max-width: 520px;
            line-height: 1.5;
        }

        .cta-card__action {
            display: flex;
            justify-content: flex-end;
        }

        .cta-card__btn {
            white-space: nowrap;
            padding: 1rem 2rem;
            box-shadow: 0 12px 32px rgba(43, 72, 95, 0.3);
        }

        @media (max-width: 900px) {
            .cta-card {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 2rem 1.5rem;
            }

            .cta-card__action {
                justify-content: center;
            }

            .cta-card__subtitle,
            .cta-card__hint {
                margin-left: auto;
                margin-right: auto;
            }
        }

        .seo-section {
            padding: 64px 0 72px;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-light);
        }

        .seo-section__inner {
            max-width: 820px;
            margin: 0 auto;
        }

        .seo-section__title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-primary);
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.35;
        }

        .seo-section__body {
            display: flex;
            flex-direction: column;
            gap: 1.15rem;
        }

        .seo-section__p {
            font-size: 1.02rem;
            line-height: 1.9;
            color: var(--text-secondary);
            text-align: justify;
            text-justify: inter-word;
        }

        [dir="ltr"] .seo-section__p {
            text-align: left;
        }

        @media (max-width: 640px) {
            .seo-section__p {
                text-align: start;
            }
        }

        .contact-section {
            padding: 88px 0 96px;
            background: var(--bg-secondary);
        }

        .contact-section__head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 3rem;
        }

        .contact-section__eyebrow {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--accent-primary);
            margin-bottom: 0.6rem;
        }

        .contact-section__title {
            font-size: 2.35rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .contact-section__title span {
            color: var(--accent-primary);
        }

        .contact-section__lead {
            font-size: 1rem;
            color: var(--accent-primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-section__intro {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }

        .contact-aside__meta {
            font-size: 0.92rem;
            color: var(--text-muted);
            margin-bottom: 0.75rem;
        }

        .contact-aside__note {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 1.5rem;
        }

        .contact-urgent-hint {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.55;
            margin-top: -0.2rem;
            margin-bottom: 1.25rem;
        }

        .contact-quick {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            margin-bottom: 1.75rem;
        }

        .contact-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.55rem 1rem;
            border-radius: 100px;
            font-size: 0.88rem;
            font-weight: 600;
            text-decoration: none;
            color: var(--text-primary);
            background: var(--bg-primary);
            border: 1px solid var(--border-light);
            transition: border-color 0.2s, background 0.2s;
        }

        .contact-chip:hover {
            border-color: var(--accent-primary);
            background: var(--accent-glow);
        }

        .contact-chip--accent {
            border-color: rgba(43, 72, 95, 0.45);
            background: rgba(43, 72, 95, 0.08);
        }

        .contact-map-block {
            margin-bottom: 1.5rem;
        }

        .contact-map-block h3 {
            font-size: 1.05rem;
            font-weight: 800;
            margin-bottom: 0.45rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-primary);
        }

        .contact-map-block h3 i {
            color: var(--accent-primary);
        }

        .contact-address-line {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 0.85rem;
            line-height: 1.55;
        }

        .contact-map-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            border: 1.5px solid var(--form-border);
            box-shadow: var(--shadow-sm);
            aspect-ratio: 16 / 11;
            background: var(--bg-primary);
        }

        .contact-map-frame iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .contact-digits {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            font-size: 0.98rem;
            color: var(--text-secondary);
        }

        .contact-digits > div {
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
        }

        .contact-digits i {
            color: var(--accent-primary);
            margin-top: 0.2rem;
        }

        .contact-digits a {
            color: var(--text-primary);
            text-decoration: none;
            border-bottom: 1px dashed rgba(43, 72, 95, 0.45);
        }

        .contact-digits a:hover {
            color: var(--accent-primary);
        }

        .contact-form-card {
            padding: 2rem 2.1rem 2.25rem;
            border-radius: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-md);
        }

        .contact-form-card h3 {
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 0.35rem;
            color: var(--text-primary);
        }

        .contact-form-card__hint {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin-bottom: 1.35rem;
            line-height: 1.6;
            white-space: pre-line;
        }

        @media (max-width: 992px) {
            .contact-layout {
                grid-template-columns: 1fr;
            }

            .contact-form-card {
                order: -1;
            }
        }

        .form-toast-backdrop {
            position: fixed;
            inset: 0;
            z-index: 4000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: rgba(15, 23, 42, 0.45);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .form-toast {
            position: relative;
            max-width: min(420px, 100%);
            padding: 1.5rem 2.75rem 1.5rem 1.75rem;
            border-radius: 18px;
            background: var(--bg-secondary);
            color: var(--text-primary);
            border: 1px solid var(--border-light);
            box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
            text-align: center;
            animation: formToastIn 0.35s ease;
        }

        @keyframes formToastIn {
            from {
                opacity: 0;
                transform: scale(0.94) translateY(12px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .form-toast__icon {
            display: block;
            font-size: 2.25rem;
            color: var(--accent-secondary);
            margin-bottom: 0.65rem;
        }

        .form-toast__text {
            margin: 0;
            font-size: 1.05rem;
            font-weight: 600;
            line-height: 1.65;
        }

        .form-toast__close {
            position: absolute;
            top: 0.65rem;
            inset-inline-end: 0.65rem;
            width: 2.25rem;
            height: 2.25rem;
            border: none;
            border-radius: 10px;
            background: transparent;
            color: var(--text-muted);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: background 0.2s, color 0.2s;
        }

        .form-toast__close:hover {
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        .latest-news-section {
            padding: 4.75rem 0 4rem;
            background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(43, 72, 95, 0.04) 100%);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .latest-news-head {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 2.2rem;
        }

        .latest-news-title {
            font-size: 2.2rem;
            line-height: 1.2;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 0.7rem;
        }

        .latest-news-title span {
            color: var(--accent-primary);
        }

        .latest-news-sub {
            color: var(--text-secondary);
            font-size: 1.03rem;
        }

        .latest-news-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem;
        }

        .latest-news-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 18px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-sm);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .latest-news-card__badge {
            position: absolute;
            top: 0.75rem;
            inset-inline-start: 0.75rem;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            padding: 0.28rem 0.62rem;
            border-radius: 999px;
            background: linear-gradient(135deg, #2b485f, #5a8fb0);
            color: #fff;
            font-size: 0.74rem;
            font-weight: 800;
            box-shadow: 0 8px 20px rgba(43, 72, 95, 0.35);
        }

        .latest-news-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .latest-news-card__image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .latest-news-card__body {
            padding: 1rem 1rem 1.1rem;
        }

        .latest-news-card__date {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--accent-primary);
            background: var(--accent-glow);
            border-radius: 999px;
            padding: 0.2rem 0.55rem;
            margin-bottom: 0.65rem;
        }

        .latest-news-card__title {
            font-size: 1.1rem;
            line-height: 1.35;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .latest-news-card__excerpt {
            color: var(--text-secondary);
            font-size: 0.93rem;
            line-height: 1.65;
        }

        .site-footer {
            background: var(--gradient-dark);
            color: #fff;
            padding: 40px 0;
        }

        .site-footer__grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2.25rem;
            align-items: start;
        }

        .site-footer__title {
            margin-bottom: 0.9rem;
            font-size: 1.02rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.95);
        }

        .site-footer__contact-list,
        .site-footer__links-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .site-footer__contact-list li {
            display: flex;
            gap: 0.6rem;
            align-items: flex-start;
            margin-bottom: 0.58rem;
            color: rgba(255, 255, 255, 0.86);
            line-height: 1.55;
        }

        .site-footer__contact-list i {
            margin-top: 0.22rem;
            color: #9ed4f2;
            width: 1rem;
        }

        .site-footer__contact-list a,
        .site-footer__links-list a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .site-footer__contact-list a:hover,
        .site-footer__links-list a:hover {
            color: #fff;
        }

        .site-footer__social-wrap {
            margin-top: 1.15rem;
            padding-top: 1rem;
            /* border-top: 1px solid rgba(255, 255, 255, 0.12); */
        }

        .site-footer__social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin-bottom: 0.9rem;
        }

        .site-footer__social-icons a {
            width: 2.05rem;
            height: 2.05rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }

        .site-footer__social-icons a:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .site-footer__col--brand {
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 220px;
        }

        .site-footer__logo {
            width: min(270px, 35vw);
            max-width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.35));
        }

        .site-footer__links-list li {
            margin-bottom: 0.45rem;
        }

        .footer-theme-bar {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0.65rem;
            padding: 0;
            margin: 0;
            background: transparent;
            border: none;
        }

        .footer-theme-bar--plain {
            margin-top: 0.2rem;
        }

        .footer-bottom-strip {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.65rem 1.15rem;
            margin-top: 2rem;
            padding-top: 1.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .footer-bottom-strip__link {
            color: rgba(255, 255, 255, 0.88);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 0.35rem 0.5rem;
            border-radius: 8px;
            transition: color 0.2s ease, background 0.2s ease;
        }

        .footer-bottom-strip__link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 992px) {
            .latest-news-grid {
                grid-template-columns: 1fr 1fr;
            }

            .site-footer__grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .site-footer__contact-list li {
                justify-content: center;
                text-align: start;
            }

            .site-footer__social-icons,
            .footer-theme-bar {
                justify-content: center;
            }

            .site-footer__social-wrap {
                border-top: none;
                padding-top: 0.35rem;
            }
        }

        @media (max-width: 640px) {
            .latest-news-grid {
                grid-template-columns: 1fr;
            }

            .latest-news-title {
                font-size: 1.75rem;
            }

            .latest-news-card__image {
                height: 200px;
            }
        }

        .theme-pill {
            position: relative;
            border: none;
            padding: 0;
            background: none;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }

        .theme-pill__track {
            position: relative;
            display: flex;
            align-items: center;
            width: 3.75rem;
            height: 1.9rem;
            border-radius: 999px;
            direction: ltr;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.22);
            padding: 0 0.35rem;
            transition: background 0.25s ease, border-color 0.25s ease;
        }

        .theme-pill__track.is-light {
            background: rgba(255, 255, 255, 0.2);
        }

        .theme-pill__track.is-dark {
            background: rgba(15, 23, 42, 0.45);
        }

        .theme-pill__icon {
            position: absolute;
            font-size: 0.72rem;
            opacity: 0.5;
            transition: opacity 0.2s, color 0.2s;
            z-index: 0;
        }

        .theme-pill__icon--sun {
            left: 0.45rem;
            color: #fbbf24;
        }

        .theme-pill__icon--moon {
            right: 0.45rem;
            color: #a5b4fc;
        }

        .theme-pill__track.is-light .theme-pill__icon--sun,
        .theme-pill__track.is-dark .theme-pill__icon--moon {
            opacity: 1;
        }

        .theme-pill__knob {
            position: absolute;
            top: 50%;
            left: 0.22rem;
            width: 1.45rem;
            height: 1.45rem;
            border-radius: 50%;
            background: linear-gradient(180deg, #fff 0%, #e2e8f0 100%);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            transform: translate(0, -50%);
            transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1);
            z-index: 1;
        }

        .theme-pill__track.is-dark .theme-pill__knob {
            transform: translate(1.65rem, -50%);
        }

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

        .responsive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

        @media (max-width: 768px) {
            .container { padding: 0 1.5rem; }
            .hero h1 { font-size: 2rem !important; }
            .responsive-grid { grid-template-columns: 1fr !important; }
            .hero { background-attachment: scroll; }
        }

