        /* ==========================================================================
           1. CSS VARIABLES & SYSTEM RESET
           ========================================================================== */
        :root {
            /* Refined Premium Brand Colors */
            --navy: #0B1121; /* Deeper navy for more expensive feel */
            --navy-light: #162032;
            --indigo: #6366F1;
            --indigo-light: #818CF8;
            --cyan: #22D3EE;
            --white: #FFFFFF;
            --bg-soft: #F8FAFC;
            --bg-grid: #F1F5F9;
            --muted: #64748B;
            --muted-dark: #94A3B8;
            
            /* Extended Palette & Glass */
            --border-light: rgba(15, 23, 42, 0.08);
            --border-dark: rgba(255, 255, 255, 0.12);
            --border-glow: rgba(99, 102, 241, 0.3);
            --glass-bg: rgba(255, 255, 255, 0.6);
            --glass-dark: rgba(11, 17, 33, 0.7);
            
            /* Enhanced Shadows */
            --shadow-sm: 0 4px 12px rgba(11, 17, 33, 0.04);
            --shadow-md: 0 12px 32px rgba(11, 17, 33, 0.08);
            --shadow-lg: 0 32px 64px -16px rgba(11, 17, 33, 0.2);
            --shadow-glow: 0 0 50px -10px rgba(99, 102, 241, 0.4);
            --shadow-glow-cyan: 0 0 50px -10px rgba(34, 211, 238, 0.3);
            --shadow-inner: inset 0 2px 4px rgba(255, 255, 255, 0.4);
            
            /* Layout & Timing */
            --max-w: 1280px;
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
            --transition: all 0.5s var(--ease);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--white);
            color: var(--navy);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Subtle Noise Overlay */
        .noise {
            position: fixed;
            inset: 0;
            z-index: 9999;
            pointer-events: none;
            opacity: 0.04;
            background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
        }

        /* Decorative Background Grid */
        .premium-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(to right, var(--border-light) 1px, transparent 1px),
                linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
            background-size: 64px 64px;
            z-index: 0;
            pointer-events: none;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        }

        /* Section Dividers */
        .divider {
            position: absolute;
            bottom: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-light), transparent);
        }

        img, svg { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        .container {
            width: 100%;
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Typography Utilities */
        .text-gradient {
            background: linear-gradient(135deg, var(--indigo), var(--cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        
        .text-gradient-light {
            background: linear-gradient(135deg, #fff, var(--cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .section-header {
            max-width: 680px;
            margin-bottom: 72px;
            position: relative;
        }

        .section-header.center {
            margin-inline: auto;
            text-align: center;
        }

        .tagline-label {
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--indigo);
            margin-bottom: 20px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .tagline-label::before {
            content: '';
            display: block;
            width: 24px;
            height: 2px;
            background: var(--indigo);
        }
        
        .center .tagline-label::after {
            content: '';
            display: block;
            width: 24px;
            height: 2px;
            background: var(--indigo);
        }

        h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.05;
            margin-bottom: 24px;
        }

        p.subtitle {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            color: var(--muted);
            line-height: 1.7;
        }

        section { padding: 140px 0; position: relative; }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            gap: 12px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: var(--shadow-sm);
        }

        .btn-primary {
            background: var(--navy);
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--indigo), var(--cyan));
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s var(--ease);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-glow);
            color: var(--white);
            border-color: transparent;
        }

        .btn-primary:hover::before { opacity: 1; }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.8);
            color: var(--navy);
            border: 1px solid var(--border-light);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .btn-secondary::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent, rgba(255,255,255,0.5));
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .btn-secondary:hover {
            background: var(--white);
            transform: translateY(-4px);
            border-color: rgba(99, 102, 241, 0.3);
            box-shadow: 0 12px 24px rgba(99, 102, 241, 0.1);
        }
        
        .btn-secondary:hover::after { opacity: 1; }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 100ms; }
        .delay-2 { transition-delay: 200ms; }
        .delay-3 { transition-delay: 300ms; }

        /* ==========================================================================
           2. NAVIGATION
           ========================================================================== */
        header {
            position: fixed;
            top: 24px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 48px);
            max-width: var(--max-w);
            z-index: 1000;
            transition: var(--transition);
        }

        .nav-inner {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255,255,255,0.8);
            border-radius: 100px;
            padding: 12px 24px 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 4px 24px rgba(11, 17, 33, 0.06), inset 0 1px 0 rgba(255,255,255,1);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 1.125rem;
            letter-spacing: -0.03em;
        }

        .nav-logo img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }


                .nav-links {
            display: flex;
            gap: 36px;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--muted);
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--indigo);
            transition: width 0.3s var(--ease);
            border-radius: 2px;
        }

        .nav-links a:hover { color: var(--navy); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            padding: 12px 24px;
            border-radius: 100px;
            background: var(--navy);
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(11,17,33,0.15);
        }

        .nav-cta:hover {
            background: var(--indigo);
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            width: 28px;
            height: 20px;
            position: relative;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--navy);
            transition: var(--transition);
            left: 0;
            border-radius: 2px;
        }

        .mobile-menu-btn span:nth-child(1) { top: 0; }
        .mobile-menu-btn span:nth-child(2) { top: 9px; }
        .mobile-menu-btn span:nth-child(3) { bottom: 0; }

        .mobile-menu-btn.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
        .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

        /* ==========================================================================
           3. HERO SECTION
           ========================================================================== */
        .hero {
            min-height: 100vh;
            padding-top: 200px;
            padding-bottom: 80px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
        }

        .mesh-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0.6;
            background: 
                radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
            animation: meshPulse 15s ease-in-out infinite alternate;
        }

        @keyframes meshPulse {
            0% { opacity: 0.5; transform: scale(1); }
            100% { opacity: 0.8; transform: scale(1.05); }
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: clamp(3.5rem, 6.5vw, 5.5rem);
            margin-bottom: 24px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            margin-top: 48px;
        }

        /* Hero Visual - Ultra Premium CSS Browser */
        .hero-visual {
            position: relative;
            width: 100%;
            height: 650px;
            perspective: 1200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-glow-back {
            position: absolute;
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, var(--indigo) 0%, transparent 70%);
            opacity: 0.2;
            filter: blur(60px);
            top: 10%;
            left: 10%;
            animation: pulseGlow 4s ease-in-out infinite alternate;
        }

        @keyframes pulseGlow {
            0% { opacity: 0.15; transform: scale(0.9); }
            100% { opacity: 0.3; transform: scale(1.1); }
        }

        .browser-mockup {
            position: absolute;
            width: 90%;
            height: 85%;
            background: var(--navy);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.15);
            box-shadow: 
                0 40px 80px -20px rgba(11,17,33,0.5), 
                inset 0 1px 2px rgba(255,255,255,0.2),
                0 0 0 1px rgba(11,17,33,1);
            transform: rotateY(-12deg) rotateX(6deg) translateZ(0);
            transform-style: preserve-3d;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease-out; /* For JS parallax */
            z-index: 2;
        }

        .browser-header {
            height: 52px;
            background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
            border-bottom: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            padding: 0 20px;
            gap: 16px;
            border-radius: 20px 20px 0 0;
            backdrop-filter: blur(10px);
        }

        .dots { display: flex; gap: 8px; }
        .dot { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 1px 2px rgba(255,255,255,0.3); }
        .dot:nth-child(1) { background: #FF5F56; border: 1px solid #E0443E; }
        .dot:nth-child(2) { background: #FFBD2E; border: 1px solid #DEA123; }
        .dot:nth-child(3) { background: #27C93F; border: 1px solid #1AAB29; }

        .browser-url {
            flex: 1;
            height: 28px;
            background: rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            padding: 0 12px;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
        }
        
        .url-lock { width: 10px; height: 12px; border-radius: 2px; border: 1.5px solid var(--muted); margin-right: 8px; position: relative; }
        .url-lock::before { content:''; position:absolute; top:-4px; left:1px; width:4px; height:4px; border: 1.5px solid var(--muted); border-bottom:0; border-radius:4px 4px 0 0; }
        .url-text { width: 120px; height: 6px; background: rgba(255,255,255,0.2); border-radius: 3px; }

        .browser-body {
            flex: 1;
            position: relative;
            background: radial-gradient(circle at top right, rgba(34,211,238,0.1), transparent 50%),
                        linear-gradient(135deg, var(--navy), #060913);
            border-radius: 0 0 20px 20px;
            display: flex;
            overflow: hidden;
        }

        /* Mockup Interior Layout */
        .mock-sidebar {
            width: 22%;
            border-right: 1px solid rgba(255,255,255,0.05);
            padding: 24px 16px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .mock-sb-item { height: 12px; background: rgba(255,255,255,0.05); border-radius: 4px; }
        .mock-sb-item.active { background: rgba(99,102,241,0.2); width: 80%; border-left: 2px solid var(--indigo); }
        .mock-sb-item:nth-child(2) { width: 60%; }
        .mock-sb-item:nth-child(3) { width: 70%; }

        .mock-main {
            flex: 1;
            padding: 32px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .mock-hero {
            height: 120px;
            background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(34,211,238,0.05));
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 12px;
            margin-bottom: 24px;
            padding: 24px;
            position: relative;
            overflow: hidden;
        }
        
        .mock-hero::after {
            content: ''; position: absolute; right: -20px; top: -20px; width: 100px; height: 100px;
            background: var(--indigo); filter: blur(40px); opacity: 0.3;
        }

        .mock-h1 { width: 50%; height: 20px; background: rgba(255,255,255,0.9); border-radius: 4px; margin-bottom: 12px; }
        .mock-p { width: 40%; height: 8px; background: rgba(255,255,255,0.4); border-radius: 4px; margin-bottom: 8px; }
        .mock-p.short { width: 25%; }
        .mock-btn { width: 80px; height: 24px; background: var(--indigo); border-radius: 100px; margin-top: 16px; }

        .mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        .mock-card {
            height: 140px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 16px;
            backdrop-filter: blur(5px);
        }
        .mock-card-icon { width: 24px; height: 24px; background: rgba(34,211,238,0.2); border-radius: 6px; margin-bottom: 16px; }

        /* Floating 3D Previews around Browser */
        .floating-panel {
            position: absolute;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(11,17,33,0.3);
            transform-style: preserve-3d;
            z-index: 3;
            overflow: hidden;
        }

        .floating-panel::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
        }

        .panel-1 {
            width: 180px; height: 220px;
            right: -5%; top: 15%;
            transform: translateZ(50px) rotateY(-15deg);
            animation: floatSlow 8s ease-in-out infinite;
            padding: 16px;
        }
        
        .panel-1 .mock-h1 { width: 80%; background: var(--indigo); margin-bottom: 24px;}
        .panel-1 .mock-p { width: 100%; background: rgba(255,255,255,0.2); }

        .panel-2 {
            width: 220px; height: 140px;
            left: -10%; bottom: 10%;
            transform: translateZ(80px) rotateY(-5deg) rotateX(10deg);
            animation: floatSlow 7s ease-in-out infinite reverse;
            display: flex; gap: 12px; padding: 12px;
        }
        .panel-2 .mock-card-icon { width: 40px; height: 40px; background: var(--cyan); border-radius: 50%; flex-shrink: 0;}

        @keyframes floatSlow {
            0%, 100% { transform: translateY(0) translateZ(50px) rotateY(-15deg); }
            50% { transform: translateY(-20px) translateZ(50px) rotateY(-15deg); }
        }

        /* Floating Feature Labels */
        .feat-label {
            position: absolute;
            background: var(--white);
            border: 1px solid var(--border-light);
            padding: 10px 20px;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--navy);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 10;
        }

        .feat-1 { top: 5%; right: 10%; animation: bounceFloat 6s infinite; }
        .feat-2 { bottom: 25%; left: -5%; animation: bounceFloat 7s infinite 1s; }
        .feat-3 { bottom: -5%; right: 20%; animation: bounceFloat 5s infinite 2s; }

        .feat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--indigo); box-shadow: 0 0 10px var(--indigo); }
        .feat-2 .feat-dot { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

        @keyframes bounceFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* ==========================================================================
           4. TRUST BAR
           ========================================================================== */
        .trust-section {
            padding: 0 0 60px 0;
            background: var(--white);
            position: relative;
            z-index: 10;
            margin-top: -30px;
        }

        .trust-track {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            background: rgba(255,255,255,0.8);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-light);
            padding: 20px 40px;
            border-radius: 100px;
            box-shadow: var(--shadow-md);
            max-width: 1000px;
            margin: 0 auto;
        }

        .trust-pill {
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--navy);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            border-radius: 100px;
        }

        .trust-pill:hover {
            background: var(--bg-soft);
            color: var(--indigo);
        }

        .trust-pill svg { color: var(--indigo); width: 18px; height: 18px; }

        /* ==========================================================================
           5. SERVICES BENTO SECTION
           ========================================================================== */
        .services-section {
            background: var(--bg-grid);
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: minmax(240px, auto);
            gap: 24px;
        }

        .bento-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 48px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-sm);
            z-index: 1;
        }

        /* Gradient Border Implementation */
        .bento-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: var(--radius-lg);
            padding: 1px; /* border width */
            background: linear-gradient(135deg, rgba(15,23,42,0.1), rgba(15,23,42,0.02));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: -1;
            transition: var(--transition);
        }

        .bento-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        .bento-card:hover::before {
            background: linear-gradient(135deg, var(--indigo), var(--cyan));
        }

        /* Specific Grid Placements */
        .card-business { grid-column: 1 / 3; grid-row: 1 / 3; }
        .card-starter { 
            grid-column: 3 / 4; 
            grid-row: 1 / 3; 
            background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%); 
            color: white;
        }
        .card-starter::before { background: linear-gradient(135deg, var(--indigo), var(--cyan)); }
        
        .card-addons { grid-column: 1 / 3; grid-row: 3 / 4; }
        .card-lite { grid-column: 3 / 4; grid-row: 3 / 4; }

        .bento-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
        .card-business .bento-title { font-size: 2.5rem; }

        .bento-price { font-size: 1.125rem; color: var(--indigo); font-weight: 700; margin-bottom: 24px; }
        .card-starter .bento-price { color: var(--cyan); }
        .card-starter p.subtitle { color: rgba(255,255,255,0.7); }
        
        .bento-list { margin-top: auto; display: flex; flex-direction: column; gap: 16px; }
        .bento-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--muted); font-weight: 500; }
        .card-starter .bento-list li { color: rgba(255,255,255,0.9); }
        
        .bento-list svg { flex-shrink: 0; color: var(--navy); margin-top: 2px; }
        .card-starter .bento-list svg { color: var(--cyan); }

        .addon-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 32px;
        }
        .addon-item {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px dashed var(--border-light);
            padding-bottom: 12px;
            font-size: 1rem;
            font-weight: 500;
        }

        /* ==========================================================================
           6. PRICING SECTION
           ========================================================================== */
        .pricing-section { background: var(--white); }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            align-items: stretch;
            margin-bottom: 64px;
        }

        .pricing-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 56px 40px;
            position: relative;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            z-index: 1;
        }

        .pricing-card::before {
            content: ""; position: absolute; inset: 0; border-radius: var(--radius-xl); padding: 1px;
            background: var(--border-light);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: -1;
        }

        .pricing-card.popular {
            background: var(--navy);
            color: white;
            transform: scale(1.05);
            z-index: 10;
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }

        .pricing-card.popular::before {
            background: linear-gradient(135deg, var(--indigo), var(--cyan));
            padding: 2px;
        }

        .pricing-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--indigo), var(--cyan));
            color: white;
            padding: 8px 24px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            box-shadow: 0 8px 16px rgba(99,102,241,0.3);
        }

        .p-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
        
        .p-price-box { margin-bottom: 32px; border-bottom: 1px solid var(--border-light); padding-bottom: 32px;}
        .popular .p-price-box { border-color: rgba(255,255,255,0.1); }
        
        .p-strike { text-decoration: line-through; color: var(--muted); font-size: 1rem; margin-bottom: 8px; display: block; height: 24px;}
        .popular .p-strike { color: rgba(255,255,255,0.5); }
        
        .p-amount { font-size: 4rem; font-weight: 800; line-height: 1; letter-spacing: -0.05em; color: var(--navy); margin-bottom: 12px;}
        .popular .p-amount { color: white; }
        .p-amount span { font-size: 1.5rem; font-weight: 700; vertical-align: top; margin-right: 4px; color: var(--muted);}
        .popular .p-amount span { color: rgba(255,255,255,0.7); }
        
        .p-renewal { font-size: 0.95rem; font-weight: 600; color: var(--indigo); }
        .popular .p-renewal { color: var(--cyan); }

        .pricing-card .bento-list li { font-size: 0.95rem; }
        .popular .bento-list li { color: rgba(255,255,255,0.8); }
        .popular .bento-list svg { color: var(--cyan); }

        .pricing-card .btn { width: 100%; margin-top: 40px; }

        .pricing-notes {
            background: var(--bg-soft);
            border-radius: var(--radius-md);
            padding: 32px;
            font-size: 0.95rem;
            color: var(--muted);
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid var(--border-light);
        }
        .pricing-notes strong { color: var(--navy); display: block; margin-bottom: 12px; font-size: 1rem;}
        .pricing-notes ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 12px; }

        /* ==========================================================================
           7. PROCESS SECTION
           ========================================================================== */
        .process-section { background: var(--bg-grid); }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        /* Connecting Line */
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--border-light) 0%, var(--indigo) 50%, var(--border-light) 100%);
            z-index: 0;
            opacity: 0.5;
        }

        .step-card {
            position: relative;
            z-index: 1;
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        
        .step-card::before {
            content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
            background: var(--border-light);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: -1;
            transition: var(--transition);
        }

        .step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
        .step-card:hover::before { background: linear-gradient(135deg, var(--indigo), var(--cyan)); }

        .step-num {
            width: 64px;
            height: 64px;
            background: var(--navy);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0 auto 32px;
            box-shadow: 0 0 0 8px var(--white), 0 8px 16px rgba(11,17,33,0.1);
            position: relative;
        }
        
        .step-card:hover .step-num {
            background: linear-gradient(135deg, var(--indigo), var(--cyan));
        }

        .step-card h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em;}
        .step-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.6;}

        /* ==========================================================================
           8. PORTFOLIO PREVIEW (Dark Mode)
           ========================================================================== */
        .portfolio-section { background: var(--navy); color: var(--white); overflow: hidden; }
        .portfolio-section .subtitle { color: rgba(255,255,255,0.6); }
        
        /* Dark grid background */
        .portfolio-section::before {
            content: ''; position: absolute; inset: 0;
            background-image: 
                linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 64px 64px;
            pointer-events: none;
        }

        .port-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .port-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-xl);
            padding: 24px;
            transition: var(--transition);
            position: relative;
        }
        
        .port-card::after {
            content: ''; position: absolute; inset: 0; border-radius: var(--radius-xl);
            box-shadow: inset 0 0 0 1px transparent; transition: var(--transition);
        }

        .port-card:hover { 
            transform: translateY(-8px); 
            background: rgba(255,255,255,0.04);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        
        .port-card:hover::after {
            box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.3);
        }

        /* Layered Mockup Effect */
        .port-mockup {
            aspect-ratio: 4/3;
            border-radius: var(--radius-md);
            position: relative;
            margin-bottom: 32px;
            perspective: 1000px;
        }

        .port-layer {
            position: absolute;
            inset: 0;
            border-radius: var(--radius-md);
            background: var(--navy-light);
            border: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }

        /* Base state */
        .port-card .port-layer:nth-child(1) { transform: translateZ(-40px) translateY(10px) scale(0.9); opacity: 0.4; }
        .port-card .port-layer:nth-child(2) { transform: translateZ(-20px) translateY(5px) scale(0.95); opacity: 0.7; }
        .port-card .port-layer:nth-child(3) { transform: translateZ(0) translateY(0) scale(1); opacity: 1; }

        /* Hover state: spread out */
        .port-card:hover .port-layer:nth-child(1) { transform: translateZ(-60px) translateY(20px) rotateX(5deg) scale(0.9); opacity: 0.2; }
        .port-card:hover .port-layer:nth-child(2) { transform: translateZ(-30px) translateY(10px) rotateX(2deg) scale(0.95); opacity: 0.5; }
        .port-card:hover .port-layer:nth-child(3) { transform: translateZ(10px) translateY(-5px) scale(1.02); }

        .port-mock-head { height: 24px; background: rgba(255,255,255,0.05); display: flex; align-items: center; padding: 0 12px; border-bottom: 1px solid rgba(255,255,255,0.05);}
        .port-mock-body { flex: 1; background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); padding: 16px; }
        
        .wire-hero { height: 48px; background: rgba(255,255,255,0.1); border-radius: 6px; margin-bottom: 16px; }
        .wire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .wire-box { height: 80px; background: rgba(255,255,255,0.05); border-radius: 6px; }

        .port-label { display: inline-block; padding: 6px 16px; background: rgba(99,102,241,0.15); color: var(--cyan); border-radius: 100px; font-size: 0.8rem; font-weight: 700; margin-bottom: 16px; border: 1px solid rgba(99,102,241,0.3);}
        .port-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;}

        /* ==========================================================================
           9. WHY HFZ STUDIO (Dark Mode Continued)
           ========================================================================== */
        .why-section { 
            background: linear-gradient(180deg, var(--navy) 0%, #050810 100%);
            color: white;
            padding-top: 40px; /* Blend from portfolio */
        }
        
        .why-section .subtitle { color: rgba(255,255,255,0.6); }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .why-card {
            padding: 48px;
            border-radius: var(--radius-xl);
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.08);
            display: flex;
            gap: 24px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
            opacity: 0; transition: opacity 0.3s; z-index: 0; pointer-events: none;
        }
        .why-card:hover::before { opacity: 1; }
        .why-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }

        .why-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(34,211,238,0.1));
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--cyan);
            position: relative;
            z-index: 1;
        }

        .why-content { position: relative; z-index: 1; }
        .why-content h4 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em;}
        .why-content p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7;}

        /* ==========================================================================
           10. FAQ SECTION
           ========================================================================== */
        .faq-section { background: var(--bg-soft); }
        
        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 24px 48px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .faq-item {
            border-bottom: 1px solid var(--border-light);
        }
        .faq-item:last-child { border-bottom: none; }

        .faq-btn {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 32px 0;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--navy);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            letter-spacing: -0.01em;
            transition: color 0.3s;
        }
        
        .faq-btn:hover { color: var(--indigo); }

        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.4s var(--ease-bounce);
            flex-shrink: 0;
            margin-left: 16px;
        }

        .faq-icon::before, .faq-icon::after {
            content: '';
            position: absolute;
            background: currentColor;
            border-radius: 2px;
        }
        .faq-icon::before { top: 11px; left: 4px; right: 4px; height: 2px; }
        .faq-icon::after { top: 4px; bottom: 4px; left: 11px; width: 2px; transition: opacity 0.4s; }

        .faq-item.active .faq-icon { transform: rotate(180deg); color: var(--indigo); }
        .faq-item.active .faq-icon::after { opacity: 0; }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s var(--ease);
        }

        .faq-inner {
            padding-bottom: 32px;
            color: var(--muted);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* ==========================================================================
           11. CONTACT CTA
           ========================================================================== */
        .cta-section { background: var(--white); }
        .cta-section .container { position: relative; }

        .cta-box {
            background: var(--navy);
            border-radius: 40px;
            padding: 100px 40px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle at center, rgba(99,102,241,0.2) 0%, transparent 50%);
            pointer-events: none;
            animation: pulseGlow 8s infinite alternate;
        }
        
        .cta-box::after {
            content: ''; position: absolute; inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px; pointer-events: none;
        }

        .cta-box h2 { color: white; margin-bottom: 24px; font-size: clamp(2.5rem, 5vw, 4.5rem);}
        .cta-box p { color: rgba(255,255,255,0.7); font-size: 1.25rem; max-width: 600px; margin: 0 auto 48px; position: relative; z-index: 1;}

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .btn-whatsapp {
            background: #25D366;
            color: white;
            box-shadow: 0 10px 20px -5px rgba(37,211,102,0.4);
        }
        .btn-whatsapp:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px -5px rgba(37,211,102,0.5);
            background: #22c55e;
        }

        /* ==========================================================================
           12. PREMIUM FOOTER & SOCIAL LINKS
           ========================================================================== */
        footer {
            background: #050810;
            color: white;
            padding: 120px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .footer-grid-bg {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        .footer-glow {
            position: absolute;
            bottom: 0; left: 50%;
            transform: translateX(-50%);
            width: 800px; height: 400px;
            background: radial-gradient(ellipse at bottom, rgba(99,102,241,0.1), transparent 60%);
            pointer-events: none;
        }

        .footer-main {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 80px;
            margin-bottom: 100px;
        }

        .footer-logo-row{
            display:flex;
            align-items:center;
            gap:14px;
            margin-bottom:14px;
        }

        .footer-logo-img{
            height:52px;
            width:auto;
            object-fit:contain;
            flex-shrink:0;
            filter: drop-shadow(0 12px 28px rgba(245, 240, 225, 0.12));
        }

        .footer-logo-row h3{
            margin-bottom:0;
        }

        .f-brand h3 { font-size: 1.75rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.03em;}
        
/* =========================================================
   SECTION 10 : FOOTER BRANDING
   Purpose:
   Align footer monogram and HFZ Studio wordmark
========================================================= */

.footer-logo-row{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
}

.footer-logo-img{
    height:52px;
    width:auto;
    object-fit:contain;
    flex-shrink:0;
    transform:translateY(1px);
    filter:drop-shadow(0 12px 28px rgba(245, 240, 225, 0.12));
}

.footer-brand-name{
    display:flex;
    align-items:baseline;
    gap:5px;
    margin-bottom:0;
    font-size:1.75rem;
    font-weight:800;
    line-height:1;
    letter-spacing:-0.03em;
    transform:translateY(7px);
}

.brand-hfz{
    background:linear-gradient(
        135deg,
        var(--indigo),
        var(--cyan)
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.brand-studio{
    color:#FFFFFF;
}


/* =========================================================
   
   Purpose:
   
========================================================= */

        .f-brand p.tag { color: white; font-weight: 600; margin-bottom: 12px; font-size: 1.05rem;}
        .f-brand p.desc { color: rgba(255,255,255,0.5); font-size: 0.95rem; max-width: 320px; line-height: 1.7;}

        .f-col h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 32px; color: var(--white); letter-spacing: 0.02em;}
        .f-col ul { display: flex; flex-direction: column; gap: 16px; }
        .f-col a { color: rgba(255,255,255,0.5); font-size: 0.95rem; font-weight: 500; transition: var(--transition); }
        .f-col a:hover { color: var(--cyan); transform: translateX(4px); display: inline-block;}

        /* Premium Social Links (Custom CSS) */
        .social-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .social-link {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            color: white;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease), border-color .4s var(--ease);
            position: relative;
            overflow: hidden;
            outline: none;
        }

        .social-link::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(99,102,241,.6), rgba(34,211,238,.4));
            opacity: 0;
            transition: opacity .4s var(--ease);
        }

        .social-link span,
        .social-link svg {
            position: relative;
            z-index: 1;
            width: 20px; height: 20px;
        }

        .social-link:hover, .social-link:focus-visible {
            transform: translateY(-6px);
            border-color: rgba(34,211,238,.6);
            box-shadow: 0 20px 40px rgba(34,211,238,.2);
        }

        .social-link:hover::before, .social-link:focus-visible::before {
            opacity: 1;
        }

        .footer-bottom {
            position: relative;
            z-index: 1;
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.4);
            font-weight: 500;
        }

        /* ==========================================================================
           14. FLOATING WHATSAPP BUTTON
           ========================================================================== */
        .floating-wa {
            position: fixed;
            bottom: 32px;
            right: 32px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 12px 24px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 10px 24px rgba(37,211,102,0.4);
            z-index: 990;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .floating-wa svg {
            width: 22px;
            height: 22px;
        }

        .floating-wa:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(37,211,102,0.5);
            color: white;
        }

        /* ==========================================================================
           13. RESPONSIVE DESIGN (MOBILE FIRST OVERRIDES)
           ========================================================================== */
        @media (max-width: 1024px) {
            .hero { padding-top: 160px; }
            .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 64px; }
            .hero-content { display: flex; flex-direction: column; align-items: center; }
            .hero-actions { justify-content: center; }
            .hero-visual { height: 500px; max-width: 700px; margin: 0 auto; perspective: 800px; }
            
            .bento-grid { grid-template-columns: 1fr 1fr; }
            .card-business { grid-column: 1 / -1; grid-row: auto; }
            .card-starter, .card-lite { grid-column: auto; grid-row: auto; }
            .card-addons { grid-column: 1 / -1; }
            
            .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 64px; }
            .pricing-card.popular { transform: scale(1); }
            
            .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
            .process-steps::before { display: none; }
            
            .port-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-main { grid-template-columns: 1fr 1fr; gap: 64px; }
        }

        @media (max-width: 768px) {
            section { padding: 100px 0; }
            header { top: 16px; width: calc(100% - 32px); }
            .nav-inner { padding: 12px 20px; }
            .nav-links, .nav-cta { display: none; }
            .mobile-menu-btn { display: block; }
            
            /* Mobile Nav State */
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%; left: 0; width: 100%;
                background: rgba(255,255,255,0.95);
                backdrop-filter: blur(20px);
                padding: 32px 24px;
                border-radius: 24px;
                border: 1px solid var(--border-light);
                box-shadow: var(--shadow-lg);
                margin-top: 12px;
                text-align: center;
                gap: 24px;
            }

            .trust-track { flex-direction: column; align-items: stretch; border-radius: 24px; padding: 24px; }
            .trust-pill { justify-content: center; }
            
            .bento-grid { grid-template-columns: 1fr; }
            .bento-card { padding: 32px; }
            .addon-grid { grid-template-columns: 1fr; }
            
            .why-grid { grid-template-columns: 1fr; }
            .why-card { flex-direction: column; padding: 32px; }
            
            .process-steps { grid-template-columns: 1fr; }
            .port-grid { grid-template-columns: 1fr; }
            
            .faq-wrapper { padding: 16px 24px; }
            
            .cta-actions { flex-direction: column; }
            .cta-box { padding: 64px 24px; border-radius: 32px; }
            
            .footer-main { grid-template-columns: 1fr; gap: 48px; }
            .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
            
            .hero-visual { height: 400px; }
            .browser-mockup { width: 100%; height: 90%; transform: rotateY(0) rotateX(0); }
            .mock-sidebar { display: none; }
            .floating-panel { display: none; }
            .feat-label { display: none; }

            .floating-wa {
                bottom: 24px;
                right: 24px;
                padding: 16px;
                border-radius: 50%;
                width: 56px;
                height: 56px;
                justify-content: center;
            }
            .floating-wa .wa-text {
                display: none;
            }
            .floating-wa svg {
                margin: 0;
            }
        }
