        :root {
            --red: #e31e24;
            --red-dark: #b8181d;
            --red-light: #ff4a4f;
            --red-glow: rgba(227, 30, 36, 0.35);
            --dark: #080808;
            --dark2: #111111;
            --dark3: #1a1a1a;
            --dark4: #222222;
            --gray: #888;
            --white: #ffffff;
            --font-main: 'Barlow', sans-serif;
            --font-display: 'Barlow Condensed', sans-serif;
            --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--dark);
            background: var(--dark);
            overflow-x: hidden;
        }

        /* CURSOR */
        #cursor {
            position: fixed;
            width: 12px;
            height: 12px;
            background: var(--red);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width .3s, height .3s;
        }

        #cursor-trail {
            position: fixed;
            width: 36px;
            height: 36px;
            border: 1.5px solid rgba(227, 30, 36, 0.5);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            transition: left .15s ease, top .15s ease, width .3s, height .3s;
        }

        /* NOISE */
        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='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");
            pointer-events: none;
            z-index: 9997;
            opacity: 0.4;
        }

        /* NAVBAR */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            height: 80px;
            background: rgba(8, 8, 8, 0.7);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        nav.scrolled {
            background: rgba(8, 8, 8, 0.95);
            border-bottom-color: rgba(227, 30, 36, 0.2);
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .nav-logo span {
            color: var(--red);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: color .3s;
            position: relative;
            padding-bottom: 4px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--red);
            transition: width .3s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--red) !important;
            color: var(--white) !important;
            padding: 0.5rem 1.3rem !important;
            border-radius: 6px !important;
            transition: background .3s, box-shadow .3s, transform .3s !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--red-dark) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 24px var(--red-glow) !important;
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.4rem;
        }

        /* ─── HERO ─── */
        #hero {
            min-height: 100vh;
            background: #05050a;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 80px 0 0;
        }

        /* Backgrounds */
        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-scanlines {
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
            pointer-events: none;
            z-index: 1;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
        }

        .orb-1 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(227, 30, 36, 0.18), transparent 70%);
            top: -150px;
            right: -200px;
            animation: orbFloat1 10s ease-in-out infinite;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(227, 30, 36, 0.08), transparent 70%);
            bottom: -150px;
            left: 10%;
            animation: orbFloat2 14s ease-in-out infinite 2s;
        }

        @keyframes orbFloat1 {

            0%,
            100% {
                transform: translate(0, 0)
            }

            33% {
                transform: translate(30px, -40px)
            }

            66% {
                transform: translate(-20px, 30px)
            }
        }

        @keyframes orbFloat2 {

            0%,
            100% {
                transform: translate(0, 0)
            }

            50% {
                transform: translate(-30px, -20px)
            }
        }

        /* Hero inner: two-column layout */
        .hero-inner {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 440px;
            gap: 3rem;
            align-items: center;
            min-height: calc(100vh - 80px);
        }

        /* LEFT */
        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 3rem 0;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(227, 30, 36, 0.1);
            border: 1px solid rgba(227, 30, 36, 0.22);
            color: #ff7a7e;
            padding: 5px 14px;
            border-radius: 100px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-family: 'Barlow Condensed', sans-serif;
            width: fit-content;
            margin-bottom: 24px;
            animation: fadeUp .6s ease both;
        }

        .eyebrow-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #e31e24;
            animation: pulse 1.8s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .3;
                transform: scale(.6)
            }
        }

        .hero-h1 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 900;
            line-height: .88;
            letter-spacing: -4px;
            color: #fff;
            font-size: clamp(4.5rem, 8vw, 7rem);
            animation: fadeUp .7s ease .1s both;
            margin-bottom: 0;
        }

        .hero-h1 .red {
            color: #e31e24;
        }

        .hero-h1 .ghost {
            -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
            color: transparent;
            display: block;
        }

        .hero-sub {
            margin-top: 22px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.42);
            line-height: 1.85;
            max-width: 420px;
            animation: fadeUp .7s ease .2s both;
        }

        .hero-sub b {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

        .hero-btns {
            display: flex;
            gap: 10px;
            margin-top: 30px;
            animation: fadeUp .7s ease .3s both;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #e31e24;
            color: #fff;
            padding: 14px 28px;
            border-radius: 8px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 800;
            font-size: 14px;
            letter-spacing: .5px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all .3s;
            text-decoration: none;
        }

        .btn-primary:hover {
            background: #c01920;
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(227, 30, 36, 0.4);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.65);
            padding: 14px 24px;
            border-radius: 8px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 800;
            font-size: 14px;
            letter-spacing: .5px;
            text-transform: uppercase;
            border: 1.5px solid rgba(255, 255, 255, 0.12);
            cursor: pointer;
            text-decoration: none;
            transition: all .3s;
            display: inline-flex;
            align-items: center;
        }

        .btn-outline:hover {
            border-color: rgba(227, 30, 36, 0.4);
            color: #fff;
            transform: translateY(-3px);
        }

        .model-submit-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            width: 100%;
            padding: 18px 0;
            background: var(--red);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .model-submit-btn i {
            font-size: 1rem;
        }

        .hero-chips {
            display: flex;
            gap: 8px;
            margin-top: 28px;
            flex-wrap: wrap;
            animation: fadeUp .7s ease .4s both;
        }

        .hero-chip {
            display: flex;
            align-items: center;
            gap: 5px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .5px;
            color: rgba(255, 255, 255, 0.35);
            text-transform: uppercase;
            font-family: 'Barlow Condensed', sans-serif;
            transition: all .3s;
            cursor: default;
        }

        .hero-chip:hover {
            border-color: rgba(227, 30, 36, 0.35);
            color: rgba(255, 255, 255, .7);
            background: rgba(227, 30, 36, .06);
        }

        .chip-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #e31e24;
            opacity: .7;
        }

        /* RIGHT — graphic panel */
        .hero-right {
            position: relative;
            height: 520px;
            animation: fadeLeft .8s ease .15s both;
            display: flex;
            align-items: center;
        }

        .hero-graphic {
            width: 100%;
            height: 100%;
        }

        /* scroll hint */
        .scroll-hint {
            position: absolute;
            bottom: 2rem;
            left: 5%;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: fadeUp .7s ease .5s both;
            z-index: 2;
        }

        .scroll-bar {
            width: 32px;
            height: 1px;
            background: linear-gradient(90deg, #e31e24, transparent);
        }

        .scroll-lbl {
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.2);
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
        }

        /* live badge */
        .live-badge {
            position: absolute;
            bottom: 2rem;
            right: 5%;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 100px;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.03);
            animation: fadeUp .7s ease .6s both;
            z-index: 2;
        }

        .live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #22c55e;
            animation: pulse 2s ease-in-out infinite;
        }

        .live-txt {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .3);
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes fadeLeft {
            from {
                opacity: 0;
                transform: translateX(30px)
            }

            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        @keyframes dash {
            to {
                stroke-dashoffset: -24
            }
        }

        @keyframes nodePop {

            0%,
            100% {
                r: 4
            }

            50% {
                r: 6
            }
        }

        @keyframes ringExpand {
            0% {
                r: 12;
                opacity: .6
            }

            100% {
                r: 28;
                opacity: 0
            }
        }

        @keyframes floatPhone {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-8px)
            }
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-6px)
            }
        }

        /* marquee */
        .marquee-strip {
            background: #e31e24;
            padding: 1rem 0;
            overflow: hidden;
            position: relative;
        }

        .marquee-strip::before,
        .marquee-strip::after {
            content: '';
            position: absolute;
            top: 0;
            width: 80px;
            height: 100%;
            z-index: 2;
        }

        .marquee-strip::before {
            left: 0;
            background: linear-gradient(90deg, #e31e24, transparent);
        }

        .marquee-strip::after {
            right: 0;
            background: linear-gradient(-90deg, #e31e24, transparent);
        }

        .marquee-inner {
            display: flex;
            animation: marquee 30s linear infinite;
            white-space: nowrap;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: .6rem;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: .9rem;
            font-weight: 800;
            color: rgba(255, 255, 255, .9);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 0 2.5rem;
            flex-shrink: 0;
        }

        @keyframes marquee {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        /* ─── CLIENTS ─── */
        #clients {
            background: var(--dark2);
            padding: 3rem 5%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .clients-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.3);
            text-align: center;
            margin-bottom: 2rem;
        }

        .clients-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .client-logo {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.2);
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color .3s;
            cursor: default;
        }

        .client-logo:hover {
            color: rgba(255, 255, 255, 0.6);
        }

        /* ─── SHARED SECTION STYLES ─── */
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(227, 30, 36, 0.1);
            border: 1px solid rgba(227, 30, 36, 0.2);
            color: var(--red-light);
            padding: 0.35rem 0.9rem;
            border-radius: 100px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            line-height: 1;
            color: var(--white);
            letter-spacing: -1px;
        }

        .section-title span {
            color: var(--red);
        }

        .section-desc {
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.9;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ─── SERVICE CATEGORIES ─── */
        #service-categories {
            background: var(--dark);
            padding: 100px 5%;
            position: relative;
            overflow: hidden;
        }

        #service-categories::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(227, 30, 36, 0.04), transparent 70%);
            pointer-events: none;
        }

        .categories-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .categories-header .section-tag {
            margin: 0 auto 1rem;
        }

        .categories-header .section-desc {
            margin: 0.8rem auto 0;
            max-width: 520px;
        }

        .cat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cat-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 2.5rem 2rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .cat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(227, 30, 36, 0.05), transparent);
            opacity: 0;
            transition: opacity .4s;
        }

        .cat-card:hover {
            transform: translateY(-8px);
            border-color: rgba(227, 30, 36, 0.3);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(227, 30, 36, 0.1);
        }

        .cat-card:hover::before {
            opacity: 1;
        }

        .cat-top-line {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--red-dark), var(--red-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .cat-card:hover .cat-top-line {
            transform: scaleX(1);
        }

        .cat-glow {
            position: absolute;
            top: -80px;
            right: -80px;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(227, 30, 36, 0.12), transparent 70%);
            border-radius: 50%;
            transition: transform .4s;
        }

        .cat-card:hover .cat-glow {
            transform: scale(1.5);
        }

        .cat-number {
            position: absolute;
            top: 1.5rem;
            right: 1.8rem;
            font-family: var(--font-display);
            font-size: 5rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.025);
            line-height: 1;
            pointer-events: none;
        }

        .cat-icon-wrap {
            width: 72px;
            height: 72px;
            border-radius: 16px;
            background: rgba(227, 30, 36, 0.1);
            border: 1px solid rgba(227, 30, 36, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        .cat-card:hover .cat-icon-wrap {
            background: var(--red);
            border-color: var(--red);
            box-shadow: 0 0 30px var(--red-glow);
        }

        .cat-icon-wrap i {
            font-size: 1.5rem;
            color: var(--red);
            transition: color .3s;
        }

        .cat-card:hover .cat-icon-wrap i {
            color: var(--white);
        }

        .cat-name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.7rem;
            position: relative;
            z-index: 1;
            letter-spacing: -0.5px;
        }

        .cat-desc {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.75;
            position: relative;
            z-index: 1;
        }

        .cat-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .cat-tag {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 0.25rem 0.7rem;
            border-radius: 100px;
            transition: var(--transition);
        }

        .cat-card:hover .cat-tag {
            border-color: rgba(227, 30, 36, 0.3);
            color: rgba(255, 255, 255, 0.7);
        }

        .cat-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--red);
            font-weight: 700;
            font-size: 0.82rem;
            text-decoration: none;
            margin-top: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: gap .3s;
            position: relative;
            z-index: 1;
        }

        .cat-cta:hover {
            gap: 0.9rem;
        }

        /* ─── SERVICES ─── */
        #services {
            background: var(--dark2);
            padding: 100px 5%;
        }

        .services-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 2rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--red-dark), var(--red-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .4s;
        }

        .service-card:hover {
            border-color: rgba(227, 30, 36, 0.25);
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .service-card:hover::after {
            transform: scaleX(1);
        }

        .service-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: rgba(227, 30, 36, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--red);
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--red);
            color: var(--white);
            box-shadow: 0 8px 24px var(--red-glow);
        }

        .service-name {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.5rem;
            letter-spacing: -0.3px;
        }

        .service-desc {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.87rem;
            line-height: 1.75;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--red);
            font-weight: 700;
            font-size: 0.8rem;
            text-decoration: none;
            margin-top: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: gap .3s;
        }

        .service-link:hover {
            gap: 0.7rem;
        }

        /* ─── SHORT VIDEOS SECTION ─── */
        #short-videos {
            background: var(--dark);
            padding: 100px 5%;
            position: relative;
            overflow: hidden;
        }

        #short-videos::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.4), transparent);
        }

        .videos-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .videos-header .section-tag {
            margin: 0 auto 1rem;
        }

        .videos-header .section-desc {
            margin: 0.8rem auto 0;
            max-width: 520px;
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .video-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: var(--dark3);
            border: 1px solid rgba(255, 255, 255, 0.07);
            cursor: pointer;
            transition: var(--transition);
        }

        .video-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(227, 30, 36, 0.4);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(227, 30, 36, 0.15);
        }

        .video-thumb {
            aspect-ratio: 9/16;
            position: relative;
            overflow: hidden;
        }

        .video-thumb-bg {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.5s ease;
        }

        .video-card:hover .video-thumb-bg {
            transform: scale(1.05);
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%);
            z-index: 1;
        }

        .video-platform {
            position: absolute;
            top: 1rem;
            left: 1rem;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 0.35rem;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            padding: 0.3rem 0.7rem;
            border-radius: 100px;
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.5px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .video-platform i {
            font-size: 0.75rem;
        }

        .v-ig {
            color: #e1306c;
        }

        .v-yt {
            color: #ff0000;
        }

        .v-fb {
            color: #1877f2;
        }

        .v-li {
            color: #0a66c2;
        }

        .video-duration {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 3;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            padding: 0.2rem 0.55rem;
            border-radius: 4px;
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--white);
            font-family: var(--font-display);
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            z-index: 3;
            width: 56px;
            height: 56px;
            background: rgba(227, 30, 36, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            opacity: 0;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
            box-shadow: 0 0 40px var(--red-glow);
            padding-left: 4px;
        }

        .video-card:hover .video-play-btn {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .video-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.2rem;
            z-index: 2;
        }

        .video-category {
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--red-light);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 0.35rem;
        }

        .video-title {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.25;
            letter-spacing: -0.3px;
        }

        .video-stats {
            display: flex;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }

        .video-stat {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .video-stat i {
            color: rgba(255, 255, 255, 0.35);
            font-size: 0.6rem;
        }

        .vbg-1 {
            background: linear-gradient(135deg, #1a0a0b 0%, #2d0f10 30%, #1a0a0b 100%);
        }

        .vbg-2 {
            background: linear-gradient(135deg, #080d1a 0%, #0f1e35 30%, #080d1a 100%);
        }

        .vbg-3 {
            background: linear-gradient(135deg, #0a1a0a 0%, #0f2d12 30%, #0a1a0a 100%);
        }

        .vbg-4 {
            background: linear-gradient(135deg, #1a1a0a 0%, #2d2a0f 30%, #1a1a0a 100%);
        }

        .vdeco {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .vdeco-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .vdeco-line {
            position: absolute;
            background: rgba(255, 255, 255, 0.03);
        }

        .videos-cta {
            text-align: center;
            margin-top: 5rem;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .videos-cta .cta-text {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.95rem;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto 2rem auto;
        }

        .videos-cta .cta-text span {
            color: var(--white);
            font-weight: 500;
        }

        .video-btn {
            display: inline-flex !important;
            align-items: center;
            gap: 12px;
            padding: 18px 35px !important;
            width: auto !important;
            background: var(--red);
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 12px !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
        }

        .video-btn:hover {
            background: #ff1f25;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px var(--red-glow);
        }

        .video-btn i {
            font-size: 1rem;
            transition: transform 0.4s ease;
        }

        .video-btn:hover i {
            transform: rotate(-15deg) scale(1.2);
        }

        /* ─── ABOUT ─── */
        #about {
            background: var(--dark2);
            padding: 100px 5%;
            position: relative;
            overflow: hidden;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-big-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .about-big-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(227, 30, 36, 0.1), transparent 70%);
        }

        .about-svg {
            width: 100%;
            display: block;
        }

        .orbit-ring {
            animation: orbitSpin 20s linear infinite;
            transform-origin: 150px 110px;
        }

        .orbit-ring-2 {
            animation: orbitSpin 15s linear infinite reverse;
            transform-origin: 150px 110px;
        }

        @keyframes orbitSpin {
            from {
                transform: rotate(0deg)
            }

            to {
                transform: rotate(360deg)
            }
        }

        .node-float {
            animation: nodeFloat 4s ease-in-out infinite;
        }

        .node-float-2 {
            animation: nodeFloat 5s ease-in-out infinite 1.5s;
        }

        .node-float-3 {
            animation: nodeFloat 3.5s ease-in-out infinite 0.8s;
        }

        @keyframes nodeFloat {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-8px)
            }
        }

        .metric-row {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .metric-box {
            flex: 1;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            transition: var(--transition);
        }

        .metric-box:hover {
            border-color: rgba(227, 30, 36, 0.3);
        }

        .metric-num {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 900;
            color: var(--red);
            line-height: 1;
        }

        .metric-lbl {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.35);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 0.2rem;
        }

        .features-list {
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feature-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1.2rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .feature-item:hover {
            background: rgba(227, 30, 36, 0.06);
            border-color: rgba(227, 30, 36, 0.2);
            transform: translateX(4px);
        }

        .feature-icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            background: rgba(227, 30, 36, 0.12);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--red);
            font-size: 0.95rem;
        }

        .feature-title {
            font-weight: 700;
            color: var(--white);
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }

        .feature-text {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.7;
        }

        /* ─── PROCESS ─── */
        #process {
            background: var(--dark);
            padding: 100px 5%;
        }

        .process-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .process-header .section-tag {
            margin: 0 auto 1rem;
        }

        .process-header .section-desc {
            margin: 0.8rem auto 0;
            max-width: 520px;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            position: relative;
        }

        .process-connector {
            position: absolute;
            top: 60px;
            left: calc(12.5% + 20px);
            right: calc(12.5% + 20px);
            height: 1px;
            background: linear-gradient(90deg, var(--red), rgba(227, 30, 36, 0.3));
            z-index: 0;
        }

        .step-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        .step-card:hover {
            border-color: rgba(227, 30, 36, 0.25);
            transform: translateY(-6px);
        }

        .step-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--red);
            color: var(--white);
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 0 0 8px rgba(227, 30, 36, 0.1), 0 0 0 16px rgba(227, 30, 36, 0.05);
            transition: var(--transition);
        }

        .step-card:hover .step-num {
            box-shadow: 0 0 0 8px rgba(227, 30, 36, 0.2), 0 0 30px var(--red-glow);
        }

        .step-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.6rem;
            letter-spacing: -0.3px;
        }

        .step-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.75;
        }

        /* ─── BLOG PREVIEW ─── */
        #blog-preview {
            background: var(--dark2);
            padding: 100px 5%;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .blog-header .section-tag {
            margin: 0 auto 1rem;
        }

        .blog-header .section-desc {
            margin: 0.8rem auto 0;
            max-width: 520px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .blog-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
            text-decoration: none;
            display: block;
        }

        .blog-card:hover {
            border-color: rgba(227, 30, 36, 0.25);
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .blog-thumb {
            height: 160px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-thumb-inner {
            position: absolute;
            inset: 0;
        }

        .blog-thumb-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7));
            z-index: 1;
        }

        .blog-cat-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            z-index: 2;
            background: var(--red);
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.25rem 0.7rem;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--font-display);
        }

        .blog-body {
            padding: 1.5rem;
        }

        .blog-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 0.8rem;
        }

        .blog-meta-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.35);
        }

        .blog-meta-item i {
            color: var(--red);
            font-size: 0.65rem;
        }

        .blog-title {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 0.7rem;
            letter-spacing: -0.3px;
            transition: color .3s;
        }

        .blog-card:hover .blog-title {
            color: var(--red-light);
        }

        .blog-excerpt {
            font-size: 0.83rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.7;
        }

        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--red);
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 1rem;
            transition: gap .3s;
        }

        .blog-card:hover .blog-read-more {
            gap: 0.7rem;
        }

        .blog-cta {
            text-align: center;
            margin-top: 4rem;
            display: flex;
            justify-content: center;
        }

        .view-all-btn {
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 18px 35px !important;
            width: auto !important;
            min-width: 220px;
            background: var(--red);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
        }

        .view-all-btn:hover {
            background: #ff1f25;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px var(--red-glow);
        }

        .view-all-btn i {
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover i {
            transform: rotate(10deg) scale(1.1);
        }

        .bt1 {
            background: linear-gradient(135deg, #1a0408 0%, #2d0810 100%);
        }

        .bt2 {
            background: linear-gradient(135deg, #07101a 0%, #0d1e33 100%);
        }

        .bt3 {
            background: linear-gradient(135deg, #0f1a07 0%, #1d2f0a 100%);
        }

        .bt4 {
            background: linear-gradient(135deg, #1a150a 0%, #2d230e 100%);
        }

        .bt5 {
            background: linear-gradient(135deg, #1a0a17 0%, #2d0f28 100%);
        }

        .bt6 {
            background: linear-gradient(135deg, #0a1a1a 0%, #0d2e2e 100%);
        }

        /* ─── PRICING PREVIEW ─── */
        #pricing-preview {
            background: var(--dark);
            padding: 100px 5%;
        }

        .pricing-preview-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-preview-header .section-tag {
            margin: 0 auto 1rem;
        }

        .pricing-preview-header .section-desc {
            margin: 0.8rem auto 0;
            max-width: 520px;
        }

        .pricing-cta-area {
            text-align: center;
            margin-top: 3rem;
        }

        .pricing-categories {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .pricing-cat-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .pricing-cat-card:hover {
            border-color: rgba(227, 30, 36, 0.3);
            transform: translateY(-6px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .pricing-cat-card .cat-icon {
            width: 64px;
            height: 64px;
            background: rgba(227, 30, 36, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            color: var(--red);
            transition: var(--transition);
        }

        .pricing-cat-card:hover .cat-icon {
            background: var(--red);
            color: var(--white);
        }

        .pricing-cat-name {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .pricing-cat-range {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 900;
            color: var(--red);
            margin: 1rem 0;
        }

        .pricing-cat-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .pricing-view-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--red);
            font-weight: 700;
            font-size: 0.8rem;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid rgba(227, 30, 36, 0.3);
            padding: 0.6rem 1.3rem;
            border-radius: 6px;
            transition: var(--transition);
        }

        .pricing-view-btn:hover {
            background: var(--red);
            color: var(--white);
            border-color: var(--red);
        }

        /* ─── CTA ─── */
        #cta {
            background: var(--dark2);
            padding: 100px 5%;
            position: relative;
            overflow: hidden;
        }

        .cta-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-form {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin-top: 2.5rem;
        }

        .cta-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: var(--font-display);
            font-size: 15rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.015);
            white-space: nowrap;
            pointer-events: none;
            letter-spacing: -10px;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            letter-spacing: -2px;
        }

        .cta-title span {
            color: var(--red);
        }

        .cta-desc {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .main-cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            padding: 22px 50px !important;
            min-width: 300px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--red) 0%, #b8181d 100%);
            color: white;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.2);
            animation: pulse-glow 2s infinite ease-in-out;
        }

        .main-cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.6s;
        }

        .main-cta-btn:hover::before {
            left: 100%;
        }

        .main-cta-btn i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .main-cta-btn:hover {
            background: linear-gradient(135deg, #ff1f25 0%, var(--red) 100%);
            transform: scale(1.05) translateY(-8px);
            box-shadow: 0 20px 50px var(--red-glow), 0 0 20px rgba(227, 30, 36, 0.4);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .main-cta-btn:hover i {
            transform: translateX(8px) scale(1.2);
        }

        .main-cta-btn:active {
            transform: scale(0.98) translateY(-2px);
        }

        @keyframes pulse-glow {
            0% {
                box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
            }

            50% {
                box-shadow: 0 10px 45px rgba(227, 30, 36, 0.6);
            }

            100% {
                box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
            }
        }

        .cta-trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .cta-trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.35);
        }

        .cta-trust-item i {
            color: var(--red);
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--dark);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.5);
            padding: 70px 5% 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .footer-logo span {
            color: var(--red);
        }

        .footer-about {
            font-size: 0.85rem;
            line-height: 1.85;
            max-width: 260px;
            color: rgba(255, 255, 255, 0.35);
        }

        .footer-social {
            display: flex;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.82rem;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-btn:hover {
            background: var(--red);
            color: var(--white);
            transform: translateY(-2px);
        }

        .footer-col-title {
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--white);
            font-size: 0.88rem;
            letter-spacing: 0.5px;
            margin-bottom: 1.2rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.65rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--red);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
        }

        .footer-bottom a {
            color: var(--red);
            text-decoration: none;
        }

        .footer-pricing-link {
            background: rgba(227, 30, 36, 0.1);
            border: 1px solid rgba(227, 30, 36, 0.2);
            color: var(--red) !important;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .footer-pricing-link:hover {
            background: var(--red);
            color: var(--white) !important;
        }

        /* ─── SCROLL REVEAL ─── */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        .stagger-1 {
            transition-delay: 0.1s !important;
        }

        .stagger-2 {
            transition-delay: 0.2s !important;
        }

        .stagger-3 {
            transition-delay: 0.3s !important;
        }

        .stagger-4 {
            transition-delay: 0.4s !important;
        }

        /* ─── BACK TO TOP ─── */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 50px;
            height: 50px;
            background: rgba(227, 30, 36, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(227, 30, 36, 0.3);
            color: var(--white);
            border-radius: 12px;
            cursor: pointer;
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top i {
            font-size: 1.1rem;
            color: var(--red);
            transition: transform 0.3s ease;
        }

        .back-to-top:hover {
            background: var(--red);
            border-color: var(--red);
            box-shadow: 0 10px 30px var(--red-glow);
        }

        .back-to-top:hover i {
            color: white;
            transform: translateY(-3px);
        }

        .back-to-top::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 14px;
            background: var(--red);
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s;
        }

        .back-to-top:hover::before {
            animation: ringExpand 1.5s infinite;
            opacity: 0.4;
        }

        @keyframes ringExpand {
            0% {
                transform: scale(1);
                opacity: 0.4;
            }

            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        /* ─── MODAL ─── */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .modal-content {
            background: #0f0f0f;
            width: 100%;
            max-width: 500px;
            padding: 40px;
            border-radius: 12px;
            border: 1px solid rgba(227, 30, 36, 0.2);
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(227, 30, 36, 0.25);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            line-height: 1;
        }

        .modal-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .modal-header h3 span {
            color: var(--red);
        }

        .modal-header p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }

        .modal-form .form-group {
            margin-bottom: 15px;
        }

        .modal-form input,
        .modal-form textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
            outline: none;
        }

        .modal-form input:focus {
            border-color: var(--red);
        }

        .modal-form button {
            width: 100%;
            margin-top: 10px;
            border-radius: 12px !important;
        }

        /* ─── DOCK ─── */
        .dock-container {
            position: fixed;
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
            width: auto;
            transition: bottom 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            pointer-events: none;
        }

        .dock-container.visible {
            bottom: 30px;
            pointer-events: auto;
        }

        .dock-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(15, 15, 15, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 8px 20px;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(227, 30, 36, 0.15);
        }

        .dock-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px 15px;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 75px;
        }

        .dock-item i {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .dock-item span {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--font-display);
        }

        .dock-item:hover {
            color: var(--white);
            transform: translateY(-3px);
        }

        .dock-item:hover i {
            color: var(--red);
            filter: drop-shadow(0 0 8px var(--red-glow));
        }

        .dock-divider {
            width: 1px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
        }

        .audit-trigger i {
            color: var(--red);
        }

        /* ─── RESPONSIVE ─── */
        @media(max-width:1024px) {
            .videos-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid,
            .services-header {
                grid-template-columns: 1fr;
            }

            .cat-grid,
            .services-grid,
            .blog-grid,
            .pricing-categories {
                grid-template-columns: 1fr 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr 1fr;
            }

            .process-connector {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width:900px) {
            .hero-inner {
                grid-template-columns: 1fr;
                min-height: auto;
                padding: 3rem 5%;
            }

            .hero-right {
                height: 360px;
            }

            .nav-links {
                display: none;
            }
        }

        @media(max-width:640px) {
            .menu-toggle {
                display: block;
            }

            .cat-grid,
            .services-grid,
            .blog-grid,
            .pricing-categories,
            .videos-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 0.8rem;
                text-align: center;
            }

            .cta-form {
                flex-direction: column;
            }

            .cta-trust {
                gap: 1rem;
            }

            #cursor,
            #cursor-trail {
                display: none;
            }
        }


        /* {{-- ============================= pricing css ============================= --}} */


        /* PAGE HERO */
        .pricing-hero {
            padding: 150px 5% 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: var(--dark);
        }

        .pricing-hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(227, 30, 36, 0.08), transparent 70%);
            pointer-events: none;
        }

        .grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .pricing-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .pricing-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -2px;
            margin-bottom: 1.2rem;
        }

        .pricing-hero h1 span {
            color: var(--red);
        }

        .pricing-hero p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
            line-height: 1.8;
            max-width: 520px;
            margin: 0 auto 2rem;
        }

        /* TABS */
        .pricing-tabs-wrap {
            background: var(--dark2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: sticky;
            top: 80px;
            z-index: 100;
        }

        .pricing-tabs {
            display: flex;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .tab-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1.2rem 3rem;
            color: rgba(255, 255, 255, 0.4);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.88rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            background: none;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
            white-space: nowrap;
        }

        .tab-btn:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        .tab-btn.active {
            color: var(--white);
            border-bottom-color: var(--red);
        }

        /* SECTIONS */
        .pricing-section {
            display: none;
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        #custom-section {
            display: none;
            padding: 80px 5%;
            max-width: 1000px;
            margin: 0 auto;
        }

        #custom-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 0.8rem;
        }

        .section-header h2 span {
            color: var(--red);
        }

        .section-header p {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.95rem;
            line-height: 1.8;
            max-width: 500px;
            margin: 0 auto;
        }

        /* PLAN CARDS */
        .plan-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .plan-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .plan-card:hover {
            border-color: rgba(227, 30, 36, 0.25);
            transform: translateY(-6px);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
        }

        .plan-card.popular {
            background: linear-gradient(135deg, rgba(227, 30, 36, 0.12), rgba(184, 24, 29, 0.08));
            border-color: rgba(227, 30, 36, 0.4);
        }

        .plan-top-bar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--red-dark), var(--red-light));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .plan-card:hover .plan-top-bar,
        .plan-card.popular .plan-top-bar {
            opacity: 1;
        }

        .popular-badge {
            position: absolute;
            top: 1.2rem;
            right: 1.2rem;
            background: var(--red);
            color: var(--white);
            padding: 0.25rem 0.8rem;
            border-radius: 100px;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .plan-icon {
            width: 56px;
            height: 56px;
            background: rgba(227, 30, 36, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--red);
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .plan-card:hover .plan-icon {
            background: var(--red);
            color: var(--white);
        }

        .plan-name {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.4rem;
            letter-spacing: -0.3px;
        }

        .plan-tagline {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .plan-price-wrap {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .plan-price {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 900;
            color: var(--white);
            line-height: 1;
        }

        .plan-price sup {
            font-size: 1.3rem;
            vertical-align: top;
            margin-top: 0.5rem;
            display: inline-block;
        }

        .plan-price sub {
            font-family: var(--font-main);
            font-size: 0.85rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.35);
        }

        .plan-price.custom-price {
            font-size: 2rem;
            color: var(--red);
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li .check {
            color: #22c55e;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .plan-features li .cross {
            color: rgba(255, 255, 255, 0.2);
            flex-shrink: 0;
            margin-top: 1px;
        }

        .plan-features li.na {
            opacity: 0.35;
        }

        .plan-btn {
            display: block;
            text-align: center;
            padding: 0.9rem;
            border-radius: 8px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .plan-btn-outline {
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.7);
            background: none;
        }

        .plan-btn-outline:hover {
            border-color: var(--red);
            color: var(--white);
            background: rgba(227, 30, 36, 0.1);
        }

        .plan-btn-solid {
            background: var(--red);
            color: var(--white);
        }

        .plan-btn-solid:hover {
            background: var(--red-dark);
            box-shadow: 0 12px 30px var(--red-glow);
        }

        /* ADD-ONS */
        .addons-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 2rem;
            letter-spacing: -0.5px;
        }

        .addons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .addon-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            padding: 1.5rem;
            transition: var(--transition);
        }

        .addon-card:hover {
            border-color: rgba(227, 30, 36, 0.25);
            transform: translateY(-3px);
        }

        .addon-icon {
            color: var(--red);
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }

        .addon-name {
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--white);
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
        }

        .addon-price {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--red);
        }

        .addon-desc {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 0.3rem;
            line-height: 1.5;
        }

        /* PRINT TABLE */
        .print-table-wrap {
            overflow-x: auto;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.07);
        }

        .print-table {
            width: 100%;
            border-collapse: collapse;
        }

        .print-table th {
            background: rgba(227, 30, 36, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 1.2rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .print-table td {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            transition: background 0.2s;
        }

        .print-table tr:hover td {
            background: rgba(227, 30, 36, 0.04);
        }

        .print-table tr:last-child td {
            border-bottom: none;
        }

        .print-table .item-name {
            color: var(--white);
            font-weight: 600;
        }

        .print-table .price-cell {
            color: var(--red);
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.1rem;
        }

        .print-badge {
            display: inline-block;
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
            padding: 0.15rem 0.5rem;
            border-radius: 4px;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-left: 0.5rem;
        }

        .print-section-label {
            background: rgba(255, 255, 255, 0.03);
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.3);
            padding: 0.7rem 1.5rem;
        }

        /* CUSTOM BUILDER */
        .custom-hero {
            text-align: center;
            margin-bottom: 4rem;
        }

        .custom-hero h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 1rem;
        }

        .custom-hero h2 span {
            color: var(--red);
        }

        .custom-hero p {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.95rem;
            line-height: 1.8;
            max-width: 500px;
            margin: 0 auto;
        }

        .custom-builder {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            overflow: hidden;
        }

        .cb-header {
            background: rgba(227, 30, 36, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 2rem 2.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cb-header-icon {
            width: 48px;
            height: 48px;
            background: rgba(227, 30, 36, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--red);
            font-size: 1.1rem;
        }

        .cb-header h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--white);
        }

        .cb-header p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .cb-body {
            padding: 2.5rem;
        }

        .cb-section-title {
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.2rem;
            margin-top: 2rem;
        }

        .cb-section-title:first-child {
            margin-top: 0;
        }

        .service-toggles {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .service-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 12px;
            padding: 1rem 1.2rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .service-toggle.selected {
            background: rgba(227, 30, 36, 0.08);
            border-color: rgba(227, 30, 36, 0.3);
        }

        .service-toggle:hover {
            border-color: rgba(227, 30, 36, 0.2);
        }

        .st-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .st-icon {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.4);
            transition: var(--transition);
        }

        .service-toggle.selected .st-icon {
            background: rgba(227, 30, 36, 0.15);
            color: var(--red);
        }

        .st-name {
            font-weight: 600;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .service-toggle.selected .st-name {
            color: var(--white);
        }

        .st-price {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.3);
        }

        .service-toggle.selected .st-price {
            color: var(--red);
        }

        .st-check {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            color: transparent;
            transition: var(--transition);
        }

        .service-toggle.selected .st-check {
            background: var(--red);
            border-color: var(--red);
            color: var(--white);
        }

        .scale-options {
            display: flex;
            gap: 0.75rem;
        }

        .scale-opt {
            flex: 1;
            text-align: center;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 10px;
            padding: 0.8rem 0.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .scale-opt.selected {
            background: rgba(227, 30, 36, 0.08);
            border-color: rgba(227, 30, 36, 0.3);
        }

        .scale-opt-name {
            font-weight: 700;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .scale-opt.selected .scale-opt-name {
            color: var(--white);
        }

        .scale-opt-desc {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.25);
            margin-top: 0.2rem;
        }

        .estimate-box {
            margin-top: 2rem;
            background: rgba(227, 30, 36, 0.06);
            border: 1px solid rgba(227, 30, 36, 0.2);
            border-radius: 14px;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .est-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 0.3rem;
        }

        .est-price {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--red);
            line-height: 1;
        }

        .est-note {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.25);
            margin-top: 0.2rem;
        }

        .est-cta {
            background: var(--red);
            color: var(--white);
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 8px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        .est-cta:hover {
            background: var(--red-dark);
            box-shadow: 0 12px 30px var(--red-glow);
        }

        .cb-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1rem;
        }

        .cb-input {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 0.85rem 1rem;
            color: var(--white);
            font-family: var(--font-main);
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s;
            width: 100%;
        }

        .cb-input:focus {
            border-color: rgba(227, 30, 36, 0.4);
        }

        .cb-input::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        .cb-textarea {
            grid-column: 1/-1;
            resize: vertical;
            min-height: 100px;
        }

        .cb-submit {
            grid-column: 1/-1;
            background: var(--red);
            color: var(--white);
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition);
        }

        .cb-submit:hover {
            background: var(--red-dark);
            box-shadow: 0 12px 30px var(--red-glow);
        }

        /* FAQ */
        .faq-section {
            padding: 60px 5% 100px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            text-align: center;
            margin-bottom: 3rem;
            letter-spacing: -0.5px;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.3rem 0;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s;
            gap: 1rem;
        }

        .faq-q:hover,
        .faq-item.open .faq-q {
            color: var(--white);
        }

        .faq-arrow {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.7rem;
            transition: var(--transition);
        }

        .faq-item.open .faq-arrow {
            background: var(--red);
            color: var(--white);
            transform: rotate(180deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .faq-a-inner {
            padding: 0 0 1.3rem;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.85;
        }

        .faq-item.open .faq-a {
            max-height: 200px;
        }

        /* CTA BANNER */
        .cta-banner {
            background: linear-gradient(135deg, rgba(227, 30, 36, 0.12), rgba(184, 24, 29, 0.06));
            border: 1px solid rgba(227, 30, 36, 0.2);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            margin: 0 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(227, 30, 36, 0.08), transparent 70%);
        }

        .cta-banner h3 {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.7rem;
            letter-spacing: -0.5px;
            position: relative;
        }

        .cta-banner p {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .cta-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }

        .btn-primary {
            background: var(--red);
            color: var(--white);
            padding: 0.9rem 2rem;
            border-radius: 8px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.88rem;
            letter-spacing: 0.5px;
            text-decoration: none;
            text-transform: uppercase;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background: var(--red-dark);
            box-shadow: 0 16px 40px var(--red-glow);
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
            padding: 0.9rem 2rem;
            border-radius: 8px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.88rem;
            letter-spacing: 0.5px;
            text-decoration: none;
            text-transform: uppercase;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-outline:hover {
            border-color: var(--red);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* RESPONSIVE */
        @media(max-width:900px) {
            .plan-grid {
                grid-template-columns: 1fr 1fr;
            }

            .addons-grid {
                grid-template-columns: 1fr 1fr;
            }

            .service-toggles {
                grid-template-columns: 1fr;
            }

            .cb-form {
                grid-template-columns: 1fr;
            }

            .cb-textarea,
            .cb-submit {
                grid-column: auto;
            }
        }

        @media(max-width:640px) {
            .plan-grid {
                grid-template-columns: 1fr;
            }

            .addons-grid {
                grid-template-columns: 1fr;
            }

            .pricing-tabs {
                overflow-x: auto;
                gap: 0;
            }

            .tab-btn {
                padding: 1rem 1.2rem;
                font-size: 0.78rem;
            }

            .estimate-box {
                flex-direction: column;
                text-align: center;
            }

            .scale-options {
                flex-wrap: wrap;
            }

            .cta-banner {
                margin: 0 0 80px;
                border-radius: 0;
            }
        }

        #pricing-tabs-anchor {
            scroll-margin-top: 2550px;
            /* Adjust this to the height of your sticky navbar */
        }

        @media (max-width: 768px),
        (max-width: 992px),
        (max-width: 1100px) {
            #pricing-tabs-anchor {
                /* If your tabs stack and become taller, increase this value */
                scroll-margin-top: 3500px;
            }
        }

        @media (min-width: 1440px),
        (min-width: 2560px) {
            #pricing-tabs-anchor {
                /* If your tabs stack and become taller, increase this value */
                scroll-margin-top: 3500px;
            }
        }