/* Extracted inline styles from /security.html (H5) */
body {
            background: #0B0D12;
            color: #ffffff;
            font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }
        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .gradient-text {
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section { padding: 5rem 0; position: relative; z-index: 1; }
        .section-alt { background: rgba(255, 255, 255, 0.02); }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

        /* Hero */
        .hero { padding-top: 10rem; padding-bottom: 4rem; text-align: center; position: relative; }
        .hero::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }
        .hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
        .hero .subtitle { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: #60a5fa; max-width: 700px; margin: 0 auto 2rem; line-height: 1.5; font-weight: 600; }
        .hero p { font-size: 1.1rem; color: #9ca3af; max-width: 700px; margin: 0 auto 3rem; line-height: 1.7; }

        /* Stats Row */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }
        @media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

        .stat-box {
            background: linear-gradient(135deg, rgba(15, 20, 30, 0.7), rgba(15, 20, 30, 0.4));
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(96, 165, 250, 0.1);
            border-radius: 14px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .stat-box:hover { border-color: rgba(96, 165, 250, 0.4); transform: translateY(-2px) !important; }
        .stat-value {
            font-size: 2rem; font-weight: 800; margin-bottom: 0.25rem;
            background: linear-gradient(135deg, #3B82F6, #60a5fa, #93c5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label { font-size: 0.875rem; color: #6b7280; }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            padding: 2rem 0;
        }
        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }
        .trust-badge-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.06));
            border: 1px solid rgba(96, 165, 250, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: #60a5fa;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
            transition: all 0.3s;
        }
        .trust-badge:hover .trust-badge-icon {
            border-color: rgba(96, 165, 250, 0.5);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
        }
        .trust-badge-text { font-weight: 600; font-size: 0.9rem; color: #d1d5db; }

        /* Section Headers */
        .section-header { text-align: center; margin-bottom: 3rem; }
        .section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
        .section-header p { color: #9ca3af; max-width: 600px; margin: 0 auto; }

        /* Pillar Cards */
        .pillar-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 768px) { .pillar-grid { grid-template-columns: 1fr; } }

        .pillar-card {
            background: linear-gradient(135deg, rgba(15, 20, 30, 0.8), rgba(15, 20, 30, 0.5));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(96, 165, 250, 0.12);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .pillar-card::before {
            content: "";
            position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, #3b82f6, transparent);
            opacity: 0; transition: opacity 0.3s;
        }
        .pillar-card:hover {
            border-color: rgba(96, 165, 250, 0.4);
            transform: translateY(-4px) !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.08);
        }
        .pillar-card:hover::before { opacity: 1; }
        .pillar-card:hover h3 { color: #93c5fd; }

        .pillar-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            font-size: 1.5rem;
            color: #3b82f6;
        }
        .pillar-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
        .pillar-card .subtitle { color: #6b7280; font-size: 0.875rem; margin-bottom: 1rem; }
        .pillar-card ul { list-style: none; padding: 0; margin: 0; }
        .pillar-card li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.5rem 0;
            color: #d1d5db;
            font-size: 0.9375rem;
        }
        .pillar-card li i { color: #1d4ed8; margin-top: 0.2rem; flex-shrink: 0; }

        /* Architecture */
        .arch-box {
            background: linear-gradient(135deg, rgba(15, 20, 30, 0.8), rgba(15, 20, 30, 0.5));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(96, 165, 250, 0.15);
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .arch-layer {
            background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 0.75rem;
            padding: 1rem 1.5rem;
            margin-bottom: 0.75rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .arch-layer:last-child { margin-bottom: 0; }
        .arch-layer-name { font-weight: 600; display: flex; align-items: center; gap: 0.75rem; }
        .arch-layer-name i { color: #3b82f6; }
        .arch-layer-tech { color: #6b7280; font-size: 0.875rem; }

        /* FAQ */
        .faq-item {
            background: linear-gradient(135deg, rgba(15, 20, 30, 0.7), rgba(15, 20, 30, 0.4));
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(96, 165, 250, 0.1);
            border-radius: 14px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: border-color 0.3s;
        }
        .faq-item:hover, .faq-item.open { border-color: rgba(96, 165, 250, 0.25); }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: background 0.2s;
        }
        .faq-question:hover { background: rgba(255, 255, 255, 0.02); }
        .faq-question i { color: #6b7280; transition: transform 0.3s; }
        .faq-item.open .faq-question i { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .faq-item.open .faq-answer { max-height: 300px; }
        .faq-answer-inner { padding: 0 1.5rem 1.5rem; color: #9ca3af; line-height: 1.7; }

        /* CTA */
        .cta-section { text-align: center; }
        .cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
        .cta-section p { color: #9ca3af; max-width: 550px; margin: 0 auto 2rem; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


/* Section eyebrow labels */
.section-header .eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 0.75rem;
}
.hero .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 1rem;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    background: rgba(96, 165, 250, 0.08);
}
.pillar-card h3 { transition: color 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .pillar-card { transition: border-color 0.2s, box-shadow 0.2s; }
    .pillar-card:hover { transform: none; }
}
