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

        :root {
            --orange: #ff5a1f;
            --ol: #ff7a45;
            --dark: #0a0a0a;
            --d2: #111;
            --d3: #1a1a1a;
            --glass: rgba(255, 255, 255, .04);
            --border: rgba(255, 255, 255, .08);
            --text: #f0f0f0;
            --muted: #888
        }

        html {
            scroll-behavior: smooth
        }

        body {
            background: var(--dark);
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            overflow-x: hidden
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: .4
        }

        ::-webkit-scrollbar {
            width: 4px
        }

        ::-webkit-scrollbar-track {
            background: var(--dark)
        }

        ::-webkit-scrollbar-thumb {
            background: var(--orange);
            border-radius: 2px
        }

        /* ─── NAV ─── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 2000;
            padding: 22px 6%;
            padding-top: calc(22px + env(safe-area-inset-top, 0px));
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: .3s;
            background: rgba(10, 10, 10, 0.2);
            backdrop-filter: blur(10px);
        }

        nav.scrolled {
            background: rgba(10, 10, 10, .98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 16px 6%;
            padding-top: calc(16px + env(safe-area-inset-top, 0px));
        }

        .logo {
            font-family: 'Aladin', cursive;
            font-size: 1.8rem;
            color: #fff;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 2100;
        }

        .logo span {
            color: var(--orange)
        }

        .logo-img {
            height: 50px;
            width: auto;
            object-fit: contain;
            transition: .3s
        }

        nav.scrolled .logo-img {
            height: 42px
        }

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

        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: .88rem;
            font-weight: 500;
            transition: .2s
        }

        .nav-links a:hover {
            color: #fff
        }

        .nav-cta {
            background: var(--orange);
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 700 !important
        }

        .nav-cta:hover {
            background: var(--ol) !important;
            transform: translateY(-1px)
        }

        /* google colors */
        .g-blue {
            color: #4285F4;
        }

        .g-red {
            color: #EA4335;
        }

        .g-yellow {
            color: #FBBC05;
        }

        .g-green {
            color: #34A853;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 2100;
            padding: 10px;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: #fff;
            border-radius: 2px
        }

        .mob {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10, 10, 10, .98);
            z-index: 2050;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2.5rem
        }

        .mob.open {
            display: flex
        }

        .mob a {
            color: #fff;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 700;
            font-family: 'Manrope', sans-serif
        }

        /* ─── SHARED ─── */
        section {
            padding: 100px 6%
        }

        .stag {
            display: inline-block;
            font-size: .7rem;
            font-weight: 700;
            color: var(--orange);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: .8rem
        }

        .stitle {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.7rem);
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: .8rem;
            line-height: 1.2
        }

        .ssub {
            color: var(--muted);
            font-size: .93rem;
            max-width: 520px;
            line-height: 1.75;
            margin-bottom: 3.5rem
        }

        .btn-p {
            background: var(--orange);
            color: #fff;
            padding: 13px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: .92rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: .25s
        }

        .btn-p:hover {
            background: var(--ol);
            transform: translateY(-2px);
            box-shadow: 0 18px 36px rgba(255, 90, 31, .3)
        }

        .btn-s {
            background: transparent;
            color: #fff;
            padding: 13px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: .92rem;
            border: 1px solid var(--border);
            transition: .25s
        }

        .btn-s:hover {
            border-color: var(--orange);
            color: var(--orange)
        }

        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: .65s ease
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0)
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: .7s ease
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0)
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: .7s ease
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0)
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(.85);
            transition: .6s ease
        }

        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1)
        }

        /* ─── HERO ─── */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 6%;
            position: relative;
            overflow: hidden
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: .22;
            animation: gridPulse 6s ease-in-out infinite
        }

        @keyframes gridPulse {

            0%,
            100% {
                opacity: .22
            }

            50% {
                opacity: .35
            }
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px)
        }

        .b1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 90, 31, .3), transparent);
            top: -200px;
            right: -100px;
            animation: floatB 8s ease-in-out infinite
        }

        .b2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 90, 31, .15), transparent);
            bottom: -100px;
            left: -100px;
            animation: floatB 11s ease-in-out infinite reverse
        }

        @keyframes floatB {

            0%,
            100% {
                transform: translateY(0) scale(1)
            }

            50% {
                transform: translateY(-30px) scale(1.05)
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 820px
        }

        .hero-content h1 {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(2.8rem, 7vw, 5.2rem);
            font-weight: 800;
            line-height: 1.07;
            letter-spacing: -2px;
            margin-bottom: 1.4rem;
            animation: fadeUp .8s ease both
        }

        .accent {
            color: var(--orange)
        }

        .hero-sub {
            font-size: 1.05rem;
            color: var(--muted);
            max-width: 520px;
            line-height: 1.75;
            margin-bottom: 2.4rem;
            animation: fadeUp .8s .15s ease both
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeUp .8s .3s ease both
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid var(--border);
            animation: fadeUp .8s .45s ease both
        }

        .snum {
            font-family: 'Manrope', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--orange)
        }

        .slbl {
            font-size: .78rem;
            color: var(--muted);
            margin-top: 4px
        }

        /* floating cards */
        .hero-float {
            position: absolute;
            right: 4%;
            top: 50%;
            transform: translateY(-50%);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            z-index: 1;
            animation: fadeUp .8s .6s ease both;
        }

        .hf-card {
            background: rgba(255, 255, 255, .03);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: 260px;
            transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: floatCard 6s ease-in-out infinite;
            position: relative;
        }

        /* Staggered Masonry Effect for Desktop */
        @media (min-width: 1025px) {
            .hf-card:nth-child(even) {
                margin-top: 60px;
                margin-bottom: -60px;
                animation-delay: -3s;
            }
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        .hf-card:hover {
            border-color: var(--orange);
            background: rgba(255, 90, 31, .08);
            transform: scale(1.05) translateY(-5px) !important;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 90, 31, .15);
            animation-play-state: paused;
            z-index: 10;
        }

        .hf-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
            transition: .4s;
        }

        .hf-card:hover .hf-icon {
            transform: scale(1.15) rotate(5deg);
        }

        .hf-card h4 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 4px;
            transition: .4s;
        }

        .hf-card p {
            font-size: .85rem;
            color: var(--muted);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ─── MARQUEE ─── */
        .marquee-wrap {
            position: relative;
            background: var(--d2);
            padding: 3.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .marquee-wrap::before,
        .marquee-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            width: 15%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-wrap::before {
            left: 0;
            background: linear-gradient(to right, var(--d2), transparent);
        }

        .marquee-wrap::after {
            right: 0;
            background: linear-gradient(to left, var(--d2), transparent);
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: scrollMarquee 35s linear infinite;
        }

        .marquee-wrap:hover .marquee-track {
            animation-play-state: paused;
        }

        @keyframes scrollMarquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .m-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            padding: 0 2.5rem;
            gap: 16px;
            font-family: 'Manrope', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 1px var(--muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            white-space: nowrap;
            transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .m-item:hover {
            color: #fff;
            -webkit-text-stroke: 1px #fff;
            transform: scale(1.08) rotate(-1deg);
            text-shadow: 0 0 20px rgba(255, 90, 31, .6);
        }

        .m-dot {
            color: var(--orange);
            -webkit-text-stroke: 0px transparent;
            font-size: 1.6rem;
            text-shadow: 0 0 10px rgba(255, 90, 31, .4);
            animation: pulseDot 2s ease-in-out infinite;
        }

        @keyframes pulseDot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }

        /* ─── WHY ─── */
        #why {
            background: var(--d2)
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center
        }

        .why-points {
            display: flex;
            flex-direction: column;
            gap: .8rem;
            margin-bottom: 2rem
        }

        .wp {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 10px;
            transition: .25s;
            cursor: default
        }

        .wp:hover {
            border-color: rgba(255, 90, 31, .4);
            transform: translateX(6px)
        }

        .wp-icon {
            width: 38px;
            height: 38px;
            background: rgba(255, 90, 31, .1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange);
            font-size: .88rem;
            flex-shrink: 0;
            margin-top: 2px
        }

        .wp h4 {
            font-family: 'Manrope', sans-serif;
            font-size: .88rem;
            font-weight: 700;
            margin-bottom: 3px
        }

        .wp p {
            font-size: .8rem;
            color: var(--muted);
            line-height: 1.6
        }

        /* donut chart visual */
        .why-visual {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 28px
        }

        .donut-wrap {
            position: relative;
            width: 240px;
            height: 240px
        }

        .donut-wrap svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg)
        }

        .donut-track {
            fill: none;
            stroke: #1e1e1e;
            stroke-width: 20
        }

        .donut-fill {
            fill: none;
            stroke-width: 20;
            stroke-linecap: round;
            stroke-dasharray: 628;
            stroke-dashoffset: 628;
            transition: stroke-dashoffset 1.6s ease
        }

        .donut-center {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center
        }

        .donut-num {
            font-family: 'Manrope', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--orange)
        }

        .donut-lbl {
            font-size: .72rem;
            color: var(--muted);
            max-width: 80px;
            line-height: 1.4;
            margin-top: 4px
        }

        .donut-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center
        }

        .donut-mini-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px
        }

        .donut-mini {
            position: relative;
            width: 80px;
            height: 80px
        }

        .donut-mini svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg)
        }

        .donut-mini-center {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-family: 'Manrope', sans-serif;
            font-size: .95rem;
            font-weight: 800;
            color: var(--orange)
        }

        .donut-mini-lbl {
            font-size: .7rem;
            color: var(--muted);
            text-align: center;
            max-width: 80px;
            line-height: 1.3
        }

        .stats-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border);
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid var(--border);
            margin-top: 3.5rem
        }

        .ss {
            background: var(--dark);
            padding: 28px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: .3s
        }

        .ss:hover {
            background: rgba(255, 90, 31, .06)
        }

        .ss-num {
            font-family: 'Manrope', sans-serif;
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--orange)
        }

        .ss-lbl {
            font-size: .75rem;
            color: var(--muted);
            margin-top: 6px;
            line-height: 1.4
        }

        .ss-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            background: var(--orange);
            width: 0;
            transition: width 1.4s ease
        }

        .ss.visible .ss-bar {
            width: 100%
        }

        /* ─── SERVICES PYRAMID + WHEEL ─── */
        #services {
            background: var(--dark)
        }

        .svc-tabs {
            display: flex;
            gap: .5rem;
            flex-wrap: wrap;
            margin-bottom: 3rem
        }

        .svc-tab {
            background: var(--glass);
            border: 1px solid var(--border);
            color: var(--muted);
            padding: 9px 20px;
            border-radius: 6px;
            font-size: .83rem;
            font-weight: 500;
            cursor: pointer;
            transition: .2s;
            font-family: 'DM Sans', sans-serif
        }

        .svc-tab.active,
        .svc-tab:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff
        }

        /* pyramid */
        .pyramid-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 5rem
        }

        .pyramid {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 20px 0
        }

        .pyramid-row {
            display: flex;
            justify-content: center;
            gap: 8px
        }

        .pyramid-block {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 4px;
            border-radius: 12px;
            cursor: pointer;
            transition: .3s;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden
        }

        .pyramid-block::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 90, 31, .08), transparent);
            opacity: 0;
            transition: .3s
        }

        .pyramid-block:hover {
            transform: translateY(-4px) scale(1.03);
            border-color: rgba(255, 90, 31, .5);
            box-shadow: 0 16px 32px rgba(0, 0, 0, .4)
        }

        .pyramid-block:hover::before {
            opacity: 1
        }

        .pyramid-block.active-block {
            border-color: var(--orange);
            box-shadow: 0 0 0 2px rgba(255, 90, 31, .2)
        }

        .pyramid-block i {
            color: var(--orange);
            font-size: 1.1rem
        }

        .pyramid-block span {
            font-size: .68rem;
            font-weight: 600;
            color: var(--muted);
            text-align: center;
            padding: 0 4px;
            line-height: 1.3
        }

        /* service detail panel */
        .svc-panel {
            background: var(--d3);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px;
            transition: .3s;
            animation: fadeUp .4s ease both
        }

        .svc-panel-icon {
            width: 64px;
            height: 64px;
            background: rgba(255, 90, 31, .1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--orange);
            margin-bottom: 1.4rem
        }

        .svc-panel h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: .8rem
        }

        .svc-panel p {
            color: var(--muted);
            font-size: .9rem;
            line-height: 1.75;
            margin-bottom: 1.5rem
        }

        .svc-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: .6rem
        }

        .svc-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: .85rem;
            color: var(--muted)
        }

        .svc-features li i {
            color: var(--orange);
            font-size: .75rem
        }

        .svc-tag {
            display: inline-block;
            background: rgba(255, 90, 31, .1);
            color: var(--orange);
            font-size: .7rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 4px;
            margin-top: 1.2rem
        }

        /* wheel / orbit */
        .orbit-section {
            text-align: center;
            margin-top: 2rem
        }

        .orbit-wrap {
            position: relative;
            width: 340px;
            height: 340px;
            margin: 0 auto
        }

        .orbit-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0 0 0 12px rgba(255, 90, 31, .1), 0 0 0 24px rgba(255, 90, 31, .05)
        }

        .orbit-center span {
            font-family: 'Aladin', cursive;
            font-size: 1.1rem;
            color: #fff;
            line-height: 1
        }

        .orbit-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 50%;
            border: 1px dashed rgba(255, 90, 31, .2);
            transform: translate(-50%, -50%);
            animation: spinRing 20s linear infinite
        }

        .orbit-ring-2 {
            animation-direction: reverse;
            animation-duration: 28s
        }

        .orbit-dot {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            transform-origin: 50% 50%
        }

        .orbit-dot-icon {
            width: 48px;
            height: 48px;
            background: var(--d3);
            border: 1px solid var(--border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--orange);
            transition: .3s;
            cursor: pointer
        }

        .orbit-dot-icon:hover {
            background: var(--orange);
            color: #fff;
            transform: scale(1.15)
        }

        .orbit-dot-lbl {
            font-size: .62rem;
            color: var(--muted);
            font-weight: 600;
            white-space: nowrap
        }

        /* Pyramid Sizing */
        .pb-lg {
            width: 140px;
            height: 90px;
        }

        .pb-md {
            width: 120px;
            height: 76px;
        }

        .pb-sm {
            width: 110px;
            height: 68px;
        }

        .pb-xs {
            width: 100px;
            height: 60px;
        }

        @media (max-width: 480px) {
            .pb-lg {
                width: 120px;
                height: 80px;
            }

            .pb-md {
                width: 100px;
                height: 70px;
            }

            .pb-sm {
                width: 95px;
                height: 65px;
            }

            .pb-xs {
                width: 90px;
                height: 60px;
            }

            .pyramid-block span {
                font-size: 0.6rem;
            }
        }

        /* Orbit Ring Sizing */
        .ring-inner {
            width: 160px;
            height: 160px;
        }

        .ring-outer {
            width: 260px;
            height: 260px;
        }

        @media (max-width: 480px) {
            .ring-inner {
                width: 140px;
                height: 140px;
            }

            .ring-outer {
                width: 220px;
                height: 220px;
            }
        }

        @keyframes spinRing {
            from {
                transform: translate(-50%, -50%) rotate(0)
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg)
            }
        }

        /* ─── PROCESS ─── */
        #process {
            background: var(--d2)
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            margin-top: 1rem
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 36px;
            left: 12.5%;
            right: 12.5%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--orange), transparent)
        }

        .step {
            text-align: center;
            padding: 0 16px;
            position: relative;
            z-index: 1
        }

        .step-num {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--dark);
            border: 2px solid var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.4rem;
            font-family: 'Manrope', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--orange);
            transition: .4s;
            position: relative
        }

        .step-num::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 1px dashed rgba(255, 90, 31, .3);
            animation: spinRing 8s linear infinite
        }

        .step:hover .step-num {
            background: var(--orange);
            color: #fff;
            transform: scale(1.08)
        }

        .step h3 {
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: .95rem;
            margin-bottom: .5rem
        }

        .step p {
            font-size: .81rem;
            color: var(--muted);
            line-height: 1.65
        }

        /* ─── ABOUT ─── */
        #about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center
        }

        .about-card {
            background: var(--d3);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px;
            position: relative;
            overflow: hidden
        }

        .about-card::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 90, 31, .1), transparent);
            border-radius: 50%
        }

        .about-list {
            list-style: none;
            margin-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: .7rem
        }

        .about-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: .87rem;
            color: var(--muted)
        }

        .about-list li i {
            color: var(--orange);
            font-size: .75rem
        }

        .asg {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 2rem
        }

        .asc {
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 22px;
            text-align: center
        }

        .asc .n {
            font-family: 'Manrope', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--orange)
        }

        .asc .l {
            font-size: .72rem;
            color: var(--muted);
            margin-top: 4px
        }

        /* ─── PORTFOLIO ─── */
        #portfolio {
            background: var(--dark)
        }

        .filter-btns {
            display: flex;
            gap: .5rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem
        }

        .fb {
            background: var(--glass);
            border: 1px solid var(--border);
            color: var(--muted);
            padding: 8px 20px;
            border-radius: 6px;
            font-size: .82rem;
            font-weight: 500;
            cursor: pointer;
            transition: .2s
        }

        .fb.active,
        .fb:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff
        }

        .pgrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px
        }

        .pc {
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 4/3;
            cursor: pointer;
            border: 1px solid var(--border)
        }

        .pt {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            transition: .4s;
            overflow: hidden
        }

        .pt img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .po {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .4) 40%, transparent 100%);
            opacity: 1;
            transition: .3s;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
        }

        .pc:hover .po {
            background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 60%);
        }

        .pc:hover .pt {
            transform: scale(1.1);
        }

        .po h4 {
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            margin-bottom: .4rem;
            font-size: 1.15rem;
            line-height: 1.3;
        }

        .po p {
            font-size: .88rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        .ptag {
            display: inline-block;
            background: var(--orange);
            color: #fff;
            font-size: .75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 4px;
            margin-bottom: .6rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ─── TESTIMONIALS ─── */
        #testimonials {
            background: var(--d2)
        }

        .ttrack {
            overflow: hidden;
            position: relative
        }

        .ttrack::before,
        .ttrack::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none
        }

        .ttrack::before {
            left: 0;
            background: linear-gradient(to right, var(--d2), transparent)
        }

        .ttrack::after {
            right: 0;
            background: linear-gradient(to left, var(--d2), transparent)
        }

        .tinner {
            display: flex;
            gap: 18px;
            animation: scrollL 32s linear infinite
        }

        .tinner:hover {
            animation-play-state: paused
        }

        .tc {
            min-width: 290px;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 24px;
            flex-shrink: 0;
            transition: .3s
        }

        .tc:hover {
            border-color: rgba(255, 90, 31, .3);
            transform: translateY(-4px)
        }

        .tstars {
            color: var(--orange);
            font-size: .85rem;
            margin-bottom: .8rem;
            letter-spacing: 2px
        }

        .ttext {
            font-size: .85rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 1.4rem
        }

        .tauth {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .tav {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: .83rem;
            color: #fff;
            flex-shrink: 0
        }

        .tnm {
            font-weight: 600;
            font-size: .85rem;
            font-family: 'Manrope', sans-serif
        }

        .trl {
            font-size: .72rem;
            color: var(--muted)
        }

        /* ─── REVIEWS ─── */
        #reviews {
            background: var(--dark)
        }

        .rh {
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap
        }

        .grb .gn {
            font-family: 'Manrope', sans-serif;
            font-size: 3.6rem;
            font-weight: 800;
            color: var(--orange);
            line-height: 1
        }

        .grb .gs {
            color: #fbbc04;
            font-size: 1.2rem;
            margin: .5rem 0
        }

        .grb .gc {
            font-size: .76rem;
            color: var(--muted)
        }

        .rgrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px
        }

        .rcard {
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 20px;
            transition: .3s
        }

        .rcard:hover {
            border-color: rgba(255, 90, 31, .3);
            transform: translateY(-3px)
        }

        .rt {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem
        }

        .rauth {
            display: flex;
            align-items: center;
            gap: 10px
        }

        .rav {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: .8rem;
            color: #fff;
            flex-shrink: 0
        }

        .rnm {
            font-weight: 600;
            font-size: .83rem;
            font-family: 'Manrope', sans-serif
        }

        .rtime {
            font-size: .68rem;
            color: var(--muted)
        }

        .rtext {
            font-size: .82rem;
            color: var(--muted);
            line-height: 1.7
        }

        .gbtn {
            margin-top: 2.5rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border);
            color: var(--muted);
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-size: .85rem;
            transition: .2s
        }

        .gbtn:hover {
            border-color: #4285f4;
            color: #fff
        }

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

        .cgrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start
        }

        .cinfo {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
            margin-top: 1.8rem
        }

        .ci {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 16px 20px;
            transition: .2s
        }

        .ci:hover {
            border-color: rgba(255, 90, 31, .3)
        }

        .ciico {
            width: 40px;
            height: 40px;
            background: rgba(255, 90, 31, .1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange);
            font-size: .9rem;
            flex-shrink: 0
        }

        .ci h4 {
            font-weight: 600;
            font-size: .83rem;
            margin-bottom: 2px;
            font-family: 'Manrope', sans-serif
        }

        .ci p {
            font-size: .79rem;
            color: var(--muted)
        }

        .wa {
            background: #25d366;
            color: #fff;
            padding: 14px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: .3s;
            font-size: .9rem;
            border: 1px solid transparent;
        }

        .wa:hover {
            background: #1fba56;
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(37, 211, 102, .2);
        }

        .contact-btns {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 1.8rem;
        }

        .contact-btn-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        @media (max-width: 480px) {
            .contact-btn-row {
                grid-template-columns: 1fr;
            }
        }

        .cform {
            background: var(--d3);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 34px
        }

        .fg {
            margin-bottom: 1.1rem
        }

        .fg label {
            display: block;
            font-size: .78rem;
            font-weight: 500;
            color: var(--muted);
            margin-bottom: .4rem
        }

        .fg input,
        .fg textarea,
        .fg select {
            width: 100%;
            background: rgba(255, 255, 255, .04);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 12px 15px;
            color: #fff;
            font-size: .87rem;
            font-family: 'DM Sans', sans-serif;
            outline: none;
            transition: .2s
        }

        .fg input:focus,
        .fg textarea:focus,
        .fg select:focus {
            border-color: var(--orange);
            background: rgba(255, 90, 31, .04)
        }

        .fg select option {
            background: #1a1a1a;
            color: #fff;
        }

        .fg textarea {
            resize: vertical;
            min-height: 108px
        }

        .frow {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem
        }

        .sbtn {
            width: 100%;
            background: var(--orange);
            color: #fff;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: .93rem;
            font-weight: 700;
            cursor: pointer;
            transition: .2s;
            font-family: 'DM Sans', sans-serif;
            margin-top: .5rem
        }

        .sbtn:hover {
            background: var(--ol);
            transform: translateY(-1px);
            box-shadow: 0 14px 28px rgba(255, 90, 31, .3)
        }

        /* google form section */
        .google-form-section {
            margin-top: 2.5rem;
            background: rgba(66, 133, 244, 0.04);
            border: 1px solid rgba(66, 133, 244, 0.15);
            border-radius: 16px;
            padding: 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .google-form-section:hover {
            transform: translateY(-5px);
            background: rgba(66, 133, 244, 0.08);
            border-color: rgba(66, 133, 244, 0.4);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .google-form-icon {
            width: 48px;
            height: 48px;
            background: #4285f4;
            color: #fff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            box-shadow: 0 8px 16px rgba(66, 133, 244, 0.3);
            animation: floatIcon 3s ease-in-out infinite;
        }

        @keyframes floatIcon {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .google-form-section h4 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            color: #fff;
        }

        .google-form-section p {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 1.6rem;
        }

        .google-form-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #4285f4;
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .google-form-btn:hover {
            background: #3367d6;
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
        }

        .google-form-btn i {
            font-size: 0.8rem;
        }

        /* floating buttons */
        .float-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 3000;
        }

        .float-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.6rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transition: .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            position: relative;
        }

        .float-btn::after {
            content: attr(data-tooltip);
            position: absolute;
            right: 70px;
            background: rgba(10, 10, 10, 0.9);
            color: #fff;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: 0.3s;
            border: 1px solid var(--border);
            backdrop-filter: blur(5px);
        }

        .float-btn:hover::after {
            opacity: 1;
            transform: translateX(-5px);
        }

        .float-btn:hover {
            transform: translateY(-5px) scale(1.1);
        }

        .f-wa {
            background: #25D366;
        }

        .f-call {
            background: var(--orange);
        }

        @media(max-width: 640px) {
            .float-contact {
                bottom: 20px;
                right: 20px;
                gap: 10px;
            }

            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--d2);
            border-top: 1px solid var(--border);
            padding: 58px 6% 28px
        }

        .ftop {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 3rem
        }

        .fbrand p {
            font-size: .82rem;
            color: var(--muted);
            line-height: 1.7;
            margin-top: .8rem;
            max-width: 260px
        }

        .fsoc {
            display: flex;
            gap: .6rem;
            margin-top: 1.4rem
        }

        .si {
            width: 34px;
            height: 34px;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            text-decoration: none;
            font-size: .82rem;
            transition: .2s
        }

        .si:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff
        }

        .fcol h4 {
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: .86rem;
            margin-bottom: 1rem;
            color: #fff
        }

        .fcol ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: .6rem
        }

        .fcol ul a {
            color: var(--muted);
            text-decoration: none;
            font-size: .81rem;
            transition: .2s
        }

        .fcol ul a:hover {
            color: var(--orange)
        }

        .fbot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            font-size: .76rem;
            color: var(--muted)
        }

        .fbot span {
            color: var(--orange)
        }

        /* ─── ANIMATIONS ─── */
        @keyframes scrollL {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(.8)
            }

            to {
                opacity: 1;
                transform: scale(1)
            }
        }

        /* ─── INSIGHTS & BLOG ─── */
        #insights {
            padding: 100px 6%;
            background: var(--dark)
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px
        }

        .insight-card {
            background: var(--d2);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .insight-card:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            box-shadow: 0 15px 40px rgba(255, 90, 31, .15)
        }

        .insight-body {
            padding: 35px;
            display: flex;
            flex-direction: column;
            flex-grow: 1
        }

        .insight-tag {
            font-size: .7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 12px;
            display: block
        }

        .insight-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #fff
        }

        .insight-excerpt {
            font-size: .88rem;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 25px;
            display: -webkit-box;
            line-clamp: 2;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden
        }

        .insight-footer {
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border);
            padding-top: 20px
        }

        .read-time {
            font-size: .75rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 6px
        }

        .read-more-btn {
            font-size: .88rem;
            font-weight: 700;
            color: var(--orange);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: .2s
        }

        .read-more-btn:hover {
            gap: 12px
        }

        /* ─── RESPONSIVE ─── */
        @media(max-width:1200px) {
            .hero-float {
                right: 2%;
                transform: translateY(-50%) scale(0.9);
            }
        }

        @media(max-width:1024px) {
            .hero-float {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                margin-top: 4rem;
                width: 100%;
                z-index: 10;
            }

            #hero {
                flex-direction: column;
                padding-top: 140px;
                padding-bottom: 80px;
                height: auto;
                min-height: 100vh;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-sub {
                margin: 0 auto 2.4rem;
            }

            .hero-btns {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .pyramid-section {
                grid-template-columns: 1fr;
            }

            #about {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media(max-width:900px) {
            .why-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .process-steps::before {
                display: none;
            }

            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
            }

            .pgrid,
            .rgrid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .ftop {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:640px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .logo {
                font-size: 1.5rem;
            }

            .logo-img {
                height: 44px;
            }

            nav {
                padding: 24px 6% !important;
                padding-top: calc(24px + env(safe-area-inset-top, 0px)) !important;
                min-height: 90px;
                display: flex;
                align-items: center;
            }

            nav.scrolled {
                padding: 18px 6% !important;
                padding-top: calc(18px + env(safe-area-inset-top, 0px)) !important;
                min-height: 80px;
            }

            .logo {
                line-height: 1.2;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .logo-img {
                height: 46px;
                transition: 0.3s;
            }

            nav.scrolled .logo-img {
                height: 38px;
            }

            section {
                padding: 70px 6%;
            }

            .hero-content h1 {
                font-size: clamp(2.2rem, 10vw, 3.5rem);
            }

            .hero-stats {
                gap: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .snum {
                font-size: 1.8rem;
            }

            .pgrid,
            .rgrid {
                grid-template-columns: 1fr;
            }

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

            .process-steps {
                grid-template-columns: 1fr;
            }

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

            .fbot {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .stats-strip {
                grid-template-columns: 1fr;
            }

            .orbit-wrap {
                transform: scale(0.75);
            }

            .modal-content-wrap {
                margin: 60px auto 60px;
                padding: 0 5%;
            }

            .modal-headline {
                font-size: 1.8rem;
            }

            .insights-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .insight-body {
                padding: 25px;
            }

            .ssub,
            .wp p,
            .svc-panel p,
            .po p,
            .about-list li,
            .fbrand p,
            .ci p,
            .step p {
                font-size: 1.05rem !important;
                line-height: 1.6;
            }

            .fg input,
            .fg textarea,
            .fg select {
                font-size: 16px !important;
            }

            .modal-article-body {
                font-size: 1.15rem !important;
            }

            .stitle {
                font-size: 2rem;
            }
        }

        @media(max-width:480px) {
            .hero-stats>div {
                width: 45%;
                text-align: center;
            }

            .orbit-wrap {
                transform: scale(0.65);
            }

            .stitle {
                font-size: 1.6rem;
            }

            #insights {
                padding: 60px 5%;
            }
        }

        @media(max-width:360px) {
            .hero-stats>div {
                width: 100%;
            }

            .orbit-wrap {
                transform: scale(0.55);
            }

            .logo-img {
                height: 44px;
            }

            nav.scrolled .logo-img {
                height: 38px;
            }
        }



        /* Article Modal */
        .article-modal {
            position: fixed;
            inset: 0;
            z-index: 5000;
            background: radial-gradient(circle at 50% 0%, #1a1a1a 0%, var(--dark) 100%);
            backdrop-filter: blur(10px);
            display: none;
            overflow-y: auto;
            opacity: 0;
            transition: .4s
        }

        .article-modal.active {
            display: block;
            opacity: 1
        }

        .modal-close {
            position: fixed;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--orange);
            color: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: .3s;
            z-index: 5100;
            box-shadow: 0 10px 20px rgba(255, 90, 31, .3)
        }

        .modal-close:hover {
            transform: scale(1.1) rotate(90deg)
        }

        .modal-content-wrap {
            max-width: 800px;
            margin: 120px auto 100px;
            padding: 0 6%
        }

        .modal-header {
            margin-bottom: 50px
        }

        .modal-category {
            color: var(--orange);
            text-transform: uppercase;
            font-weight: 800;
            font-size: .85rem;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 15px
        }

        .modal-headline {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.1
        }

        .modal-article-body {
            color: var(--text);
            line-height: 1.8;
            font-size: 1.1rem
        }

        .modal-article-body h2 {
            color: #fff;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            font-family: 'Manrope', sans-serif;
            border-left: 4px solid var(--orange);
            padding-left: 20px
        }

        .modal-article-body h3 {
            color: var(--orange);
            font-size: 1.4rem;
            margin: 30px 0 15px;
            font-family: 'Manrope', sans-serif
        }

        .modal-article-body p {
            margin-bottom: 25px;
            color: #ccc
        }

        .modal-article-body ul {
            margin-bottom: 25px;
            list-style: none
        }

        .modal-article-body li {
            margin-bottom: 12px;
            display: flex;
            gap: 12px;
            align-items: flex-start
        }

        .modal-article-body li::before {
            content: '→';
            color: var(--orange);
            font-weight: 800
        }

        @media(max-width: 768px) {
            .modal-content-wrap {
                margin-top: 80px
            }

            .modal-close {
                top: 20px;
                right: 20px;
                width: 40px;
                height: 40px
            }
        }