        :root {
            --bg: #050608;
            --surface: #0e1116;
            --surface2: #161a22;
            --border: rgba(255, 255, 255, 0.05);
            --accent: #ff6b1a;
            --accent2: #ff8c4a;
            --gold: #ffcc33;
            --text: #ffffff;
            --muted: #808b9e;
            --muted2: #a4b1c5;
            --success: #10b981;
            --glass: rgba(14, 17, 22, 0.7);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Be Vietnam Pro', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Noise Overlay */
        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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: .4;
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 0 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            background: var(--glass);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -1px;
            text-decoration: none;
            color: white;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        nav a {
            color: var(--muted2);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all .2s ease;
        }

        nav a:hover {
            color: var(--text);
        }

        .nav-cta {
            background: var(--accent);
            color: #fff !important;
            padding: 12px 24px;
            border-radius: 100px;
            font-weight: 600 !important;
        }

        /* BLOG HERO */
        .blog-hero {
            padding: 200px 80px 100px;
            text-align: center;
            background: radial-gradient(circle at 50% 0%, rgba(255, 107, 26, 0.05), transparent 70%);
        }

        .blog-hero h1 {
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 800;
            letter-spacing: -2px;
            margin-bottom: 20px;
        }

        .blog-hero p {
            color: var(--muted2);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* FILTERS & SEARCH */
        .blog-controls {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            margin-top: 30px;
        }

        .category-tabs {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 8px;
        }

        .category-tabs::-webkit-scrollbar {
            height: 0;
        }

        .tab {
            padding: 10px 24px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 100px;
            color: var(--muted2);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s;
        }

        .tab:hover {
            border-color: var(--accent);
            color: var(--text);
        }

        .tab.active {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .search-box {
            position: relative;
            width: 300px;
        }

        .search-box input {
            width: 100%;
            padding: 12px 20px 12px 48px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 100px;
            color: white;
            font-family: inherit;
            outline: none;
            transition: all 0.3s;
        }

        .search-box input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 20px rgba(255, 107, 26, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--muted);
            pointer-events: none;
        }

        /* BLOG GRID */
        .blog-section {
            padding: 0 80px 100px;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .blog-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
            transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
        }

        .blog-card:hover {
            border-color: rgba(255, 107, 26, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
        }

        .blog-img {
            height: 220px;
            overflow: hidden;
            background: #111;
            position: relative;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }

        .card-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent);
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-content {
            padding: 28px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .blog-meta {
            font-size: 12px;
            color: var(--muted);
            font-weight: 500;
            margin-bottom: 12px;
            display: flex;
            gap: 12px;
        }

        .blog-title {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 16px;
            color: var(--text);
        }

        .blog-excerpt {
            font-size: 14px;
            color: var(--muted2);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .blog-link {
            margin-top: auto;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* PAGINATION */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 60px;
        }

        .page-num {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--muted2);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .page-num:hover {
            border-color: var(--accent);
            color: var(--text);
        }

        .page-num.active {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .page-arrow {
            padding: 0 16px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--muted2);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .page-arrow:hover {
            border-color: var(--accent);
            color: var(--text);
        }

        /* FOOTER */
        /* ─── FOOTER REDESIGN ─── */
        footer {
            background: var(--surface);
            border-top: 1px solid var(--border);
            padding: 100px 0 0;
            position: relative;
            z-index: 10;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 80px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-col h4 {
            color: var(--text);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 30px;
            height: 2px;
            background: var(--accent);
        }

        .footer-logo {
            font-weight: 800;
            font-size: 26px;
            letter-spacing: -1px;
            margin-bottom: 24px;
        }

        .footer-logo span {
            color: var(--accent);
        }

        .brand-desc {
            color: var(--muted2);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--surface2);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted2);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 700;
            font-size: 12px;
        }

        .social-link:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--muted2);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            gap: 12px;
            color: var(--muted2);
            font-size: 15px;
        }

        .contact-icon {
            color: var(--accent);
        }

        .footer-legal {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-legal a {
            color: var(--muted);
            font-size: 13px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 30px 0;
            border-top: 1px solid var(--border);
        }

        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--muted);
            font-size: 14px;
        }

        .back-to-top {
            color: var(--muted2);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .back-to-top:hover {
            color: var(--accent);
        }

        /* Floating Call Button */
        .floating-call {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            z-index: 1001;
            box-shadow: 0 8px 32px rgba(255, 107, 26, 0.4);
            animation: pulse-orange 2s infinite;
        }

        @keyframes pulse-orange {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.7);
            }

            70% {
                box-shadow: 0 0 0 20px rgba(255, 107, 26, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 26, 0);
            }
        }

        .mobile-bottom-nav {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            height: 72px;
            background: rgba(14, 17, 22, 0.85);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            display: none;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--muted);
            text-decoration: none;
            gap: 4px;
            flex: 1;
        }

        .nav-item svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

        .nav-item span {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .nav-item.active {
            color: var(--accent);
        }

        @media (max-width: 1024px) {

            nav,
            .blog-hero,
            .blog-controls,
            .blog-section {
                padding-left: 40px;
                padding-right: 40px;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
                padding: 0 40px;
            }

            .footer-bottom-container {
                padding: 0 40px;
            }

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

        @media (max-width: 768px) {
            .blog-controls {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .search-box {
                width: 100%;
            }
        }

        @media (max-width: 640px) {

            nav,
            .blog-hero,
            .blog-controls,
            .blog-section {
                padding-left: 24px;
                padding-right: 24px;
            }

            .nav-links {
                display: none;
            }

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

            .mobile-bottom-nav {
                display: flex;
            }

            .floating-call {
                bottom: 110px;
                right: 20px;
                width: 52px;
                height: 52px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                padding: 0 24px;
                gap: 48px;
            }

            .footer-bottom-container {
                padding: 0 24px;
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            footer {
                padding-top: 60px;
            }
        }
