 
        /* ===== RESET & BASE ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --primary: #6C3EFF;
            --primary-dark: #5328E0;
            --primary-light: #8B65FF;
            --primary-bg: #F5F0FF;
            --accent: #00D9A5;
            --accent-dark: #00B88A;
            --dark: #0D0D1A;
            --dark-2: #1A1A2E;
            --text: #2D2D4E;
            --text-muted: #6B7280;
            --border: #E5E7EB;
            --white: #FFFFFF;
            --bg-light: #F9FAFB;
            --bg-card: #FFFFFF;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow: 0 4px 24px rgba(108, 62, 255, 0.10);
            --shadow-md: 0 8px 40px rgba(108, 62, 255, 0.15);
            --transition: 0.25s ease;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        ul { list-style: none; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-pad { padding: 96px 0; }
        .section-pad-sm { padding: 64px 0; }

        /* ===== BADGES ===== */
        .badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-bg);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 100px;
            border: 1px solid rgba(108,62,255,0.2);
            margin-bottom: 20px;
        }
        .badge-pill .dot {
            width: 7px; height: 7px;
            background: var(--accent);
            border-radius: 50%;
            display: inline-block;
        }

        /* ===== HEADINGS ===== */
        .section-heading { font-size: 42px; font-weight: 800; line-height: 1.2; color: var(--dark); }
        .section-heading span { color: var(--primary); }
        .section-sub { font-size: 18px; color: var(--text-muted); margin: 16px auto; max-width: 580px; }
        .text-center .section-sub { margin-left: auto; margin-right: auto; }

        /* ===== BUTTONS ===== */
        .btn-primary-lp {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--white);
            font-size: 16px;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(108,62,255,0.35);
        }
        .btn-primary-lp:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,62,255,0.45); color: var(--white); }

        .btn-outline-lp {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--primary);
            font-size: 16px;
            font-weight: 600;
            padding: 13px 32px;
            border-radius: 100px;
            border: 2px solid var(--primary);
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-outline-lp:hover { background: var(--primary); color: var(--white); }

        .btn-ghost-lp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text);
            font-size: 15px;
            font-weight: 600;
            padding: 12px 20px;
            border-radius: 100px;
            transition: var(--transition);
        }
        .btn-ghost-lp:hover { color: var(--primary); }
        .btn-ghost-lp svg { transition: var(--transition); }
        .btn-ghost-lp:hover svg { transform: translateX(4px); }

        /* ===== TOPBAR ===== */
        .lp-topbar {
            background: linear-gradient(90deg, var(--primary), var(--accent-dark));
            color: var(--white);
            text-align: center;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 500;
        }
        .lp-topbar a { color: var(--white); text-decoration: underline; }

        /* ===== NAVBAR ===== */
        .lp-navbar {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow 0.3s;
        }
        .lp-navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .navbar-logo img { height: 66px; width: auto; }
        .navbar-logo .logo-text {
            font-size: 22px;
            font-weight: 800;
            color: var(--dark);
        }
        .navbar-logo .logo-text span { color: var(--primary); }

        .navbar-menu {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .navbar-menu a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .navbar-menu a:hover { color: var(--primary); background: var(--primary-bg); }

        .navbar-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .navbar-actions .btn-login {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            padding: 9px 20px;
            border-radius: 100px;
            transition: var(--transition);
        }
        .navbar-actions .btn-login:hover { color: var(--primary); }
        .navbar-actions .btn-cta {
            font-size: 15px;
            font-weight: 600;
            color: var(--white);
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            padding: 10px 24px;
            border-radius: 100px;
            transition: var(--transition);
            box-shadow: 0 4px 14px rgba(108,62,255,0.3);
        }
        .navbar-actions .btn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(108,62,255,0.4); color: var(--white); }

        /* Mobile hamburger */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }
        .nav-hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* Mobile Menu */
        .mobile-nav {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: var(--white);
            padding: 32px 24px;
        }
        .mobile-nav.open { display: flex; flex-direction: column; }
        .mobile-nav-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .mobile-nav-close {
            font-size: 28px;
            cursor: pointer;
            color: var(--text);
            line-height: 1;
        }
        .mobile-nav-links { display: flex; flex-direction: column; gap: 8px; flex: 1; }
        .mobile-nav-links a {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            padding: 14px 16px;
            border-radius: var(--radius-sm);
            border-bottom: 1px solid var(--border);
        }
        .mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
        .mobile-nav-actions a { text-align: center; }

        /* ===== HERO ===== */
        .lp-hero {
            background: linear-gradient(160deg, #F5F0FF 0%, #EDF2FF 50%, #F0FDF9 100%);
            padding: 100px 0 80px;
            overflow: hidden;
            position: relative;
        }
        .lp-hero::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(108,62,255,0.12) 0%, transparent 70%);
            border-radius: 50%;
        }
        .lp-hero::after {
            content: '';
            position: absolute;
            bottom: -150px; left: -150px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(0,217,165,0.10) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content { }
        .hero-title {
            font-size: 54px;
            font-weight: 900;
            line-height: 1.1;
            color: var(--dark);
            letter-spacing: -1.5px;
        }
        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-desc {
            font-size: 18px;
            color: var(--text-muted);
            margin-top: 20px;
            line-height: 1.7;
        }
        .hero-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 36px;
            flex-wrap: wrap;
        }
        .hero-trust {
            margin-top: 48px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hero-trust-avatars {
            display: flex;
        }
        .hero-trust-avatars .av {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border: 2px solid var(--white);
            margin-left: -10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 12px;
            font-weight: 700;
        }
        .hero-trust-avatars .av:first-child { margin-left: 0; }
        .hero-trust-text { font-size: 14px; color: var(--text-muted); }
        .hero-trust-text strong { color: var(--text); }

        .hero-visual {
            position: relative;
        }
        .hero-dashboard {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 24px 64px rgba(108,62,255,0.15);
            overflow: hidden;
            border: 1px solid var(--border);
        }
        .hero-dashboard img { width: 100%; display: block; }
        .hero-dashboard-placeholder {
            background: linear-gradient(160deg, #EDE9FF 0%, #E0F2FE 100%);
            height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-dashboard-placeholder .icon-wrap {
            width: 80px; height: 80px;
            background: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-badge {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius-sm);
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hero-badge .b-icon {
            width: 36px; height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .hero-badge .b-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
        .hero-badge .b-value { font-size: 15px; font-weight: 700; color: var(--dark); }
        .hero-badge-1 { bottom: -20px; left: -24px; }
        .hero-badge-2 { top: -16px; right: -16px; }

        /* Partners */
        .lp-partners {
            padding: 48px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: var(--white);
        }
        .partners-label {
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 28px;
        }
        .partners-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }
        .partners-logos img {
            height: 32px;
            width: auto;
            opacity: 0.5;
            filter: grayscale(100%);
            transition: var(--transition);
        }
        .partners-logos img:hover { opacity: 0.8; filter: grayscale(0%); }

        /* ===== STATS ===== */
        .lp-stats { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 64px 0; }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }
        .stat-item {
            text-align: center;
            padding: 0 24px;
            border-right: 1px solid rgba(255,255,255,0.2);
        }
        .stat-item:last-child { border-right: none; }
        .stat-num {
            font-size: 44px;
            font-weight: 900;
            color: var(--white);
            letter-spacing: -1px;
        }
        .stat-num span { color: var(--accent); }
        .stat-label { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 6px; font-weight: 500; }

        /* ===== FEATURE CARDS ===== */
        .lp-features { background: var(--bg-light); }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px;
        }
        .feature-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            border: 1px solid var(--border);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            opacity: 0;
            transition: var(--transition);
        }
        .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
        .feature-card:hover::before { opacity: 1; }
        .feature-icon {
            width: 150px; height: 150px;
            background: var(--primary-bg);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .feature-icon img { width: 150px; height: 150px; object-fit: contain;  }
        .feature-icon svg { width: 28px; height: 28px; }
        .feature-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
        .feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
        .feature-card .feature-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            margin-top: 20px;
            transition: var(--transition);
        }
        .feature-card .feature-link:hover { gap: 10px; }

        /* ===== HOW IT WORKS (Feature Showcase) ===== */
        .lp-showcase { background: var(--white); }
        .showcase-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            padding: 80px 0;
            border-bottom: 1px solid var(--border);
        }
        .showcase-item:last-child { border-bottom: none; }
        .showcase-item.reverse .showcase-img { order: 1; }
        .showcase-item.reverse .showcase-content { order: 2; }

        .showcase-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(108,62,255,0.12);
            background: var(--primary-bg);
        }
        .showcase-img img { width: 100%; display: block; border-radius: 20px; }
        .showcase-img-placeholder {
            height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-bg), #EDF9FF);
        }
        .showcase-badge {
            display: inline-block;
            background: var(--primary-bg);
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 100px;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .showcase-content h2 { font-size: 34px; font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
        .showcase-content p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
        .showcase-checks { display: flex; flex-direction: column; gap: 12px; }
        .showcase-check {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .showcase-check .check-icon {
            width: 22px; height: 22px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .showcase-check .check-icon svg { width: 12px; height: 12px; }
        .showcase-check span { font-size: 15px; color: var(--text); font-weight: 500; }
        .showcase-check .check-desc { font-size: 13px; color: var(--text-muted); }

        /* ===== SCREENSHOTS ===== */
        .lp-screenshots { background: var(--dark-2); padding: 96px 0; overflow: hidden; }
        .lp-screenshots .section-heading { color: var(--white); }
        .lp-screenshots .section-sub { color: rgba(255,255,255,0.6); }
        .screenshots-slider {
            display: flex;
            gap: 20px;
            margin-top: 56px;
            overflow-x: auto;
            padding-bottom: 20px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .screenshots-slider::-webkit-scrollbar { display: none; }
        .screenshot-item {
            flex-shrink: 0;
            width: 480px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(0,0,0,0.4);
        }
        .screenshot-item img { width: 100%; display: block; }

        /* ===== TESTIMONIALS ===== */
        .lp-reviews { background: var(--bg-light); }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px;
        }
        .review-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
        .review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
        .review-stars svg { width: 18px; height: 18px; fill: #F59E0B; }
        .review-text { font-size: 15px; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 20px; }
        .review-author { display: flex; align-items: center; gap: 12px; }
        .review-avatar {
            width: 44px; height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex; align-items: center; justify-content: center;
            color: var(--white); font-weight: 700; font-size: 16px;
            flex-shrink: 0; overflow: hidden;
        }
        .review-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .review-name { font-size: 15px; font-weight: 700; color: var(--dark); }
        .review-role { font-size: 13px; color: var(--text-muted); }

        /* ===== DEDICATED / BENEFITS ===== */
        .lp-dedicated { background: var(--white); }
        .dedicated-header { text-align: center; margin-bottom: 56px; }
        .dedicated-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .dedicated-card {
            background: var(--bg-light);
            border-radius: var(--radius);
            padding: 32px;
            border: 1px solid var(--border);
            text-align: center;
            transition: var(--transition);
        }
        .dedicated-card:hover { background: var(--white); box-shadow: var(--shadow); border-color: transparent; }
        .dedicated-card-icon {
            width: 64px; height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary-bg), #EDF9FF);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
        }
        .dedicated-card-icon img { width: 32px; height: 32px; object-fit: contain; }
        .dedicated-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
        .dedicated-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

        /* ===== TECH STACK ===== */
        .lp-buildtech { background: var(--bg-light); }
        .buildtech-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 56px;
        }
        .buildtech-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            text-align: center;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .buildtech-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
        .buildtech-card img { width: 48px; height: 48px; object-fit: contain; margin: 0 auto 16px; }
        .buildtech-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
        .buildtech-card p { font-size: 13px; color: var(--text-muted); }

        /* ===== FAQ ===== */
        .lp-faq { background: var(--white); }
        .faq-grid {
            max-width: 780px;
            margin: 56px auto 0;
        }
        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item.open { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,62,255,0.08); }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            user-select: none;
            gap: 16px;
        }
        .faq-question:hover { color: var(--primary); }
        .faq-icon {
            width: 28px; height: 28px;
            background: var(--primary-bg);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
        }
        .faq-item.open .faq-icon { background: var(--primary); transform: rotate(45deg); }
        .faq-icon svg { width: 14px; height: 14px; }
        .faq-item.open .faq-icon svg { stroke: var(--white); }
        .faq-answer {
            display: none;
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer { display: block; }

        /* ===== PACKAGE DETAILS ===== */
        .lp-packages { background: var(--bg-light); }
        .packages-content { max-width: 900px; margin: 0 auto; }
        .packages-content .section-heading { text-align: center; }
        .packages-content .section-sub { text-align: center; margin: 0 auto; }
        .packages-description { margin-top: 40px; font-size: 16px; color: var(--text-muted); line-height: 1.8; }

        /* ===== CTA BANNER ===== */
        .lp-cta {
            background: linear-gradient(135deg, var(--primary) 0%, #8B65FF 50%, var(--accent-dark) 100%);
            padding: 96px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .lp-cta::before {
            content: '';
            position: absolute;
            top: -100px; left: 50%;
            transform: translateX(-50%);
            width: 800px; height: 800px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
            border-radius: 50%;
        }
        .lp-cta h2 { font-size: 44px; font-weight: 900; color: var(--white); letter-spacing: -1px; margin-bottom: 16px; }
        .lp-cta p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
        .lp-cta .cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
        .btn-cta-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            color: var(--primary);
            font-size: 16px;
            font-weight: 700;
            padding: 16px 36px;
            border-radius: 100px;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); color: var(--primary); }
        .btn-cta-outline-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--white);
            font-size: 16px;
            font-weight: 600;
            padding: 14px 36px;
            border-radius: 100px;
            border: 2px solid rgba(255,255,255,0.6);
            transition: var(--transition);
        }
        .btn-cta-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); }
 
        /* ===== FOOTER ===== */
        .lp-footer { background: var(--dark); padding: 72px 0 0; }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr repeat(3, 1fr);
            gap: 48px;
            padding-bottom: 56px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-brand-col .footer-logo img { height: 36px; filter: brightness(0) invert(1); }
        .footer-brand-col .footer-logo .logo-text { font-size: 22px; font-weight: 800; color: var(--white); }
        .footer-brand-col .footer-logo .logo-text span { color: var(--accent); }
        .footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 16px; line-height: 1.7; max-width: 280px; }
        .footer-social { display: flex; gap: 10px; margin-top: 24px; }
        .footer-social a {
            width: 36px; height: 36px;
            border-radius: 10px;
            background: rgba(255,255,255,0.08);
            display: flex; align-items: center; justify-content: center;
            transition: var(--transition);
        }
        .footer-social a:hover { background: var(--primary); }
        .footer-social a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
        .footer-col-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
        .footer-links { display: flex; flex-direction: column; gap: 10px; }
        .footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--transition); }
        .footer-links a:hover { color: var(--white); padding-left: 4px; }
        .footer-newsletter { }
        .footer-newsletter p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
        .newsletter-input-wrap {
            display: flex;
            background: rgba(255,255,255,0.08);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255,255,255,0.12);
            overflow: hidden;
        }
        .newsletter-input-wrap input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            padding: 12px 16px;
            font-size: 14px;
            color: var(--white);
        }
        .newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.4); }
        .newsletter-input-wrap button {
            background: var(--primary);
            border: none;
            padding: 12px 20px;
            cursor: pointer;
            color: var(--white);
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
        }
        .newsletter-input-wrap button:hover { background: var(--primary-dark); }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
        }
        .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
        .footer-bottom-links { display: flex; gap: 24px; }
        .footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: var(--transition); }
        .footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-inner { gap: 40px; }
            .hero-title { font-size: 44px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.2); }
            .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .dedicated-grid { grid-template-columns: repeat(2, 1fr); }
            .buildtech-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        }

        @media (max-width: 768px) {
            .section-pad { padding: 64px 0; }
            .section-heading { font-size: 32px; }
            .hero-inner { grid-template-columns: 1fr; gap: 48px; }
            .hero-title { font-size: 38px; }
            .hero-visual { order: -1; }
            .hero-badge { display: none; }
            .navbar-menu { display: none; }
            .nav-hamburger { display: flex; }
            .features-grid { grid-template-columns: 1fr; }
            .reviews-grid { grid-template-columns: 1fr; }
            .showcase-item { grid-template-columns: 1fr; gap: 40px; }
            .showcase-item.reverse .showcase-img { order: unset; }
            .showcase-item.reverse .showcase-content { order: unset; }
            .dedicated-grid { grid-template-columns: 1fr; }
            .buildtech-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            .lp-cta h2 { font-size: 32px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 480px) {
            .hero-title { font-size: 30px; }
            .hero-actions { flex-direction: column; align-items: stretch; }
            .hero-actions a { text-align: center; justify-content: center; }
            .buildtech-grid { grid-template-columns: 1fr; }
        }
 