     :root {
            --cyan:    #00D4D4;
            --magenta: #E8005A;
            --yellow:  #FFD600;
            --accent:  #E8005A;

            /* Light theme */
            --bg:       #f7f7f5;
            --bg2:      #ffffff;
            --bg3:      #f0eeeb;
            --surface:  #ffffff;
            --border:   rgba(0,0,0,0.08);
            --text:     #181818;
            --text2:    #555555;
            --text3:    #888888;
            --nav-bg:   rgba(247,247,245,0.85);
            --shadow:   0 8px 32px rgba(0,0,0,0.08);
            --shadow-hover: 0 20px 48px rgba(0,0,0,0.13);
            --input-bg: #f0eeeb;
            --footer-bg: #111111;
            --footer-text: #aaaaaa;
        }

        [data-theme="dark"] {
            --bg:       #0f0f0f;
            --bg2:      #161616;
            --bg3:      #1c1c1c;
            --surface:  #1e1e1e;
            --border:   rgba(255,255,255,0.08);
            --text:     #f0f0f0;
            --text2:    #b0b0b0;
            --text3:    #666666;
            --nav-bg:   rgba(15,15,15,0.9);
            --shadow:   0 8px 32px rgba(0,0,0,0.4);
            --shadow-hover: 0 20px 48px rgba(0,0,0,0.6);
            --input-bg: #262626;
            --footer-bg: #080808;
            --footer-text: #666666;
        }

        /* ──────────────────────────────────────────────
           GLOBAL
        ────────────────────────────────────────────── */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Noto Sans Georgian', 'Space Grotesk', sans-serif;
            color: var(--text);
            background-color: var(--bg);
            transition: background-color 0.4s ease, color 0.4s ease;
            overflow-x: hidden;
        }

        /* ──────────────────────────────────────────────
           NAVBAR
        ────────────────────────────────────────────── */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 14px 0;
            background: transparent;
            transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
        }
        .navbar.scrolled {
            background: var(--nav-bg) !important;
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 24px rgba(0,0,0,0.07);
        }
        .navbar-brand img {
            height: 44px;
            transition: all 0.4s;
        }
        [data-theme="light"] .navbar-brand img { mix-blend-mode: multiply; }
        [data-theme="dark"]  .navbar-brand img { mix-blend-mode: normal; opacity: 0.92; }

        /* ── Nav pill container ── */
        .navbar-nav1 {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 5px 6px !important;
            gap: 2px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: background 0.4s, border-color 0.4s;
        }
        .navbar.scrolled .navbar-nav1 {
            background: transparent;
            border-color: transparent;
            box-shadow: none;
        }

        /* ── Nav items ── */
        .nav-item { position: relative; }

        .nav-link {
            color: var(--text2) !important;
            font-weight: 600;
            font-size: 0.82rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 7px 16px !important;
            border-radius: 50px;
            transition: color 0.25s, background 0.25s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* CMY colored dot per item */
        .nav-link::before {
            content: '';
            display: inline-block;
            width: 6px; height: 6px;
            border-radius: 50%;
            opacity: 0;
            transform: scale(0);
            transition: opacity 0.25s, transform 0.25s;
            flex-shrink: 0;
        }
        .nav-item:nth-child(1) .nav-link::before { background: var(--yellow); }
        .nav-item:nth-child(2) .nav-link::before { background: var(--magenta); }
        .nav-item:nth-child(3) .nav-link::before { background: var(--cyan); }
        .nav-item:nth-child(4) .nav-link::before { background: var(--yellow); }
        .nav-item:nth-child(5) .nav-link::before { background: var(--magenta); }

        /* Hover & active: pill bg + colored text + dot appears */
        .nav-item:nth-child(1) .nav-link:hover,
        .nav-item:nth-child(1) .nav-link.active {
            background: rgba(255,214,0,0.12);
            color: #b89300 !important;
        }
        [data-theme="dark"] .nav-item:nth-child(1) .nav-link:hover,
        [data-theme="dark"] .nav-item:nth-child(1) .nav-link.active {
            color: var(--yellow) !important;
        }
        .nav-item:nth-child(2) .nav-link:hover,
        .nav-item:nth-child(2) .nav-link.active {
            background: rgba(232,0,90,0.1);
            color: var(--magenta) !important;
        }
        .nav-item:nth-child(3) .nav-link:hover,
        .nav-item:nth-child(3) .nav-link.active {
            background: rgba(0,212,212,0.1);
            color: var(--cyan) !important;
        }
        .nav-item:nth-child(4) .nav-link:hover,
        .nav-item:nth-child(4) .nav-link.active {
            background: rgba(255,214,0,0.12);
            color: #b89300 !important;
        }
        [data-theme="dark"] .nav-item:nth-child(4) .nav-link:hover,
        [data-theme="dark"] .nav-item:nth-child(4) .nav-link.active {
            color: var(--yellow) !important;
        }
        .nav-item:nth-child(5) .nav-link:hover,
        .nav-item:nth-child(5) .nav-link.active {
            background: rgba(232,0,90,0.1);
            color: var(--magenta) !important;
        }
        .nav-link:hover::before,
        .nav-link.active::before {
            opacity: 1;
            transform: scale(1);
        }

        /* Dark mode toggle */
        .theme-toggle {
            width: 44px; height: 24px;
            background: var(--bg3);
            border-radius: 50px;
            border: 1.5px solid var(--border);
            cursor: pointer;
            position: relative;
            transition: background 0.35s, border-color 0.35s;
            flex-shrink: 0;
        }
        .theme-toggle::before {
            content: '';
            position: absolute;
            top: 2px; left: 2px;
            width: 16px; height: 16px;
            border-radius: 50%;
            background: var(--text);
            transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s;
        }
        [data-theme="dark"] .theme-toggle::before {
            transform: translateX(20px);
            background: var(--cyan);
        }
        [data-theme="dark"] .theme-toggle {
            background: rgba(0,212,212,0.12);
            border-color: rgba(0,212,212,0.4);
        }

        .toggle-wrap {
            display: flex; align-items: center; gap: 6px;
        }
        .toggle-icon {
            font-size: 0.78rem; color: var(--text3);
            transition: color 0.35s;
        }
        [data-theme="dark"]  .toggle-icon-sun  { color: var(--yellow); }
        [data-theme="light"] .toggle-icon-moon { color: var(--text3); opacity: 0.5; }

        /* Mobile collapse */
        @media (max-width: 991px) {
            .navbar-nav {
                border-radius: 18px;
                padding: 10px 10px !important;
                flex-direction: column;
                gap: 3px;
            }
            .nav-link { border-radius: 12px; }
            .d-flex.align-items-center.gap-3 {
                flex-wrap: wrap;
                justify-content: center;
                padding-top: 10px;
            }
        }

        /* ═══════════════════════════════════════════════
           BUTTON SYSTEM — CMY Refined
        ═══════════════════════════════════════════════ */

        /* ── Shared base ── */
        .btn-nav-outline,
        .btn-nav-fill,
        .btn-primary-fill,
        .btn-secondary-outline,
        .btn-cta-light,
        .btn-cta-outline,
        .btn-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: inherit;
            font-weight: 700;
            letter-spacing: 0.03em;
            cursor: pointer;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            border: none;
            transition:
                transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.22s ease,
                background 0.22s ease,
                color 0.22s ease,
                border-color 0.22s ease;
        }

        /* Shine sweep */
        .btn-nav-outline::after,
        .btn-nav-fill::after,
        .btn-primary-fill::after,
        .btn-secondary-outline::after,
        .btn-cta-light::after,
        .btn-cta-outline::after,
        .btn-submit::after {
            content: '';
            position: absolute;
            top: 0; left: -80%;
            width: 45%; height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: skewX(-18deg);
            transition: left 0.45s ease;
            pointer-events: none;
        }
        .btn-nav-outline:hover::after,
        .btn-nav-fill:hover::after,
        .btn-primary-fill:hover::after,
        .btn-secondary-outline:hover::after,
        .btn-cta-light:hover::after,
        .btn-cta-outline:hover::after,
        .btn-submit:hover::after { left: 130%; }

        /* Press */
        .btn-nav-outline:active,
        .btn-nav-fill:active,
        .btn-primary-fill:active,
        .btn-secondary-outline:active,
        .btn-cta-light:active,
        .btn-cta-outline:active,
        .btn-submit:active { transform: scale(0.96) translateY(1px) !important; }

        /* ── Nav pill shape ── */
        .btn-nav-outline,
        .btn-nav-fill { border-radius: 50px; padding: 8px 22px; font-size: 0.83rem; }

        /* ── Nav: შესვლა — cyan ghost ── */
        .btn-nav-outline {
            background: transparent;
            border: 1.5px solid var(--cyan);
            color: var(--cyan);
        }
        .btn-nav-outline:hover {
            background: var(--cyan);
            color: #111;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,212,212,0.35);
        }

        /* ── Nav: რეგისტრაცია — magenta solid ── */
        .btn-nav-fill {
            background: var(--magenta);
            color: #fff;
            border: 1.5px solid var(--magenta);
        }
        .btn-nav-fill:hover {
            background: transparent;
            color: var(--magenta);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232,0,90,0.25);
        }

        /* ── Hero buttons shape ── */
        .btn-primary-fill,
        .btn-secondary-outline { border-radius: 12px; padding: 14px 34px; font-size: 0.92rem; }

        /* ── Hero Primary — yellow solid, magenta on hover ── */
        .btn-primary-fill {
            background: var(--yellow);
            color: #111;
            border: 2px solid var(--yellow);
        }
        .btn-primary-fill:hover {
            background: var(--magenta);
            border-color: var(--magenta);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(232,0,90,0.35);
        }

        /* ── Hero Secondary — cyan ghost ── */
        .btn-secondary-outline {
            background: transparent;
            border: 2px solid rgba(0,212,212,0.5);
            color: var(--text);
        }
        .btn-secondary-outline:hover {
            background: var(--cyan);
            border-color: var(--cyan);
            color: #111;
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(0,212,212,0.3);
        }

        /* ── CTA buttons shape ── */
        .btn-cta-light,
        .btn-cta-outline { border-radius: 12px; padding: 15px 38px; font-size: 0.95rem; }

        /* ── CTA Primary — yellow ── */
        .btn-cta-light {
            background: var(--yellow);
            color: #111;
            border: 2px solid var(--yellow);
        }
        .btn-cta-light:hover {
            background: transparent;
            color: var(--yellow);
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(255,214,0,0.25);
        }

        /* ── CTA Secondary — cyan ghost on dark bg ── */
        .btn-cta-outline {
            background: transparent;
            border: 2px solid var(--cyan);
            color: var(--cyan);
        }
        .btn-cta-outline:hover {
            background: var(--cyan);
            color: #111;
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(0,212,212,0.3);
        }

        /* ── Form submit ── */
        .btn-submit {
            background: var(--magenta);
            color: #fff;
            border: 2px solid var(--magenta);
            border-radius: 12px;
            padding: 13px 32px;
            font-size: 0.9rem;
        }
        .btn-submit:hover {
            background: transparent;
            color: var(--magenta);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(232,0,90,0.25);
        }

        /* ──────────────────────────────────────────────
           HERO
        ────────────────────────────────────────────── */
        #hero { position: relative; }

        .carousel-item {
            height: 100vh; min-height: 600px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .carousel-overlay { display: none; }

        .carousel-caption {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            top: auto;
            transform: none;
            width: 100%;
            max-width: 100%;
            text-align: center;
            z-index: 10;
            padding: 80px 20px 56px;
            background: linear-gradient(to top,
                rgba(0,0,0,0.72) 0%,
                rgba(0,0,0,0.35) 55%,
                transparent 100%);
        }
        .carousel-caption .hero-eyebrow,
        .carousel-caption .hero-title,
        .carousel-caption .hero-sub { color: #fff !important; }
        .carousel-caption .hero-title span { color: var(--yellow); }
        .carousel-caption .hero-eyebrow { color: rgba(255,255,255,0.75) !important; }
        .carousel-caption .hero-eyebrow::before,
        .carousel-caption .hero-eyebrow::after { background: rgba(255,255,255,0.5); }
        .carousel-caption .hero-sub { color: rgba(255,255,255,0.8) !important; }
        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em;
            text-transform: uppercase; color: var(--magenta);
            margin-bottom: 20px;
        }
        .hero-eyebrow::before, .hero-eyebrow::after {
            content: ''; display: block;
            width: 30px; height: 1.5px;
            background: var(--magenta);
        }
        .hero-title {
            font-size: clamp(2.8rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--text);
            letter-spacing: -0.03em;
            margin-bottom: 20px;
        }
        .hero-title span { color: var(--magenta); }
        .hero-sub {
            font-size: 1.05rem;
            color: var(--text2);
            max-width: 520px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }
        .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

        /* Buttons inside dark hero caption */
        .carousel-caption .btn-secondary-outline {
            border-color: rgba(255,255,255,0.55);
            color: #fff;
        }
        .carousel-caption .btn-secondary-outline:hover {
            background: var(--cyan); border-color: var(--cyan); color: #111;
        }

        .carousel-control-prev, .carousel-control-next {
            width: 52px; height: 52px;
            top: 50%; bottom: auto;
            transform: translateY(-50%);
            background: var(--surface);
            border: 1.5px solid var(--border);
            border-radius: 50%;
            opacity: 1;
            margin: 0 20px;
            transition: all 0.3s;
        }
        .carousel-control-prev:hover {
            background: var(--cyan);
            border-color: var(--cyan);
            box-shadow: 0 6px 20px rgba(0,212,212,0.35);
        }
        .carousel-control-next:hover {
            background: var(--magenta);
            border-color: var(--magenta);
            box-shadow: 0 6px 20px rgba(232,0,90,0.35);
        }
        .carousel-control-prev-icon, .carousel-control-next-icon {
            filter: invert(1);
            width: 16px; height: 16px;
        }
        [data-theme="dark"] .carousel-control-prev-icon,
        [data-theme="dark"] .carousel-control-next-icon { filter: none; }

        .hero-scroll-hint {
            position: absolute; bottom: 36px; left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex; flex-direction: column; align-items: center; gap: 10px;
            font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
            color: var(--text3);
            animation: bounce 2.2s ease-in-out infinite;
        }
        .scroll-cmy-dots {
            display: flex; gap: 5px;
        }
        .scroll-cmy-dots span {
            width: 6px; height: 6px; border-radius: 50%;
            animation: scroll-dot-pulse 1.4s ease-in-out infinite;
        }
        .scroll-cmy-dots span:nth-child(1) { background: var(--yellow); animation-delay: 0s; }
        .scroll-cmy-dots span:nth-child(2) { background: var(--magenta); animation-delay: 0.2s; }
        .scroll-cmy-dots span:nth-child(3) { background: var(--cyan); animation-delay: 0.4s; }
        @keyframes scroll-dot-pulse {
            0%, 100% { opacity: 0.4; transform: scaleY(1); }
            50% { opacity: 1; transform: scaleY(1.6); border-radius: 3px; }
        }
        .hero-scroll-hint i {
            font-size: 1rem;
            background: linear-gradient(180deg, var(--yellow), var(--magenta));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(7px); }
        }

        /* ──────────────────────────────────────────────
           STATS BAR
        ────────────────────────────────────────────── */
        .stats-bar {
            background: var(--text);
            color: var(--bg);
            padding: 28px 0;
            position: relative;
            overflow: hidden;
        }
        .stats-bar::before {
            content: '';
            position: absolute; inset: 0;
            background:
                radial-gradient(circle at 10% 50%, rgba(255,214,0,0.12) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(232,0,90,0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 50%, rgba(0,212,212,0.12) 0%, transparent 40%);
            pointer-events: none;
        }
        .stat-item { text-align: center; padding: 0 20px; }
        .stat-number {
            font-size: 2rem; font-weight: 800;
            line-height: 1;
        }
        .stat-n1 { color: var(--yellow); }
        .stat-n2 { color: var(--magenta); }
        .stat-n3 { color: var(--cyan); }
        .stat-n4 { color: var(--yellow); }
        .stat-label {
            font-size: 0.78rem; font-weight: 600;
            letter-spacing: 0.08em; text-transform: uppercase;
            opacity: 0.6; margin-top: 4px;
        }
        .stat-divider {
            width: 1px; background: rgba(255,255,255,0.12);
            height: 40px; align-self: center;
        }

        /* CMY decorative orbs — echo the logo's circles */
        .cmy-orbs {
            position: absolute; inset: 0; z-index: 2; pointer-events: none;
            overflow: hidden;
        }
        .cmy-orb {
            position: absolute; border-radius: 50%;
            filter: blur(80px); opacity: 0.18;
        }
        [data-theme="dark"] .cmy-orb { opacity: 0.28; }
        .cmy-orb-y { width: 380px; height: 380px; background: var(--yellow);  top: -80px;  right: 5%; }
        .cmy-orb-m { width: 340px; height: 340px; background: var(--magenta); bottom: -60px; right: 15%; }
        .cmy-orb-c { width: 320px; height: 320px; background: var(--cyan);    bottom: -40px; right: 25%; }
        .section-padding { padding: 96px 0; }

        .section-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
            text-transform: uppercase; color: var(--magenta);
            margin-bottom: 14px;
        }
        .section-label::before {
            content: ''; display: block;
            width: 24px; height: 2px;
            background: var(--magenta);
        }
        /* Per-section label colors */
        #about      .section-label { color: var(--cyan);    }
        #about      .section-label::before { background: var(--cyan); }
        #services   .section-label { color: var(--magenta); }
        #services   .section-label::before { background: var(--magenta); }
        #process    .section-label { color: var(--yellow);  }
        #process    .section-label::before { background: var(--yellow); }
        #testimonials .section-label { color: var(--cyan); }
        #testimonials .section-label::before { background: var(--cyan); }
        #partners   .section-label { color: var(--yellow);  }
        #partners   .section-label::before { background: var(--yellow); }
        #contact    .section-label { color: var(--magenta); }
        #contact    .section-label::before { background: var(--magenta); }
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.03em;
            line-height: 1.15;
        }

        /* Per-section title accent spans — only the highlighted word changes color */
        #about        .section-title span span { color: var(--cyan); }
        #services     .section-title span span { color: var(--magenta); }
        #process      .section-title span span { color: var(--yellow); }
        #testimonials .section-title span span { color: var(--cyan); }
        #partners     .section-title span span { color: var(--yellow); }
        #contact      .section-title span span { color: var(--magenta); }
        #cta          .cta-title span           { color: var(--yellow); }

        /* Hero title accent stays magenta */
        .hero-title span { color: var(--magenta); }

        /* Remove underline wrapper styles — not needed */
        .section-title-wrap { display: inline; }

        /* CMY dot trio — logo echo in headings */
        .cmy-dots { display: inline-flex; gap: 5px; margin-right: 10px; vertical-align: middle; }
        .cmy-dots span {
            display: inline-block; width: 10px; height: 10px; border-radius: 50%;
        }
        .cmy-dots .d-y { background: var(--yellow); }
        .cmy-dots .d-m { background: var(--magenta); }
        .cmy-dots .d-c { background: var(--cyan); }

        /* Stripe accent on service cards matching logo colors */
        .service-card.accent-cyan  .service-icon { background: rgba(0,212,212,0.1); }
        .service-card.accent-magenta .service-icon { background: rgba(232,0,90,0.08); }
        .service-card.accent-yellow .service-icon { background: rgba(255,214,0,0.1); }
        #about { background: var(--bg2); }

        .about-image-placeholder {
            border-radius: 20px;
            height: 460px;
            display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
            background: var(--bg3);
            border: 1px solid var(--border);
        }
        .about-image-placeholder::before {
            content: '';
            position: absolute; inset: 0;
            background:
                radial-gradient(circle at 30% 40%, rgba(255,214,0,0.35) 0%, transparent 55%),
                radial-gradient(circle at 65% 35%, rgba(232,0,90,0.3) 0%, transparent 55%),
                radial-gradient(circle at 55% 65%, rgba(0,212,212,0.3) 0%, transparent 55%);
        }
        .about-image-placeholder i { font-size: 3.5rem; color: var(--text3); position: relative; z-index: 1; }

        .feature-pill {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--bg3);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 10px 18px;
            font-size: 0.85rem; font-weight: 600;
            color: var(--text);
            margin-bottom: 10px;
            transition: all 0.3s;
        }
        .feature-pill:hover {
            border-color: var(--magenta);
            transform: translateX(4px);
        }
        .feature-pill i { color: var(--magenta); font-size: 0.95rem; }

        /* ──────────────────────────────────────────────
           SERVICES
        ────────────────────────────────────────────── */
        #services { background: var(--bg); }

        .service-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 36px 30px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
        }
        .service-card::before {
            content: '';
            position: absolute; bottom: 0; left: 0; right: 0;
            height: 3px;
            background: var(--card-accent, var(--cyan));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
        }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: transparent;
        }
        .service-card.accent-cyan  { --card-accent: var(--cyan); }
        .service-card.accent-magenta { --card-accent: var(--magenta); }
        .service-card.accent-yellow { --card-accent: var(--yellow); }

        .service-icon {
            width: 56px; height: 56px;
            border-radius: 14px;
            background: var(--bg3);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        .service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
        .service-card.accent-cyan .service-icon i { color: var(--cyan); }
        .service-card.accent-magenta .service-icon i { color: var(--magenta); }
        .service-card.accent-yellow .service-icon i { color: var(--yellow); }

        .service-card h4 {
            font-size: 1.05rem; font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }
        .service-card p { color: var(--text2); font-size: 0.88rem; line-height: 1.65; }

        /* ──────────────────────────────────────────────
           PARTNERS
        ────────────────────────────────────────────── */
        #partners { background: var(--bg2); }

        .partner-box {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            height: 110px;
            display: flex; align-items: center; justify-content: center;
            margin: 8px;
            filter: grayscale(100%);
            opacity: 0.45;
            transition: all 0.35s;
            font-weight: 700; color: var(--text3);
            font-size: 0.85rem; letter-spacing: 0.05em;
        }
        .partner-box img { max-height: 65px; max-width: 80%; object-fit: contain; }
        .partner-box:hover {
            filter: grayscale(0%);
            opacity: 1;
            border-color: var(--magenta);
            transform: scale(1.03);
        }
        .slick-prev:before, .slick-next:before { color: var(--magenta); font-size: 22px; opacity: 0.7; }

        /* ──────────────────────────────────────────────
           CONTACT
        ────────────────────────────────────────────── */
        #contact { background: var(--bg); }

        .contact-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .contact-info-panel {
            background: var(--text);
            color: white;
            padding: 52px 44px;
        }
        [data-theme="dark"] .contact-info-panel { background: #0a0a0a; }
        .contact-info-panel h3 {
            font-size: 1.6rem; font-weight: 800;
            margin-bottom: 12px; letter-spacing: -0.02em;
        }
        .contact-info-panel p { opacity: 0.6; font-size: 0.9rem; line-height: 1.65; margin-bottom: 32px; }

        .contact-detail {
            display: flex; align-items: center; gap: 14px;
            margin-bottom: 20px;
        }
        .contact-detail-icon {
            width: 42px; height: 42px; border-radius: 12px;
            background: rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.95rem;
            flex-shrink: 0;
        }
        .contact-detail span { font-size: 0.9rem; opacity: 0.85; }

        .social-links { display: flex; gap: 12px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
        .social-link {
            width: 40px; height: 40px; border-radius: 10px;
            background: rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        .social-link:hover { background: var(--magenta); color: #fff; transform: translateY(-3px); }

        .contact-form-panel { padding: 52px 44px; background: var(--surface); }

        .form-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text2); margin-bottom: 8px; }
        .form-control, .form-select {
            background: var(--input-bg) !important;
            border: 1.5px solid var(--border) !important;
            border-radius: 12px !important;
            color: var(--text) !important;
            padding: 12px 16px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--magenta) !important;
            box-shadow: 0 0 0 3px rgba(232,0,90,0.1) !important;
            outline: none;
        }
        .form-control::placeholder { color: var(--text3); }
        .form-select option { background: var(--surface); color: var(--text); }

        /* ──────────────────────────────────────────────
           FOOTER
        ────────────────────────────────────────────── */
        footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding: 64px 0 28px;
            transition: background 0.4s;
            position: relative; overflow: hidden;
        }
        footer::before {
            content: '';
            position: absolute; inset: 0; pointer-events: none;
            background:
                radial-gradient(circle at 0% 100%, rgba(255,214,0,0.06) 0%, transparent 40%),
                radial-gradient(circle at 50% 80%, rgba(232,0,90,0.05) 0%, transparent 40%),
                radial-gradient(circle at 100% 90%, rgba(0,212,212,0.06) 0%, transparent 40%);
        }
        .footer-logo { height: 48px; opacity: 0.9; }
        .footer-desc { font-size: 0.85rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
        .footer-heading { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; opacity: 0.5; margin-bottom: 20px; }
        .footer-link { display: block; color: var(--footer-text); text-decoration: none; font-size: 0.88rem; margin-bottom: 10px; transition: color 0.3s; }
        .footer-link:hover { color: #fff; }
        .footer-social {
            width: 36px; height: 36px; border-radius: 9px;
            border: 1px solid rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.5); font-size: 0.85rem;
            text-decoration: none; transition: all 0.3s;
        }
        .footer-social:hover { background: var(--magenta); border-color: var(--magenta); color: #fff; transform: translateY(-2px); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 48px; padding-top: 24px; }
        .footer-copy { font-size: 0.8rem; }

        /* ──────────────────────────────────────────────
           MODALS
        ────────────────────────────────────────────── */
        .modal-content {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            color: var(--text);
        }
        .modal-header { border-bottom: 1px solid var(--border); padding: 28px 32px 20px; }
        .modal-body { padding: 24px 32px 32px; }
        .modal-title { font-size: 1.3rem; font-weight: 800; }
        .btn-close { filter: var(--btn-close-filter, none); }
        [data-theme="dark"] .btn-close { filter: invert(1); }
        /* modal submit full width — inherit CMY gradient from btn-primary-fill */

        /* ──────────────────────────────────────────────
           ANIMATIONS (fade-in on scroll)
        ────────────────────────────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
        }
        .reveal.visible { opacity: 1; transform: none; }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }
        .reveal-delay-6 { transition-delay: 0.6s; }

        /* ──────────────────────────────────────────────
           MISC
        ────────────────────────────────────────────── */
        ::selection { background: var(--magenta); color: #fff; }
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: var(--text3); border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--magenta); }

        /* ──────────────────────────────────────────────
           PRELOADER
        ────────────────────────────────────────────── */
        /* ──────────────────────────────────────────────
           PRELOADER
        ────────────────────────────────────────────── */
        #preloader {
            position: fixed; inset: 0; z-index: 9999;
            background: var(--bg);
            display: flex; flex-direction: column;
            align-items: center; justify-content: center; gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        #preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

        .preloader-logo {
            position: relative;
            width: 90px; height: 90px;
        }
        .preloader-logo span {
            position: absolute;
            width: 52px; height: 52px;
            border-radius: 50%;
            opacity: 0.82;
        }
        /* Yellow — top center */
        .preloader-logo span:nth-child(1) {
            background: var(--yellow);
            top: 0; left: 50%;
            margin-left: -26px;
            animation: pl-float 2s ease-in-out infinite 0s;
        }
        /* Magenta — bottom left */
        .preloader-logo span:nth-child(2) {
            background: var(--magenta);
            bottom: 0; left: 0;
            animation: pl-float 2s ease-in-out infinite 0.28s;
        }
        /* Cyan — bottom right */
        .preloader-logo span:nth-child(3) {
            background: var(--cyan);
            bottom: 0; right: 0;
            animation: pl-float 2s ease-in-out infinite 0.56s;
        }
        @keyframes pl-float {
            0%, 100% { transform: scale(1);    opacity: 0.75; }
            50%       { transform: scale(1.18); opacity: 1;    }
        }

        .preloader-bar {
            width: 120px; height: 3px;
            background: var(--border);
            border-radius: 3px;
            overflow: hidden;
        }
        .preloader-bar::after {
            content: '';
            display: block; height: 100%;
            background: linear-gradient(to right, var(--yellow), var(--magenta), var(--cyan));
            border-radius: 3px;
            animation: pl-bar 1.6s ease-in-out infinite;
        }
        @keyframes pl-bar {
            0%   { width: 0%;   margin-left: 0; }
            50%  { width: 70%;  margin-left: 0; }
            100% { width: 0%;   margin-left: 120px; }
        }

        /* ──────────────────────────────────────────────
           SCROLL PROGRESS BAR
        ────────────────────────────────────────────── */
        #scroll-progress {
            position: fixed; top: 0; left: 0; height: 3px;
            background: linear-gradient(to right, var(--yellow), var(--magenta), var(--cyan));
            width: 0%; z-index: 1001;
            transition: width 0.1s linear;
        }

        /* ──────────────────────────────────────────────
           PROCESS SECTION
        ────────────────────────────────────────────── */
        #process { background: var(--bg2); }

        .process-step {
            position: relative;
            text-align: center;
            padding: 0 20px;
        }
        .process-step::after {
            content: '';
            position: absolute;
            top: 36px; left: calc(50% + 52px);
            width: calc(100% - 104px);
            height: 1px;
            background: linear-gradient(to right, var(--border), transparent);
        }
        .col-lg-3:last-child .process-step::after { display: none; }

        .process-number {
            width: 72px; height: 72px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; font-weight: 800;
            margin: 0 auto 20px;
            position: relative; z-index: 1;
            border: 2px solid var(--border);
            background: var(--surface);
            transition: all 0.35s;
        }
        .process-step:hover .process-number {
            transform: scale(1.1);
            border-color: transparent;
        }
        .pn-y .process-number { color: var(--yellow); box-shadow: 0 0 0 6px rgba(255,214,0,0.1); }
        .pn-m .process-number { color: var(--magenta); box-shadow: 0 0 0 6px rgba(232,0,90,0.1); }
        .pn-c .process-number { color: var(--cyan); box-shadow: 0 0 0 6px rgba(0,212,212,0.1); }
        .pn-y2 .process-number { color: var(--yellow); box-shadow: 0 0 0 6px rgba(255,214,0,0.1); }

        .process-step:hover .pn-y .process-number { background: var(--yellow); color: #111; }
        .process-step:hover .pn-m .process-number { background: var(--magenta); color: #fff; }
        .process-step:hover .pn-c .process-number { background: var(--cyan); color: #111; }
        .process-step:hover .pn-y2 .process-number { background: var(--yellow); color: #111; }

        .process-step h5 {
            font-size: 1rem; font-weight: 700;
            color: var(--text); margin-bottom: 8px;
        }
        .process-step p {
            font-size: 0.85rem; color: var(--text2); line-height: 1.6;
        }

        /* ──────────────────────────────────────────────
           CTA SECTION
        ────────────────────────────────────────────── */
        #cta {
            background: var(--cyan);
            padding: 80px 0;
            position: relative; overflow: hidden;
        }
        #cta::before {
            content: '';
            position: absolute; inset: 0; pointer-events: none;
            background:
                radial-gradient(circle at 15% 50%, rgba(255,214,0,0.1) 0%, transparent 45%),
                radial-gradient(circle at 85% 50%, rgba(0,212,212,0.1) 0%, transparent 45%);
        }
        .cta-title {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.03em;
            line-height: 1.15;
        }
        .cta-title span { color: var(--magenta); }
        .cta-sub { color: rgba(255,255,255,0.6); font-size: 1rem; margin-top: 12px; }
        .btn-cta-light {
            background: var(--yellow); color: #111;
            border: none; border-radius: 50px;
            padding: 15px 38px; font-weight: 700;
            font-size: 0.95rem; transition: all 0.3s;
        }
        .btn-cta-light:hover {
            background: #fff; color: #111;
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255,214,0,0.45);
        }
        .btn-cta-outline {
            background: var(--magenta);
            border: 1.5px solid var(--cyan);
             color: #111;
            border-radius: 50px;
            padding: 15px 38px; font-weight: 600;
            font-size: 0.95rem; transition: all 0.3s;
        }
        .btn-cta-outline:hover {
             background: white;
            color: #111;
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(255,214,0,0.25);
        }

        /* ──────────────────────────────────────────────
           FLOATING BUTTON
        ────────────────────────────────────────────── */
        .fab-btn {
            position: fixed; bottom: 28px; right: 28px; z-index: 999;
            width: 56px; height: 56px;
            background: linear-gradient(135deg, var(--yellow), var(--magenta), var(--cyan));
            background-size: 200% 200%;
            background-position: 0% 0%;
            border-radius: 50%; border: none;
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-size: 1.2rem;
            box-shadow: 0 6px 24px rgba(232,0,90,0.4);
            cursor: pointer;
            transition: all 0.4s;
            text-decoration: none;
        }
        .fab-btn:hover {
            transform: scale(1.12) translateY(-3px) rotate(12deg);
            background-position: 100% 100%;
            box-shadow: 0 14px 36px rgba(0,212,212,0.4);
            color: #fff;
        }
        .fab-btn .fab-tooltip {
            position: absolute; right: 68px; top: 50%;
            transform: translateY(-50%);
            background: var(--text); color: var(--bg);
            font-size: 0.8rem; font-weight: 600;
            white-space: nowrap; padding: 6px 12px;
            border-radius: 8px;
            opacity: 0; pointer-events: none;
            transition: opacity 0.3s;
        }
        .fab-btn:hover .fab-tooltip { opacity: 1; }

        /* ──────────────────────────────────────────────
           TESTIMONIAL STRIP
        ────────────────────────────────────────────── */
        #testimonials { background: var(--bg); }

        .testimonial-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 32px 28px;
            height: 100%;
            position: relative;
            transition: all 0.35s;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .testimonial-card .quote-mark {
            font-size: 3.5rem; line-height: 1;
            color: var(--magenta); opacity: 0.3;
            font-family: Georgia, serif;
            margin-bottom: 8px;
        }
        .testimonial-card p {
            font-size: 0.9rem; color: var(--text2);
            line-height: 1.7; font-style: italic;
            margin-bottom: 20px;
        }
        .testimonial-author { display: flex; align-items: center; gap: 12px; }
        .testimonial-avatar {
            width: 42px; height: 42px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.95rem; color: #fff;
        }
        .av-y { background: var(--yellow); color: #111; }
        .av-m { background: var(--magenta); }
        .av-c { background: var(--cyan); color: #111; }
        .testimonial-author-info strong {
            display: block; font-size: 0.88rem; font-weight: 700; color: var(--text);
        }
        .testimonial-author-info span {
            font-size: 0.78rem; color: var(--text3);
        }
        .star-row { color: var(--yellow); font-size: 0.75rem; margin-bottom: 12px; }

        /* ──────────────────────────────────────────────
           THEME TOGGLE ICON LABELS
        ────────────────────────────────────────────── */
        @media (max-width: 991px) {
            .contact-info-panel, .contact-form-panel { padding: 36px 28px; }
            .stat-divider { display: none; }
            .stat-item { padding: 12px; }
            .process-step::after { display: none; }
        }
        @media (max-width: 767px) {
            .hero-title { font-size: 2.4rem; }
            .section-title { font-size: 1.9rem; }
            .fab-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.1rem; }
        }