/* High-Trust Bento Grid Design System - Comparison Focus */
        :root {
            --bento-bg: #020806; /* Deep Emerald-Black Void */
            --bento-card: rgba(8, 20, 16, 0.75);
            --bento-border: rgba(16, 185, 129, 0.12); /* Emerald Border */
            --bento-accent-1: #10b981; /* Emerald */
            --bento-accent-2: #34d399; /* Mint */
            --bento-accent-3: #ef4444; /* Red (For legacy pitfalls) */
            --bento-accent-4: #f59e0b; /* Amber */
            --text-primary: #f0fdf4;
            --text-secondary: #a7f3d0;
        }

        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 20% 20%, rgba(16, 185, 129, 0.1), transparent 45%),
                        radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.08), transparent 45%);
        }
        
        .bento-container {
            max-width: 1400px; margin: 0 auto; padding: 140px 24px 100px 24px;
        }

        /* Hero */
        .bento-hero { text-align: center; margin-bottom: 80px; max-width: 900px; 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, #a7f3d0); -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 Layout */
        .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(52, 211, 153, 0.4); box-shadow: 0 30px 60px rgba(0,0,0,0.8); }
        
        .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 h3 { font-size: clamp(24px, 2.2vw, 32px); font-weight: 800; margin: 0 0 16px 0; color: #fff; line-height: 1.15; letter-spacing: -0.5px;}
        .bcard p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

        .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; z-index: 2; position: relative;
        }
        .badge i { font-size: 18px; }
        .badge-emerald { background: rgba(16, 185, 129, 0.1); color: var(--bento-accent-1); border-color: rgba(16, 185, 129, 0.2); }
        .badge-red { background: rgba(239, 68, 68, 0.1); color: var(--bento-accent-3); border-color: rgba(239, 68, 68, 0.2); }
        .badge-amber { background: rgba(245, 158, 11, 0.1); color: var(--bento-accent-4); border-color: rgba(245, 158, 11, 0.2); }

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

        .img-standard {
            width: 100%; height: auto; border-radius: 20px; 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); }

        /* Backgrounds for Square Cards */
        .img-bg-cover {
            position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
            opacity: 0.12; transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .bcard:hover .img-bg-cover { opacity: 0.22; transform: scale(1.05); }

        .dark-overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,8,6,1) 30%, rgba(2,8,6,0.4) 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; align-self: flex-start; position: relative; z-index: 2;
        }
        .btn-bento:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }

        /* Comparison Table Inside Bento Grid */
        .comparison-table-wrapper {
            width: 100%; overflow-x: auto; margin-top: 20px;
        }
        table {
            width: 100%; min-width: 800px; border-collapse: collapse; text-align: left;
        }
        th, td {
            padding: 16px 20px; border-bottom: 1px solid rgba(16, 185, 129, 0.1);
        }
        th {
            font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #fff; font-weight: 700;
        }
        td {
            font-size: 15px; color: var(--text-secondary); line-height: 1.5;
        }
        td strong {
            color: #fff;
        }

        @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; display: flex; flex-direction: column; }
            .bcard-horiz p { text-align: center; }
            .bcard-horiz .img-container { justify-content: center; margin-top: 24px; width: 100%; }
            .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; }
            .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(52, 211, 153, 0.4); background: rgba(8, 20, 16, 0.95); }
        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; }