        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }



        :root {
            --black: #0a0a0a;
            --bg: #07080d;

            --white: #ffffff;
            --off-white: #f5f5f3;
            --text: #f2f2f2;
            --gray-100: #f0f0ee;
            --gray-200: #e0e0de;
            --gray-400: #999997;
            --gray-600: #555553;
            --muted: rgba(242, 242, 242, 0.48);
            --surface: rgba(255, 255, 255, 0.04);

            --border: rgba(0, 0, 0, 0.09);
            --border-w: rgba(255, 255, 255, 0.09);
            background: var(--black);
            color: var(--white);
            --font-d: 'Syne', sans-serif;
            --font-b: 'DM Sans', sans-serif;
            --font-m: 'DM Mono', monospace;
            --sp: 100px;
          --accent: #ffffff;
    --accent-soft: rgba(255,255,255,.75);
    --accent-bg: rgba(255,255,255,.06);


        }
        
        .blog-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



        .section {
            padding: 100px 0;
        }

        html,
        body {
            /* height: 100%; */
            font-family: 'Bricolage Grotesque', sans-serif;
            /* background: var(--bg); */
            color: #666;
            overflow-x: hidden
        }

        /* ══ HERO WRAPPER ══ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            color: var(--text);
            flex-direction: column;
            overflow: hidden;
        }

        /* ══ BG IMAGE SLIDESHOW ══ */
        .bg-slides {
            position: absolute;
            inset: 0;
            z-index: 0
        }

        .bg-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.8s cubic-bezier(.4, 0, .2, 1);
            transform: scale(1.06);
            animation: none;
        }

        .bg-slide.active {
            opacity: 1;
            animation: slowzoom 10s ease-out forwards
        }

        @keyframes slowzoom {
            from {
                transform: scale(1.06)
            }

            to {
                transform: scale(1)
            }
        }

        /* Layered overlays for cinematic depth */
        .bg-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to right, rgba(7, 8, 13, 0.92) 0%, rgba(7, 8, 13, 0.65) 50%, rgba(7, 8, 13, 0.3) 100%),
                linear-gradient(to top, rgba(7, 8, 13, 0.85) 0%, transparent 55%);
        }

        /* Slide images */
        .bg-slide:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=90')
        }

        .bg-slide:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1560179707-f14e90ef3623?w=1800&q=90')
        }

        .bg-slide:nth-child(3) {
            background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1800&q=90')
        }

        .bg-slide:nth-child(4) {
            background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1800&q=90')
        }

        /* Noise grain */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
            background-size: 256px 256px;
        }

        /* Green glow blob top-right */
        .hero-glow {
            position: absolute;
            top: -120px;
            right: -60px;
            z-index: 1;
            pointer-events: none;
            width: 700px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(ellipse, rgba(127, 255, 95, 0.12) 0%, transparent 70%);
            filter: blur(40px);
            animation: glowpulse 6s ease-in-out infinite;
        }

        @keyframes glowpulse {

            0%,
            100% {
                opacity: .8;
                transform: scale(1)
            }

            50% {
                opacity: 1;
                transform: scale(1.08)
            }
        }

        /* ══ NAVBAR ══ */
        nav {
            position: fixed;
            z-index: 100;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 56px;
            height: 68px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: background 0.3s;
        }

        nav.scrolled {
            background: var(--black) !important;
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .nav-logo img {
            height: 55px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            padding: 0 14px;
            height: 68px;
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.2s;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 2px;
            background: #fff;
            border-radius: 2px 2px 0 0;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nbtn {
            padding: 9px 20px;
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 3px;
            transition: all 0.2s;
            text-decoration: none;
        }

        .nbtn-ghost {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.5);
        }

        .nbtn-ghost:hover {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
        }

        .nbtn-solid {
            background: #fff;
            border: 1px solid #fff;
            color: #0a0a0a;
            font-weight: 700;
        }

        .nbtn-solid:hover {
            background: #e8e8e8;
            transform: translateY(-1px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.97);
            backdrop-filter: blur(20px);
            z-index: 99;
            padding: 32px 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transform: translateY(-10px);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
        }

        .mobile-menu.open {
            display: block;
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu ul li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mobile-menu ul li a {
            display: block;
            padding: 14px 0;
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }

        .mobile-menu ul li a:hover {
            color: #fff;
        }

        .mt-3 {
            margin-top: 20px;
            display: inline-flex;
        }


        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            position: relative;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 300px;
            background: var(--black);
            border: 1px solid var(--border-w);
            padding: 12px 0;
            list-style: none;

            display: block;

            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);

            transition: all .3s ease;
            z-index: 9999;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown .dropdown-menu a {
            height: 40px;
        }



        @media (max-width: 991px) {

            .mobile-dropdown-menu {
                display: none;
                padding-left: 15px;
                margin-top: 10px;
            }

            .mobile-dropdown-menu li {
                border: none !important;
            }

            .mobile-dropdown-menu a {
                font-size: 14px !important;
                color: var(--gray-400) !important;
                padding: 8px 0 !important;
            }

            .mobile-dropdown.active .mobile-dropdown-menu {
                display: block;
            }
        }

        /* ══════════════════════
   TICKER
══════════════════════ */
        .ticker {
            position: relative;
            z-index: 10;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 68px;
        }

        .ticker-track {
            display: flex;
            white-space: nowrap;
            animation: tickmove 36s linear infinite;
        }

        .ticker-track:hover {
            animation-play-state: paused;
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 18px;
            padding: 11px 32px;
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
        }

        .ticker-item .sep {
            color: rgba(255, 255, 255, 0.6);
            font-size: 8px;
        }

        @keyframes tickmove {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* ══ HERO MAIN ══ */
        .hero-main {
            position: relative;
            z-index: 10;
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 440px;
            gap: 48px;
            padding: 72px 56px 64px;
            align-items: center;
        }

        /* LEFT */
        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 0
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 28px;
            opacity: 0;
            animation: riseup .6s .15s cubic-bezier(.22, 1, .36, 1) forwards;
        }

        .eyebrow-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: var(--black);
            /* border: 1px solid rgba(127, 255, 95, 0.25); */
            border-radius: 100px;
            font-family: 'DM Mono', monospace;
            font-size: .6rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--green);
        }

        .eyebrow-pill .live-dot {
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
            animation: blink 2s infinite
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .3
            }
        }

        .eyebrow-divider {
            width: 1px;
            height: 20px;
            background: var(--border)
        }

        .eyebrow-loc {
            font-family: 'DM Mono', monospace;
            font-size: .6rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--muted)
        }

        .hero-h1 {
            font-size: clamp(3.2rem, 5.8vw, 7.2rem);
            font-weight: 800;
            line-height: .93;
            letter-spacing: -.03em;
            opacity: 0;
            animation: riseup .9s .28s cubic-bezier(.22, 1, .36, 1) forwards;
        }

        .hero-h1 .line-dim {
            color: rgba(242, 242, 242, 0.22);
            display: block;
            margin-top: .06em
        }

        .hero-h1 .line-green {
            color: var(--green);
            display: block;
            text-shadow: 0 0 80px rgba(127, 255, 95, 0.35);
        }

        .hero-h1 .line-white {
            display: block
        }

        .hero-desc {
            margin-top: 30px;
            max-width: 500px;
            font-size: 1rem;
            line-height: 1.85;
            color: var(--muted);
            font-weight: 300;
            opacity: 0;
            animation: riseup .7s .48s cubic-bezier(.22, 1, .36, 1) forwards;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 42px;
            opacity: 0;
            animation: riseup .6s .62s cubic-bezier(.22, 1, .36, 1) forwards;
        }

        .hbtn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 34px;
            font-family: inherit;
            font-size: .76rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 4px;
            transition: .25s;
            border: none;
        }

        .hbtn-primary {
            background: var(--green);
            color: #07080d
        }

        .hbtn-primary:hover {
            background: #9dff80;
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(127, 255, 95, 0.3)
        }

        .hbtn-primary .arrow {
            transition: .25s
        }

        .hbtn-primary:hover .arrow {
            transform: translateX(5px)
        }

        .hbtn-outline {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: rgba(242, 242, 242, 0.7)
        }

        .hbtn-outline:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.3);
            color: var(--text);
            transform: translateY(-2px)
        }

        /* Stats */
        .stats-bar {
            display: flex;
            gap: 0;
            margin-top: 60px;
            border-top: 1px solid var(--border);
            opacity: 0;
            animation: riseup .6s .8s cubic-bezier(.22, 1, .36, 1) forwards;
        }

        .stat {
            padding: 24px 36px 24px 0;
            margin-right: 36px;
            border-right: 1px solid var(--border)
        }

        .stat:last-child {
            border-right: none;
            margin-right: 0
        }

       .stat-num{
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f5f5f5 60%,
        #bdbdbd 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

        .stat-num sup {
            font-size: 1.1rem;
            -webkit-text-fill-color: var(--green)
        }

        .stat-lbl {
            font-family: 'DM Mono', monospace;
            font-size: .58rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--muted);
            margin-top: 6px;
        }

        /* Slide counter */
        .slide-counter {
            margin-top: 28px;
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0;
            animation: riseup .5s 1s cubic-bezier(.22, 1, .36, 1) forwards;
        }

        .slide-dots {
            display: flex;
            gap: 6px
        }

        .sdot {
            width: 28px;
            height: 3px;
            border-radius: 2px;
            background: rgba(255, 255, 255, 0.18);
            cursor: pointer;
            transition: .3s;
        }

        .sdot.active {
            background: var(--green);
            width: 44px
        }

        .slide-label {
            font-family: 'DM Mono', monospace;
            font-size: .58rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--muted);
            margin-left: 4px;
        }

        .slide-label strong {
            color: var(--green)
        }

        /* ══ RIGHT: FORM CARD ══ */
        .form-card {
            background: rgba(10, 12, 18, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(32px);
            padding: 36px 32px 32px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: riseup .9s .45s cubic-bezier(.22, 1, .36, 1) forwards;
        }

        /* Subtle green glow top of card */
        .form-card::before {
            content: '';
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 280px;
            height: 140px;
            background: radial-gradient(ellipse, rgba(127, 255, 95, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .card-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 13px;
            margin-bottom: 20px;
            background: rgba(127, 255, 95, 0.1);
            border: 1px solid rgba(127, 255, 95, 0.2);
            border-radius: 100px;
            font-family: 'DM Mono', monospace;
            font-size: .58rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--green);
        }

        .card-badge .dot {
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
            animation: blink 2s infinite
        }

        .card-h {
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 8px
        }

        .card-sub {
            font-size: .82rem;
            color: var(--muted);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 26px
        }

        .fg {
            margin-bottom: 14px
        }

        .fg label {
            display: block;
            font-family: 'DM Mono', monospace;
            font-size: .58rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(242, 242, 242, 0.4);
            margin-bottom: 7px;
        }

        .fg input,
        .fg select {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: var(--text);
            font-family: inherit;
            font-size: .88rem;
            outline: none;
            transition: .2s;
            appearance: none;
        }

        .fg input:focus,
        .fg select:focus {
            border-color: rgba(127, 255, 95, 0.5);
            background: rgba(127, 255, 95, 0.04)
        }

        .fg input::placeholder {
            color: rgba(242, 242, 242, 0.18)
        }

        .fg select option {
            background: #0f1018;
            color: var(--text)
        }

        .fg-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            margin-top: 6px;
            background: linear-gradient(135deg, var(--green) 0%, #5de840 100%);
            border: none;
            border-radius: 6px;
            color: #07080d;
            font-family: inherit;
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: .25s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 24px rgba(127, 255, 95, 0.2);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 36px rgba(127, 255, 95, 0.35)
        }

        .submit-btn .arrow {
            transition: .25s
        }

        .submit-btn:hover .arrow {
            transform: translateX(5px)
        }

        .card-note {
            font-family: 'DM Mono', monospace;
            font-size: .56rem;
            letter-spacing: .1em;
            color: rgba(242, 242, 242, 0.28);
            text-align: center;
            margin-top: 13px;
            line-height: 1.7;
        }

        .card-divider {
            height: 1px;
            background: var(--border);
            margin: 20px 0
        }

        .trust-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px
        }

        .trust-item {
            text-align: center;
            padding: 10px 6px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 6px;
        }

        .trust-n {
            font-size: .95rem;
            font-weight: 800;
            color: var(--green);
            line-height: 1
        }

        .trust-l {
            font-family: 'DM Mono', monospace;
            font-size: .5rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--muted);
            margin-top: 3px
        }

        /* ══ BOTTOM SERVICE BAND ══ */
        .service-band {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid var(--border-w);
            background: rgba(7, 8, 13, 0.82);
            backdrop-filter: blur(20px);
        }

        .sband-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 28px 30px;
            border-right: 1px solid var(--border-w);
            cursor: pointer;
            transition: .25s;
            position: relative;
            overflow: hidden;
        }

        .sband-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
               background:rgba(255,255,255,.9);

            transform: scaleX(0);
            transform-origin: left;
            transition: .3s;
        }

        .sband-item:hover {
              background:rgba(255,255,255,.03);

        }

        .sband-item:hover::before {
            transform: scaleX(1)
        }

        .sband-item:last-child {
            border-right: none
        }

        .sband-icon {
            width: 38px;
            height: 38px;
            flex-shrink: 0;
               border:1px solid rgba(255,255,255,.12);

            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green);
            transition: .25s;
        }

        .sband-item:hover .sband-icon {
            background:rgba(255,255,255,.05);
    border-color:rgba(255,255,255,.25);
    transform:translateY(-2px);
        }

        .sband-body h4 {
            font-size: .75rem;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-bottom: 5px;
            transition: .2s
        }

        .sband-item:hover .sband-body h4 {
               color:rgba(255,255,255,.95);

        }

        .sband-body p {
            font-size: .73rem;
               color:rgba(255,255,255,.55);

            line-height: 1.6;
            font-weight: 300
        }

        /* ══ ANIMATIONS ══ */
        @keyframes riseup {
            from {
                opacity: 0;
                transform: translateY(28px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* ══ SCROLL HINT ══ */
        .scroll-hint {
            position: absolute;
            bottom: 140px;
            left: 56px;
            z-index: 20;
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0;
            animation: riseup .5s 1.2s forwards;
        }

        .scroll-line {
            width: 40px;
            height: 1px;
            background: var(--border);
            position: relative;
            overflow: hidden;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--green);
            animation: scanline 2.2s 1.8s ease-in-out infinite;
        }

        @keyframes scanline {
            0% {
                left: -100%
            }

            100% {
                left: 100%
            }
        }

        .scroll-text {
            font-family: 'DM Mono', monospace;
            font-size: .58rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--muted);
        }






        /* Tablet */
        @media (max-width: 992px) {
            .service-band {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .service-band {
                grid-template-columns: 1fr;
            }
        }








        .about-section {
            background: #f8f8f8;
            padding: 100px 0;
        }

        .about-tag {
            font-size: 15px;
            color: #666;
        }

        .about-heading,
        .section-heading {
            font-size: 40px;
            font-weight: 600;
            line-height: 1.15;
            max-width: 1100px;
            color: #111;
        }

        .about-text {
            font-size: 18px;
            line-height: 1.8;
            color: #666;
            max-width: 520px;
            margin-bottom: 30px;
        }

        .about-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #111;
            font-weight: 500;
            text-decoration: none;
            border-bottom: 1px solid #111;
            padding-bottom: 5px;
        }

        .about-divider {
            height: 1px;
            background: #ddd;
            margin: 50px 0;
        }

        .stats-row h3 {
            font-size: 60px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #111;
        }

        .stats-row p {
            color: #777;
            margin: 0;
        }

        .about-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        @media (max-width: 991px) {
            .about-heading {
                font-size: 38px;
            }

            .stats-row h3 {
                font-size: 40px;
            }

            .about-image img {
                height: 350px;
            }
        }

        @media (max-width: 767px) {
            .about-section {
                padding: 70px 0;
            }

            .about-heading {
                font-size: 30px;
            }

            .about-text {
                font-size: 16px;
            }

            .stats-row .col-4 {
                margin-bottom: 20px;
            }

            .about-image img {
                height: 280px;
            }
        }










        .work-process-section {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            padding: 100px 0 80px;
            color: #fff;
        }

        .bg-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
        }

        .work-process-section .container-fluid {
            position: relative;
            z-index: 2;
            padding: 0 60px;
        }

        .section-tag {
            display: inline-block;
            margin-bottom: 30px;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 2px;
            color: #ffffff;
        }

        .main-heading {
            font-size: 45px;
            font-weight: 500;
            line-height: 1.1;
            max-width: 1100px;
            margin-bottom: 20px;
        }

        .process-row {
            margin-top: 80px;
        }

        .process-item {
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 4px;

        }

        .count {
            display: block;
            margin-bottom: 25px;
            font-size: 18px;
            font-weight: 600;
        }

        .process-item h4 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .process-item p {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
        }

        @media(max-width:991px) {

            .work-process-section {
                min-height: auto;
                padding: 80px 0;
            }

            .work-process-section .container-fluid {
                padding: 0 20px;
            }

          

            .process-item {
                margin-bottom: 40px;
                padding-right: 15px;
            }
        }

        @media(max-width:767px) {

      
            .process-item h4 {
                font-size: 24px;
            }

            .process-item p {
                font-size: 16px;
            }
        }



        .logo-face img {
            mix-blend-mode: multiply;
        }

        /* Front Side - B&W */
        .front h4 {
            color: #8a8a8a;
        }

        /* Back Side - Colored */
        .back h4 {
            background: linear-gradient(135deg, #0066ff, #7f5cff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-card:hover h4 {
            transform: scale(1.05);
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
        }

        .logo-card {
            height: 100px;
            perspective: 1000px;
        }

        .logo-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform .9s cubic-bezier(.22, .61, .36, 1);
            transform-style: preserve-3d;
        }

        .logo-card.flipped .logo-inner {
            transform: rotateY(180deg);
        }

        .logo-face {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;

            display: flex;
            align-items: center;
            justify-content: center;

            background: white;
            border-radius: 6px;
        }

        .logo-face img {
            width: 75%;
        }

        /* Front = Black & White */
        .front img {
            filter: grayscale(100%);
        }

        /* Back = Original Color */
        .back {
            transform: rotateY(180deg);
        }

        .back img {
            filter: none;
        }

        /* Hover effect */
        .logo-card:hover {
            transform: translateY(-5px);
        }

        .blog-section {
            padding: 100px 0;
        }

        .section-tag {
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #666;
            display: block;
            margin-bottom: 20px;
        }

        .blog-title {
            font-size: 54px;
            font-weight: 800;
            line-height: .9;
            color: #111;
            margin-bottom: 25px;
        }

        .blog-desc {
            max-width: 450px;
            color: #666;
            font-size: 15px;
            line-height: 1.8;
        }

        .work-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #111;
            color: #fff;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 13px;
            margin-top: 20px;
        }

        .blog-card {
            position: relative;
            overflow: hidden;
        }

        .blog-img {
            overflow: hidden;
        }

        .blog-img img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: .6s ease;
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.08);
        }

        .blog-meta {
            font-size: 12px;
            color: #888;
            margin: 12px 0 10px;
            display: block;
        }

        .blog-bottom {
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            gap: 15px;
        }

        .blog-bottom h4 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            text-transform: uppercase;
            margin: 0;
            color: #111;
        }

        .arrow {
            min-width: 35px;
            font-size: 22px;
            color: #111;
        }

        @media(max-width:991px) {

            .blog-title {
                font-size: 3rem;
            }

            .blog-header-right {
                margin-top: 30px;
            }
        }

        @media(max-width:767px) {

            .blog-title {
                font-size: 2.3rem;
            }

            .blog-img img {
                height: 220px;
            }
        }

        @media (max-width: 1200px) {
            .logo-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .logo-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 576px) {
            .logo-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }













        .rc-footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ── TOP BAR ─────────────────────────────────────────── */
        .rc-footer-top {
            padding: 56px 0 48px;
        }

        .rc-footer-top .rc-footer-inner {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 32px;
        }

        .rc-footer-logo {
            display: block;
            font-family: var(--font-d);
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -0.5px;
            margin-bottom: 8px;
        }

        .rc-footer-tagline {
            font-family: var(--font-m);
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gray-400);
            margin: 0;
        }

        .rc-footer-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid var(--border-w);
            border-radius: 50px;
            padding: 13px 24px;
            font-family: var(--font-d);
            font-size: 13px;
            font-weight: 600;
            color: var(--white);
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.2s, border-color 0.2s;
            flex-shrink: 0;
        }

        .rc-footer-cta:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        /* ── DIVIDER ─────────────────────────────────────────── */
        .rc-footer-divider {
            height: 1px;
            background: var(--border-w);
            margin: 0 40px;
            max-width: calc(1200px - 0px);
            margin-left: auto;
            margin-right: auto;
        }

        /* ── MAIN GRID ───────────────────────────────────────── */
        .rc-footer-main {
            padding: 56px 0;
        }

        .rc-footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 0.8fr;
            gap: 60px;
            align-items: start;
        }

        /* Column label */
        .rc-footer-col-label {
            font-family: var(--font-m);
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-bottom: 24px;
        }

        /* Address */
        .rc-footer-address {
            font-style: normal;
            font-family: var(--font-b);
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 28px;
        }

        /* Contact rows */
        .rc-footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .rc-footer-contact-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-b);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.2s;
        }

        .rc-footer-contact-row:hover {
            color: var(--white);
        }

        .rc-footer-contact-icon {
            width: 28px;
            height: 28px;
            border: 1px solid var(--border-w);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--gray-400);
            transition: border-color 0.2s, color 0.2s;
        }

        .rc-footer-contact-row:hover .rc-footer-contact-icon {
            border-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        /* Nav links */
        .rc-footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .rc-footer-links li {
            border-bottom: 1px solid var(--border-w);
        }

        .rc-footer-links li:first-child {
            border-top: 1px solid var(--border-w);
        }

        .rc-footer-links a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 13px 0;
            font-family: var(--font-b);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            transition: color 0.2s, padding-left 0.2s;
        }

        .rc-footer-links a::after {
            content: '↗';
            font-size: 12px;
            opacity: 0;
            transform: translateX(-4px);
            transition: opacity 0.2s, transform 0.2s;
        }

        .rc-footer-links a:hover {
            color: var(--white);
            padding-left: 6px;
        }

        .rc-footer-links a:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

        /* ── BOTTOM BAR ──────────────────────────────────────── */
        .rc-footer-bottom {
            border-top: 1px solid var(--border-w);
            padding: 24px 0;
        }

        .rc-footer-bottom-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .rc-footer-copy,
        .rc-footer-made {
            font-family: var(--font-m);
            font-size: 11px;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.25);
        }

        /* ── RESPONSIVE ──────────────────────────────────────── */
        @media (max-width: 991px) {
            .rc-footer-inner {
                padding: 0 24px;
            }

            .rc-footer-divider {
                margin: 0 24px;
            }

            .rc-footer-top .rc-footer-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }

            .rc-footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .rc-footer-col--info {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 600px) {
            .rc-footer-grid {
                grid-template-columns: 1fr;
            }

            .rc-footer-bottom-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
        }









        .service-icon img {
            width: 50px;
            margin-bottom: 20px;
        }


        /* ── FAQ Section Layout ── */
        .faq-section {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 64px;
            max-width: 1100px;
            margin: 0 auto;
            align-items: start;
        }

        /* ── Left Column ── */
        .faq-left {
            position: sticky;
            top: 40px;
        }

        .faq-label {
            font-family: var(--font-b);
            font-size: 13px;
            font-weight: 400;
            color: var(--gray-600);
            margin-bottom: 24px;
            letter-spacing: 0.01em;
        }

        .contact-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: stretch;
        }

        .contact-card-inner {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            flex: 1;
        }

        .contact-avatar {
            width: 52px;
            height: 52px;
            border-radius: 8px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #e94057 50%, #f5a623 100%);
            /* Replace with: background-image: url('your-photo.jpg'); background-size: cover; */
        }

        .contact-meta {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .contact-eyebrow {
            font-family: var(--font-m);
            font-size: 10px;
            letter-spacing: 0.12em;
            color: var(--gray-400);
            text-transform: uppercase;
        }

        .contact-name {
            font-family: var(--font-d);
            font-size: 15px;
            font-weight: 600;
            color: var(--black);
        }

        .contact-role {
            font-family: var(--font-m);
            font-size: 10px;
            letter-spacing: 0.08em;
            color: var(--gray-400);
            text-transform: uppercase;
        }

        .contact-arrow {
            width: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-left: 1px solid var(--border);
            color: #c0392b;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.2s ease;
            text-decoration: none;
            flex-shrink: 0;
        }

        .contact-arrow:hover {
            background: var(--gray-100);
        }

        /* ── FAQ List ── */
        .faq-list {
            display: flex;
            flex-direction: column;
        }

        .faq-item {
            background-color: var(--white);
            border-radius: 10px;
            margin-bottom: 16px;
            padding: 22px 20px;


            display: block;
        }

        .faq-item:first-child {
            border-top: 1px solid var(--border);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            display: flex;

            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            gap: 24px;
            text-align: left;
        }

        .faq-question-text {
            font-family: var(--font-b);
            font-size: 19px;
            font-weight: 600;
            color: var(--black);
            line-height: 1.4;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            border: 1px solid var(--gray-200);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--gray-400);
            font-size: 18px;
            font-weight: 300;
            transition: all 0.25s ease;
            line-height: 1;
            user-select: none;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            -webkit-transition: all 0.25s ease;
            -moz-transition: all 0.25s ease;
            -ms-transition: all 0.25s ease;
            -o-transition: all 0.25s ease;
        }

        .faq-item.open .faq-icon {
            background: var(--black);
            border-color: var(--black);
            color: var(--white);
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 4px;
            margin-top: 12px;
            -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
            -moz-transition: max-height 0.3s ease, padding 0.3s ease;
            -ms-transition: max-height 0.3s ease, padding 0.3s ease;
            -o-transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
        }

        .faq-answer p {
            font-family: var(--font-b);
            font-size: 14px;
            font-weight: 300;
            color: var(--gray-600);
            line-height: 1.75;
            max-width: 640px;
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .faq-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .faq-left {
                position: static;
            }
        }






        .service-hero {
            position: relative;

            background: url('img/about-us.webp') center center/cover no-repeat;
            overflow: hidden;
        }

        .service-hero .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            padding: 100px 80px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-label {
            color: #fff;
            font-size: 28px;
            font-weight: 300;
            margin-bottom: 35px;
            letter-spacing: 1px;
        }

        .service-label span {
            margin-right: 10px;
        }

        .divider {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.25);
            margin-bottom: 80px;
        }

        .hero-row {
            min-height: 250px;
        }

        .hero-row h1 {
            color: #fff;
            font-size: 56px;
            font-weight: 300;
            line-height: 1;
            margin: 0;
        }

        .hero-row p {
            color: #fff;
            font-size: 28px;
            line-height: 1.4;
            font-weight: 300;
            max-width: 500px;
            margin-left: auto;
        }

        @media (max-width:992px) {

            .hero-content {
                padding: 60px 25px;
            }

            .divider {
                margin-bottom: 50px;
            }

            .hero-row h1 {
                margin-bottom: 30px;
            }

            .hero-row p {
                font-size: 20px;
                margin-left: 0;
            }
        }

        /* Heading - 2 Lines */
        .heading-clamp {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Paragraph - 3 Lines */
        .para-clamp {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* about */
        /* ── INTRO SPLIT ── */
        .intro-split {
            background: var(--off-white);
            padding: var(--sp) 0;
            overflow: visible !important;
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .intro-left {
            position: sticky;
            top: 100px;
        }

        .intro-left .section-heading {
            margin-top: 10px;
            margin-bottom: 28px;
        }

        .intro-left .body-text {
            margin-bottom: 20px;
        }

        .intro-right {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .value-row {
            display: flex;
            gap: 0;
            border-top: 1px solid var(--border);
            padding: 28px 0;
        }

        .value-row:last-child {
            border-bottom: 1px solid var(--border);
        }

        .value-num {
            font-family: var(--font-m);
            font-size: 11px;
            color: var(--gray-400);
            letter-spacing: .1em;
            min-width: 56px;
            padding-top: 4px;
        }

        .value-content h4 {
            font-family: var(--font-d);
            font-size: 20px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
        }

        .value-content p {
            font-size: 15px;
            line-height: 1.75;
            color: var(--gray-600);
            font-weight: 300;
        }

        /* ── HELP PILLS ── */
        .help-section {
            background: var(--black);
            padding: var(--sp) 0;
        }

        .help-cols {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1px;
            background: rgba(255, 255, 255, 0.06);
            margin-top: 64px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .help-col {
            background: var(--black);
            padding: 48px 40px;
        }

        .help-col-label {
            font-family: var(--font-m);
            font-size: 10px;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.25);
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .help-col-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.08);
        }

        .help-col h3 {
            font-family: var(--font-d);
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 24px;
        }

        .help-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .help-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
            font-weight: 300;
        }

        .help-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            flex-shrink: 0;
        }

        /* ── NUMBERS BAND ── */
        .numbers-band {
            background: var(--white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .numbers-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .num-cell {
            padding: 64px 40px;
            border-right: 1px solid var(--border);
            position: relative;
        }

        .num-cell:last-child {
            border-right: none;
        }

        .big-num {
            font-family: var(--font-d);
            font-size: clamp(44px, 5vw, 72px);
            font-weight: 800;
            letter-spacing: -.05em;
            line-height: 1;
            color: var(--black);
            display: block;
            margin-bottom: 12px;
        }

        .big-num sup {
            font-size: .38em;
            color: var(--gray-400);
        }

        .num-cell p {
            font-size: 13px;
            line-height: 1.65;
            color: var(--gray-400);
            font-family: var(--font-m);
            letter-spacing: .04em;
        }

        /* ── MISSION / VISION ── */
        .mv-section {
            background: var(--off-white);
            padding: var(--sp) 0;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            margin-top: 64px;
        }

        .mv-card {
            padding: 64px 56px;
            position: relative;
            overflow: hidden;
        }

        .mv-card.dark {
            background: var(--black);
        }

        .mv-card.light-card {
            background: var(--white);
            border: 1px solid var(--border);
        }

        .mv-card .section-tag {
            margin-bottom: 20px;
        }

        .mv-card h2 {
            font-family: var(--font-d);
            font-size: clamp(26px, 3vw, 40px);
            font-weight: 800;
            letter-spacing: -.03em;
            line-height: 1.05;
            margin-bottom: 20px;
        }

        .mv-card.dark h2 {
            color: #fff;
        }

        .mv-card.light-card h2 {
            color: var(--black);
        }

        .mv-card p {
            font-size: 16px;
            line-height: 1.85;
            font-weight: 300;
        }

        .mv-card.dark p {
            color: rgba(255, 255, 255, 0.5);
        }

        .mv-card.light-card p {
            color: var(--gray-600);
        }

        .mv-tagline {
            margin-top: 28px;
            font-family: var(--font-d);
            font-size: 18px;
            font-weight: 700;
            font-style: italic;
            color: rgba(255, 255, 255, 0.35);
        }

        .mv-card .bg-num {
            position: absolute;
            bottom: -30px;
            right: -10px;
            font-family: var(--font-d);
            font-size: 200px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.025);
            letter-spacing: -.06em;
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        .mv-card.light-card .bg-num {
            color: rgba(0, 0, 0, 0.03);
        }

        /* ── UVP ── */
        .uvp-section {
            background: var(--white);
            padding: var(--sp) 0;
        }

        .uvp-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            margin-bottom: 64px;
        }

        .uvp-header .body-text {
            max-width: 500px;
            margin-top: 20px;
        }

        .uvp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border: 1px solid var(--border);
        }

        .uvp-card {
            padding: 48px 40px;
            border-right: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: background .25s;
        }

        .uvp-card:last-child {
            border-right: none;
        }

        .uvp-card:hover {
            background: var(--off-white);
        }

        .uvp-icon {
            width: 48px;
            height: 48px;
            border: 1px solid var(--border);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--black);
            margin-bottom: 28px;
            transition: all .25s;
        }

        .uvp-card:hover .uvp-icon {
            background: var(--black);
            color: #fff;
            border-color: var(--black);
        }

        .uvp-card h3 {
            font-family: var(--font-d);
            font-size: 22px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 14px;
        }

        .uvp-card p {
            font-size: 15px;
            line-height: 1.75;
            color: var(--gray-600);
            font-weight: 300;
        }

        /* ── EXPANDING SECTION ── */
        .expand-section {
            background: var(--black);
            padding: var(--sp) 0;
        }

        .expand-grid {
            display: grid;
            grid-template-columns: 5fr 4fr;
            gap: 80px;
            align-items: center;
        }

        .expand-left .section-heading.light {
            margin-top: 12px;
            margin-bottom: 28px;
        }

        .expand-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .expand-item {
            padding: 24px 28px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: border-color .25s, background .25s;
        }

        .expand-item:hover {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.03);
        }

        .expand-item i {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.4);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .expand-item h4 {
            font-family: var(--font-d);
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .expand-item p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 300;
        }

        /* ── CTA FINAL ── */
        .cta-final {
            background: var(--off-white);
            padding: var(--sp) 0;
        }

        .cta-box {
            background: var(--black);
            padding: 80px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 48px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: 'RC';
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            font-family: var(--font-d);
            font-size: 260px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.025);
            letter-spacing: -.06em;
            line-height: 1;
            pointer-events: none;
        }

        .cta-box .section-tag {
            color: rgba(255, 255, 255, 0.35);
        }

        .cta-box h2 {
            font-family: var(--font-d);
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 800;
            letter-spacing: -.03em;
            color: #fff;
            line-height: 1.05;
            margin-top: 10px;
        }

        .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
        }

        .hbtn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            font-family: var(--font-d);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 3px;
            border: none;
            transition: all .22s;
            text-decoration: none;
        }

        .hbtn-primary {
            background: #fff;
            color: var(--black);
        }

        .hbtn-primary:hover {
            background: #e8e8e8;
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
        }

        .hbtn-ghost-w {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.6);
        }

        .hbtn-ghost-w:hover {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
        }

        /* ── FOOTER ── */
        .footer {
            background: var(--black);
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding: 80px 0 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 48px;
            margin-bottom: 64px;
        }

        .footer-logo {
            font-family: var(--font-d);
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: .04em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 14px;
        }

        .footer-logo .dot {
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.35);
            line-height: 1.7;
            margin-bottom: 22px;
            max-width: 260px;
        }

        .social-icons {
            display: flex;
            gap: 8px;
        }

        .social-icons a {
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 14px;
            transition: all .2s;
        }

        .social-icons a:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.3);
            color: #fff;
        }

        .footer-col h5 {
            font-family: var(--font-d);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 18px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
        }

        .footer-links a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-contact {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.35);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .footer-contact a {
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding-top: 24px;
        }

        .footer-bottom p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.2);
            font-family: var(--font-m);
        }

        .back-top {
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 14px;
            transition: all .2s;
        }

        .back-top:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        /* ── SCROLL REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: .1s;
        }

        .reveal-delay-2 {
            transition-delay: .2s;
        }

        .reveal-delay-3 {
            transition-delay: .3s;
        }

        .reveal-delay-4 {
            transition-delay: .4s;
        }

        /* ── RESPONSIVE ── */
        @media(max-width:1100px) {
            .container {
                padding: 0 40px;
            }

            nav {
                padding: 0 40px;
            }

            .intro-grid {
                gap: 56px;
            }

            .uvp-grid {
                grid-template-columns: 1fr 1fr;
            }

            .uvp-card:nth-child(2) {
                border-right: none;
            }

            .uvp-card:nth-child(3) {
                border-top: 1px solid var(--border);
                grid-column: 1/-1;
                border-right: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
        }

        @media(max-width:900px) {
            :root {
                --sp: 72px;
            }

            .nav-links,
            .nav-right {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .intro-grid {
                grid-template-columns: 1fr;
            }

            .intro-left {
                position: static;
            }

            .help-cols {
                grid-template-columns: 1fr;
            }

            .numbers-inner {
                grid-template-columns: repeat(2, 1fr);
            }

            .num-cell:nth-child(2) {
                border-right: none;
            }

            .num-cell:nth-child(3) {
                border-top: 1px solid var(--border);
            }

            .mv-grid {
                grid-template-columns: 1fr;
            }

            .expand-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .cta-box {
                grid-template-columns: 1fr;
                padding: 56px;
            }
        }

        @media(max-width:640px) {
            :root {
                --sp: 60px;
            }

            .container {
                padding: 0 24px;
            }

            nav {
                padding: 0 24px;
            }

            .about-hero h1 {
                font-size: clamp(2.8rem, 11vw, 5rem);
            }

            .hero-bottom {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }

            .numbers-inner {
                grid-template-columns: 1fr;
            }

            .num-cell {
                border-right: none;
                padding: 40px 24px;
            }

            .uvp-grid {
                grid-template-columns: 1fr;
            }

            .uvp-card {
                border-right: none;
                border-bottom: 1px solid var(--border);
            }

            .uvp-card:last-child {
                border-bottom: none;
            }

            .cta-box {
                padding: 40px 28px;
            }

            .cta-box::before {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 14px;
                text-align: center;
            }

            .uvp-header {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .mv-card {
                padding: 48px 32px;
            }

            .intro-left .section-heading {
                font-size: 28px;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Section Spacing */
        section {
            position: relative;
            overflow: hidden;
        }

        /* Modern Card Style */
        .approach-card,
        .uvp-card,
        .mv-card,
        .help-col {
            transition: all .35s ease;
        }

        .approach-card:hover,
        .uvp-card:hover,
        .mv-card:hover,
        .help-col:hover {
            transform: translateY(-8px);
        }

        /* Better Shadows */
        .approach-card {
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
        }

        .approach-card:hover {
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        }

        /* Hero Improvements */
        .service-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top right,
                    rgba(255, 255, 255, 0.15),
                    transparent 40%);
            z-index: 1;
        }

        .hero-row h1 {
            text-shadow: 0 5px 20px rgba(0, 0, 0, .3);
        }

        .hero-row p {
            text-shadow: 0 3px 10px rgba(0, 0, 0, .25);
        }

        /* Fancy Underline */
        .section-heading {
            position: relative;
            padding-bottom: 15px;
        }

        .section-heading::after {
            content: '';
            width: 80px;
            height: 4px;
            border-radius: 10px;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        /* Value Row Hover */
        .value-row {
            transition: all .3s ease;
        }



        /* Numbers Counter Effect */
        .num-cell {
            transition: all .3s ease;
        }

        .num-cell:hover {
            background: #fafafa;
        }

        .num-cell:hover .big-num {
            transform: scale(1.08);
        }

        .big-num {
            transition: all .3s ease;
        }