/* Extracted inline styles from /platform.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.18) 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: 5rem;
            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; }

        /* 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; }

        /* Intro Box */
        .intro-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: 900px;
            margin: 0 auto;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .intro-box h2 { color: #3b82f6; font-size: 1.5rem; margin-bottom: 1rem; }
        .intro-box p { color: #9ca3af; line-height: 1.8; }

        /* Platform Cards */
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        @media (max-width: 900px) { .platform-grid { grid-template-columns: 1fr; } }

        .platform-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: 2.5rem;
            text-align: center;
            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);
        }
        .platform-card::before {
            content: "";
            position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--card-color, #3b82f6), transparent);
            opacity: 0; transition: opacity 0.3s;
        }
        .platform-card:hover {
            transform: translateY(-6px) !important;
            border-color: rgba(96, 165, 250, 0.4);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.08);
        }
        .platform-card:hover::before { opacity: 1; }
        .platform-card:hover h3 { color: #93c5fd; }
        .platform-card .icon-box {
            width: 4rem;
            height: 4rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
        }
        .platform-card .icon-box.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
        .platform-card .icon-box.green { background: rgba(29, 78, 216, 0.15); color: #3b82f6; }
        .platform-card .icon-box.cyan { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
        .platform-card h3 { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
        .platform-card .label { color: #60a5fa; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
        .platform-card p { color: #9ca3af; line-height: 1.7; }

        /* Accordion */
        .accordion-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;
        }
        .accordion-item:hover, .accordion-item.open {
            border-color: rgba(96, 165, 250, 0.25);
        }
        .accordion-header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            background: transparent;
            border: none;
            color: #3b82f6;
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: background 0.2s;
        }
        .accordion-header:hover { background: rgba(255, 255, 255, 0.02); }
        .accordion-header i.chevron { color: #6b7280; transition: transform 0.3s; }
        .accordion-item.open .accordion-header i.chevron { transform: rotate(180deg); }
        .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .accordion-item.open .accordion-content { max-height: 500px; }
        .accordion-body { padding: 0 1.5rem 1.5rem; color: #9ca3af; line-height: 1.8; }
        .accordion-body ul { list-style: none; padding: 0; margin: 1rem 0; }
        .accordion-body li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
        .accordion-body li::before { content: "->"; position: absolute; left: 0; color: #3b82f6; }
        .accordion-body strong { color: #fff; }

        /* Steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
        }
        @media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

        .step-card {
            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;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .step-card:hover {
            border-color: rgba(96, 165, 250, 0.3);
            transform: translateY(-3px) !important;
        }
        .step-number {
            width: 2.5rem;
            height: 2.5rem;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: 700;
        }
        .step-card h4 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
        .step-card p { color: #9ca3af; font-size: 0.875rem; }

        /* CTA */
        .cta-box {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.04));
            border: 1px solid rgba(59, 130, 246, 0.25);
            border-radius: 20px;
            padding: 3.5rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.18), transparent 60%);
            pointer-events: none;
        }
        .cta-box > * { position: relative; z-index: 1; }
        .cta-box h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
        .cta-box p { color: #9ca3af; margin-bottom: 2rem; font-size: 1.1rem; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #9ca3af;
            font-size: 0.875rem;
        }
        .trust-badge i { color: #1d4ed8; }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
            text-align: center;
        }
        @media (max-width: 600px) { .stats-row { grid-template-columns: 1fr; } }
        .stat-value {
            font-size: 2.5rem; font-weight: 800;
            background: linear-gradient(135deg, #3B82F6, #60a5fa, #93c5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label { color: #6b7280; font-size: 0.9rem; }

        .footnote {
            max-width: 1000px;
            margin: 0 auto 2rem;
            padding: 0 1.5rem;
            font-size: 0.8rem;
            color: #6b7280;
        }


/* 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;
}

/* Per-product card colors */
.platform-card:nth-child(1) { --card-color: #3b82f6; }
.platform-card:nth-child(1) .icon-box { background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.08)) !important; color: #60a5fa !important; }
.platform-card:nth-child(2) { --card-color: #10b981; }
.platform-card:nth-child(2) .icon-box { background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.08)) !important; color: #34d399 !important; }
.platform-card:nth-child(2):hover h3 { color: #6ee7b7 !important; }
.platform-card:nth-child(3) { --card-color: #8b5cf6; }
.platform-card:nth-child(3) .icon-box { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.08)) !important; color: #a78bfa !important; }
.platform-card:nth-child(3):hover h3 { color: #c4b5fd !important; }

/* Card heading transition */
.platform-card h3 { transition: color 0.3s; }

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