        /* =============================================
           NUBIFICA — DESIGN SYSTEM V2
        ============================================= */
        :root {
            --blue-50: #eff6ff;
            --blue-100: #dbeafe;
            --blue-400: #60a5fa;
            --blue-500: #3b82f6;
            --blue-600: #2563eb;
            --blue-700: #1d4ed8;
            --blue-900: #1e3a8a;
            --ink: #0b1120;
            --ink-80: rgba(11, 17, 32, 0.8);
            --text-muted: #64748b;
            --surface: #ffffff;
            --bg: #f0f5ff;
            --border: rgba(59, 130, 246, 0.12);
            --glow: rgba(59, 130, 246, 0.25);
            --font-display: 'Inter', sans-serif;
            --font-body: 'Inter', sans-serif;
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            background: var(--bg);
            color: var(--ink);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── NOISE TEXTURE OVERLAY ─── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
            background-size: 200px;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.4;
        }

        /* ─── MESH GRADIENT BACKGROUND ─── */
        .mesh-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            background: var(--bg);
            overflow: hidden;
        }

        .mesh-bg::before {
            content: '';
            position: absolute;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle at center, rgba(59, 130, 246, 0.18) 0%, transparent 65%);
            top: -20%;
            left: -15%;
            animation: drift-a 25s ease-in-out infinite alternate;
        }

        .mesh-bg::after {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle at center, rgba(37, 99, 235, 0.12) 0%, transparent 65%);
            bottom: -15%;
            right: -10%;
            animation: drift-b 30s ease-in-out infinite alternate;
        }

        .mesh-orb {
            position: fixed;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 65%);
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: drift-c 20s ease-in-out infinite alternate;
            z-index: -1;
        }

        @keyframes drift-a {
            from {
                transform: translate(0, 0) scale(1);
            }

            to {
                transform: translate(80px, 60px) scale(1.15);
            }
        }

        @keyframes drift-b {
            from {
                transform: translate(0, 0) scale(1);
            }

            to {
                transform: translate(-60px, -80px) scale(1.2);
            }
        }

        @keyframes drift-c {
            from {
                transform: translate(-50%, -50%) scale(1);
            }

            to {
                transform: translate(-45%, -55%) scale(1.1);
            }
        }

        /* ─── GRID PATTERN ─── */
        .grid-pattern {
            position: fixed;
            inset: 0;
            z-index: -1;
            background-image:
                linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
        }

        /* ─── CONTAINER ─── */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ─── HEADER ─── */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 0;
            transition: all 0.5s var(--ease-out-expo);
        }

        header.scrolled {
            background: rgba(240, 245, 255, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
        }

        .nav-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
        }

        .nav-logo {
            height: 42px;
            width: auto;
            object-fit: contain;
            display: block;
            transition: transform 0.3s var(--ease-out-expo);
        }

        .logo-wrap:hover .nav-logo {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            letter-spacing: 0.01em;
        }

        .nav-links a:hover {
            color: var(--blue-500);
        }

        .btn-nav-cta {
            background: var(--ink);
            color: #fff !important;
            padding: 0.6rem 1.5rem;
            border-radius: 10px;
            font-weight: 600 !important;
            letter-spacing: 0.02em;
            transition: all 0.3s var(--ease-out-expo) !important;
        }

        .btn-nav-cta:hover {
            background: var(--blue-600) !important;
            color: #fff !important;
            transform: translateY(-1px);
            box-shadow: 0 8px 20px var(--glow);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--ink);
            cursor: pointer;
        }

        /* ─── HERO ─── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 0 80px;
            position: relative;
        }

        .hero-inner {
            max-width: 860px;
            margin: 0 auto;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(59, 130, 246, 0.08);
            border: 1px solid rgba(59, 130, 246, 0.2);
            padding: 0.35rem 1rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--blue-600);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            opacity: 0;
            animation: reveal-up 0.8s var(--ease-out-expo) 0.1s forwards;
        }

        .eyebrow-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--blue-500);
            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.7);
            }
        }

        .hero-h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            color: var(--ink);
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: reveal-up 0.9s var(--ease-out-expo) 0.25s forwards;
        }

        .hero-h1 .gradient-text {
            background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 50%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-h1 .outline-text {
            -webkit-text-stroke: 2px var(--blue-500);
            color: transparent;
        }

        .hero-sub {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            font-weight: 300;
            line-height: 1.7;
            opacity: 0;
            animation: reveal-up 0.9s var(--ease-out-expo) 0.4s forwards;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: reveal-up 0.9s var(--ease-out-expo) 0.55s forwards;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
            color: #fff;
            padding: 0.95rem 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.4s var(--ease-out-expo);
            box-shadow: 0 8px 25px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px var(--glow);
        }

        .btn-ghost {
            background: rgba(255, 255, 255, 0.7);
            color: var(--ink);
            padding: 0.95rem 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            border: 1px solid var(--border);
            backdrop-filter: blur(10px);
            transition: all 0.4s var(--ease-out-expo);
        }

        .btn-ghost:hover {
            background: #fff;
            border-color: var(--blue-400);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        /* ─── HERO VISUAL ─── */
        .hero-visual {
            margin-top: 4rem;
            opacity: 0;
            animation: reveal-up 1s var(--ease-out-expo) 0.75s forwards;
        }

        .dashboard-preview {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 28px;
            padding: 1.5rem;
            box-shadow:
                0 4px 6px rgba(0, 0, 0, 0.02),
                0 20px 60px rgba(59, 130, 246, 0.12),
                0 60px 120px rgba(59, 130, 246, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
        }

        .dashboard-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--blue-500), var(--blue-400), transparent);
        }

        .dash-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .dash-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .dot-r {
            background: #ff6b6b;
        }

        .dot-y {
            background: #ffd93d;
        }

        .dot-g {
            background: #6bcb77;
        }

        .dash-title {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-left: auto;
            font-weight: 500;
        }

        .dash-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .dash-stat {
            background: var(--bg);
            border-radius: 16px;
            padding: 1.2rem;
            border: 1px solid var(--border);
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }

        .dash-stat:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--glow);
        }

        .dash-stat-label {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 0.4rem;
        }

        .dash-stat-val {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--ink);
        }

        .dash-stat-val span {
            font-size: 0.85rem;
            color: #10b981;
            font-weight: 600;
            margin-left: 0.25rem;
        }

        .dash-stat-icon {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: grid;
            place-items: center;
            font-size: 0.9rem;
        }

        .icon-blue {
            background: rgba(59, 130, 246, 0.1);
            color: var(--blue-500);
        }

        .icon-green {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }

        .icon-purple {
            background: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
        }

        .dash-chart-bar {
            background: var(--bg);
            border-radius: 16px;
            padding: 1.2rem;
            border: 1px solid var(--border);
        }

        .chart-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .bars {
            display: flex;
            align-items: flex-end;
            gap: 0.5rem;
            height: 80px;
        }

        .bar {
            flex: 1;
            border-radius: 6px 6px 0 0;
            background: linear-gradient(to top, var(--blue-600), var(--blue-400));
            opacity: 0.7;
            transition: opacity 0.3s;
            animation: grow-bar 1.2s var(--ease-out-expo) both;
        }

        .bar:hover {
            opacity: 1;
        }

        .bar:nth-child(1) {
            height: 45%;
            animation-delay: 0.8s;
        }

        .bar:nth-child(2) {
            height: 65%;
            animation-delay: 0.9s;
        }

        .bar:nth-child(3) {
            height: 55%;
            animation-delay: 1.0s;
        }

        .bar:nth-child(4) {
            height: 80%;
            animation-delay: 1.1s;
        }

        .bar:nth-child(5) {
            height: 70%;
            animation-delay: 1.2s;
        }

        .bar:nth-child(6) {
            height: 90%;
            animation-delay: 1.3s;
            background: linear-gradient(to top, var(--blue-700), #06b6d4);
            opacity: 1;
        }

        .bar:nth-child(7) {
            height: 60%;
            animation-delay: 1.4s;
        }

        @keyframes grow-bar {
            from {
                transform: scaleY(0);
                transform-origin: bottom;
                opacity: 0;
            }

            to {
                transform: scaleY(1);
                transform-origin: bottom;
            }
        }

        /* Floating cards */
        .float-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 16px;
            padding: 0.85rem 1.2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            font-size: 0.82rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            animation: float-card 4s ease-in-out infinite;
            z-index: 10;
        }

        .fc-left {
            left: -60px;
            top: 30%;
            animation-delay: 0s;
        }

        .fc-right {
            right: -60px;
            top: 55%;
            animation-delay: 1.5s;
        }

        .fc-bottom {
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 0.8s;
        }

        @keyframes float-card {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .fc-bottom {
            animation: float-card-center 4s ease-in-out 0.8s infinite;
        }

        @keyframes float-card-center {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(-8px);
            }
        }

        .fc-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            display: grid;
            place-items: center;
            font-size: 0.85rem;
        }

        /* ─── TICKER ─── */
        .ticker-section {
            padding: 2rem 0;
            overflow: hidden;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        .ticker-track {
            display: flex;
            gap: 4rem;
            animation: ticker 20s linear infinite;
            width: max-content;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-muted);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .ticker-item i {
            color: var(--blue-400);
        }

        @keyframes ticker {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* ─── SECTION COMMONS ─── */
        section {
            padding: 110px 0;
        }

        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--blue-500);
            margin-bottom: 1rem;
        }

        .section-h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            color: var(--ink);
            margin-bottom: 1.2rem;
        }

        .section-p {
            color: var(--text-muted);
            font-size: 1.05rem;
            font-weight: 300;
            line-height: 1.75;
            max-width: 560px;
        }

        /* ─── FEATURES ─── */
        #features {
            background: transparent;
        }

        .features-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: end;
            margin-bottom: 5rem;
        }

        .features-header-right {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .features-header-right .section-p {
            max-width: 100%;
        }

        .feat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .feat-card {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.5s var(--ease-out-expo);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            cursor: default;
        }

        .feat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feat-card:hover::before {
            opacity: 1;
        }

        .feat-card:hover {
            transform: translateY(-12px);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 30px 60px rgba(59, 130, 246, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.1);
        }

        .feat-card.featured {
            background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
            border-color: transparent;
            color: #fff;
        }

        .feat-card.featured:hover {
            box-shadow: 0 30px 60px var(--glow);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .feat-num {
            font-family: var(--font-display);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--blue-400);
            margin-bottom: 1.5rem;
        }

        .feat-card.featured .feat-num {
            color: rgba(255, 255, 255, 0.5);
        }

        .feat-icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .wrap-blue {
            background: rgba(59, 130, 246, 0.1);
            color: var(--blue-500);
        }

        .wrap-white {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }

        .wrap-green {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }

        .wrap-purple {
            background: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
        }

        .wrap-cyan {
            background: rgba(6, 182, 212, 0.1);
            color: #06b6d4;
        }

        .wrap-orange {
            background: rgba(251, 146, 60, 0.1);
            color: #fb923c;
        }

        .feat-card h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .feat-card.featured h3 {
            color: #fff;
        }

        .feat-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.7;
        }

        .feat-card.featured p {
            color: rgba(255, 255, 255, 0.75);
        }

        .feat-arrow {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.08);
            display: grid;
            place-items: center;
            font-size: 0.7rem;
            color: var(--blue-500);
            opacity: 0;
            transform: translate(-4px, 4px);
            transition: all 0.3s;
        }

        .feat-card.featured .feat-arrow {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }

        .feat-card:hover .feat-arrow {
            opacity: 1;
            transform: translate(0, 0);
        }

        /* ─── STATS ─── */
        .stats-band {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1rem;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1;
            background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .stat-divider {
            width: 1px;
            background: var(--border);
            margin: 1rem auto 0;
        }

        /* ─── HOW IT WORKS ─── */
        #how {
            position: relative;
        }

        .how-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .how-header .section-p {
            margin: 0 auto;
        }

        .steps-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            position: relative;
        }

        .steps-timeline::before {
            content: '';
            position: absolute;
            top: 38px;
            left: calc(12.5% + 10px);
            right: calc(12.5% + 10px);
            height: 2px;
            background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
            opacity: 0.3;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2.5rem 1.5rem 1.5rem;
            border-radius: 24px;
            transition: all 0.4s var(--ease-out-expo);
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            position: relative;
        }

        .step-item:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(59, 130, 246, 0.1);
            border-color: rgba(59, 130, 246, 0.2);
        }

        .step-number {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
            color: #fff;
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 800;
            display: grid;
            place-items: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 20px var(--glow);
            position: relative;
            z-index: 1;
        }

        .step-item h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            letter-spacing: -0.02em;
        }

        .step-item p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ─── BENEFITS ─── */
        .benefit-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 8rem;
        }

        .benefit-row:last-child {
            margin-bottom: 0;
        }

        .benefit-row.reverse {
            direction: rtl;
        }

        .benefit-row.reverse>* {
            direction: ltr;
        }

        .benefit-visual {
            border-radius: 32px;
            overflow: hidden;
            position: relative;
            height: 440px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.08);
            display: grid;
            place-items: center;
        }

        .benefit-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--blue-50) 0%, rgba(219, 234, 254, 0.3) 100%);
        }

        .benefit-visual-inner {
            position: relative;
            z-index: 1;
            padding: 2rem;
            width: 100%;
        }

        /* Invoice mock */
        .invoice-mock {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border);
        }

        .inv-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .inv-badge {
            background: rgba(59, 130, 246, 0.1);
            color: var(--blue-600);
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.25rem 0.6rem;
            border-radius: 6px;
            letter-spacing: 0.06em;
        }

        .inv-num {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 0.9rem;
            color: var(--ink);
        }

        .inv-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.78rem;
            padding: 0.4rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .inv-row-label {
            color: var(--text-muted);
        }

        .inv-row-val {
            font-weight: 600;
            color: var(--ink);
        }

        .inv-total {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
            padding-top: 0.75rem;
            border-top: 2px solid var(--blue-100);
        }

        .inv-total-label {
            font-weight: 700;
            color: var(--ink);
            font-size: 0.9rem;
        }

        .inv-total-val {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--blue-600);
        }

        /* Mobile mock */
        .mobile-mock {
            width: 180px;
            margin: 0 auto;
            background: var(--ink);
            border-radius: 32px;
            padding: 1rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .mobile-screen {
            background: var(--bg);
            border-radius: 22px;
            overflow: hidden;
            height: 280px;
            padding: 0.75rem;
        }

        .mob-stat {
            background: #fff;
            border-radius: 10px;
            padding: 0.6rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid var(--border);
        }

        .mob-stat-icon {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            display: grid;
            place-items: center;
            font-size: 0.6rem;
        }

        .mob-stat-text {
            font-size: 0.6rem;
        }

        .mob-stat-text b {
            display: block;
            font-weight: 700;
            color: var(--ink);
        }

        .mob-stat-text span {
            color: var(--text-muted);
        }

        .mob-bar-row {
            display: flex;
            align-items: flex-end;
            gap: 0.25rem;
            height: 50px;
            margin-top: 0.5rem;
        }

        .mob-bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            background: linear-gradient(to top, var(--blue-600), var(--blue-400));
        }

        /* Security visual */
        .security-visual {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .sec-center {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 2.5rem;
            color: #fff;
            box-shadow: 0 0 0 20px rgba(59, 130, 246, 0.1), 0 0 0 40px rgba(59, 130, 246, 0.05);
            animation: sec-pulse 3s ease-in-out infinite;
        }

        @keyframes sec-pulse {

            0%,
            100% {
                box-shadow: 0 0 0 20px rgba(59, 130, 246, 0.1), 0 0 0 40px rgba(59, 130, 246, 0.05);
            }

            50% {
                box-shadow: 0 0 0 30px rgba(59, 130, 246, 0.08), 0 0 0 60px rgba(59, 130, 246, 0.03);
            }
        }

        .sec-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 1rem;
        }

        .sec-pill {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 0.4rem 0.9rem;
            font-size: 0.73rem;
            font-weight: 600;
            color: var(--ink);
        }

        .sec-pill i {
            color: var(--blue-500);
            font-size: 0.65rem;
        }

        /* Benefit text */
        .benefit-label {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--blue-500);
            margin-bottom: 0.75rem;
        }

        .benefit-h3 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            color: var(--ink);
            margin-bottom: 1.25rem;
        }

        .benefit-p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        .check-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.93rem;
            color: var(--ink);
            font-weight: 500;
        }

        .check-icon {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.1);
            display: grid;
            place-items: center;
            font-size: 0.6rem;
            color: #10b981;
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* ─── TESTIMONIALS ─── */
        .testimonials-section {
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            padding: 100px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .test-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .test-header .section-p {
            margin: 0 auto;
        }

        .test-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .test-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 24px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            transition: all 0.4s var(--ease-out-expo);
        }

        .test-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.08);
            border-color: rgba(59, 130, 246, 0.2);
        }

        .test-stars {
            color: #f59e0b;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .test-quote {
            font-size: 0.93rem;
            color: var(--ink);
            line-height: 1.75;
            margin-bottom: 1.5rem;
            font-style: italic;
            font-weight: 300;
        }

        .test-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .test-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }

        .test-name {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--ink);
        }

        .test-role {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ─── CTA ─── */
        .cta-section {
            padding: 100px 0;
        }

        .cta-inner {
            background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 50%, var(--blue-900) 100%);
            border-radius: 40px;
            padding: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-inner::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
            top: -200px;
            right: -100px;
        }

        .cta-inner::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 65%);
            bottom: -150px;
            left: -50px;
        }

        .cta-eyebrow {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.8);
            padding: 0.35rem 1rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .cta-h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 1.25rem;
            position: relative;
            z-index: 1;
        }

        .cta-p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.05rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .cta-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn-white {
            background: #fff;
            color: var(--blue-700);
            padding: 0.95rem 2.5rem;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s var(--ease-out-expo);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-white {
            background: transparent;
            color: #fff;
            padding: 0.95rem 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s var(--ease-out-expo);
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-3px);
        }

        /* ─── FOOTER ─── */
        footer {
            padding: 70px 0 30px;
            border-top: 1px solid var(--border);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.7;
            margin-top: 1rem;
            max-width: 260px;
        }

        .footer-col h5 {
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--ink);
            margin-bottom: 1.25rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.88rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--blue-500);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.82rem;
        }

        .footer-socials {
            display: flex;
            gap: 0.75rem;
        }

        .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(59, 130, 246, 0.06);
            border: 1px solid var(--border);
            display: grid;
            place-items: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s;
        }

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

        /* ─── WHATSAPP ─── */
        .wa-container {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
        }

        .wa-bubble {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 10px 16px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--ink);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(12px) scale(0.95);
            transition: all 0.4s var(--ease-spring);
            pointer-events: none;
            white-space: nowrap;
            position: relative;
        }

        .wa-bubble::after {
            content: '';
            position: absolute;
            bottom: -6px;
            right: 22px;
            width: 12px;
            height: 12px;
            background: #fff;
            transform: rotate(45deg);
            border-right: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .wa-container.show .wa-bubble {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .wa-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25d366, #128c7e);
            display: grid;
            place-items: center;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
            transition: all 0.4s var(--ease-spring);
            animation: wa-float 3.5s ease-in-out infinite;
        }

        .wa-btn i {
            color: #fff;
            font-size: 1.8rem;
        }

        .wa-btn:hover {
            transform: scale(1.12);
            box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
            animation-play-state: paused;
        }

        @keyframes wa-float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-7px);
            }
        }

        /* ─── SCROLL REVEAL ─── */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        /* ─── ANIMATIONS ─── */
        @keyframes reveal-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            .features-header {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-timeline {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-timeline::before {
                display: none;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: rgba(240, 245, 255, 0.97);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                gap: 2rem;
                transition: 0.5s var(--ease-out-expo);
                box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }

            .nav-links.open {
                right: 0;
            }

            .hero {
                padding: 100px 0 60px;
            }

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

            .benefit-row,
            .benefit-row.reverse {
                grid-template-columns: 1fr;
                direction: ltr;
                gap: 2.5rem;
            }

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

            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .cta-inner {
                padding: 50px 2rem;
            }

            .fc-left,
            .fc-right {
                display: none;
            }

            .dashboard-preview {
                margin: 0 -0.5rem;
            }

            .stat-number {
                font-size: 2.8rem;
            }

            .stats-band {
                padding: 50px 0;
            }
        }

        @media (max-width: 580px) {
            .dash-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .steps-timeline {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 2.6rem;
            }

            .stats-band {
                padding: 40px 0;
            }
        }