/* roulang page: index */
:root {
            --brand-primary: #0A364A;
            --brand-accent: #0D9488;
            --brand-deep: #071E26;
            --bg-canvas: #F8FAFC;
        }
        body {
            background-color: var(--bg-canvas);
            color: #1e293b;
            overflow-x: hidden;
        }
        .pill-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.85rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.025em;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .glass-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(10, 54, 74, 0.08), 0 8px 10px -6px rgba(10, 54, 74, 0.04);
            border-color: rgba(13, 148, 136, 0.3);
        }
        .hero-search-shadow {
            box-shadow: 0 16px 32px -4px rgba(15, 76, 129, 0.12);
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease-out;
        }
        .accordion-content.active {
            max-height: 500px;
        }
