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

        :root {
            --bg: #f8f7ff;
            --bg-card: #ffffff;
            --bg-card-hover: #f4f2ff;
            --border: rgba(100, 80, 200, 0.1);
            --border-hover: rgba(124, 92, 252, 0.3);
            --text-primary: #1a1535;
            --text-secondary: #5a5470;
            --text-muted: #9b93b8;
            --accent: #7c5cfc;
            --accent-2: #fc5c7d;
            --accent-glow: rgba(124, 92, 252, 0.18);
            --accent-2-glow: rgba(252, 92, 125, 0.15);
            --gradient-hero: linear-gradient(135deg, #7c5cfc 0%, #fc5c7d 100%);
            --gradient-card-1: linear-gradient(135deg, #4f46e5, #7c3aed);
            --gradient-card-2: linear-gradient(135deg, #0ea5e9, #6366f1);
            --gradient-card-3: linear-gradient(135deg, #f59e0b, #ef4444);
            --gradient-card-4: linear-gradient(135deg, #10b981, #0ea5e9);
            --gradient-card-5: linear-gradient(135deg, #ec4899, #8b5cf6);
            --gradient-card-6: linear-gradient(135deg, #f97316, #eab308);
            --gradient-card-7: linear-gradient(135deg, #06b6d4, #3b82f6);
            --gradient-card-8: linear-gradient(135deg, #84cc16, #10b981);
            --radius: 14px;
            --radius-sm: 8px;
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg);
            color: var(--text-primary);
            min-height: 100vh;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #ede9ff; }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

        /* â”€â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
            padding: 0 24px;
            height: 64px;
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(248, 247, 255, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .nav-logo-img {
            height: 48px;
            width: auto;
            max-width: 180px;
            object-fit: contain;
            display: block;
        }

        .nav-logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: var(--gradient-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            box-shadow: 0 0 16px var(--accent-glow);
        }

        .nav-logo-text {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.3px;
        }

        .nav-logo-text span {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;margin: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            transition: color var(--transition), background var(--transition);
        }

        .nav-links a:hover {
            color: var(--text-primary);
            background: rgba(255,255,255,0.06);
        }

        .nav-search {
            flex: 1;
            max-width: 420px;
            position: relative;
        }

        .nav-search input {
            width: 100%;
            height: 38px;
            background: rgba(124, 92, 252, 0.06);
            border: 1px solid var(--border);
            border-radius: 99px;
            padding: 0 16px 0 40px;
            font-size: 13.5px;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
        }

        .nav-search input::placeholder { color: var(--text-muted); }

        .nav-search input:focus {
            border-color: var(--accent);
            background: rgba(124, 92, 252, 0.09);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }

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

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
            flex-shrink: 0;
        }

        .btn-ghost {
            padding: 7px 16px;
            border-radius: var(--radius-sm);
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-secondary);
            background: transparent;
            border: 1px solid var(--border);
            cursor: pointer;
            text-decoration: none;
            transition: color var(--transition), border-color var(--transition), background var(--transition);
        }

        .btn-ghost:hover {
            color: var(--text-primary);
            border-color: var(--border-hover);
            background: rgba(255,255,255,0.05);
        }

        .btn-primary {
            padding: 7px 18px;
            border-radius: var(--radius-sm);
            font-size: 13.5px;
            font-weight: 600;
            color: #fff;
            background: var(--gradient-hero);
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: opacity var(--transition), box-shadow var(--transition), transform var(--transition);
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .btn-primary:hover {
            opacity: 0.9;
            box-shadow: 0 0 28px var(--accent-glow);
            transform: translateY(-1px);
        }
        .hero {
            position: relative;
            padding: 80px 24px 64px;
            text-align: center;
            overflow: hidden;
        }

        .hero-bg-blobs {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.22;
            animation: floatBlob 8s ease-in-out infinite;
        }

        .blob-1 {
            width: 520px;
            height: 520px;
            background: var(--accent);
            top: -150px;
            left: 50%;
            transform: translateX(-60%);
            animation-delay: 0s;
        }

        .blob-2 {
            width: 380px;
            height: 380px;
            background: var(--accent-2);
            top: 20px;
            right: 10%;
            animation-delay: 2.5s;
        }

        .blob-3 {
            width: 300px;
            height: 300px;
            background: #0ea5e9;
            bottom: -80px;
            left: 8%;
            animation-delay: 5s;
        }

        @keyframes floatBlob {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(124, 92, 252, 0.10);
            border: 1px solid rgba(124, 92, 252, 0.25);
            border-radius: 99px;
            padding: 5px 14px;
            font-size: 12.5px;
            font-weight: 500;
            color: #a78bfa;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }

        .hero-badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #7c5cfc;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.85); }
        }

        .hero h1 {
            font-size: clamp(36px, 5.5vw, 68px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .hero h1 .highlight {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(15px, 2vw, 18px);
            color: var(--text-secondary);
            max-width: 720px;
            margin: 0 auto 36px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .hero-search {
            position: relative;
            max-width: 580px;
            margin: 0 auto;
            z-index: 1;
        }

        .hero-search input {
            width: 100%;
            height: 56px;
            background: #ffffff;
            border: 1px solid rgba(124, 92, 252, 0.18);
            border-radius: 99px;
            padding: 0 160px 0 56px;
            font-size: 15px;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .hero-search input::placeholder { color: var(--text-muted); }

        .hero-search input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px var(--accent-glow);
        }

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

        .hero-search-btn {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            height: 40px;
            padding: 0 22px;
            border-radius: 99px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--gradient-hero);
            border: none;
            cursor: pointer;
            transition: opacity var(--transition);
        }

        .hero-search-btn:hover { opacity: 0.88; }

        .hero-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin-top: 56px;
            position: relative;
            z-index: 1;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-num {
            font-size: 26px;
            font-weight: 800;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .hero-stat-label {
            font-size: 12.5px;
            color: var(--text-muted);
            margin-top: 2px;
            font-weight: 500;
        }

        .hero-stat-divider {
            width: 1px;
            height: 36px;
            background: var(--border);
        }

        /* â”€â”€â”€ SECTION COMMON â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .section {
            padding: 80px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Tools section uses Bootstrap .container for same width as Bootstrap container */
        .section--tools {
            max-width: none;
            padding-left: 0;
            padding-right: 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 52px;
        }

        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(26px, 3.5vw, 40px);
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 520px;
            margin: 0 auto;
        }

        /* â”€â”€â”€ CATEGORY FILTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .category-filter {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .cat-btn {
            padding: 7px 18px;
            border-radius: 99px;
            font-size: 13.5px;
            font-weight: 500;
            background: #ffffff;
            border: 1px solid rgba(124, 92, 252, 0.15);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .cat-btn:hover, .cat-btn.active {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
            box-shadow: 0 0 16px var(--accent-glow);
        }

        /* â”€â”€â”€ TOOLS GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 20px;
        }

        .tool-card {
            position: relative;
            background: var(--bg-card);
            border: 1px solid rgba(124, 92, 252, 0.1);
            border-radius: var(--radius);
            padding: 24px;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            gap: 14px;
            cursor: pointer;
            transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(100, 80, 200, 0.06);
        }

        .tool-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .tool-card:hover {
            border-color: var(--border-hover);
            background: var(--bg-card-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(124, 92, 252, 0.14);
        }

        .tool-card-glow {
            position: absolute;
            top: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .tool-card:hover .tool-card-glow { opacity: 0.4; }

        .tool-card-icon-wrap {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .tool-card-icon-wrap .tool-card-icon-img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            border-radius: 6px;
        }

        .tool-card-icon-letter {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            line-height: 1;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
        }

        .tools-grid-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 2.5rem 1rem;
            color: var(--text-muted);
            font-size: 15px;
        }

        .tool-card-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
        }

        .tool-card-badge {
            font-size: 11px;
            font-weight: 600;
            padding: 3px 9px;
            border-radius: 99px;
            flex-shrink: 0;
        }

        .badge-new {
            background: rgba(124,92,252,0.15);
            color: #a78bfa;
            border: 1px solid rgba(124,92,252,0.25);
        }

        .badge-hot {
            background: rgba(252,92,125,0.15);
            color: #fb7185;
            border: 1px solid rgba(252,92,125,0.25);
        }

        .badge-free {
            background: rgba(16,185,129,0.12);
            color: #34d399;
            border: 1px solid rgba(16,185,129,0.22);
        }

        .tool-card-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.2px;
        }

        .tool-card-desc {
            font-size: 13.5px;
            color: var(--text-secondary);
            line-height: 1.55;
            flex: 1;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
            height: 4.5em;
            min-height: 4.5em;margin-bottom: 0.5rem;
        }

        .tool-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            border-top: 1px solid var(--border);
            padding-top: 14px;
        }

        .tool-card-tag {
            font-size: 11.5px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .tool-card-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(124, 92, 252, 0.07);
            color: var(--text-muted);
            transition: background var(--transition), color var(--transition);
        }

        .tool-card:hover .tool-card-arrow {
            background: var(--accent);
            color: #fff;
        }

        /* â”€â”€â”€ VIEW ALL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .view-all-wrap {
            text-align: center;
            margin-top: 44px;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 28px;
            border-radius: var(--radius-sm);
            font-size: 14.5px;
            font-weight: 600;
            color: var(--text-primary);
            background: transparent;
            border: 1px solid var(--border);
            cursor: pointer;
            text-decoration: none;
            transition: all var(--transition);
        }

        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: 0 0 20px var(--accent-glow);
        }

        /* â”€â”€â”€ FEATURES STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .features-strip {
            background: #fff;
            border-top: 1px solid rgba(124, 92, 252, 0.1);
            border-bottom: 1px solid rgba(124, 92, 252, 0.1);
            padding: 48px 24px;
        }

        .features-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 4px;
        }

        .feature-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .feature-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* â”€â”€â”€ NEWSLETTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .newsletter-section {
            padding: 80px 24px;
        }

        .newsletter-card {
            max-width: 980px;
            margin: 0 auto;
            background: linear-gradient(130deg, #ffffff 0%, #f7f5ff 100%);
            border: 1px solid rgba(124, 92, 252, 0.16);
            border-radius: 28px;
            padding: 58px 52px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(56, 37, 120, 0.12);
        }

        .newsletter-card::before {
            content: '';
            position: absolute;
            top: -70px;
            left: 50%;
            transform: translateX(-50%);
            width: 520px;
            height: 250px;
            background: var(--gradient-hero);
            filter: blur(92px);
            opacity: 0.16;
            pointer-events: none;
        }

        .newsletter-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            background: rgba(124,92,252,0.12);
            border: 1px solid rgba(124,92,252,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 24px;
            position: relative;
            z-index: 1;
        }

        .newsletter-card #newsletter-heading {
            font-size: 34px;
            font-weight: 800;
            letter-spacing: -0.9px;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
            color: #17142a;
            line-height: 1.15;
        }

        .newsletter-card p {
            color: var(--text-secondary);
            font-size: 16px;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .newsletter-form {
            display: grid;
            grid-template-columns: minmax(170px, 1fr) minmax(220px, 1.3fr) auto;
            gap: 12px;
            max-width: 760px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            align-items: center;
        }

        .newsletter-form input {
            height: 52px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(124, 92, 252, 0.2);
            border-radius: 14px;
            padding: 0 17px;
            font-size: 15px;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
        }

        .newsletter-form input::placeholder { color: var(--text-muted); }

        .newsletter-form input:focus {
            border-color: var(--accent);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(124, 92, 252, 0.15);
        }

        .newsletter-form button {
            height: 52px;
            padding: 0 26px;
            border-radius: 14px;
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            background: var(--gradient-hero);
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
            box-shadow: 0 10px 26px rgba(124, 92, 252, 0.28);
        }

        .newsletter-form button:hover {
            opacity: 0.9;
            transform: translateY(-1px);
            box-shadow: 0 14px 30px rgba(124, 92, 252, 0.34);
        }

        .newsletter-note {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 14px;
            position: relative;
            z-index: 1;
        }

        /* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        footer {
            background: #f0eeff;
            border-top: 1px solid rgba(124, 92, 252, 0.12);
            padding: 60px 24px 28px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.4fr repeat(3, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }

        .footer-brand p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.65;
            max-width: 240px;
            margin-bottom: 20px;
        }

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

        .social-link {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: #ffffff;
            border: 1px solid rgba(124, 92, 252, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all var(--transition);
        }

        .social-link:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
            transform: translateY(-2px);
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .footer-col ul { list-style: none; }

        .footer-col ul li { margin-bottom: 10px; }

        .footer-col ul li a {
            font-size: 13.5px;
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover { color: var(--text-primary); }

        .footer-bottom {
            border-top: 1px solid rgba(124, 92, 252, 0.12);
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-bottom p {
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-bottom p a {
            color: var(--accent);
            text-decoration: none;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

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

        .footer-bottom-links a:hover { color: var(--text-primary); }

        /* â”€â”€â”€ HAMBURGER (mobile) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .nav-hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 4px;
        }

        /* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        @media (max-width: 900px) {
            .nav-links { display: none; }
            .nav-hamburger { display: flex; }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 620px) {
            .navbar { padding: 0 16px; gap: 12px; }
            .nav-search { max-width: none; }
            .nav-logo-text { display: none; }

            .hero { padding: 64px 16px 56px; }
            .hero-stats { gap: 24px; flex-wrap: wrap; }

            .section { padding: 56px 16px; }

            .newsletter-card { padding: 36px 22px; }
            .newsletter-card #newsletter-heading {
                font-size: 28px;
            }
            .newsletter-form {
                grid-template-columns: 1fr;
            }
            .newsletter-form button { height: 48px; }

            .footer-top { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }

        /* â”€â”€â”€ ANIMATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .animate-in {
            animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .delay-1 { animation-delay: 0.08s; }
        .delay-2 { animation-delay: 0.16s; }
        .delay-3 { animation-delay: 0.24s; }
        .delay-4 { animation-delay: 0.32s; }
