/* Extracted from inline <style> blocks (was in HTML) */

/* ===== from pages/prijzen.html ===== */
        /* ── Hero ── */
        .pricing-hero {
            background: linear-gradient(135deg, #0a1628 0%, #101827 60%, #0d1f1a 100%);
            padding: 120px 24px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pricing-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,125,105,0.18) 0%, transparent 70%);
            pointer-events: none;
        }
        .pricing-hero-eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--brand-blue);
            background: rgba(0,125,105,0.12);
            border: 1px solid rgba(0,125,105,0.3);
            border-radius: 20px;
            padding: 5px 16px;
            margin-bottom: 20px;
        }
        .pricing-hero h1 {
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 16px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
        .pricing-hero p {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.65);
            max-width: 520px;
            margin: 0 auto;
        }

        /* ── Pricing card section ── */
        .pricing-card-section {
            padding: 40px 24px 64px;
            max-width: 1120px;
            margin: 0 auto;
        }
        .pricing-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto 1fr;
            column-gap: 24px;
            row-gap: 0;
        }
        @media (max-width: 900px) {
            .pricing-cards-grid {
                display: flex !important;
                flex-direction: column !important;
                gap: 24px;
                max-width: 520px;
                margin: 0 auto;
            }
            .pricing-card {
                display: flex !important;
                flex-direction: column !important;
                grid-row: unset !important;
                grid-template-rows: unset !important;
                width: 100%;
            }
            .pricing-card-header,
            .pricing-card-body {
                width: 100%;
                grid-row: unset !important;
                grid-column: unset !important;
            }
        }

        @media (max-width: 480px) {
            .pricing-card-section { padding: 24px 16px 48px; }
            .pricing-card-header { padding: 24px 20px 20px; }
            .pricing-card-body { padding: 24px 20px 28px; }
            .pricing-card-price { font-size: 2rem; }
        }

        /* Card */
        .pricing-card {
            background: #fff;
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0,125,105,0.10), 0 2px 8px rgba(0,0,0,0.06);
            grid-row: span 2;
            display: grid;
            grid-template-rows: subgrid;
            transition: transform 0.25s ease, box-shadow 0.25s ease, z-index 0s;
            position: relative;
            z-index: 1;
        }
        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,125,105,0.18), 0 6px 20px rgba(0,0,0,0.10);
            z-index: 10;
        }
        .pricing-card--featured {
            border-color: var(--brand-blue);
            box-shadow: 0 4px 24px rgba(0,125,105,0.28), 0 2px 8px rgba(0,0,0,0.10);
            transform: translateY(0px);
            z-index: 2;
            position: relative;
        }
        .pricing-card--featured .pricing-card-header {
            background: linear-gradient(135deg, #004d3d 0%, #006653 50%, #0a1628 100%);
        }
        .pricing-card--featured .pricing-card-tag {
            color: #fff;
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.3);
        }
        .pricing-card-header {
            background: #edf7f4;
            padding: 36px 36px 28px;
        }
        .pricing-card-badge {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #fff;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 20px;
            padding: 5px 16px;
            margin-bottom: 16px;
        }
        .pricing-card-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--brand-blue);
            background: rgba(0,125,105,0.12);
            border: 1px solid rgba(0,125,105,0.3);
            border-radius: 20px;
            padding: 3px 12px;
            margin-bottom: 16px;
        }
        .pricing-card-price {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
            margin-bottom: 8px;
        }
        .pricing-card-price--request {
            font-size: 1.8rem;
        }
        .pricing-card-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }
        .pricing-card--featured .pricing-card-price {
            color: #fff;
        }
        .pricing-card--featured .pricing-card-desc {
            color: rgba(255,255,255,0.7);
        }
        .pricing-card-body {
            padding: 32px 36px 36px;
            display: flex;
            flex-direction: column;
        }
        .pricing-feature-list {
            list-style: none;
            margin: 0 0 32px;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 13px;
            flex: 1;
        }
        .pricing-feature-list li {
            display: flex;
            align-items: center;
            gap: 11px;
            font-size: 0.92rem;
            color: var(--text-secondary);
            font-weight: 500;
        }
        .pricing-feature-list li svg {
            flex-shrink: 0;
            color: var(--brand-blue);
        }
        .pricing-cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            width: 100%;
            padding: 15px 24px;
            background: var(--brand-blue);
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(0,125,105,0.3);
        }
        .pricing-cta-btn:hover {
            background: var(--brand-blue-hover);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0,125,105,0.4);
        }
        .pricing-cta-btn--white {
            background: #fff;
            color: var(--brand-blue);
            box-shadow: none;
        }
        .pricing-cta-btn--white:hover {
            background: rgba(255,255,255,0.9);
            box-shadow: none;
            transform: translateY(-1px);
        }
        .pricing-cta-btn--outline {
            background: transparent;
            color: var(--brand-blue);
            border: 2px solid var(--brand-blue);
            box-shadow: none;
        }
        .pricing-cta-btn--outline:hover {
            background: rgba(0,125,105,0.06);
            box-shadow: none;
        }

        /* ── Includes section ── */
        .pricing-includes {
            background: linear-gradient(135deg, #f0faf8 0%, #e8f7f4 100%);
            border-top: 1px solid rgba(0,125,105,0.12);
            border-bottom: 1px solid rgba(0,125,105,0.12);
            padding: 72px 24px;
        }
        .pricing-includes-inner {
            max-width: 900px;
            margin: 0 auto;
        }
        .pricing-includes-title {
            text-align: center;
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 48px;
        }
        .pricing-includes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        @media (max-width: 760px) {
            .pricing-includes-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .pricing-includes-grid { grid-template-columns: 1fr; }
        }
        .pricing-include-item {
            background: #fff;
            border: 1px solid rgba(0,125,105,0.15);
            border-radius: 14px;
            padding: 24px 22px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .pricing-include-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(0,125,105,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--brand-blue);
        }
        .pricing-include-text {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.45;
        }

        /* ── FAQ section ── */
        .pricing-faq {
            padding: 72px 24px 80px;
            max-width: 700px;
            margin: 0 auto;
        }
        .pricing-faq-title {
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 36px;
            text-align: center;
        }
        .pricing-faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .pricing-faq-item {
            background: #fff;
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            padding: 24px 28px;
        }
        .pricing-faq-q {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .pricing-faq-q::before {
            content: '';
            display: block;
            width: 4px;
            height: 20px;
            background: var(--brand-blue);
            border-radius: 2px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .pricing-faq-a {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.7;
            padding-left: 14px;
        }

        /* ── AI Cost comparison card ── */
        .ai-cost-section {
            padding: 0 24px 64px;
            max-width: 1120px;
            margin: 0 auto;
        }
        .ai-cost-card {
            background: linear-gradient(135deg, #0a1628 0%, #0d1f1a 100%);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 24px 80px rgba(0,0,0,0.18), 0 4px 16px rgba(0,125,105,0.12);
            position: relative;
        }
        .ai-cost-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0,125,105,0.18) 0%, transparent 65%);
            pointer-events: none;
        }
        .ai-cost-header {
            padding: 48px 48px 36px;
            position: relative;
        }
        .ai-cost-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--brand-blue);
            background: rgba(0,125,105,0.14);
            border: 1px solid rgba(0,125,105,0.32);
            border-radius: 20px;
            padding: 5px 14px;
            margin-bottom: 18px;
        }
        .ai-cost-title {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            max-width: 560px;
            margin-bottom: 10px;
            white-space: nowrap;
        }
        .ai-cost-subtitle {
            font-size: 0.97rem;
            color: rgba(255,255,255,0.55);
            max-width: 580px;
            line-height: 1.65;
        }
        .ai-cost-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            margin: 0 48px;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.08);
        }
        .ai-cost-col {
            padding: 32px 36px;
        }
        .ai-cost-col--manual {
            background: rgba(255,255,255,0.04);
            border-right: 1px solid rgba(255,255,255,0.08);
        }
        .ai-cost-col--ai {
            background: rgba(0,125,105,0.1);
        }
        .ai-cost-col-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .ai-cost-col--manual .ai-cost-col-label { color: rgba(255,255,255,0.75); }
        .ai-cost-col--ai    .ai-cost-col-label { color: var(--brand-blue); }
        .ai-cost-col-label-dot {
            width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
        }
        .ai-cost-col--manual .ai-cost-col-label-dot { background: rgba(255,255,255,0.3); }
        .ai-cost-col--ai    .ai-cost-col-label-dot { background: var(--brand-blue); }
        .ai-cost-big-number {
            font-size: clamp(2.2rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 6px;
        }
        .ai-cost-col--manual .ai-cost-big-number { color: #fff; }
        .ai-cost-col--ai    .ai-cost-big-number { color: #fff; }
        .ai-cost-per {
            font-size: 0.82rem;
            margin-bottom: 24px;
        }
        .ai-cost-col--manual .ai-cost-per { color: rgba(255,255,255,0.7); }
        .ai-cost-col--ai    .ai-cost-per { color: rgba(255,255,255,0.55); }
        .ai-cost-rows {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .ai-cost-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.88rem;
            line-height: 1.45;
        }
        .ai-cost-col--manual .ai-cost-row { color: rgba(255,255,255,0.85); }
        .ai-cost-col--ai    .ai-cost-row { color: rgba(255,255,255,0.8); }
        .ai-cost-row svg { flex-shrink: 0; margin-top: 1px; }
        .ai-cost-savings {
            margin: 32px 48px 48px;
            background: linear-gradient(135deg, rgba(0,125,105,0.22) 0%, rgba(0,125,105,0.08) 100%);
            border: 1px solid rgba(0,125,105,0.35);
            border-radius: 14px;
            padding: 28px 36px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .ai-cost-savings-text { flex: 1; min-width: 200px; }
        .ai-cost-savings-headline {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }
        .ai-cost-savings-body {
            font-size: 0.87rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.6;
            white-space: nowrap;
        }
        .ai-cost-savings-stat {
            text-align: center;
            flex-shrink: 0;
            margin-bottom: 0.08px;
        }
        .ai-cost-savings-stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }
        .ai-cost-savings-stat-label {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.75);
            margin-top: 4px;
            letter-spacing: 0.04em;
        }
        .ai-cost-notice {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            background: #fef9e7;
            border: 1.5px solid #d4a017;
            border-radius: 10px;
            padding: 14px 18px;
            color: #6b4c00;
            font-size: 0.85rem;
            line-height: 1.55;
        }
        .ai-cost-notice svg { flex-shrink: 0; margin-top: 1px; color: #b8860b; }
        .ai-cost-notice strong { color: #5a3a00; font-weight: 700; }
        @media (max-width: 700px) {
            .ai-cost-section { padding: 0 16px 48px; }
            .ai-cost-card { border-radius: 18px; }
            .ai-cost-header { padding: 28px 20px 20px; }
            .ai-cost-title { font-size: 1.5rem; white-space: normal; }
            .ai-cost-subtitle { font-size: 0.88rem; }
            .ai-cost-grid { margin: 20px 20px 0; grid-template-columns: 1fr; border-radius: 12px; }
            .ai-cost-col--manual { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
            .ai-cost-col { padding: 24px 20px 20px; }
            .ai-cost-big-number { font-size: 2.2rem; }
            .ai-cost-savings {
                margin: 20px 20px 28px;
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                padding: 20px 20px;
            }
            .ai-cost-savings-body { white-space: normal; font-size: 0.83rem; }
            .ai-cost-savings-stat { margin-bottom: 0; align-self: flex-start; text-align: left; }
            .ai-cost-savings-stat-number { font-size: 2rem; }
            .ai-cost-savings-text { min-width: unset; }
            .ai-cost-notice { margin: 16px 0 0; font-size: 0.83rem; }
        }

        /* ── Bottom CTA ── */
        .pricing-bottom-cta {
            background: linear-gradient(135deg, #0a1628 0%, #101827 60%, #0d1f1a 100%);
            padding: 80px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pricing-bottom-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0,125,105,0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        .pricing-bottom-cta h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }
        .pricing-bottom-cta p {
            font-size: 1rem;
            color: rgba(255,255,255,0.65);
            max-width: 480px;
            margin: 0 auto 32px;
            line-height: 1.65;
        }
        .pricing-bottom-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 15px 32px;
            background: var(--brand-blue);
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(0,125,105,0.4);
        }
        .pricing-bottom-cta-btn:hover {
            background: var(--brand-blue-hover);
            transform: translateY(-2px);
        }
        .pricing-friction {
            display: block;
            margin-top: 14px;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
            letter-spacing: 0.04em;
        }

/* pages/prijzen.html — extracted inline style attributes */
.pricing-page .px-1 { font-size:1rem; font-weight:400; color:var(--text-secondary); }
.pricing-page .px-2 { font-size:0.75rem; color:#6b7280; margin-top:14px; line-height:1.5; }
.pricing-page .px-3 { margin: 45px 0 0; }
