    :root {
        --tmv-blue: #2851e8;
        --tmv-blue-bright: #4169f5;
        --tmv-blue-dark: #1e3fb3;
        --tmv-blue-light: #6b8eff;
        --tmv-blue-tint: rgba(40, 81, 232, 0.08);
        
        --reparto-violet: #7c3aed;
        --reparto-violet-light: #a78bfa;
        --reparto-violet-tint: rgba(124, 58, 237, 0.08);
        
        --ink: #0a0a14;
        --ink-soft: #1a1a2e;
        --muted: #64748b;
        --muted-light: #94a3b8;
        --line: #e2e8f0;
        --line-soft: #f1f5f9;
        --light: #f8fafc;
        --white: #ffffff;
        
        --green: #10b981;
    }

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

    html { scroll-behavior: smooth; }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.55;
        color: var(--ink);
        overflow-x: hidden;
        background: var(--white);
        -webkit-font-smoothing: antialiased;
        font-feature-settings: 'ss01', 'cv11';
        letter-spacing: -0.005em;
    }

    /* ============================================
       HEADER — Editorial dark
       ============================================ */
    .header {
        background: rgba(10, 10, 20, 0.92);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        color: white;
        padding: 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-container {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 32px;
        gap: 24px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        transition: opacity 0.2s ease;
        flex-shrink: 0;
    }

    .logo:hover { opacity: 0.85; }

    .logo-mark {
        width: 36px;
        height: 36px;
        background: linear-gradient(180deg, var(--tmv-blue-bright) 0%, var(--tmv-blue) 100%);
        border-radius: 9px;
        display: grid;
        place-items: center;
        color: white;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: -0.04em;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 14px -4px rgba(40, 81, 232, 0.6);
        font-family: 'Inter', sans-serif;
    }

    .logo-mark::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.12) 100%);
    }

    .logo-text {
        font-size: 18px;
        font-weight: 800;
        letter-spacing: -0.025em;
        color: white;
        line-height: 1;
    }

    /* Desktop Navigation */
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 4px;
        align-items: center;
    }

    .nav-menu a {
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        transition: all 0.2s ease;
        padding: 8px 14px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: -0.005em;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: white;
    }

    .nav-menu .login-link {
        border: 1px solid rgba(255, 255, 255, 0.15);
        margin-left: 4px;
    }

    .nav-menu .login-link:hover {
        border-color: rgba(255, 255, 255, 0.3);
    }

    /* Reparto link in header */
    .nav-menu .reparto-link {
        background: linear-gradient(135deg, var(--reparto-violet) 0%, #6d28d9 100%) !important;
        color: white !important;
        padding: 8px 14px !important;
        border-radius: 10px !important;
        font-weight: 600 !important;
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 12px -2px rgba(124, 58, 237, 0.4);
        position: relative;
        overflow: hidden;
        margin-left: 4px;
    }

    .nav-menu .reparto-link::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.15) 100%);
    }

    .nav-menu .reparto-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px -4px rgba(124, 58, 237, 0.5);
    }

    .reparto-link-mark {
        width: 20px;
        height: 20px;
        background: white;
        color: var(--reparto-violet);
        border-radius: 5px;
        display: grid;
        place-items: center;
        font-size: 12px;
        font-weight: 800;
        position: relative;
        z-index: 1;
    }

    .reparto-link-text, .reparto-link-arrow {
        position: relative;
        z-index: 1;
    }

    .reparto-link-arrow {
        font-size: 11px;
        opacity: 0.85;
    }

    /* Hamburger */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        background: none;
        border: none;
        border-radius: 10px;
        transition: background 0.2s ease;
    }

    .hamburger:hover { background: rgba(255, 255, 255, 0.08); }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: white;
        margin: 2.5px 0;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Mobile Navigation */
    .mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 320px;
        background: var(--ink);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1000;
        padding: 80px 20px 40px;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mobile-nav.active { transform: translateX(0); }
    .mobile-nav ul { list-style: none; padding: 0; margin: 0; }
    .mobile-nav li { margin-bottom: 4px; }
    .mobile-nav a {
        display: block;
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        padding: 12px 16px;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.2s ease;
        border-radius: 10px;
    }
    .mobile-nav a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: white;
    }
    .mobile-nav .reparto-link-mobile {
        background: linear-gradient(135deg, var(--reparto-violet) 0%, #6d28d9 100%);
        color: white !important;
        margin-top: 12px;
        font-weight: 600;
        display: flex !important;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 12px -2px rgba(124, 58, 237, 0.4);
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 20, 0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(4px);
    }
    .mobile-overlay.active { opacity: 1; visibility: visible; }

    /* ============================================
       HERO — Editorial with TMV identity
       ============================================ */
    .hero {
        background: linear-gradient(135deg, #0a0a14 0%, #131333 40%, #1e1b5e 100%);
        color: white;
        padding: 160px 0 100px;
        text-align: left;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -100px;
        width: 900px;
        height: 900px;
        background: radial-gradient(circle, rgba(65, 105, 245, 0.4) 0%, transparent 60%);
        filter: blur(60px);
        border-radius: 50%;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -300px;
        left: -100px;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 60%);
        filter: blur(60px);
        border-radius: 50%;
    }

    .hero-grid-bg {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
        -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    }

    .hero-content {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        align-items: center;
    }

    @media (min-width: 1024px) {
        .hero-content {
            grid-template-columns: 1.4fr 1fr;
            gap: 64px;
        }
    }

    .hero-text {
        max-width: 720px;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 600;
        color: var(--tmv-blue-light);
        letter-spacing: 0.16em;
        text-transform: uppercase;
        margin-bottom: 28px;
    }

    .eyebrow::before {
        content: '';
        width: 28px;
        height: 1px;
        background: var(--tmv-blue-light);
    }

    .eyebrow-dot {
        width: 8px;
        height: 8px;
        background: var(--tmv-blue-light);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

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

    .hero h1 {
        font-size: clamp(40px, 6vw, 76px);
        margin-bottom: 28px;
        font-weight: 800;
        letter-spacing: -0.045em;
        line-height: 0.95;
        color: white;
    }

    .hero h1 em {
        font-family: 'Instrument Serif', serif;
        font-style: italic;
        font-weight: 400;
        color: var(--tmv-blue-light);
    }

    .hero p {
        font-size: 19px;
        margin-bottom: 40px;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.55;
        max-width: 560px;
    }

    .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        align-items: center;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: white;
        color: var(--ink);
        padding: 16px 28px;
        text-decoration: none;
        border-radius: 14px;
        font-weight: 700;
        font-size: 15px;
        transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
        letter-spacing: -0.005em;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px -8px rgba(255, 255, 255, 0.3);
    }

    .cta-button.secondary {
        background: rgba(255, 255, 255, 0.08);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
    }

    .cta-button.secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }

    /* Hero side stats */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        position: relative;
        z-index: 2;
    }

    .hero-stat {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        padding: 24px;
        backdrop-filter: blur(10px);
    }

    .hero-stat-val {
        font-size: 40px;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1;
        color: white;
        margin-bottom: 8px;
    }

    .hero-stat-val em {
        font-family: 'Instrument Serif', serif;
        font-style: italic;
        font-weight: 400;
        color: var(--tmv-blue-light);
        font-size: 0.55em;
        margin-left: 4px;
    }

    .hero-stat-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    /* Hero trust badges */
    .hero-trust {
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }

    .hero-trust-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 600;
    }

    .hero-trust-items {
        display: flex;
        gap: 24px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
        flex-wrap: wrap;
    }

    .hero-trust-item {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .hero-trust-item::before {
        content: '✓';
        color: var(--tmv-blue-light);
        font-weight: 700;
    }

    /* ============================================
       SECTION SHARED STYLES
       ============================================ */
    .section {
        padding: 100px 0;
        position: relative;
    }

    .section-header {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 64px;
    }

    .section-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        font-weight: 600;
        color: var(--tmv-blue);
        letter-spacing: 0.16em;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .section-eyebrow::before,
    .section-eyebrow::after {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--tmv-blue);
    }

    .section-title {
        font-size: clamp(32px, 4.5vw, 56px);
        font-weight: 800;
        letter-spacing: -0.035em;
        line-height: 1;
        margin-bottom: 20px;
        color: var(--ink);
    }

    .section-title em {
        font-family: 'Instrument Serif', serif;
        font-style: italic;
        font-weight: 400;
        color: var(--tmv-blue);
    }

    .section-subtitle {
        font-size: 18px;
        color: var(--muted);
        line-height: 1.55;
    }

    /* ============================================
       PRODUCT SHOWCASE — Carousel
       ============================================ */
    .product-showcase {
        padding: 100px 0;
        background: var(--light);
        position: relative;
    }

    .showcase-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        align-items: center;
    }

    @media (min-width: 1024px) {
        .showcase-container {
            grid-template-columns: 1.4fr 1fr;
            gap: 64px;
        }
    }

    .carousel-container {
        position: relative;
        max-width: 100%;
        margin: auto;
        overflow: hidden;
        border-radius: 24px;
        box-shadow: 0 30px 60px -15px rgba(10, 10, 20, 0.2);
        background: var(--ink);
        border: 1px solid var(--line);
    }

    .carousel-slide {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .carousel-slide img {
        width: 100%;
        object-fit: cover;
        flex-shrink: 0;
        display: block;
    }

    .carousel-prev, .carousel-next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ink);
        font-size: 16px;
        font-weight: 700;
        transition: all 0.2s ease;
        border-radius: 50%;
        user-select: none;
        background: white;
        backdrop-filter: blur(10px);
        z-index: 10;
        border: 1px solid var(--line);
        box-shadow: 0 4px 12px rgba(10, 10, 20, 0.1);
    }

    .carousel-prev { left: 16px; }
    .carousel-next { right: 16px; }

    .carousel-prev:hover, .carousel-next:hover {
        background: var(--ink);
        color: white;
        transform: translateY(-50%) scale(1.05);
        border-color: var(--ink);
    }

    .carousel-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }

    .carousel-dot {
        cursor: pointer;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background: white;
        width: 24px;
        border-radius: 4px;
    }

    .slide-counter {
        position: absolute;
        top: 16px;
        right: 16px;
        background: rgba(10, 10, 20, 0.7);
        color: white;
        padding: 6px 12px;
        border-radius: 99px;
        font-size: 11px;
        font-weight: 600;
        font-family: 'JetBrains Mono', monospace;
        z-index: 10;
        backdrop-filter: blur(10px);
    }

    .slide-title {
        position: absolute;
        bottom: 60px;
        left: 16px;
        background: rgba(10, 10, 20, 0.85);
        color: white;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        backdrop-filter: blur(10px);
        z-index: 10;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .showcase-content h2 {
        font-size: clamp(32px, 4vw, 48px);
        font-weight: 800;
        letter-spacing: -0.035em;
        line-height: 1;
        margin-bottom: 24px;
        color: var(--ink);
    }

    .showcase-content h2 em {
        font-family: 'Instrument Serif', serif;
        font-style: italic;
        font-weight: 400;
        color: var(--tmv-blue);
    }

    .showcase-content p {
        font-size: 17px;
        color: var(--muted);
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .showcase-content .cta-button {
        background: var(--ink);
        color: white;
    }

    .showcase-content .cta-button:hover {
        background: var(--tmv-blue);
    }

    /* ============================================
       BENEFITS — Editorial cards
       ============================================ */
    .benefits {
        background: white;
    }

    .benefits-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    @media (min-width: 768px) {
        .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .benefit-card {
        background: var(--white);
        padding: 36px 28px;
        border-radius: 20px;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        border: 1px solid var(--line);
        position: relative;
        overflow: hidden;
    }

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 24px;
        right: 24px;
        height: 2px;
        background: linear-gradient(90deg, var(--tmv-blue), var(--reparto-violet));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-4px);
        border-color: rgba(40, 81, 232, 0.2);
        box-shadow: 0 16px 40px -12px rgba(40, 81, 232, 0.15);
    }

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

    .benefit-icon {
        width: 56px;
        height: 56px;
        background: var(--tmv-blue-tint);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        font-size: 24px;
    }

    .benefit-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
        color: var(--ink);
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.15;
    }

    .benefit-card p {
        color: var(--muted);
        line-height: 1.6;
        font-size: 15px;
    }

    /* ============================================
       PRODUCTS SECTION
       ============================================ */
    .products {
        background: var(--light);
        position: relative;
        overflow: hidden;
    }

    .products-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    @media (min-width: 768px) {
        .products-grid { grid-template-columns: repeat(2, 1fr); }
    }

    .product-card {
        background: white;
        padding: 40px 32px;
        border-radius: 24px;
        transition: all 0.3s ease;
        border: 1px solid var(--line);
        position: relative;
    }

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 56px -16px rgba(10, 10, 20, 0.12);
        border-color: rgba(40, 81, 232, 0.2);
    }

    .product-card-badge {
        display: inline-block;
        background: var(--tmv-blue-tint);
        color: var(--tmv-blue);
        padding: 6px 12px;
        border-radius: 99px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .product-card h3 {
        font-size: 36px;
        margin-bottom: 16px;
        color: var(--ink);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1;
    }

    .product-card h3 em {
        font-family: 'Instrument Serif', serif;
        font-style: italic;
        font-weight: 400;
        color: var(--tmv-blue);
    }

    .product-card p {
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 24px;
        font-size: 15px;
    }

    .product-features {
        list-style: none;
        text-align: left;
    }

    .product-features li {
        padding: 10px 0;
        color: var(--ink);
        position: relative;
        padding-left: 28px;
        font-size: 14px;
        border-bottom: 1px solid var(--line-soft);
        font-weight: 500;
    }

    .product-features li:last-child { border-bottom: none; }

    .product-features li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 14px;
        width: 18px;
        height: 18px;
        background: var(--tmv-blue);
        border-radius: 50%;
        display: flex;
    }

    .product-features li::after {
        content: '✓';
        position: absolute;
        left: 4px;
        top: 11px;
        color: white;
        font-size: 11px;
        font-weight: 800;
    }

    /* ============================================
       REPARTO — Featured ecosystem product
       ============================================ */
    .reparto-section {
        padding: 120px 0;
        background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .reparto-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.45) 0%, transparent 60%);
        filter: blur(70px);
        border-radius: 50%;
    }

    .reparto-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse at top right, black 20%, transparent 80%);
        -webkit-mask-image: radial-gradient(ellipse at top right, black 20%, transparent 80%);
    }

    .reparto-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        align-items: center;
    }

    @media (min-width: 1024px) {
        .reparto-container {
            grid-template-columns: 1.3fr 1fr;
            gap: 64px;
        }
    }

    .reparto-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 28px;
    }

    .reparto-eyebrow-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        background: rgba(124, 58, 237, 0.18);
        border: 1px solid rgba(124, 58, 237, 0.35);
        border-radius: 99px;
        font-size: 12px;
        font-weight: 600;
        color: var(--reparto-violet-light);
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .reparto-eyebrow-pill::before {
        content: '✨';
        font-size: 14px;
    }

    .reparto-eyebrow-text {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.55);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-weight: 500;
    }

    .reparto-title {
        font-size: clamp(40px, 5.5vw, 72px);
        font-weight: 800;
        letter-spacing: -0.045em;
        line-height: 0.95;
        margin-bottom: 28px;
    }

    .reparto-title em {
        font-family: 'Instrument Serif', serif;
        font-style: italic;
        font-weight: 400;
        color: var(--reparto-violet-light);
    }

    .reparto-desc {
        font-size: 19px;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.55;
        margin-bottom: 36px;
        max-width: 560px;
    }

    .reparto-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }

    @media (max-width: 480px) {
        .reparto-features { grid-template-columns: 1fr; }
    }

    .reparto-feat {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 500;
    }

    .reparto-feat-dot {
        width: 6px;
        height: 6px;
        background: var(--reparto-violet-light);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .reparto-cta {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 16px 28px;
        background: var(--reparto-violet);
        color: white;
        text-decoration: none;
        border-radius: 14px;
        font-weight: 700;
        font-size: 15px;
        transition: all 0.2s ease;
        box-shadow: 0 8px 24px -6px rgba(124, 58, 237, 0.5);
        position: relative;
        overflow: hidden;
    }

    .reparto-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.15) 100%);
    }

    .reparto-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px -6px rgba(124, 58, 237, 0.6);
    }

    .reparto-cta-mark {
        width: 28px;
        height: 28px;
        background: white;
        color: var(--reparto-violet);
        border-radius: 7px;
        display: grid;
        place-items: center;
        font-size: 16px;
        font-weight: 800;
        position: relative;
        z-index: 1;
    }

    .reparto-cta-text, .reparto-cta-arrow {
        position: relative;
        z-index: 1;
    }

    .reparto-url {
        margin-top: 16px;
        font-family: 'JetBrains Mono', monospace;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        display: block;
    }

    /* Reparto preview card */
    .reparto-preview {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 24px;
        padding: 32px;
        backdrop-filter: blur(20px);
        position: relative;
    }

    .reparto-preview-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .reparto-preview-mark {
        width: 40px;
        height: 40px;
        background: var(--reparto-violet);
        border-radius: 10px;
        display: grid;
        place-items: center;
        color: white;
        font-size: 20px;
        font-weight: 800;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 14px -4px rgba(124, 58, 237, 0.6);
    }

    .reparto-preview-mark::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.15) 100%);
    }

    .reparto-preview-info-name {
        font-size: 16px;
        font-weight: 700;
        color: white;
    }

    .reparto-preview-info-desc {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.55);
    }

    .reparto-preview-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .reparto-preview-stat {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 16px;
    }

    .reparto-preview-stat-val {
        font-size: 24px;
        font-weight: 800;
        letter-spacing: -0.025em;
        line-height: 1;
        color: white;
    }

    .reparto-preview-stat-val em {
        font-family: 'Instrument Serif', serif;
        font-style: italic;
        font-weight: 400;
        color: var(--reparto-violet-light);
        font-size: 0.6em;
    }

    .reparto-preview-stat-label {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.55);
        margin-top: 6px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    /* ============================================
       TRUST SECTION
       ============================================ */
    .trust {
        padding: 80px 0;
        background: white;
        text-align: center;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .trust-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
    }

    .trust h2 {
        font-size: 14px;
        margin-bottom: 32px;
        color: var(--muted);
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .trust-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 48px;
        flex-wrap: wrap;
    }

    .trust-logo {
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: var(--muted-light);
        letter-spacing: -0.01em;
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .trust-logo:hover {
        opacity: 1;
        color: var(--tmv-blue);
    }

    /* ============================================
       CTA SECTION (final)
       ============================================ */
    .cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--tmv-blue) 0%, var(--tmv-blue-dark) 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -150px;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
        filter: blur(60px);
        border-radius: 50%;
    }

    .cta-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
        -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    }

    .cta-container {
        max-width: 760px;
        margin: 0 auto;
        padding: 0 32px;
        position: relative;
        z-index: 2;
    }

    .cta-section h2 {
        font-size: clamp(36px, 5vw, 60px);
        margin-bottom: 24px;
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1;
    }

    .cta-section h2 em {
        font-family: 'Instrument Serif', serif;
        font-style: italic;
        font-weight: 400;
        opacity: 0.95;
    }

    .cta-section p {
        font-size: 19px;
        margin-bottom: 36px;
        opacity: 0.85;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-section .cta-button {
        background: var(--ink);
        color: white;
    }

    .cta-section .cta-button:hover {
        background: white;
        color: var(--ink);
        box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.3);
    }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
        background: var(--ink);
        color: white;
        padding: 64px 0 32px;
        position: relative;
    }

    .footer-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    @media (min-width: 768px) {
        .footer-container { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    }

    .footer-brand-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .footer-brand-logo .logo-mark {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .footer-brand-logo .logo-text {
        font-size: 16px;
    }

    .footer-section h3 {
        margin-bottom: 16px;
        color: white;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .footer-section p,
    .footer-section a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        margin-bottom: 8px;
        display: block;
        font-size: 14px;
        transition: color 0.2s ease;
    }

    .footer-section a:hover { color: white; }

    .footer-section p {
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .social-links {
        display: flex;
        gap: 8px;
        margin-top: 8px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.2s ease;
        font-size: 14px;
        margin-bottom: 0 !important;
    }

    .social-link:hover {
        background: var(--tmv-blue);
        border-color: var(--tmv-blue);
        transform: translateY(-2px);
    }

    /* Reparto link in footer products */
    .footer-reparto-link {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        color: var(--reparto-violet-light) !important;
        font-weight: 600;
    }

    .footer-reparto-link::after {
        content: '↗';
        font-size: 11px;
        opacity: 0.7;
    }

    .footer-reparto-link:hover {
        color: white !important;
    }

    .footer-bottom {
        text-align: center;
        padding: 24px 32px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 48px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 13px;
    }

    /* Responsive */
    @media (max-width: 1023px) {
        .nav-menu { display: none; }
        .hamburger { display: flex; }
        .hero { padding: 130px 0 80px; }
        .hero-content { padding: 0 24px; }
        .hero-stats { display: none; }
        .section { padding: 80px 0; }
        .product-showcase, .reparto-section, .cta-section { padding: 80px 0; }
        .reparto-section { padding: 100px 0 80px; }
    }

    @media (max-width: 640px) {
        .hero-actions { flex-direction: column; align-items: stretch; }
        .cta-button { justify-content: center; }
        .hero-trust { gap: 16px; }
        .hero-trust-items { gap: 16px; }
    }

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.lang-switcher::before {
    content: '🌐';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    opacity: 0.75;
    pointer-events: none;
}
.lang-select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 8px 30px 8px 32px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.lang-select:hover,
.lang-select:focus {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    outline: none;
}
.lang-select option {
    background: #0a0a14;
    color: #fff;
}
.lang-switcher::after {
    content: '▾';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    opacity: 0.7;
    pointer-events: none;
}

.lang-switcher-mobile {
    padding: 16px 24px 0;
}
.lang-switcher-mobile .lang-select {
    width: 100%;
    background: rgba(10, 10, 20, 0.04);
    color: #0a0a14;
    border-color: rgba(10, 10, 20, 0.12);
}
.lang-switcher-mobile .lang-select option {
    background: #fff;
    color: #0a0a14;
}

/* ============================================
   PRODUCT MOCKUPS — pure HTML/CSS screenshots of each module
   ============================================ */
.carousel-slide > .mock {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 16 / 10;
    box-sizing: border-box;
    background: linear-gradient(180deg, #0f1220 0%, #0a0a14 100%);
    color: #e5e7eb;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.mock-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mock-chrome-dots {
    display: flex;
    gap: 6px;
}
.mock-chrome-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}
.mock-chrome-dots span:nth-child(1) { background: #ff5f57; }
.mock-chrome-dots span:nth-child(2) { background: #febc2e; }
.mock-chrome-dots span:nth-child(3) { background: #28c840; }
.mock-chrome-url {
    flex: 1;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'JetBrains Mono', monospace;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mock-body {
    flex: 1;
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 0;
}
.mock-sidebar {
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mock-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
.mock-sidebar-brand-mark {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, #4169f5 0%, #2851e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
}
.mock-nav-item {
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.mock-nav-item.active {
    background: rgba(65, 105, 245, 0.18);
    color: #a7bcff;
}
.mock-nav-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.7;
}

.mock-content {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    overflow: hidden;
}
.mock-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
.mock-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -6px;
}

.mock-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.mock-kpi {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 12px;
}
.mock-kpi-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}
.mock-kpi-val {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
}
.mock-kpi-delta {
    font-size: 9px;
    color: #34d399;
    margin-top: 2px;
}
.mock-kpi-delta.down { color: #f87171; }

.mock-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 0;
}
.mock-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}
.mock-chart-header .pill {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(65, 105, 245, 0.2);
    color: #a7bcff;
    font-size: 9px;
    font-weight: 600;
}
.mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    flex: 1;
    min-height: 40px;
}
.mock-bar {
    flex: 1;
    background: linear-gradient(180deg, #4169f5 0%, #2851e8 100%);
    border-radius: 3px 3px 0 0;
    min-height: 6px;
    opacity: 0.85;
}
.mock-bar:nth-child(4n) { background: linear-gradient(180deg, #7c3aed 0%, #5b21b6 100%); }

.mock-line {
    flex: 1;
    position: relative;
}
.mock-line svg { width: 100%; height: 100%; display: block; }

/* Module-specific layouts */
.mock-machines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex: 1;
    min-height: 0;
}
.mock-machine {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mock-machine-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}
.mock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.6);
}
.mock-dot.warn { background: #fbbf24; box-shadow: 0 0 6px rgba(251, 191, 36, 0.5); }
.mock-dot.off { background: #64748b; box-shadow: none; }
.mock-machine-val {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.mock-machine-meta {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    justify-content: space-between;
}

.mock-table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.mock-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 60px;
    gap: 8px;
    padding: 7px 12px;
    font-size: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.75);
}
.mock-row:last-child { border-bottom: none; }
.mock-row.head {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.mock-pill {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.18);
    color: #6ee7b7;
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}
.mock-pill.yellow { background: rgba(251, 191, 36, 0.18); color: #fde68a; }

/* Routes map */
.mock-map {
    flex: 1;
    position: relative;
    background:
        radial-gradient(circle at 20% 40%, rgba(65, 105, 245, 0.10) 0, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(124, 58, 237, 0.10) 0, transparent 50%),
        linear-gradient(135deg, #10152a 0%, #0a0a14 100%);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.mock-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}
.mock-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mock-map-stop {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4169f5;
    border: 2px solid #fff;
    box-shadow: 0 0 0 4px rgba(65, 105, 245, 0.25);
    transform: translate(-50%, -50%);
}
.mock-map-stop.end { background: #7c3aed; box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.25); }
.mock-map-stop.start { background: #34d399; box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.25); }

/* Finance */
.mock-hero-num {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}
.mock-hero-num em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 500;
    color: #a7bcff;
}
.mock-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    flex: 1;
    min-height: 0;
}
.mock-donut {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mock-donut-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background:
        conic-gradient(#4169f5 0 55%, #7c3aed 55% 82%, #34d399 82% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mock-donut-ring::after {
    content: '';
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0f1220;
}

.mock-legend {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 8px;
}
.mock-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
}
.mock-legend-dot { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }

/* Water levels */
.mock-tanks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    flex: 1;
    min-height: 0;
}
.mock-tank {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 0;
}
.mock-tank-name {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
}
.mock-tank-gauge {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    min-height: 40px;
}
.mock-tank-fill {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #4169f5 0%, #2851e8 100%);
    border-radius: 0 0 6px 6px;
}
.mock-tank-fill.low { background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%); }
.mock-tank-fill.crit { background: linear-gradient(180deg, #f87171 0%, #dc2626 100%); }
.mock-tank-pct {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

/* Mobile: compress mockups a bit */
@media (max-width: 720px) {
    .carousel-slide > .mock { font-size: 10px; }
    .mock-body { grid-template-columns: 0 1fr; }
    .mock-sidebar { display: none; }
    .mock-kpis { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .mock-kpi { padding: 8px; }
    .mock-kpi-val { font-size: 13px; }
    .mock-machines-grid { grid-template-columns: repeat(2, 1fr); }
    .mock-tanks { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .mock-content { padding: 12px; }
}

/* Additional mockup variants */
.mock-kpis.kpi-4 { grid-template-columns: repeat(4, 1fr); gap: 6px; }
.mock-kpis.kpi-4 .mock-kpi { padding: 8px 10px; }
.mock-kpis.kpi-4 .mock-kpi-val { font-size: 14px; }
.mock-kpi.income { border-color: rgba(52, 211, 153, 0.4); background: rgba(52, 211, 153, 0.06); }
.mock-kpi.expense { border-color: rgba(248, 113, 113, 0.4); background: rgba(248, 113, 113, 0.06); }
.mock-kpi.profit { border-color: rgba(65, 105, 245, 0.4); background: rgba(65, 105, 245, 0.08); }
.mock-kpi.margin { border-color: rgba(124, 58, 237, 0.4); background: rgba(124, 58, 237, 0.08); }
.mock-kpi.income .mock-kpi-val { color: #6ee7b7; }
.mock-kpi.expense .mock-kpi-val { color: #fca5a5; }
.mock-kpi.profit .mock-kpi-val { color: #a7bcff; }
.mock-kpi.margin .mock-kpi-val { color: #c4b5fd; }

.mock-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.mock-chip {
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 500;
}
.mock-chip.active {
    background: rgba(65, 105, 245, 0.2);
    border-color: rgba(65, 105, 245, 0.4);
    color: #a7bcff;
}
.mock-sub-stats {
    display: flex;
    gap: 14px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}
.mock-sub-stats strong { color: #fff; font-weight: 700; }
.mock-sub-stats .crit { color: #fca5a5; }
.mock-sub-stats .low { color: #fde68a; }
.mock-sub-stats .ok { color: #6ee7b7; }

/* Machine serial chip */
.mock-machine-serial {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}
