﻿        .hero {
            padding: 96px 0 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            animation: blob 15s infinite alternate;
            z-index: -1;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            animation: blob 20s infinite alternate-reverse;
            z-index: -1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text p {
            font-size: 1.125rem;
            margin-bottom: 32px;
            max-width: 480px;
        }

        .hero-perks {
            display: flex;
            gap: 24px;
            margin-top: 32px;
            border-top: 1px solid var(--surface-200);
            padding-top: 24px;
            flex-wrap: wrap;
        }

        .perk {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-900);
        }

        /* --- Mobile (Screens below 720px) --- */
            @media (max-width: 719px) {
                .hero-perks {
                    flex-direction: column;
                    align-items: center;
                }
            
                .perk {
                    min-width: 264px;
                }
            }

        .perk-icon {
            color: var(--brand-accent);
            font-size: 1.2rem;
        }

        .hero-visual {
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-mockup {
            width: 280px;
            height: 580px;
            background: white;
            border-radius: 40px;
            border: 8px solid var(--text-900);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .phone-screen {
            background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
            height: 100%;
            padding: 24px;
            padding-top: 60px;
        }

        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 25px;
            background: var(--text-900);
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 16px;
            z-index: 3;
        }

        .float-card {
            position: absolute;
            background: white;
            padding: 16px 24px;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--surface-100);
            z-index: 3;
            animation: float 6s ease-in-out infinite;
        }

        .float-1 {
            top: 10%;
            left: -20px;
            animation-delay: 0s;
        }

        .float-2 {
            bottom: 20%;
            right: -40px;
            animation-delay: -3s;
        }

        .fc-title {
            font-size: 0.75rem;
            color: var(--text-400);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .fc-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--brand-primary);
        }

        .fc-status {
            display: inline-block;
            padding: 4px 8px;
            background: #ECFDF5;
            color: var(--brand-accent);
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 8px;
        }

        .trust-section {
            background: var(--surface-white);
            padding: 40px 0;
            border-top: 1px solid var(--surface-200);
            border-bottom: 1px solid var(--surface-200);
        }

        .trust-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .trust-item-icon {
            width: 40px;
            height: 40px;
            background: var(--surface-50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--brand-secondary);
        }

        .trust-item-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-900);
        }

        .trust-item-sub {
            font-size: 0.75rem;
            color: var(--text-400);
        }

