        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg: #020205;
            --bg-elevated: #060610;
            --bg-card: rgba(8, 10, 22, 0.65);
            --bg-glass: rgba(12, 14, 28, 0.55);
            --bg-heavy: rgba(4, 4, 8, 0.94);
            --border: rgba(255, 255, 255, 0.09);
            --border-hover: rgba(0, 240, 252, 0.4);
            --border-active: rgba(0, 242, 254, 0.65);
            --cyan: #00f0fc;
            --cyan-dim: rgba(0, 240, 252, 0.18);
            --purple: #7c3aed;
            --purple-dim: rgba(124, 58, 237, 0.18);
            --teal: #14b8a6;
            --gold: #f59e0b;
            --green: #10b981;
            --red: #ef4444;
            --pink: #ec4899;
            --text: #f0f0f5;
            --text-2: rgba(240, 240, 245, 0.78);
            --text-3: rgba(240, 240, 245, 0.45);
            --font-h: 'Space Grotesk', sans-serif;
            --font-b: 'Inter', sans-serif;
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --glow-color: rgba(0, 240, 252, 0.08);
            --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.75);
            --section-glow: 0 0 60px rgba(0, 240, 252, 0.04);
        }
        /* ===== LIGHT THEME ===== */
        body.light-theme {
            --bg: #1c140c;
            --bg-elevated: #281c10;
            --bg-card: rgba(36, 24, 12, 0.82);
            --bg-glass: rgba(45, 30, 15, 0.75);
            --bg-heavy: rgba(24, 16, 8, 0.96);
            --border: rgba(255, 170, 50, 0.28);
            --border-hover: rgba(255, 180, 60, 0.65);
            --border-active: rgba(255, 190, 80, 0.85);
            --cyan: #ffaa33;
            --cyan-dim: rgba(255, 170, 51, 0.22);
            --purple: #ff7700;
            --purple-dim: rgba(255, 119, 0, 0.22);
            --text: #ffffff;
            --text-2: rgba(255, 255, 255, 0.90);
            --text-3: rgba(255, 255, 255, 0.70);
            --glow-color: rgba(255, 170, 51, 0.25);
            --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.60);
            --section-glow: 0 0 40px rgba(255, 170, 51, 0.15);
        }
        body.light-theme .s-title,
        body.light-theme h1,
        body.light-theme h2,
        body.light-theme h3,
        body.light-theme h4,
        body.light-theme h5,
        body.light-theme h6 {
            color: #ffffff;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 170, 51, 0.4);
        }
        body.light-theme p, 
        body.light-theme span {
            color: rgba(255, 255, 255, 0.92);
        }
        body.light-theme .s-desc, 
        body.light-theme .hero-sub {
            color: rgba(255, 255, 255, 0.94);
            background: rgba(36, 24, 12, 0.82);
            border: 1px solid rgba(255, 170, 50, 0.3);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
        }
        body.light-theme .text-gradient {
            background: linear-gradient(135deg, #ffe066, #ff8800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
        }
        body.light-theme .hero-badge {
            background: rgba(255, 170, 50, 0.22);
            border-color: rgba(255, 170, 50, 0.45);
            color: #ffdd66;
            text-shadow: 0 0 10px rgba(255, 170, 50, 0.6);
        }
        body.light-theme .hero-badge .pulse-dot {
            background: #ffaa33;
            box-shadow: 0 0 10px #ffaa33;
        }
        /* Footer & Light Background Dark Text Rules */
        body.light-theme .site-footer {
            background: #eae2d6;
            border-top: 1px solid rgba(80, 60, 40, 0.2);
        }
        body.light-theme .site-footer,
        body.light-theme .site-footer p,
        body.light-theme .site-footer span,
        body.light-theme .site-footer h5,
        body.light-theme .footer-bottom p,
        body.light-theme .legal-links a {
            color: #1a140e !important;
            text-shadow: none !important;
        }
        body.light-theme .site-footer a {
            color: #2b1f14 !important;
        }
        body.light-theme .site-footer a:hover {
            color: #d47700 !important;
        }
        body.light-theme .footer-input {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(80, 60, 40, 0.3);
            color: #1a140e;
        }
        body.light-theme .marquee-item {
            color: #1a140e !important;
            text-shadow: none !important;
        }
        html {
            scroll-behavior: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.12) var(--bg);
        }
        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--font-b);
            font-size: 16px;
            line-height: 1.65;
            overflow-x: hidden;
            cursor: none;
            transition: background 0.6s var(--ease-out), color 0.6s var(--ease-out);
        }
        ::selection {
            background: rgba(0, 240, 252, 0.25);
            color: #fff;
        }
        body.light-theme ::selection {
            background: rgba(212, 135, 42, 0.30);
            color: #1a1612;
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--cyan);
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* ===== CURSOR ===== */
        .cursor-dot {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--cyan);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            mix-blend-mode: difference;
            transition: transform 0.1s;
        }
        .cursor-ring {
            position: fixed;
            width: 42px;
            height: 42px;
            border: 1.5px solid rgba(0, 240, 252, 0.5);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99998;
            transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
        }
        body.light-theme .cursor-ring {
            border-color: rgba(212, 135, 42, 0.5);
        }
        .cursor-ring.hovered {
            width: 64px;
            height: 64px;
            border-color: var(--cyan);
            background: rgba(0, 240, 252, 0.08);
        }
        body.light-theme .cursor-ring.hovered {
            background: rgba(212, 135, 42, 0.10);
            border-color: var(--cyan);
        }

        /* ===== HEADER ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            z-index: 9000;
            display: flex;
            align-items: center;
            transition: all 0.5s var(--ease-out);
        }
        .site-header.scrolled {
            height: 65px;
            background: var(--bg-heavy);
            backdrop-filter: blur(28px) saturate(180%);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        }
        body.light-theme .site-header.scrolled {
            background: var(--bg-heavy);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
        .header-inner {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: var(--font-h);
            font-weight: 800;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 100;
            color: var(--text);
        }
        .logo-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            box-shadow: 0 0 20px rgba(0, 240, 252, 0.4);
            position: relative;
            transition: transform 0.4s var(--ease-out);
        }
        .logo:hover .logo-icon {
            transform: rotate(45deg) scale(1.1);
        }
        .logo-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: var(--bg);
            border-radius: 2px;
        }
        .logo-text-accent {
            background: linear-gradient(135deg, var(--cyan), #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        body.light-theme .logo-text-accent {
            background: linear-gradient(135deg, #d4872a, #b06a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 1.8rem;
        }
        .nav a {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-2);
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }
        .nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--cyan), var(--purple));
            transition: all 0.4s var(--ease-out);
            transform: translateX(-50%);
        }
        .nav a:hover {
            color: var(--text);
        }
        .nav a:hover::after {
            width: 100%;
        }
        .nav a.active {
            color: var(--text);
        }
        .nav a.active::after {
            width: 100%;
        }

        .header-btns {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.7rem 1.6rem;
            border-radius: 22px;
            font-family: var(--font-b);
            font-weight: 600;
            font-size: 0.88rem;
            cursor: pointer;
            transition: all 0.4s var(--ease-out);
            position: relative;
            overflow: hidden;
            border: none;
            background: var(--bg-card);
            color: var(--text);
            backdrop-filter: blur(16px);
        }
        .btn-outline {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            color: var(--text);
            backdrop-filter: blur(16px);
        }
        .btn-outline:hover {
            border-color: var(--cyan);
            box-shadow: 0 0 20px rgba(0, 240, 252, 0.2);
            transform: translateY(-2px);
        }
        .btn-glow {
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            color: var(--bg-elevated);
            font-weight: 700;
            box-shadow: 0 6px 25px rgba(0, 240, 252, 0.3);
        }
        body.light-theme .btn-glow {
            background: linear-gradient(135deg, #d4872a, #b06a3a);
            color: #f2ede4;
            box-shadow: 0 6px 25px rgba(212, 135, 42, 0.3);
        }
        .btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }
        .btn-glow:hover::before {
            left: 100%;
        }
        .btn-glow:hover {
            box-shadow: 0 12px 35px rgba(0, 240, 252, 0.5);
            transform: translateY(-3px);
        }
        body.light-theme .btn-glow:hover {
            box-shadow: 0 12px 35px rgba(212, 135, 42, 0.5);
        }

        /* ===== THEME TOGGLE ===== */
        .theme-toggle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: var(--bg-card);
            color: var(--text);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s var(--ease-out);
            backdrop-filter: blur(16px);
        }
        .theme-toggle:hover {
            border-color: var(--cyan);
            transform: rotate(20deg) scale(1.05);
            box-shadow: 0 0 20px rgba(0, 240, 252, 0.15);
        }
        body.light-theme .theme-toggle:hover {
            border-color: #d4872a;
            box-shadow: 0 0 20px rgba(212, 135, 42, 0.2);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.4rem;
            cursor: pointer;
            z-index: 100;
        }

        /* ===== PAGE WRAPPER ===== */
        #pageWrapper {
            position: relative;
            z-index: 10;
            width: 100%;
        }
        section {
            min-height: 100vh;
            padding: 120px 0 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
            overflow: visible;
        }
        .wrap {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2.5rem;
            position: relative;
            z-index: 20;
        }

        /* ===== SECTION HEADER ===== */
        .s-header {
            max-width: 820px;
            margin: 0 auto 4.5rem;
            text-align: center;
            position: relative;
            z-index: 5;
            backdrop-filter: blur(20px) saturate(160%);
            padding: 1.5rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            transition: border-color 0.6s, background 0.6s;
            background: var(--bg-card);
        }
        .s-tag {
            font-family: var(--font-h);
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--cyan);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 0.8rem;
            display: inline-block;
            transition: color 0.6s;
        }
        .s-title {
            font-family: var(--font-h);
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -0.5px;
            margin-bottom: 1.2rem;
            perspective: 1000px;
            color: #ffffff;
            transition: color 0.6s;
            text-shadow: 0 4px 18px rgba(0, 0, 0, 0.95), 0 0 30px var(--glow-color);
        }
        body.light-theme .s-title {
            text-shadow: 0 4px 18px rgba(0, 0, 0, 0.95), 0 0 30px rgba(255, 170, 51, 0.4);
        }
        .s-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.92);
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
            transition: color 0.6s;
        }

        .word-3d {
            display: inline-block;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateX(-80deg) translateY(40px);
            opacity: 0;
            transition: transform 0.8s var(--ease-out), opacity 0.8s ease;
        }
        .word-3d.visible {
            transform: perspective(1000px) rotateX(0deg) translateY(0);
            opacity: 1;
        }

        .diag-reveal {
            opacity: 0;
            transform: perspective(1200px) translate3d(80px, 80px, -40px) rotateX(10deg) rotateY(-10deg);
            transition: transform 0.85s var(--ease-out), opacity 0.85s ease;
        }
        .diag-reveal.visible {
            opacity: 1;
            transform: perspective(1200px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
        }

        .bg-watermark {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            font-family: var(--font-h);
            font-size: 14vw;
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(0, 240, 252, 0.05);
            white-space: nowrap;
            pointer-events: none;
            z-index: 1;
            user-select: none;
            transition: -webkit-text-stroke-color 0.6s;
        }
        body.light-theme .bg-watermark {
            -webkit-text-stroke-color: rgba(212, 135, 42, 0.08);
        }

        .tilt-card {
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: blur(28px) saturate(180%);
            -webkit-backdrop-filter: blur(28px) saturate(180%);
            box-shadow: var(--shadow-heavy);
            transform-style: preserve-3d;
            transition: border-color 0.4s, box-shadow 0.4s, background 0.6s;
        }
        .tilt-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            opacity: 0.6;
            border-radius: 2px;
            pointer-events: none;
            transition: background 0.6s;
        }
        body.light-theme .tilt-card::after {
            background: linear-gradient(90deg, transparent, #d4872a, transparent);
        }
        .tilt-card:hover {
            border-color: var(--border-hover);
            box-shadow: 0 25px 60px rgba(0, 240, 252, 0.15);
        }
        body.light-theme .tilt-card:hover {
            box-shadow: 0 25px 60px rgba(212, 135, 42, 0.12);
        }

        .float-bob {
            animation: floatBob 3.5s ease-in-out infinite alternate;
        }
        @keyframes floatBob {
            0% {
                transform: translateY(0px);
            }
            100% {
                transform: translateY(-10px);
            }
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #010103;
            border-top: 1px solid var(--border);
            padding: 5rem 0 2.5rem;
            position: relative;
            z-index: 10;
            transition: background 0.6s, border-color 0.6s;
        }
        body.light-theme .site-footer {
            background: #e8e0d4;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.3fr 0.85fr 0.85fr 1fr;
            gap: 3.5rem;
            margin-bottom: 3.5rem;
        }
        .footer-col h5 {
            font-family: var(--font-h);
            font-size: 0.92rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.2rem;
            color: var(--text);
            transition: color 0.6s;
        }
        .footer-col p {
            color: var(--text-2);
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            transition: color 0.6s;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: 0.85rem;
            color: var(--text-3);
            transition: all 0.3s, color 0.6s;
        }
        .footer-links a:hover {
            color: var(--cyan);
            padding-left: 5px;
        }
        body.light-theme .footer-links a:hover {
            color: #d4872a;
        }
        .social-row {
            display: flex;
            gap: 8px;
            margin-top: 1.2rem;
        }
        .social-circle {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-2);
            font-size: 0.9rem;
            transition: all 0.4s var(--ease-out), border-color 0.6s, background 0.6s, color 0.6s;
        }
        .social-circle:hover {
            color: var(--bg);
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 0 15px rgba(0, 240, 252, 0.4);
        }
        body.light-theme .social-circle:hover {
            background: linear-gradient(135deg, #d4872a, #b06a3a);
            box-shadow: 0 0 15px rgba(212, 135, 42, 0.3);
            color: #f2ede4;
        }
        .footer-newsletter {
            display: flex;
            gap: 6px;
        }
        .footer-input {
            flex-grow: 1;
            padding: 9px 16px;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.015);
            color: var(--text);
            font-size: 0.85rem;
            outline: none;
            transition: border-color 0.3s, background 0.6s, color 0.6s;
        }
        body.light-theme .footer-input {
            background: rgba(0, 0, 0, 0.03);
            color: #1a1612;
        }
        .footer-input:focus {
            border-color: var(--cyan);
        }
        .footer-send {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border: none;
            color: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s, background 0.6s;
        }
        body.light-theme .footer-send {
            background: linear-gradient(135deg, #d4872a, #b06a3a);
            color: #f2ede4;
        }
        .footer-send:hover {
            box-shadow: 0 0 15px rgba(0, 240, 252, 0.4);
            transform: scale(1.08);
        }
        body.light-theme .footer-send:hover {
            box-shadow: 0 0 15px rgba(212, 135, 42, 0.4);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 1.8rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            color: var(--text-3);
            transition: border-color 0.6s, color 0.6s;
        }
        body.light-theme .footer-bottom {
            border-top-color: rgba(0, 0, 0, 0.06);
        }
        .legal-links {
            display: flex;
            gap: 1.8rem;
        }
        .legal-links a {
            color: var(--text-3);
            transition: color 0.3s, color 0.6s;
        }
        .legal-links a:hover {
            color: var(--cyan);
        }
        body.light-theme .legal-links a:hover {
            color: #d4872a;
        }

        .footer-marquee {
            overflow: hidden;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 0.8rem 0;
            margin-bottom: 3.5rem;
            transition: border-color 0.6s;
        }
        .marquee-track {
            display: flex;
            gap: 3.5rem;
            animation: marqueeScroll 25s linear infinite;
            white-space: nowrap;
            width: max-content;
        }
        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        .marquee-item {
            font-family: var(--font-h);
            font-size: 1.4rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.04);
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.6s;
        }
        body.light-theme .marquee-item {
            color: rgba(0, 0, 0, 0.06);
        }
        .marquee-item .dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--cyan);
            border-radius: 50%;
            margin: 0 1.5rem;
            vertical-align: middle;
            box-shadow: 0 0 6px var(--cyan);
            transition: background 0.6s, box-shadow 0.6s;
        }
        body.light-theme .marquee-item .dot {
            background: #d4872a;
            box-shadow: 0 0 6px rgba(212, 135, 42, 0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media(max-width:1024px) {
            .inventory-layout,
            .leads-layout,
            .visits-layout,
            .follow-grid,
            .analytics-layout,
            .customer-layout,
            .builder-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 440px;
                margin: 0 auto;
            }
            .footer-top {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
        }
        @media(max-width:768px) {
            body {
                cursor: auto;
            }
            .cursor-dot,
            .cursor-ring {
                display: none;
            }
            .nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--bg-heavy);
                backdrop-filter: blur(25px);
                flex-direction: column;
                padding: 3rem;
                gap: 2rem;
                transform: translateX(100%);
                transition: transform 0.5s var(--ease-out);
                border-top: 1px solid var(--border);
            }
            body.light-theme .nav {
                background: var(--bg-heavy);
            }
            .nav.open {
                transform: translateX(0);
            }
            .mobile-toggle {
                display: block;
            }
            .header-btns .btn {
                display: none;
            }
            .header-btns .theme-toggle {
                display: flex;
            }
                flex-direction: column;
                gap: 1rem;
            }
                grid-template-columns: repeat(4, 1fr);
            }
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
                height: auto;
                overflow: visible;
            }
                flex-direction: column;
                width: 100%;
                padding: 0;
            }
                width: 100%;
                max-width: none;
                height: auto;
            }
            .theme-toggle {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
    </style>
