/* Extracted inline styles from /business-solutions.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: 5rem;
            text-align: center;
            position: relative;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            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 */
        .intro-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1.5rem;
            padding: 2.5rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .intro-box h2 { color: #3b82f6; font-size: 1.5rem; margin-bottom: 1rem; }
        .intro-box p { color: #9ca3af; line-height: 1.8; }

        /* Solution Cards */
        .solution-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-left: 4px solid #3b82f6;
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        .solution-card:hover { border-color: rgba(59, 130, 246, 0.5); transform: translateX(5px); }
        .solution-card h3 { font-size: 1.4rem; font-weight: 700; color: #3b82f6; margin-bottom: 0.75rem; }
        .solution-card > p { color: #9ca3af; margin-bottom: 1.5rem; }
        .solution-card h4 { color: #d1d5db; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.75rem; }
        .solution-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
        .solution-card li { padding: 0.4rem 0; color: #9ca3af; }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }
        @media (max-width: 768px) { .benefits-grid { grid-template-columns: 1fr; } }

        .benefit-item {
            background: rgba(59, 130, 246, 0.08);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 0.75rem;
            padding: 1.25rem;
            text-align: center;
        }
        .metric { font-size: 1.75rem; font-weight: 800; color: #3b82f6; display: block; margin-bottom: 0.25rem; }
        .metric-label { font-size: 0.8rem; color: #6b7280; }

        .disclaimer { font-size: 0.75rem; color: #6b7280; margin-top: 0.75rem; font-style: italic; }

        /* Pricing Section */
        .pricing-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1.5rem;
            padding: 3rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

        .pricing-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        .pricing-card:hover { transform: translateY(-5px); border-color: rgba(59, 130, 246, 0.3); }
        .pricing-card.featured { border: 2px solid #3b82f6; }
        .pricing-card.featured::before {
            content: "RECOMMENDED";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
        }

        .pricing-card h4 { color: #3b82f6; font-size: 1.25rem; margin-bottom: 1rem; }
        .price { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
        .price-period { color: #6b7280; font-size: 0.9rem; margin-bottom: 1.5rem; }

        .pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
        .pricing-features li { padding: 0.6rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); color: #9ca3af; font-size: 0.9rem; }
        .pricing-features li::before { content: "✓ "; color: #1d4ed8; font-weight: bold; margin-right: 0.5rem; }

        /* FAQ */
        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        .faq-question {
            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;
        }
        .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; }
        .faq-answer-inner a { color: #3b82f6; }

        /* CTA */
        .cta-box {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(29, 78, 216, 0.1));
            border: 1px solid rgba(59, 130, 246, 0.4);
            border-radius: 1.5rem;
            padding: 3rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .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; }

        .back-link { display: inline-block; color: #9ca3af; margin-bottom: 2rem; font-size: 0.9rem; }
        .back-link:hover { color: #3b82f6; }
