/* Hero section - explicit overrides to prevent design-system conflicts */
        .service-hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 0 4rem;
            position: relative;
            z-index: 1;
        }

        .service-hero h1 {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: #FFFFFF !important;
            -webkit-text-fill-color: #FFFFFF !important;
        }

        .service-hero .tagline {
            font-size: 1.5rem;
            color: #FFFFFF !important;
            margin-bottom: 1rem;
        }

        .service-hero .description {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.8) !important;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            background: #FFFFFF !important;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            color: #000000 !important;
            margin: 0 auto 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .btn-cta {
            display: inline-block;
            padding: 1rem 2rem;
            background: #FFFFFF !important;
            color: #000000 !important;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
            border: none;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
            opacity: 0.95;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15) !important;
            border: 1px solid rgba(255, 255, 255, 0.3) !important;
            color: #FFFFFF !important;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25) !important;
        }

        .trust-note {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6) !important;
        }

        /* Content sections */
        .content-section {
            padding: 5rem 0;
            position: relative;
            z-index: 10;
        }

        .section-title {
            font-family: 'Satoshi', sans-serif;
            font-size: 2.25rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: #fff;
        }

        .section-subtitle {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
        }

        /* Feature grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .feature-card {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.2s ease;
        }

        .feature-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
        }

        .feature-card .icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .feature-card .icon svg {
            width: 24px;
            height: 24px;
            stroke: #fff;
        }

        .feature-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .feature-card p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* Demo section */
        .demo-card {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .demo-input {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
            margin-bottom: 1rem;
            font-family: inherit;
        }

        .demo-input:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .demo-btn {
            width: 100%;
            padding: 1rem;
            background: #fff;
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .demo-btn:hover {
            transform: translateY(-2px);
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .pricing-card {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2rem;
            position: relative;
        }

        .pricing-card.featured {
            border-color: rgba(255, 255, 255, 0.3);
        }

        .pricing-card .badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            color: #000;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .pricing-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.25rem;
        }

        .pricing-card .period {
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 1.5rem;
        }

        .pricing-card ul {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .pricing-card li {
            padding: 0.5rem 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
        }

        .pricing-card li::before {
            content: '✓ ';
            color: rgba(255, 255, 255, 0.5);
        }

        .pricing-card .btn {
            display: block;
            width: 100%;
            padding: 0.75rem;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .pricing-card .btn:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .pricing-card .btn-primary {
            background: #FFFFFF !important;
            color: #000000 !important;
            border: none !important;
        }

        .pricing-card .btn-primary:hover {
            background: #FFFFFF !important;
            opacity: 0.95;
        }

        /* FAQ - matches other service pages */
        .faq-grid {
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-question {
            padding: 1.25rem 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        .faq-question:hover {
            color: #fff;
        }

        .faq-icon {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.5);
            transition: transform 0.2s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding-bottom: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9375rem;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* Final CTA */
        .final-cta {
            text-align: center;
            padding: 4rem 0;
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #FFFFFF !important;
            -webkit-text-fill-color: #FFFFFF !important;
        }

        .final-cta p {
            color: rgba(255, 255, 255, 0.8) !important;
            margin-bottom: 2rem;
        }

        .final-cta .btn-cta {
            background: #FFFFFF !important;
            color: #000000 !important;
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: 8px;
            display: inline-block;
            text-decoration: none;
        }

        /* Force visibility on all hero and CTA elements */
        .service-hero,
        .service-hero *,
        .final-cta,
        .final-cta * {
            opacity: 1 !important;
            filter: none !important;
            mix-blend-mode: normal !important;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .service-hero { padding: 6rem 0 3rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .pricing-grid { grid-template-columns: 1fr; }
            .desktop-only { display: none !important; }
        }
