        * { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { overflow-x: hidden; }
        body { font-family: 'Inter', sans-serif; background: #fafafa; }

        /* ========== HERO ========== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #1E1B4B 0%, #312E81 40%, #3B82F6 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Decorative blobs */
        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
            top: -200px;
            right: -100px;
            border-radius: 50%;
        }
        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            border-radius: 50%;
        }

        /* Floating particles */
        .particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }
        .particle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
            animation: float 8s ease-in-out infinite;
        }
        .particle:nth-child(1) { width: 12px; height: 12px; background: #10B981; top: 15%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 8px; height: 8px; background: #F59E0B; top: 25%; left: 80%; animation-delay: 2s; }
        .particle:nth-child(3) { width: 16px; height: 16px; background: #8B5CF6; top: 60%; left: 15%; animation-delay: 4s; }
        .particle:nth-child(4) { width: 10px; height: 10px; background: #3B82F6; top: 70%; left: 75%; animation-delay: 1s; }
        .particle:nth-child(5) { width: 6px; height: 6px; background: #EC4899; top: 40%; left: 50%; animation-delay: 3s; }
        .particle:nth-child(6) { width: 14px; height: 14px; background: #10B981; top: 80%; left: 90%; animation-delay: 5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(5deg); }
            66% { transform: translateY(10px) rotate(-3deg); }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-text {
            flex: 1;
            max-width: 580px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50px;
            padding: 8px 16px;
            font-size: 13px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 24px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }
        .hero-badge .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #10B981;
            animation: blink 2s infinite;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 52px;
            line-height: 1.15;
            color: #fff;
            margin-bottom: 20px;
        }
        .hero h1 .highlight {
            background: linear-gradient(135deg, #10B981, #34D399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255,255,255,0.75);
            margin-bottom: 36px;
            max-width: 480px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #10B981;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 16px;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
        }
        .btn-primary:hover {
            background: #059669;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 16px;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .btn-secondary:hover {
            border-color: rgba(255,255,255,0.6);
            background: rgba(255,255,255,0.05);
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .hero-stat {
            text-align: left;
        }
        .hero-stat .number {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 28px;
            color: #fff;
        }
        .hero-stat .label {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            margin-top: 2px;
        }

        /* ========== PHONE MOCKUP ========== */
        .hero-visual {
            flex: 0 0 380px;
            position: relative;
        }

        .phone-mockup {
            position: relative;
            width: 280px;
            margin: 0 auto;
            animation: phoneFloat 6s ease-in-out infinite;
        }

        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .phone-frame {
            background: #111;
            border-radius: 36px;
            padding: 12px;
            box-shadow:
                0 25px 60px rgba(0,0,0,0.4),
                0 0 0 1px rgba(255,255,255,0.1),
                inset 0 0 0 1px rgba(255,255,255,0.05);
            position: relative;
            z-index: 2;
        }

        .phone-notch {
            width: 120px;
            height: 28px;
            background: #111;
            border-radius: 0 0 16px 16px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
            margin-top: -1px;
        }

        .phone-screen {
            background: #fafafa;
            border-radius: 26px;
            overflow: hidden;
            aspect-ratio: 9/19.5;
        }

        /* App screen content */
        .app-header {
            background: linear-gradient(135deg, #1E1B4B, #312E81);
            padding: 42px 16px 16px;
            color: #fff;
        }
        .app-header-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 4px;
        }
        .app-header-sub {
            font-size: 11px;
            opacity: 0.7;
        }

        .app-kpi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            padding: 12px;
            margin-top: -8px;
        }
        .app-kpi {
            background: #fff;
            border-radius: 12px;
            padding: 12px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .app-kpi .value {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 16px;
        }
        .app-kpi .value.green { color: #10B981; }
        .app-kpi .value.red { color: #EF4444; }
        .app-kpi .label {
            font-size: 9px;
            color: #9CA3AF;
            text-transform: uppercase;
            margin-top: 2px;
        }
        .app-kpi.full {
            grid-column: 1 / -1;
        }
        .app-kpi .value.big {
            font-size: 20px;
        }

        .app-section-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 11px;
            color: #6B7280;
            text-transform: uppercase;
            padding: 12px 12px 6px;
            letter-spacing: 0.5px;
        }

        .app-mov-list {
            padding: 0 12px;
        }
        .app-mov-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid #F3F4F6;
        }
        .app-mov-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: #F3F4F6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        .app-mov-info { flex: 1; min-width: 0; }
        .app-mov-cat {
            font-weight: 600;
            font-size: 12px;
            color: #1F2937;
        }
        .app-mov-persona {
            font-size: 10px;
            color: #9CA3AF;
        }
        .app-mov-amount {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 13px;
            text-align: right;
        }
        .app-mov-amount.red { color: #EF4444; }
        .app-mov-amount.green { color: #10B981; }

        .app-bottom-nav {
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 8px 0;
            background: #fff;
            border-top: 1px solid #F3F4F6;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
        .app-nav-item {
            text-align: center;
            font-size: 8px;
            color: #9CA3AF;
        }
        .app-nav-item.active { color: #3B82F6; }
        .app-nav-icon { font-size: 16px; display: block; }
        .app-nav-add {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #3B82F6;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-top: -16px;
            box-shadow: 0 4px 12px rgba(59,130,246,0.3);
        }

        /* Secondary phone (tilted behind) */
        .phone-secondary {
            position: absolute;
            top: 40px;
            right: -40px;
            width: 240px;
            opacity: 0.5;
            transform: rotate(8deg) scale(0.85);
            z-index: 1;
            filter: blur(1px);
        }
        .phone-secondary .phone-frame {
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        /* Glow behind phone */
        .phone-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        /* ========== WAVE DIVIDER ========== */
        .hero-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            z-index: 1;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 900px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
                padding: 100px 24px 80px;
                gap: 40px;
            }
            .hero h1 { font-size: 36px; }
            .hero-subtitle { margin: 0 auto 28px; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-visual { flex: none; }
            .phone-secondary { display: none; }
            .phone-mockup { width: 240px; }
        }

        /* ========== TRUST BAR ========== */
        .trust-bar {
            background: #fff;
            padding: 24px 40px;
            text-align: center;
            border-bottom: 1px solid #F3F4F6;
        }
        .trust-bar p {
            font-size: 14px;
            color: #9CA3AF;
            font-weight: 500;
        }
        .trust-icons {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 12px;
        }
        .trust-icon {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #6B7280;
            text-decoration: none;
            transition: color 0.2s;
        }
        a.trust-icon:hover {
            color: #3B82F6;
        }
        .trust-icon span { font-size: 20px; }

        /* ========== FEATURES SECTION ========== */
        .features {
            background: #FAFAFA;
            padding: 100px 40px;
            position: relative;
        }

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

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

        .section-header h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 36px;
            color: #1E1B4B;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .section-header .subtitle {
            font-size: 18px;
            color: #6B7280;
            max-width: 500px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .feature-card {
            background: #fff;
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            border-radius: 20px 20px 0 0;
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
        }
        .feature-card:hover::before {
            opacity: 1;
        }

        /* Color accents per card */
        .feature-card:nth-child(1)::before { background: linear-gradient(90deg, #3B82F6, #8B5CF6); }
        .feature-card:nth-child(2)::before { background: linear-gradient(90deg, #F59E0B, #F97316); }
        .feature-card:nth-child(3)::before { background: linear-gradient(90deg, #10B981, #06B6D4); }
        .feature-card:nth-child(4)::before { background: linear-gradient(90deg, #8B5CF6, #EC4899); }
        .feature-card:nth-child(5)::before { background: linear-gradient(90deg, #06B6D4, #3B82F6); }
        .feature-card:nth-child(6)::before { background: linear-gradient(90deg, #EF4444, #F59E0B); }
        .feature-card:nth-child(7)::before { background: linear-gradient(90deg, #06B6D4, #10B981); }
        .feature-card:nth-child(8)::before { background: linear-gradient(90deg, #F97316, #EF4444); }

        .feature-icon-wrap {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            position: relative;
        }
        /* Icon backgrounds */
        .feature-card:nth-child(1) .feature-icon-wrap { background: rgba(59, 130, 246, 0.1); }
        .feature-card:nth-child(2) .feature-icon-wrap { background: rgba(245, 158, 11, 0.1); }
        .feature-card:nth-child(3) .feature-icon-wrap { background: rgba(16, 185, 129, 0.1); }
        .feature-card:nth-child(4) .feature-icon-wrap { background: rgba(139, 92, 246, 0.1); }
        .feature-card:nth-child(5) .feature-icon-wrap { background: rgba(6, 182, 212, 0.1); }
        .feature-card:nth-child(6) .feature-icon-wrap { background: rgba(239, 68, 68, 0.1); }
        .feature-card:nth-child(7) .feature-icon-wrap { background: rgba(6, 182, 212, 0.1); }
        .feature-card:nth-child(8) .feature-icon-wrap { background: rgba(249, 115, 22, 0.1); }

        .feature-card h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 18px;
            color: #1E1B4B;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 15px;
            line-height: 1.6;
            color: #6B7280;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .features-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .features {
                padding: 72px 24px;
            }
            .section-header h2 {
                font-size: 28px;
            }
        }
        @media (max-width: 580px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .feature-card {
                padding: 28px 24px;
            }
            .section-header h2 {
                font-size: 24px;
            }
        }

        /* ========== HOW IT WORKS ========== */
        .how-it-works {
            background: #fff;
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }

        .how-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .steps {
            display: flex;
            gap: 32px;
            position: relative;
            margin-top: 64px;
        }

        /* Dashed connector line */
        .steps::before {
            content: '';
            position: absolute;
            top: 52px;
            left: 80px;
            right: 80px;
            height: 2px;
            background: repeating-linear-gradient(
                90deg,
                #D1D5DB 0px,
                #D1D5DB 8px,
                transparent 8px,
                transparent 16px
            );
            z-index: 0;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            margin: 0 auto 24px;
            position: relative;
        }
        .step:nth-child(1) .step-number {
            background: rgba(59, 130, 246, 0.1);
            color: #3B82F6;
        }
        .step:nth-child(2) .step-number {
            background: rgba(139, 92, 246, 0.1);
            color: #8B5CF6;
        }
        .step:nth-child(3) .step-number {
            background: rgba(16, 185, 129, 0.1);
            color: #10B981;
        }

        /* Pulsing ring on hover */
        .step-number::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px solid currentColor;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: scale(0.9);
        }
        .step:hover .step-number::after {
            opacity: 0.25;
            transform: scale(1);
        }

        .step-icon {
            font-size: 28px;
            margin-bottom: 16px;
            display: block;
        }

        .step h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 20px;
            color: #1E1B4B;
            margin-bottom: 10px;
        }

        .step p {
            font-size: 15px;
            line-height: 1.6;
            color: #6B7280;
            max-width: 280px;
            margin: 0 auto;
        }

        /* Arrow between steps (desktop) */
        .step-arrow {
            display: none;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .how-it-works {
                padding: 72px 24px;
            }
        }
        @media (max-width: 700px) {
            .steps {
                flex-direction: column;
                gap: 48px;
                align-items: center;
            }
            .steps::before {
                top: 40px;
                bottom: 40px;
                left: 50%;
                right: auto;
                width: 2px;
                height: auto;
                background: repeating-linear-gradient(
                    180deg,
                    #D1D5DB 0px,
                    #D1D5DB 8px,
                    transparent 8px,
                    transparent 16px
                );
            }
            .step {
                max-width: 320px;
            }
            .step-number {
                width: 68px;
                height: 68px;
                font-size: 28px;
            }
        }

        /* Shape divider between features and how-it-works */
        .tilt-divider {
            position: relative;
            height: 60px;
            background: #FAFAFA;
            overflow: hidden;
        }
        .tilt-divider::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0% 100%);
        }

        /* ========== APP PREVIEW / CAROUSEL ========== */
        .app-preview {
            background: linear-gradient(180deg, #EEF2FF 0%, #FAFAFA 100%);
            padding: 100px 40px 120px;
            position: relative;
            overflow: hidden;
        }

        .app-preview-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Carousel wrapper */
        .carousel-wrapper {
            position: relative;
            margin-top: 64px;
        }

        .carousel-track-container {
            overflow: hidden;
            border-radius: 16px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .carousel-slide {
            min-width: 33.333%;
            padding: 0 16px;
            display: flex;
            justify-content: center;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }

        /* Phone mockup in carousel */
        .preview-phone {
            width: 240px;
            position: relative;
            transition: transform 0.4s ease;
        }
        .preview-phone:hover {
            transform: scale(1.03);
        }

        .preview-phone-frame {
            background: #111;
            border-radius: 32px;
            padding: 10px;
            box-shadow:
                0 20px 50px rgba(0,0,0,0.2),
                0 0 0 1px rgba(255,255,255,0.1);
        }

        .preview-phone-notch {
            width: 100px;
            height: 24px;
            background: #111;
            border-radius: 0 0 14px 14px;
            margin: 0 auto;
            margin-top: -1px;
        }

        .preview-phone-screen {
            background: #fafafa;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 9/19.5;
            position: relative;
        }

        /* Slide label */
        .slide-label {
            text-align: center;
            margin-top: 20px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 15px;
            color: #1E1B4B;
        }
        .slide-label span {
            display: block;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 13px;
            color: #9CA3AF;
            margin-top: 4px;
        }

        /* ---- Screen 1: Dashboard ---- */
        .screen-dashboard .scr-header {
            background: linear-gradient(135deg, #1E1B4B, #312E81);
            padding: 36px 14px 14px;
            color: #fff;
        }
        .screen-dashboard .scr-header h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 700;
        }
        .screen-dashboard .scr-header small {
            font-size: 10px;
            opacity: 0.6;
        }
        .screen-dashboard .scr-kpi-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px;
            padding: 10px;
        }
        .screen-dashboard .scr-kpi {
            background: #fff;
            border-radius: 10px;
            padding: 10px 8px;
            text-align: center;
            box-shadow: 0 1px 4px rgba(0,0,0,0.05);
        }
        .screen-dashboard .scr-kpi .v { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 14px; }
        .screen-dashboard .scr-kpi .v.g { color: #10B981; }
        .screen-dashboard .scr-kpi .v.r { color: #EF4444; }
        .screen-dashboard .scr-kpi .l { font-size: 8px; color: #9CA3AF; text-transform: uppercase; margin-top: 2px; }
        .screen-dashboard .scr-kpi.wide { grid-column: 1/-1; }
        .screen-dashboard .scr-kpi .v.big { font-size: 18px; }

        .scr-mini-chart {
            padding: 10px 14px;
        }
        .scr-mini-chart .chart-title {
            font-size: 9px;
            text-transform: uppercase;
            color: #9CA3AF;
            font-weight: 600;
            letter-spacing: 0.3px;
            margin-bottom: 8px;
        }
        .scr-bars {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 50px;
        }
        .scr-bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            min-height: 6px;
        }

        /* ---- Screen 2: Movimenti ---- */
        .screen-movimenti .scr-header {
            background: linear-gradient(135deg, #1E1B4B, #312E81);
            padding: 36px 14px 14px;
            color: #fff;
        }
        .screen-movimenti .scr-header h4 { font-family:'Poppins',sans-serif; font-size:14px; font-weight:700; }
        .screen-movimenti .scr-tabs {
            display: flex;
            gap: 0;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            margin-top: 8px;
            overflow: hidden;
        }
        .screen-movimenti .scr-tab {
            flex: 1;
            text-align: center;
            padding: 6px;
            font-size: 10px;
            font-weight: 500;
            color: rgba(255,255,255,0.5);
        }
        .screen-movimenti .scr-tab.active {
            background: rgba(255,255,255,0.2);
            color: #fff;
            border-radius: 6px;
        }
        .scr-mov-list { padding: 8px 12px; }
        .scr-mov {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 0;
            border-bottom: 1px solid #F3F4F6;
        }
        .scr-mov-ic {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: #F3F4F6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        .scr-mov-info { flex:1; min-width:0; }
        .scr-mov-info .cat { font-weight:600; font-size:11px; color:#1F2937; }
        .scr-mov-info .who { font-size:9px; color:#9CA3AF; }
        .scr-mov-amt { font-family:'Poppins',sans-serif; font-weight:700; font-size:12px; }
        .scr-mov-amt.r { color:#EF4444; }
        .scr-mov-amt.g { color:#10B981; }
        .scr-mov .badge-receipt {
            font-size: 10px;
            margin-left: -4px;
        }

        /* ---- Screen 3: Nuovo Movimento ---- */
        .screen-nuovo .scr-header {
            background: linear-gradient(135deg, #1E1B4B, #312E81);
            padding: 36px 14px 14px;
            color: #fff;
        }
        .screen-nuovo .scr-header h4 { font-family:'Poppins',sans-serif; font-size:14px; font-weight:700; }
        .scr-form { padding: 14px; }
        .scr-field {
            margin-bottom: 10px;
        }
        .scr-field label {
            display: block;
            font-size: 9px;
            font-weight: 600;
            color: #6B7280;
            text-transform: uppercase;
            margin-bottom: 4px;
            letter-spacing: 0.3px;
        }
        .scr-field .input {
            background: #F3F4F6;
            border-radius: 8px;
            padding: 8px 10px;
            font-size: 12px;
            color: #1F2937;
        }
        .scr-field .input.amount {
            font-family: 'Poppins',sans-serif;
            font-weight: 700;
            font-size: 18px;
            color: #EF4444;
        }
        .scr-receipt-box {
            border: 2px dashed #D1D5DB;
            border-radius: 10px;
            padding: 12px;
            text-align: center;
            margin-bottom: 10px;
        }
        .scr-receipt-box .cam { font-size: 20px; }
        .scr-receipt-box .txt { font-size: 9px; color: #9CA3AF; margin-top: 4px; }
        .scr-save-btn {
            background: #3B82F6;
            color: #fff;
            border-radius: 10px;
            padding: 10px;
            text-align: center;
            font-family: 'Poppins',sans-serif;
            font-weight: 600;
            font-size: 13px;
            margin-top: 6px;
        }

        /* ---- Screen 4: Impegni ---- */
        .screen-impegni .scr-header {
            background: linear-gradient(135deg, #1E1B4B, #312E81);
            padding: 36px 14px 14px;
            color: #fff;
        }
        .screen-impegni .scr-header h4 { font-family:'Poppins',sans-serif; font-size:14px; font-weight:700; }
        .scr-impegno-list { padding: 10px 12px; }
        .scr-impegno {
            background: #fff;
            border-radius: 10px;
            padding: 10px;
            margin-bottom: 8px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.05);
        }
        .scr-impegno-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
        }
        .scr-impegno-top .name {
            font-weight: 600;
            font-size: 11px;
            color: #1F2937;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .scr-impegno-top .amt {
            font-family: 'Poppins',sans-serif;
            font-weight: 700;
            font-size: 12px;
            color: #1E1B4B;
        }
        .scr-progress {
            height: 6px;
            background: #F3F4F6;
            border-radius: 3px;
            overflow: hidden;
        }
        .scr-progress-bar {
            height: 100%;
            border-radius: 3px;
            transition: width 0.3s ease;
        }
        .scr-impegno-meta {
            display: flex;
            justify-content: space-between;
            font-size: 8px;
            color: #9CA3AF;
            margin-top: 4px;
        }

        /* Carousel dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 36px;
        }
        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #D1D5DB;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }
        .carousel-dot.active {
            background: #3B82F6;
            width: 28px;
            border-radius: 5px;
        }

        /* Curve divider */
        .curve-divider {
            position: relative;
            height: 60px;
            background: #fff;
            overflow: hidden;
        }
        .curve-divider::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #EEF2FF 0%, #FAFAFA 100%);
            clip-path: ellipse(55% 100% at 50% 0%);
        }

        /* Responsive carousel */
        @media (max-width: 900px) {
            .carousel-slide {
                min-width: 50%;
            }
            .app-preview {
                padding: 72px 24px 100px;
            }
        }
        @media (max-width: 580px) {
            .carousel-slide {
                min-width: 100%;
            }
            .preview-phone {
                width: 220px;
            }
        }

        /* ========== PRICING ========== */
        .pricing {
            background: #fff;
            padding: 100px 40px;
        }
        .pricing-container {
            max-width: 500px;
            margin: 0 auto;
        }
        .price-card {
            border: 2px solid #3B82F6;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
        }
        .price-card:hover {
            transform: scale(1.02);
            box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
        }
        .price-card-header {
            background: linear-gradient(135deg, #3B82F6, #8B5CF6);
            padding: 28px;
            text-align: center;
            color: #fff;
        }
        .price-card-header .price-label {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            letter-spacing: 2px;
        }
        .price-card-header .price-sub {
            font-size: 14px;
            opacity: 0.8;
            margin-top: 4px;
        }
        .price-card-body {
            padding: 32px;
        }
        .price-features {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
        }
        .price-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #F3F4F6;
            font-size: 15px;
            color: #374151;
        }
        .price-features li:last-child { border-bottom: none; }
        .price-features .check {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.1);
            color: #10B981;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            font-weight: 700;
        }
        .price-cta {
            display: block;
            width: 100%;
            background: #10B981;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 16px;
            padding: 16px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
        }
        .price-cta:hover {
            background: #059669;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
        }

        @media (max-width: 580px) {
            .pricing { padding: 72px 24px; }
            .price-card-header .price-label { font-size: 26px; }
        }

        /* ========== FAQ ========== */
        .faq {
            background: #F3F4F6;
            padding: 100px 40px;
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-list {
            margin-top: 56px;
        }
        .faq-item {
            background: #fff;
            border-radius: 14px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            transition: box-shadow 0.3s ease;
        }
        .faq-item:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
        }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            background: none;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: #1E1B4B;
            text-align: left;
            gap: 16px;
        }
        .faq-question:hover {
            color: #3B82F6;
        }
        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.1);
            color: #3B82F6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            transition: transform 0.3s ease, background 0.3s ease;
            font-weight: 300;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: #3B82F6;
            color: #fff;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
        }
        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 15px;
            line-height: 1.7;
            color: #6B7280;
        }

        @media (max-width: 580px) {
            .faq { padding: 72px 24px; }
            .faq-question { font-size: 14px; padding: 16px 20px; }
            .faq-answer-inner { padding: 0 20px 16px; font-size: 14px; }
        }

        /* ========== CTA FINALE ========== */
        .cta-finale {
            background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #3B82F6 100%);
            padding: 100px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-finale::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%);
            top: -150px;
            right: -100px;
            border-radius: 50%;
        }
        .cta-finale-container {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .cta-finale h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 36px;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .cta-finale .cta-sub {
            font-size: 18px;
            color: rgba(255,255,255,0.75);
            margin-bottom: 40px;
            line-height: 1.6;
        }
        .cta-big-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #10B981;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 18px;
            padding: 18px 40px;
            border-radius: 14px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
            animation: pulse 2.5s infinite;
        }
        .cta-big-btn:hover {
            background: #059669;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 12px 40px rgba(16, 185, 129, 0.45);
        }
        @keyframes pulse {
            0% { box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35), 0 0 0 0 rgba(16, 185, 129, 0.3); }
            70% { box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35), 0 0 0 16px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35), 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        @media (max-width: 580px) {
            .cta-finale { padding: 72px 24px; }
            .cta-finale h2 { font-size: 26px; }
            .cta-big-btn { font-size: 16px; padding: 16px 32px; }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #1E1B4B;
            padding: 60px 40px 0;
            color: rgba(255,255,255,0.7);
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .footer-brand h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 22px;
            color: #fff;
            margin-bottom: 10px;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.6;
            max-width: 280px;
        }
        .footer-col h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: #fff;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col li { margin-bottom: 10px; }
        .footer-col a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }
        .footer-col a:hover { color: #3B82F6; }
        .footer-bottom {
            text-align: center;
            padding: 24px 0;
            font-size: 13px;
            color: rgba(255,255,255,0.35);
        }

        @media (max-width: 700px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .site-footer { padding: 48px 24px 0; }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== SITE NAVBAR ========== */
        .site-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 40px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(30, 27, 75, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            transition: background 0.3s;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .nav-brand img {
            width: 40px;
            height: 40px;
            border-radius: 10px;
        }
        .nav-brand span {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 20px;
            color: #fff;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: #fff; }
        .nav-cta {
            background: #3B82F6 !important;
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 10px;
            font-weight: 600 !important;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(59,130,246,0.4);
        }
        @media (max-width: 700px) {
            .site-nav { padding: 0 20px; height: 60px; }
            .nav-brand img { width: 34px; height: 34px; }
            .nav-brand span { font-size: 17px; }
            .nav-links { gap: 16px; }
            .nav-links a:not(.nav-cta) { display: none; }
            .nav-cta { padding: 8px 18px; font-size: 13px !important; }
        }

        /* ========== SHOWCASE SECTION ========== */
        .showcase-section {
            background: linear-gradient(180deg, #F0F4FF 0%, #FAFAFA 100%);
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }
        .showcase-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 64px;
        }
        .showcase-text { flex: 1; }
        .showcase-badge {
            display: inline-block;
            background: linear-gradient(135deg, #3B82F6, #8B5CF6);
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 12px;
            padding: 6px 16px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }
        .showcase-text h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 36px;
            color: #1E1B4B;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .showcase-text > p {
            font-size: 16px;
            color: #6B7280;
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 460px;
        }
        .showcase-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .showcase-feat {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .showcase-feat-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(59, 130, 246, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .showcase-feat h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: #1E1B4B;
            margin-bottom: 2px;
        }
        .showcase-feat p {
            font-size: 13px;
            color: #9CA3AF;
            line-height: 1.4;
        }
        .showcase-visual { flex-shrink: 0; }

        /* Showcase phone mockup */
        .showcase-phone {
            width: 280px;
            background: #111;
            border-radius: 36px;
            padding: 12px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1);
        }
        .showcase-phone-notch {
            width: 100px;
            height: 24px;
            background: #111;
            border-radius: 0 0 14px 14px;
            margin: 0 auto;
            margin-top: -1px;
        }
        .showcase-phone-screen {
            background: #fafafa;
            border-radius: 26px;
            overflow: hidden;
        }
        .showcase-scr-header {
            background: linear-gradient(135deg, #1E1B4B, #312E81);
            padding: 36px 16px 16px;
            color: #fff;
        }
        .showcase-scr-header h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .showcase-scr-header .members-row {
            display: flex;
            gap: 6px;
            margin-top: 8px;
        }
        .showcase-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.3);
        }
        .showcase-scr-body { padding: 14px; }
        .showcase-scr-label {
            font-size: 9px;
            text-transform: uppercase;
            color: #9CA3AF;
            font-weight: 600;
            letter-spacing: 0.3px;
            margin-bottom: 10px;
        }
        .showcase-settlement {
            background: #fff;
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .showcase-settle-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 0;
        }
        .showcase-settle-item + .showcase-settle-item {
            border-top: 1px solid #F3F4F6;
        }
        .settle-from, .settle-to {
            font-weight: 600;
            font-size: 12px;
            color: #1F2937;
        }
        .settle-arrow {
            color: #3B82F6;
            font-size: 14px;
            font-weight: 700;
        }
        .settle-amount {
            margin-left: auto;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 13px;
            color: #EF4444;
        }
        .showcase-total {
            text-align: center;
            padding: 10px;
            background: #F0F4FF;
            border-radius: 10px;
        }
        .showcase-total .label { font-size: 9px; color: #6B7280; text-transform: uppercase; font-weight: 600; }
        .showcase-total .value { font-family:'Poppins',sans-serif; font-weight:800; font-size:20px; color:#1E1B4B; }

        @media (max-width: 900px) {
            .showcase-container { flex-direction: column; text-align: center; gap: 40px; }
            .showcase-text > p { margin: 0 auto 32px; }
            .showcase-features { max-width: 400px; margin: 0 auto; }
            .showcase-section { padding: 72px 24px; }
            .showcase-text h2 { font-size: 28px; }
        }
        @media (max-width: 580px) {
            .showcase-features { grid-template-columns: 1fr; }
            .showcase-phone { width: 240px; }
        }

        /* ---- Screen 5: Trasferimenti ---- */
        .screen-trasferimenti .scr-header {
            background: linear-gradient(135deg, #1E1B4B, #312E81);
            padding: 36px 14px 14px;
            color: #fff;
        }
        .screen-trasferimenti .scr-header h4 { font-family:'Poppins',sans-serif; font-size:14px; font-weight:700; }
        .scr-transfer-list { padding: 10px 12px; }
        .scr-transfer-card {
            background: #fff;
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-left: 4px solid #D1D5DB;
        }
        .scr-transfer-card.pending { border-left-color: #F59E0B; }
        .scr-transfer-card.accepted { border-left-color: #10B981; }
        .scr-transfer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
        }
        .scr-transfer-top .who { font-weight: 600; font-size: 12px; color: #1F2937; }
        .scr-transfer-top .amt { font-family:'Poppins',sans-serif; font-weight:700; font-size:14px; color:#1E1B4B; }
        .scr-transfer-row {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 10px;
            color: #6B7280;
        }
        .scr-transfer-row .arrow { color: #3B82F6; font-weight: 700; }
        .scr-transfer-status {
            display: inline-block;
            font-size: 9px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 10px;
            margin-top: 6px;
        }
        .scr-transfer-status.pending { background: #FEF3C7; color: #92400E; }
        .scr-transfer-status.accepted { background: #D1FAE5; color: #065F46; }

        /* ---- Screen 6: Progetto ---- */
        .screen-progetto .scr-header {
            background: linear-gradient(135deg, #1E1B4B, #312E81);
            padding: 36px 14px 14px;
            color: #fff;
        }
        .screen-progetto .scr-header h4 { font-family:'Poppins',sans-serif; font-size:14px; font-weight:700; }
        .screen-progetto .scr-header small { font-size: 10px; opacity: 0.6; }
        .scr-voce-list { padding: 10px 12px; }
        .scr-voce-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 0;
            border-bottom: 1px solid #F3F4F6;
        }
        .scr-voce-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: #F3F4F6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        .scr-voce-info { flex: 1; }
        .scr-voce-info .name { font-weight: 600; font-size: 11px; color: #1F2937; }
        .scr-voce-info .sub { font-size: 9px; color: #9CA3AF; }
        .scr-voce-status { font-size: 14px; }
        .scr-mini-settlement {
            margin: 10px 12px;
            padding: 10px;
            background: #F0F4FF;
            border-radius: 10px;
        }
        .scr-mini-settlement .title {
            font-size: 9px;
            text-transform: uppercase;
            font-weight: 600;
            color: #6B7280;
            margin-bottom: 6px;
        }
        .scr-settle-row {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 10px;
            color: #374151;
            padding: 3px 0;
        }
        .scr-settle-row .name { font-weight: 600; }
        .scr-settle-row .arr { color: #3B82F6; }
        .scr-settle-row .amt { margin-left: auto; font-weight: 700; color: #EF4444; font-family: 'Poppins', sans-serif; }
