/* Bento Grid Design System */
        :root {
            --bento-bg: #09090b;
            --bento-card: rgba(24, 24, 27, 0.65);
            --bento-border: rgba(255, 255, 255, 0.08);
            --bento-accent-1: #38bdf8;
            --bento-accent-2: #a78bfa;
            --bento-accent-3: #fbbf24;
            --bento-accent-4: #34d399;
            --text-primary: #f8fafc;
            --text-secondary: #a1a1aa;
        }

        body {
            background-color: var(--bento-bg);
            color: var(--text-primary);
            font-family: 'Plus Jakarta Sans', sans-serif;
            margin: 0;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }

        .bg-glow {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            z-index: -1; pointer-events: none;
            background: radial-gradient(circle at 15% 0%, rgba(56, 189, 248, 0.12), transparent 40%),
                        radial-gradient(circle at 85% 100%, rgba(167, 139, 250, 0.12), transparent 40%);
        }
        
        .bento-container {
            max-width: 1400px; margin: 0 auto; padding: 140px 24px 100px 24px;
        }

        /* Hero */
        .bento-hero { text-align: center; margin-bottom: 80px; max-width: 860px; margin-left: auto; margin-right: auto; }
        .bento-hero h1 {
            font-size: clamp(3rem, 5vw, 5rem); font-weight: 900; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 24px;
            background: linear-gradient(to right, #ffffff, #a1a1aa); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .bento-hero p { font-size: 1.25rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 40px; }
        
        /* Grid */
        .bento-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 380px; gap: 24px; margin-bottom: 80px;
        }

        .bcard {
            background: var(--bento-card); border: 1px solid var(--bento-border); border-radius: 32px;
            padding: 40px; position: relative; overflow: hidden; display: flex; flex-direction: column;
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .bcard:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
        
        .span-2-col { grid-column: span 2; }
        .span-3-col { grid-column: span 3; }
        .span-4-col { grid-column: span 4; }
        .span-2-row { grid-row: span 2; }

        .bcard-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; }
        
        .bcard h3 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 800; margin: 0 0 16px 0; color: #fff; line-height: 1.1; letter-spacing: -0.5px;}
        .bcard p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin: 0; max-width: 85%; }

        .badge {
            align-self: flex-start; padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; border: 1px solid transparent; display: inline-flex; align-items: center; gap: 8px;
        }
        .badge i { font-size: 18px; }
        .badge-blue { background: rgba(56, 189, 248, 0.1); color: var(--bento-accent-1); border-color: rgba(56, 189, 248, 0.2); }
        .badge-violet { background: rgba(167, 139, 250, 0.1); color: var(--bento-accent-2); border-color: rgba(167, 139, 250, 0.2); }
        .badge-amber { background: rgba(251, 191, 36, 0.1); color: var(--bento-accent-3); border-color: rgba(251, 191, 36, 0.2); }
        .badge-green { background: rgba(52, 211, 153, 0.1); color: var(--bento-accent-4); border-color: rgba(52, 211, 153, 0.2); }

        /* Flex Layouts for Bento Boxes */
        .bcard-horiz {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }
        .bcard-horiz .bcard-content {
            flex: 1;
            max-width: 55%;
        }
        .bcard-horiz .img-container {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        .bcard-reverse {
            flex-direction: row-reverse;
        }
        .bcard-reverse .img-container {
            justify-content: flex-start;
        }
        
        .bcard-vert {
            flex-direction: column;
            justify-content: flex-start;
            gap: 32px;
        }
        .bcard-vert .bcard-content {
            max-width: 100%;
            height: auto;
        }
        .bcard-vert .img-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            margin-top: auto;
        }

        .img-standard {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.4s ease;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .bcard:hover .img-standard {
            transform: scale(1.02) translateY(-5px);
        }

        /* Background Cover Image */
        .img-bg-cover {
            position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
            opacity: 0.3; transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .bcard:hover .img-bg-cover { opacity: 0.6; transform: scale(1.05); }

        .dark-overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,11,1) 10%, rgba(9,9,11,0.2) 100%); z-index: 1;
        }

        .btn-bento {
            background: #fff; color: #000; padding: 16px 32px; border-radius: 100px; font-weight: 800; font-size: 16px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; margin-top: auto; align-self: flex-start;
        }
        .btn-bento:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }

        @media (max-width: 1024px) {
            .bento-grid { grid-template-columns: repeat(2, 1fr); }
            .span-3-col { grid-column: span 2; }
            .span-4-col { grid-column: span 2; }
            .bcard-horiz { flex-direction: column; text-align: center; }
            .bcard-reverse { flex-direction: column; }
            .bcard-horiz .bcard-content { max-width: 100%; align-items: center; }
            .bcard-horiz .img-container { justify-content: center; margin-top: 24px; }
            .badge { align-self: center; }
            .btn-bento { align-self: center; }
        }
        @media (max-width: 768px) {
            .bento-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(350px, auto); gap: 16px; }
            .span-2-col, .span-3-col, .span-4-col { grid-column: span 1; }
            .span-2-row { grid-row: span 1; min-height: auto; }
            .bcard { padding: 30px; }
            .bcard p { max-width: 100%; }
            .bcard-vert .img-container { margin-top: 24px; }
        }

        .fade-up { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .fade-up.visible { opacity: 1; transform: translateY(0); }
        
        /* FAQs */
        .bento-faqs { max-width: 900px; margin: 100px auto 0 auto; }
        .bento-faqs h2 { text-align: center; font-size: 36px; margin-bottom: 40px; }
        details { background: var(--bento-card); border: 1px solid var(--bento-border); padding: 24px; border-radius: 24px; margin-bottom: 16px; transition: all 0.3s; }
        details[open] { border-color: rgba(255,255,255,0.2); background: rgba(24, 24, 27, 0.9); }
        summary { cursor: pointer; font-size: 18px; font-weight: 700; color: #fff; list-style: none; display: flex; justify-content: space-between; align-items: center; }
        summary::-webkit-details-marker { display: none; }
        summary::after { content: '+'; font-size: 24px; color: var(--text-secondary); transition: 0.3s; }
        details[open] summary::after { transform: rotate(45deg); color: var(--bento-accent-1); }
        details p { color: var(--text-secondary); margin: 16px 0 0 0; line-height: 1.6; }