:root {
            --primary: #1a4a6e;
            --accent: #f2742c;
            --dark: #0f2a3d;
            --light: #f8fafc;
            --gray: #64748b;
            --white: #ffffff;
            --green: #16a34a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #1e293b;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(26, 74, 110, 0.1);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
        }
        
        .logo-text h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.75rem;
            color: var(--primary);
            letter-spacing: 1.5px;
            line-height: 1;
        }
        
        .logo-text p {
            font-size: 0.7rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 500;
        }
        
        .nav-cta {
            background: var(--accent);
            color: white;
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(242, 116, 44, 0.25);
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(242, 116, 44, 0.35);
            background: #e66a28;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(160deg, var(--primary) 0%, var(--dark) 100%);
            position: relative;
            overflow: hidden;
            padding: 140px 0 80px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(242, 116, 44, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(242, 116, 44, 0.1) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite 4s;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-content {
            color: white;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(242, 116, 44, 0.15);
            border: 1px solid rgba(242, 116, 44, 0.3);
            color: var(--accent);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 32px;
            letter-spacing: 0.5px;
        }
        
        .hero h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -1px;
            font-weight: 700;
        }
        
        .hero .highlight {
            color: var(--accent);
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 48px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
        }
        
        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--accent);
            color: white;
            padding: 18px 36px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(242, 116, 44, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(242, 116, 44, 0.45);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            color: white;
            padding: 18px 36px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        /* Hero Mockup - NOUVEAU DESIGN SIMPLE */
        .hero-mockup {
            position: relative;
            animation: float 6s ease-in-out infinite;
            max-width: 380px;
            min-width: 340px;
            margin: 0 auto;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .phone-frame {
            background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            max-width: 100%;
        }
        
        .phone-screen {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            aspect-ratio: 9/19.5;
            position: relative;
        }
        
        .screen-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 32px 20px;
            background: linear-gradient(180deg, #f8fafc 0%, white 100%);
        }
        
        /* Animation phase: Scan QR */
        .scan-phase {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            background-color: #1a4a6e;
        }
        
        .scan-phase.active {
            opacity: 1;
        }
        
        .qr-being-scanned {
            width: 160px;
            height: 160px;
            background-size: 16px 16px;
            background-position: 0 0, 8px 8px;
            border-radius: 12px;
            border: 3px solid var(--primary);
            position: relative;
            margin-bottom: 20px;
        }
        
        .qr-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 110px;
            height: 110px;
            background: var(--accent);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: white;
            font-size: 1.2rem;
        }
        
        .scan-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 3px solid var(--accent);
            border-radius: 12px;
            animation: scanPulse 2s ease-in-out infinite;
        }
        
        @keyframes scanPulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
        }
        
        .scan-line {
            position: absolute;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            animation: scanMove 2s linear infinite;
        }
        
        @keyframes scanMove {
            0% { top: 0; }
            50% { top: calc(100% - 3px); }
            100% { top: 0; }
        }
        
        .scan-text {
            font-size: 0.95rem;
            color: var(--primary);
            font-weight: 600;
            text-align: center;
        }
        
        /* Animation phase: Checklist progressive */
        .checklist-phase {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 32px 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .checklist-phase.active {
            opacity: 1;
        }
        
        .checklist-header {
            text-align: center;
            padding-bottom: 16px;
            border-bottom: 2px solid #e5e7eb;
        }
        
        .checklist-header h3 {
            font-size: 0.95rem;
            color: var(--primary);
            margin: 0 0 8px 0;
            font-weight: 700;
        }
        
        .status-badge {
            display: inline-block;
            background: rgba(242, 116, 44, 0.15);
            color: var(--accent);
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        .checklist-items {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .check-item {
            background: #f8fafc;
            padding: 14px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.8rem;
            opacity: 0.3;
            transform: translateX(-10px);
            transition: all 0.4s ease;
        }
        
        .check-item.validating {
            opacity: 1;
            transform: translateX(0);
            background: rgba(242, 116, 44, 0.1);
            border: 2px solid var(--accent);
        }
        
        .check-item.validated {
            opacity: 1;
            transform: translateX(0);
            background: rgba(22, 163, 74, 0.1);
            border: 2px solid var(--green);
        }
        
        .check-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
            background: #e5e7eb;
            color: #94a3b8;
        }
        
        .check-item.validating .check-icon {
            background: var(--accent);
            color: white;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .check-item.validated .check-icon {
            background: var(--green);
            color: white;
        }
        
        /* Animation phase: Success */
        .success-phase {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .success-phase.active {
            opacity: 1;
        }
        
        .success-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--green), #22c55e);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        @keyframes successPop {
            0% { transform: scale(0); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .success-icon svg {
            width: 60px;
            height: 60px;
            color: white;
        }
        
        .success-text {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--green);
            text-align: center;
            margin-bottom: 8px;
        }
        
        .success-subtext {
            font-size: 0.85rem;
            color: var(--gray);
            text-align: center;
        }
        
        /* Stats Section */
        .stats {
            background: var(--primary);
            padding: 80px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
        }
        
        .stat-item {
            text-align: center;
            color: white;
        }
        
        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 12px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .stat-context {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 8px;
        }
        
        /* Trust Section */
        .trust {
            padding: 100px 0;
            background: white;
        }
        
        .trust h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 60px;
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .trust-point {
            text-align: center;
        }
        
        .trust-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(26, 74, 110, 0.1), rgba(242, 116, 44, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .trust-icon svg {
            width: 32px;
            height: 32px;
            color: var(--primary);
        }
        
        .trust-point h4 {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .trust-point p {
            color: var(--gray);
            line-height: 1.6;
        }
        
        .legal-reminder {
            background: rgba(26, 74, 110, 0.05);
            border-left: 4px solid var(--primary);
            padding: 32px;
            border-radius: 12px;
            display: flex;
            gap: 24px;
            align-items: flex-start;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .legal-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }
        
        .legal-text strong {
            display: block;
            color: var(--primary);
            font-size: 1.15rem;
            margin-bottom: 12px;
        }
        
        .legal-text p {
            color: var(--gray);
            margin: 0;
            line-height: 1.7;
        }
        
        .legal-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            margin-left: 8px;
        }
        
        .legal-link:hover {
            text-decoration: underline;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--light);
            padding: 100px 0;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }
        
        .section-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }
        
        .cta-content h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .cta-content > p {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 60px;
        }
        
        .signup-form {
            background: white;
            padding: 48px;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            text-align: left;
        }
        
        .signup-form h4 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 32px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 24px;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(242, 116, 44, 0.1);
        }
        
        .submit-button {
            width: 100%;
            background: var(--accent);
            color: white;
            padding: 16px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 16px;
        }
        
        .submit-button:hover {
            background: #e66a28;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(242, 116, 44, 0.3);
        }
        
        .form-footer {
            text-align: center;
            margin-top: 24px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .form-footer a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background: #0f2a3d;
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 32px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }
        
        .footer-logo h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: white;
            letter-spacing: 1.5px;
        }
        
        .footer-logo p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .footer-bottom {
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 1400px) {
            .hero-mockup {
                max-width: 340px;
            }
        }
        
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            
            .hero-mockup {
                max-width: 320px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 60px;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-mockup {
                max-width: 280px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .cta-content h3 {
                font-size: 2rem;
            }
            
            nav {
                flex-direction: column;
                gap: 16px;
            }
            
            .signup-form {
                padding: 32px 24px;
            }
            
            .trust h3 {
                font-size: 2rem;
            }
            
            .legal-reminder {
                flex-direction: column;
                padding: 24px;
            }
        }

/* ========================================
   Value Props Section - Modern 2026
   ======================================== */

.value-props {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.value-props::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(26, 74, 110, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(242, 116, 44, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.value-props .section-label {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(242, 116, 44, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.bento-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color), var(--card-color-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bento-card:hover::before {
    transform: scaleX(1);
}

.bento-card.card-regulatory {
    grid-column: span 6;
    --card-color: #16a34a;
    --card-color-light: #22c55e;
}

.bento-card.card-internal {
    grid-column: span 6;
    --card-color: #f2742c;
    --card-color-light: #ff8c42;
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--card-color), var(--card-color-light));
    opacity: 0.15;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
}

.card-title-group h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px 0;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-regulatory {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.badge-internal {
    background: rgba(242, 116, 44, 0.1);
    color: #f2742c;
}

.card-description {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.card-benefits {
    margin-top: 32px;
}

.benefits-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item:hover {
    padding-left: 8px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2px;
}

.card-regulatory .benefit-icon {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
}

.card-internal .benefit-icon {
    color: #f2742c;
    background: rgba(242, 116, 44, 0.1);
}

.benefit-text {
    flex: 1;
    color: #475569;
    line-height: 1.6;
}

.benefit-text strong {
    color: var(--dark);
    font-weight: 600;
}

.bento-card.card-cta {
    grid-column: span 12;
    background: white;
    border: 3px solid var(--primary);
    text-align: center;
    padding: 64px 48px;
    margin-top: 24px;
    position: relative;
}

.card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.cta-description {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 18px 44px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(242, 116, 44, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(242, 116, 44, 0.5);
}

@media (max-width: 1024px) {
    .bento-card.card-regulatory,
    .bento-card.card-internal {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .value-props {
        padding: 80px 0;
    }
    
    .bento-card {
        padding: 32px;
    }
}