/* /Pages/Admin.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.admin-hero-wrapper[b-fl5cm6uok0] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.admin-hero[b-fl5cm6uok0] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 40px 28px 36px 28px;
    text-align: center;
}

.admin-hero-tagline[b-fl5cm6uok0] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.admin-hero-title[b-fl5cm6uok0] {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    color: #fff;
}

/* ── Section ──────────────────────────────────────────── */

.admin-section[b-fl5cm6uok0] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px;
}

/* ── Stats ────────────────────────────────────────────── */

.admin-stats[b-fl5cm6uok0] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card[b-fl5cm6uok0] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 28px;
    min-width: 140px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-card--success[b-fl5cm6uok0] {
    border-color: #2BC48A;
    background: #f0fdf8;
}

.stat-card--warn[b-fl5cm6uok0] {
    border-color: #f59e0b;
    background: #fffbeb;
}

.stat-value[b-fl5cm6uok0] {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.stat-card--success .stat-value[b-fl5cm6uok0] {
    color: #16a34a;
}

.stat-card--warn .stat-value[b-fl5cm6uok0] {
    color: #d97706;
}

.stat-label[b-fl5cm6uok0] {
    font-size: 0.78rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* ── Filter bar ───────────────────────────────────────── */

.admin-filter-bar[b-fl5cm6uok0] {
    margin-bottom: 16px;
}

.admin-search[b-fl5cm6uok0] {
    width: 100%;
    max-width: 420px;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.admin-search:focus[b-fl5cm6uok0] {
    border-color: #2BC48A;
    box-shadow: 0 0 0 3px rgba(43, 196, 138, 0.15);
}

/* ── Customer card ────────────────────────────────────── */

.customer-card[b-fl5cm6uok0] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.customer-card:hover[b-fl5cm6uok0] {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.customer-card--expanded[b-fl5cm6uok0] {
    border-color: #2BC48A;
    box-shadow: 0 2px 16px rgba(43, 196, 138, 0.12);
}

.customer-header[b-fl5cm6uok0] {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.customer-header:hover[b-fl5cm6uok0] {
    background: #f8fafc;
}

.customer-identity[b-fl5cm6uok0] {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
}

.customer-avatar[b-fl5cm6uok0] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.customer-info[b-fl5cm6uok0] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.customer-name[b-fl5cm6uok0] {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}

.customer-meta[b-fl5cm6uok0] {
    font-size: 0.78rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.customer-affiliate-badge[b-fl5cm6uok0] {
    background: #ede9fe;
    color: #7c3aed;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 1px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.customer-scheme-badge[b-fl5cm6uok0] {
    font-size: 0.72rem;
    font-weight: 500;
}

.customer-summary[b-fl5cm6uok0] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.customer-contact[b-fl5cm6uok0] {
    font-size: 0.82rem;
    color: #64748b;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
}

.customer-badges[b-fl5cm6uok0] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.badge[b-fl5cm6uok0] {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge--count[b-fl5cm6uok0] {
    background: #f1f5f9;
    color: #475569;
}

.badge--ready[b-fl5cm6uok0] {
    background: #dcfce7;
    color: #16a34a;
}

.badge--terms[b-fl5cm6uok0] {
    background: #dbeafe;
    color: #2563eb;
}

.expand-icon[b-fl5cm6uok0] {
    font-size: 0.75rem;
    color: #94a3b8;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* ── Detail / expanded ────────────────────────────────── */

.customer-detail[b-fl5cm6uok0] {
    border-top: 1px solid #e5e7eb;
    padding: 20px 24px;
    background: #f8fafc;
}

.no-companies[b-fl5cm6uok0] {
    color: #94a3b8;
    font-size: 0.88rem;
    margin: 0;
}

/* ── Company row ──────────────────────────────────────── */

.company-row[b-fl5cm6uok0] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.company-row:last-child[b-fl5cm6uok0] {
    margin-bottom: 0;
}

.company-row-top[b-fl5cm6uok0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.company-name-block[b-fl5cm6uok0] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-type-badge[b-fl5cm6uok0] {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-nuf[b-fl5cm6uok0] {
    background: #fef3c7;
    color: #b45309;
}

.type-stock[b-fl5cm6uok0] {
    background: #dbeafe;
    color: #1d4ed8;
}

.company-name[b-fl5cm6uok0] {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.92rem;
}

.company-date[b-fl5cm6uok0] {
    font-size: 0.78rem;
    color: #94a3b8;
}

/* ── Progress bar ─────────────────────────────────────── */

.progress-section[b-fl5cm6uok0] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.progress-bar-track[b-fl5cm6uok0] {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill[b-fl5cm6uok0] {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #eab308);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.progress-bar-fill--complete[b-fl5cm6uok0] {
    background: linear-gradient(90deg, #2BC48A, #16a34a);
}

.progress-label[b-fl5cm6uok0] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    min-width: 100px;
    text-align: right;
}

/* ── Steps grid ───────────────────────────────────────── */

.steps-grid[b-fl5cm6uok0] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 6px 12px;
}

.step-item[b-fl5cm6uok0] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    padding: 4px 0;
}

.step-done .step-icon[b-fl5cm6uok0] {
    color: #16a34a;
    font-weight: 700;
}

.step-done .step-name[b-fl5cm6uok0] {
    color: #334155;
}

.step-pending .step-icon[b-fl5cm6uok0] {
    color: #d1d5db;
}

.step-pending .step-name[b-fl5cm6uok0] {
    color: #94a3b8;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 768px) {
    .admin-hero[b-fl5cm6uok0] {
        padding: 28px 16px 24px 16px;
    }

    .admin-hero-title[b-fl5cm6uok0] {
        font-size: 1.35rem;
    }

    .admin-stats[b-fl5cm6uok0] {
        gap: 10px;
    }

    .stat-card[b-fl5cm6uok0] {
        min-width: 100px;
        padding: 14px 16px;
    }

    .stat-value[b-fl5cm6uok0] {
        font-size: 1.5rem;
    }

    .customer-header[b-fl5cm6uok0] {
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px 16px;
    }

    .customer-identity[b-fl5cm6uok0] {
        min-width: unset;
        flex: 1;
    }

    .customer-summary[b-fl5cm6uok0] {
        align-items: flex-start;
    }

    .customer-contact[b-fl5cm6uok0] {
        text-align: left;
        max-width: unset;
    }

    .steps-grid[b-fl5cm6uok0] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/CookieConsent.razor.rz.scp.css */
/* ── Cookie Consent Bottom Sheet ─────────────────────── */

.cookie-overlay[b-58q46bftvq] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 9998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.cookie-banner[b-58q46bftvq] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
    padding: 14px 16px calc(env(safe-area-inset-bottom, 8px) + 8px);
    text-align: center;
    animation: cookie-slide-up-b-58q46bftvq 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner-icon[b-58q46bftvq] {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.cookie-banner-title[b-58q46bftvq] {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.cookie-banner-text[b-58q46bftvq] {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0 0 10px 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner-actions[b-58q46bftvq] {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 6px;
}

.cookie-btn[b-58q46bftvq] {
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    min-width: 90px;
}

.cookie-btn-accept[b-58q46bftvq] {
    background: #2BC48A;
    color: #fff;
}

.cookie-btn-accept:hover[b-58q46bftvq] {
    background: #24a676;
}

.cookie-btn-accept:active[b-58q46bftvq] {
    transform: scale(0.97);
}

.cookie-btn-decline[b-58q46bftvq] {
    background: #f1f5f9;
    color: #475569;
}

.cookie-btn-decline:hover[b-58q46bftvq] {
    background: #e2e8f0;
}

.cookie-btn-decline:active[b-58q46bftvq] {
    transform: scale(0.97);
}

.cookie-banner-link[b-58q46bftvq] {
    background: none;
    border: none;
    color: #2BC48A;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 6px;
    text-decoration: none;
}

.cookie-banner-link:hover[b-58q46bftvq] {
    text-decoration: underline;
}

@keyframes cookie-slide-up-b-58q46bftvq {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ── Desktop: centered card instead of full-width ──── */
@media (min-width: 640px) {
    .cookie-banner[b-58q46bftvq] {
        left: 50%;
        right: auto;
        bottom: 24px;
        transform: translateX(-50%);
        border-radius: 20px;
        max-width: 440px;
        width: calc(100% - 48px);
        padding: 28px 28px 24px;
        animation: cookie-pop-in-b-58q46bftvq 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cookie-banner-icon[b-58q46bftvq] {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .cookie-banner-title[b-58q46bftvq] {
        font-size: 1.15rem;
        margin: 0 0 8px 0;
    }

    .cookie-banner-text[b-58q46bftvq] {
        font-size: 0.88rem;
        line-height: 1.5;
        margin: 0 0 20px 0;
    }

    .cookie-banner-actions[b-58q46bftvq] {
        gap: 10px;
        margin-bottom: 12px;
    }

    .cookie-btn[b-58q46bftvq] {
        padding: 12px 28px;
        font-size: 0.9rem;
        border-radius: 12px;
        min-width: 130px;
    }

    .cookie-banner-link[b-58q46bftvq] {
        font-size: 0.82rem;
        padding: 4px 8px;
    }
}

@keyframes cookie-pop-in-b-58q46bftvq {
    from {
        transform: translateX(-50%) translateY(20px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
    }
}
/* /Pages/Guides/BelgieNoorwegen.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-tes9gjoryt] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-tes9gjoryt] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-tes9gjoryt] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-tes9gjoryt] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-tes9gjoryt] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-tes9gjoryt] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-tes9gjoryt] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-tes9gjoryt] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-tes9gjoryt] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-tes9gjoryt] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-tes9gjoryt] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-tes9gjoryt] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-tes9gjoryt] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-tes9gjoryt] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-tes9gjoryt] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-tes9gjoryt] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-tes9gjoryt] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-tes9gjoryt] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-tes9gjoryt] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-tes9gjoryt] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-tes9gjoryt] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-tes9gjoryt] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-tes9gjoryt] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-tes9gjoryt] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-tes9gjoryt] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-tes9gjoryt] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-tes9gjoryt] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-tes9gjoryt] {
    overflow-x: auto;
}

.guide-table[b-tes9gjoryt] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-tes9gjoryt],
.guide-table td[b-tes9gjoryt] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-tes9gjoryt] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-tes9gjoryt] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-tes9gjoryt] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-tes9gjoryt] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-tes9gjoryt] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-tes9gjoryt] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-tes9gjoryt] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-tes9gjoryt] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-tes9gjoryt] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-tes9gjoryt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-tes9gjoryt] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-tes9gjoryt] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-tes9gjoryt] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-tes9gjoryt] {
    border-bottom: none;
}

.guide-faq summary[b-tes9gjoryt] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-tes9gjoryt]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-tes9gjoryt]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-tes9gjoryt]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-tes9gjoryt] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-tes9gjoryt] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-tes9gjoryt] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-tes9gjoryt] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-tes9gjoryt] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-tes9gjoryt] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-tes9gjoryt] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-tes9gjoryt] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-tes9gjoryt] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-tes9gjoryt] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-tes9gjoryt] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-tes9gjoryt] {
        font-size: 0.85rem;
    }

    .guide-section[b-tes9gjoryt] {
        padding: 24px 12px;
    }

    .guide-section-title[b-tes9gjoryt] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-tes9gjoryt] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-tes9gjoryt] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-tes9gjoryt] {
        padding: 28px 16px;
    }

    .guide-flags img[b-tes9gjoryt] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/DanmarkNorge.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-p8v091m1dm] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-p8v091m1dm] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-p8v091m1dm] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-p8v091m1dm] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-p8v091m1dm] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-p8v091m1dm] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-p8v091m1dm] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-p8v091m1dm] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-p8v091m1dm] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-p8v091m1dm] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-p8v091m1dm] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-p8v091m1dm] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-p8v091m1dm] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-p8v091m1dm] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-p8v091m1dm] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-p8v091m1dm] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-p8v091m1dm] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-p8v091m1dm] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-p8v091m1dm] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-p8v091m1dm] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-p8v091m1dm] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-p8v091m1dm] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-p8v091m1dm] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-p8v091m1dm] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-p8v091m1dm] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-p8v091m1dm] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-p8v091m1dm] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-p8v091m1dm] {
    overflow-x: auto;
}

.guide-table[b-p8v091m1dm] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-p8v091m1dm],
.guide-table td[b-p8v091m1dm] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-p8v091m1dm] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-p8v091m1dm] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-p8v091m1dm] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-p8v091m1dm] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-p8v091m1dm] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-p8v091m1dm] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-p8v091m1dm] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-p8v091m1dm] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-p8v091m1dm] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-p8v091m1dm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-p8v091m1dm] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-p8v091m1dm] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-p8v091m1dm] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-p8v091m1dm] {
    border-bottom: none;
}

.guide-faq summary[b-p8v091m1dm] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-p8v091m1dm]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-p8v091m1dm]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-p8v091m1dm]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-p8v091m1dm] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-p8v091m1dm] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-p8v091m1dm] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-p8v091m1dm] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-p8v091m1dm] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-p8v091m1dm] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-p8v091m1dm] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-p8v091m1dm] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-p8v091m1dm] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-p8v091m1dm] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-p8v091m1dm] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-p8v091m1dm] {
        font-size: 0.85rem;
    }

    .guide-section[b-p8v091m1dm] {
        padding: 24px 12px;
    }

    .guide-section-title[b-p8v091m1dm] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-p8v091m1dm] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-p8v091m1dm] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-p8v091m1dm] {
        padding: 28px 16px;
    }

    .guide-flags img[b-p8v091m1dm] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/DeutschlandNorwegen.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-edpr2saxzm] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-edpr2saxzm] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-edpr2saxzm] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-edpr2saxzm] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-edpr2saxzm] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-edpr2saxzm] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-edpr2saxzm] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-edpr2saxzm] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-edpr2saxzm] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-edpr2saxzm] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-edpr2saxzm] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-edpr2saxzm] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-edpr2saxzm] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-edpr2saxzm] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-edpr2saxzm] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-edpr2saxzm] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-edpr2saxzm] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-edpr2saxzm] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-edpr2saxzm] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-edpr2saxzm] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-edpr2saxzm] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-edpr2saxzm] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-edpr2saxzm] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-edpr2saxzm] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-edpr2saxzm] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-edpr2saxzm] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-edpr2saxzm] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-edpr2saxzm] {
    overflow-x: auto;
}

.guide-table[b-edpr2saxzm] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-edpr2saxzm],
.guide-table td[b-edpr2saxzm] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-edpr2saxzm] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-edpr2saxzm] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-edpr2saxzm] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-edpr2saxzm] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-edpr2saxzm] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-edpr2saxzm] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-edpr2saxzm] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-edpr2saxzm] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-edpr2saxzm] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-edpr2saxzm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-edpr2saxzm] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-edpr2saxzm] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-edpr2saxzm] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-edpr2saxzm] {
    border-bottom: none;
}

.guide-faq summary[b-edpr2saxzm] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-edpr2saxzm]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-edpr2saxzm]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-edpr2saxzm]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-edpr2saxzm] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-edpr2saxzm] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-edpr2saxzm] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-edpr2saxzm] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-edpr2saxzm] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-edpr2saxzm] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-edpr2saxzm] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-edpr2saxzm] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-edpr2saxzm] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-edpr2saxzm] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-edpr2saxzm] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-edpr2saxzm] {
        font-size: 0.85rem;
    }

    .guide-section[b-edpr2saxzm] {
        padding: 24px 12px;
    }

    .guide-section-title[b-edpr2saxzm] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-edpr2saxzm] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-edpr2saxzm] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-edpr2saxzm] {
        padding: 28px 16px;
    }

    .guide-flags img[b-edpr2saxzm] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/EestiNorra.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-qdnz50t9tt] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-qdnz50t9tt] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-qdnz50t9tt] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-qdnz50t9tt] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-qdnz50t9tt] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-qdnz50t9tt] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-qdnz50t9tt] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-qdnz50t9tt] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-qdnz50t9tt] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-qdnz50t9tt] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-qdnz50t9tt] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-qdnz50t9tt] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-qdnz50t9tt] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-qdnz50t9tt] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-qdnz50t9tt] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-qdnz50t9tt] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-qdnz50t9tt] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-qdnz50t9tt] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-qdnz50t9tt] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-qdnz50t9tt] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-qdnz50t9tt] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-qdnz50t9tt] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-qdnz50t9tt] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-qdnz50t9tt] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-qdnz50t9tt] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-qdnz50t9tt] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-qdnz50t9tt] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-qdnz50t9tt] {
    overflow-x: auto;
}

.guide-table[b-qdnz50t9tt] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-qdnz50t9tt],
.guide-table td[b-qdnz50t9tt] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-qdnz50t9tt] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-qdnz50t9tt] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-qdnz50t9tt] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-qdnz50t9tt] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-qdnz50t9tt] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-qdnz50t9tt] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-qdnz50t9tt] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-qdnz50t9tt] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-qdnz50t9tt] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-qdnz50t9tt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-qdnz50t9tt] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-qdnz50t9tt] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-qdnz50t9tt] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-qdnz50t9tt] {
    border-bottom: none;
}

.guide-faq summary[b-qdnz50t9tt] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-qdnz50t9tt]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-qdnz50t9tt]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-qdnz50t9tt]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-qdnz50t9tt] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-qdnz50t9tt] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-qdnz50t9tt] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-qdnz50t9tt] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-qdnz50t9tt] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-qdnz50t9tt] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-qdnz50t9tt] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-qdnz50t9tt] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-qdnz50t9tt] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-qdnz50t9tt] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-qdnz50t9tt] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-qdnz50t9tt] {
        font-size: 0.85rem;
    }

    .guide-section[b-qdnz50t9tt] {
        padding: 24px 12px;
    }

    .guide-section-title[b-qdnz50t9tt] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-qdnz50t9tt] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-qdnz50t9tt] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-qdnz50t9tt] {
        padding: 28px 16px;
    }

    .guide-flags img[b-qdnz50t9tt] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/FranceNorvege.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-rmfb15l242] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-rmfb15l242] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-rmfb15l242] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-rmfb15l242] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-rmfb15l242] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-rmfb15l242] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-rmfb15l242] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-rmfb15l242] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-rmfb15l242] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-rmfb15l242] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-rmfb15l242] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-rmfb15l242] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-rmfb15l242] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-rmfb15l242] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-rmfb15l242] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-rmfb15l242] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-rmfb15l242] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-rmfb15l242] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-rmfb15l242] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-rmfb15l242] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-rmfb15l242] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-rmfb15l242] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-rmfb15l242] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-rmfb15l242] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-rmfb15l242] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-rmfb15l242] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-rmfb15l242] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-rmfb15l242] {
    overflow-x: auto;
}

.guide-table[b-rmfb15l242] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-rmfb15l242],
.guide-table td[b-rmfb15l242] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-rmfb15l242] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-rmfb15l242] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-rmfb15l242] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-rmfb15l242] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-rmfb15l242] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-rmfb15l242] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-rmfb15l242] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-rmfb15l242] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-rmfb15l242] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-rmfb15l242] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-rmfb15l242] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-rmfb15l242] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-rmfb15l242] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-rmfb15l242] {
    border-bottom: none;
}

.guide-faq summary[b-rmfb15l242] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-rmfb15l242]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-rmfb15l242]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-rmfb15l242]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-rmfb15l242] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-rmfb15l242] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-rmfb15l242] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-rmfb15l242] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-rmfb15l242] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-rmfb15l242] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-rmfb15l242] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-rmfb15l242] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-rmfb15l242] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-rmfb15l242] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-rmfb15l242] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-rmfb15l242] {
        font-size: 0.85rem;
    }

    .guide-section[b-rmfb15l242] {
        padding: 24px 12px;
    }

    .guide-section-title[b-rmfb15l242] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-rmfb15l242] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-rmfb15l242] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-rmfb15l242] {
        padding: 28px 16px;
    }

    .guide-flags img[b-rmfb15l242] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/IrelandNorway.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-5z4vgcxqyt] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-5z4vgcxqyt] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-5z4vgcxqyt] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-5z4vgcxqyt] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-5z4vgcxqyt] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-5z4vgcxqyt] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-5z4vgcxqyt] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-5z4vgcxqyt] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-5z4vgcxqyt] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-5z4vgcxqyt] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-5z4vgcxqyt] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-5z4vgcxqyt] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-5z4vgcxqyt] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-5z4vgcxqyt] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-5z4vgcxqyt] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-5z4vgcxqyt] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-5z4vgcxqyt] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-5z4vgcxqyt] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-5z4vgcxqyt] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-5z4vgcxqyt] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-5z4vgcxqyt] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-5z4vgcxqyt] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-5z4vgcxqyt] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-5z4vgcxqyt] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-5z4vgcxqyt] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-5z4vgcxqyt] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-5z4vgcxqyt] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-5z4vgcxqyt] {
    overflow-x: auto;
}

.guide-table[b-5z4vgcxqyt] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-5z4vgcxqyt],
.guide-table td[b-5z4vgcxqyt] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-5z4vgcxqyt] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-5z4vgcxqyt] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-5z4vgcxqyt] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-5z4vgcxqyt] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-5z4vgcxqyt] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-5z4vgcxqyt] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-5z4vgcxqyt] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-5z4vgcxqyt] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-5z4vgcxqyt] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-5z4vgcxqyt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-5z4vgcxqyt] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-5z4vgcxqyt] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-5z4vgcxqyt] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-5z4vgcxqyt] {
    border-bottom: none;
}

.guide-faq summary[b-5z4vgcxqyt] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-5z4vgcxqyt]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-5z4vgcxqyt]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-5z4vgcxqyt]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-5z4vgcxqyt] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-5z4vgcxqyt] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-5z4vgcxqyt] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-5z4vgcxqyt] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-5z4vgcxqyt] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-5z4vgcxqyt] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-5z4vgcxqyt] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-5z4vgcxqyt] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-5z4vgcxqyt] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-5z4vgcxqyt] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-5z4vgcxqyt] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-5z4vgcxqyt] {
        font-size: 0.85rem;
    }

    .guide-section[b-5z4vgcxqyt] {
        padding: 24px 12px;
    }

    .guide-section-title[b-5z4vgcxqyt] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-5z4vgcxqyt] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-5z4vgcxqyt] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-5z4vgcxqyt] {
        padding: 28px 16px;
    }

    .guide-flags img[b-5z4vgcxqyt] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/IslandNorge.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-wwdkdzyv1f] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-wwdkdzyv1f] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-wwdkdzyv1f] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-wwdkdzyv1f] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-wwdkdzyv1f] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-wwdkdzyv1f] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-wwdkdzyv1f] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-wwdkdzyv1f] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-wwdkdzyv1f] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-wwdkdzyv1f] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-wwdkdzyv1f] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-wwdkdzyv1f] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-wwdkdzyv1f] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-wwdkdzyv1f] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-wwdkdzyv1f] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-wwdkdzyv1f] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-wwdkdzyv1f] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-wwdkdzyv1f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-wwdkdzyv1f] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-wwdkdzyv1f] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-wwdkdzyv1f] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-wwdkdzyv1f] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-wwdkdzyv1f] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-wwdkdzyv1f] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-wwdkdzyv1f] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-wwdkdzyv1f] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-wwdkdzyv1f] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-wwdkdzyv1f] {
    overflow-x: auto;
}

.guide-table[b-wwdkdzyv1f] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-wwdkdzyv1f],
.guide-table td[b-wwdkdzyv1f] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-wwdkdzyv1f] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-wwdkdzyv1f] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-wwdkdzyv1f] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-wwdkdzyv1f] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-wwdkdzyv1f] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-wwdkdzyv1f] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-wwdkdzyv1f] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-wwdkdzyv1f] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-wwdkdzyv1f] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-wwdkdzyv1f] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-wwdkdzyv1f] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-wwdkdzyv1f] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-wwdkdzyv1f] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-wwdkdzyv1f] {
    border-bottom: none;
}

.guide-faq summary[b-wwdkdzyv1f] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-wwdkdzyv1f]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-wwdkdzyv1f]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-wwdkdzyv1f]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-wwdkdzyv1f] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-wwdkdzyv1f] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-wwdkdzyv1f] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-wwdkdzyv1f] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-wwdkdzyv1f] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-wwdkdzyv1f] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-wwdkdzyv1f] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-wwdkdzyv1f] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-wwdkdzyv1f] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-wwdkdzyv1f] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-wwdkdzyv1f] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-wwdkdzyv1f] {
        font-size: 0.85rem;
    }

    .guide-section[b-wwdkdzyv1f] {
        padding: 24px 12px;
    }

    .guide-section-title[b-wwdkdzyv1f] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-wwdkdzyv1f] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-wwdkdzyv1f] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-wwdkdzyv1f] {
        padding: 28px 16px;
    }

    .guide-flags img[b-wwdkdzyv1f] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/LatvijaNorwegija.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-99d36zlji7] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-99d36zlji7] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-99d36zlji7] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-99d36zlji7] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-99d36zlji7] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-99d36zlji7] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-99d36zlji7] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-99d36zlji7] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-99d36zlji7] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-99d36zlji7] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-99d36zlji7] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-99d36zlji7] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-99d36zlji7] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-99d36zlji7] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-99d36zlji7] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-99d36zlji7] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-99d36zlji7] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-99d36zlji7] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-99d36zlji7] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-99d36zlji7] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-99d36zlji7] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-99d36zlji7] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-99d36zlji7] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-99d36zlji7] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-99d36zlji7] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-99d36zlji7] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-99d36zlji7] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-99d36zlji7] {
    overflow-x: auto;
}

.guide-table[b-99d36zlji7] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-99d36zlji7],
.guide-table td[b-99d36zlji7] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-99d36zlji7] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-99d36zlji7] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-99d36zlji7] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-99d36zlji7] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-99d36zlji7] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-99d36zlji7] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-99d36zlji7] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-99d36zlji7] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-99d36zlji7] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-99d36zlji7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-99d36zlji7] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-99d36zlji7] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-99d36zlji7] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-99d36zlji7] {
    border-bottom: none;
}

.guide-faq summary[b-99d36zlji7] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-99d36zlji7]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-99d36zlji7]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-99d36zlji7]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-99d36zlji7] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-99d36zlji7] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-99d36zlji7] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-99d36zlji7] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-99d36zlji7] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-99d36zlji7] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-99d36zlji7] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-99d36zlji7] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-99d36zlji7] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-99d36zlji7] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-99d36zlji7] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-99d36zlji7] {
        font-size: 0.85rem;
    }

    .guide-section[b-99d36zlji7] {
        padding: 24px 12px;
    }

    .guide-section-title[b-99d36zlji7] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-99d36zlji7] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-99d36zlji7] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-99d36zlji7] {
        padding: 28px 16px;
    }

    .guide-flags img[b-99d36zlji7] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/LietuvaNorwegija.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-jpkevf7lxl] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-jpkevf7lxl] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-jpkevf7lxl] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-jpkevf7lxl] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-jpkevf7lxl] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-jpkevf7lxl] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-jpkevf7lxl] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-jpkevf7lxl] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-jpkevf7lxl] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-jpkevf7lxl] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-jpkevf7lxl] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-jpkevf7lxl] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-jpkevf7lxl] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-jpkevf7lxl] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-jpkevf7lxl] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-jpkevf7lxl] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-jpkevf7lxl] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-jpkevf7lxl] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-jpkevf7lxl] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-jpkevf7lxl] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-jpkevf7lxl] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-jpkevf7lxl] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-jpkevf7lxl] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-jpkevf7lxl] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-jpkevf7lxl] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-jpkevf7lxl] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-jpkevf7lxl] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-jpkevf7lxl] {
    overflow-x: auto;
}

.guide-table[b-jpkevf7lxl] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-jpkevf7lxl],
.guide-table td[b-jpkevf7lxl] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-jpkevf7lxl] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-jpkevf7lxl] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-jpkevf7lxl] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-jpkevf7lxl] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-jpkevf7lxl] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-jpkevf7lxl] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-jpkevf7lxl] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-jpkevf7lxl] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-jpkevf7lxl] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-jpkevf7lxl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-jpkevf7lxl] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-jpkevf7lxl] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-jpkevf7lxl] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-jpkevf7lxl] {
    border-bottom: none;
}

.guide-faq summary[b-jpkevf7lxl] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-jpkevf7lxl]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-jpkevf7lxl]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-jpkevf7lxl]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-jpkevf7lxl] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-jpkevf7lxl] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-jpkevf7lxl] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-jpkevf7lxl] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-jpkevf7lxl] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-jpkevf7lxl] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-jpkevf7lxl] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-jpkevf7lxl] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-jpkevf7lxl] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-jpkevf7lxl] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-jpkevf7lxl] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-jpkevf7lxl] {
        font-size: 0.85rem;
    }

    .guide-section[b-jpkevf7lxl] {
        padding: 24px 12px;
    }

    .guide-section-title[b-jpkevf7lxl] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-jpkevf7lxl] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-jpkevf7lxl] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-jpkevf7lxl] {
        padding: 28px 16px;
    }

    .guide-flags img[b-jpkevf7lxl] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/PolskaNorwegia.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-nl9lk1tdoc] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-nl9lk1tdoc] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-nl9lk1tdoc] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-nl9lk1tdoc] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-nl9lk1tdoc] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-nl9lk1tdoc] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-nl9lk1tdoc] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-nl9lk1tdoc] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-nl9lk1tdoc] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-nl9lk1tdoc] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-nl9lk1tdoc] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-nl9lk1tdoc] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-nl9lk1tdoc] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-nl9lk1tdoc] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-nl9lk1tdoc] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-nl9lk1tdoc] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-nl9lk1tdoc] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-nl9lk1tdoc] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-nl9lk1tdoc] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-nl9lk1tdoc] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-nl9lk1tdoc] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-nl9lk1tdoc] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-nl9lk1tdoc] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-nl9lk1tdoc] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-nl9lk1tdoc] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-nl9lk1tdoc] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-nl9lk1tdoc] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-nl9lk1tdoc] {
    overflow-x: auto;
}

.guide-table[b-nl9lk1tdoc] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-nl9lk1tdoc],
.guide-table td[b-nl9lk1tdoc] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-nl9lk1tdoc] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-nl9lk1tdoc] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-nl9lk1tdoc] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-nl9lk1tdoc] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-nl9lk1tdoc] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-nl9lk1tdoc] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-nl9lk1tdoc] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-nl9lk1tdoc] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-nl9lk1tdoc] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-nl9lk1tdoc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-nl9lk1tdoc] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-nl9lk1tdoc] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-nl9lk1tdoc] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-nl9lk1tdoc] {
    border-bottom: none;
}

.guide-faq summary[b-nl9lk1tdoc] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-nl9lk1tdoc]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-nl9lk1tdoc]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-nl9lk1tdoc]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-nl9lk1tdoc] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-nl9lk1tdoc] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-nl9lk1tdoc] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-nl9lk1tdoc] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-nl9lk1tdoc] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-nl9lk1tdoc] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-nl9lk1tdoc] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-nl9lk1tdoc] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-nl9lk1tdoc] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-nl9lk1tdoc] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-nl9lk1tdoc] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-nl9lk1tdoc] {
        font-size: 0.85rem;
    }

    .guide-section[b-nl9lk1tdoc] {
        padding: 24px 12px;
    }

    .guide-section-title[b-nl9lk1tdoc] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-nl9lk1tdoc] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-nl9lk1tdoc] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-nl9lk1tdoc] {
        padding: 28px 16px;
    }

    .guide-flags img[b-nl9lk1tdoc] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/SuomiNorja.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-frwemz2ihz] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-frwemz2ihz] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-frwemz2ihz] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-frwemz2ihz] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-frwemz2ihz] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-frwemz2ihz] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-frwemz2ihz] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-frwemz2ihz] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-frwemz2ihz] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-frwemz2ihz] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-frwemz2ihz] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-frwemz2ihz] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-frwemz2ihz] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-frwemz2ihz] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-frwemz2ihz] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-frwemz2ihz] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-frwemz2ihz] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-frwemz2ihz] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-frwemz2ihz] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-frwemz2ihz] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-frwemz2ihz] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-frwemz2ihz] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-frwemz2ihz] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-frwemz2ihz] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-frwemz2ihz] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-frwemz2ihz] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-frwemz2ihz] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-frwemz2ihz] {
    overflow-x: auto;
}

.guide-table[b-frwemz2ihz] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-frwemz2ihz],
.guide-table td[b-frwemz2ihz] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-frwemz2ihz] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-frwemz2ihz] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-frwemz2ihz] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-frwemz2ihz] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-frwemz2ihz] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-frwemz2ihz] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-frwemz2ihz] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-frwemz2ihz] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-frwemz2ihz] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-frwemz2ihz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-frwemz2ihz] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-frwemz2ihz] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-frwemz2ihz] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-frwemz2ihz] {
    border-bottom: none;
}

.guide-faq summary[b-frwemz2ihz] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-frwemz2ihz]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-frwemz2ihz]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-frwemz2ihz]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-frwemz2ihz] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-frwemz2ihz] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-frwemz2ihz] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-frwemz2ihz] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-frwemz2ihz] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-frwemz2ihz] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-frwemz2ihz] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-frwemz2ihz] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-frwemz2ihz] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-frwemz2ihz] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-frwemz2ihz] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-frwemz2ihz] {
        font-size: 0.85rem;
    }

    .guide-section[b-frwemz2ihz] {
        padding: 24px 12px;
    }

    .guide-section-title[b-frwemz2ihz] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-frwemz2ihz] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-frwemz2ihz] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-frwemz2ihz] {
        padding: 28px 16px;
    }

    .guide-flags img[b-frwemz2ihz] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/SverigeNorge.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-4miwrg4ztb] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-4miwrg4ztb] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-4miwrg4ztb] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-4miwrg4ztb] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-4miwrg4ztb] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-4miwrg4ztb] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-4miwrg4ztb] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-4miwrg4ztb] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-4miwrg4ztb] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-4miwrg4ztb] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-4miwrg4ztb] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-4miwrg4ztb] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-4miwrg4ztb] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-4miwrg4ztb] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-4miwrg4ztb] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-4miwrg4ztb] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-4miwrg4ztb] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-4miwrg4ztb] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-4miwrg4ztb] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-4miwrg4ztb] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-4miwrg4ztb] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-4miwrg4ztb] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-4miwrg4ztb] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-4miwrg4ztb] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-4miwrg4ztb] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-4miwrg4ztb] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-4miwrg4ztb] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-4miwrg4ztb] {
    overflow-x: auto;
}

.guide-table[b-4miwrg4ztb] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-4miwrg4ztb],
.guide-table td[b-4miwrg4ztb] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-4miwrg4ztb] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-4miwrg4ztb] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-4miwrg4ztb] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-4miwrg4ztb] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-4miwrg4ztb] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-4miwrg4ztb] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-4miwrg4ztb] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-4miwrg4ztb] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-4miwrg4ztb] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-4miwrg4ztb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-4miwrg4ztb] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-4miwrg4ztb] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-4miwrg4ztb] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-4miwrg4ztb] {
    border-bottom: none;
}

.guide-faq summary[b-4miwrg4ztb] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-4miwrg4ztb]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-4miwrg4ztb]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-4miwrg4ztb]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-4miwrg4ztb] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-4miwrg4ztb] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-4miwrg4ztb] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-4miwrg4ztb] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-4miwrg4ztb] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-4miwrg4ztb] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-4miwrg4ztb] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-4miwrg4ztb] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-4miwrg4ztb] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-4miwrg4ztb] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-4miwrg4ztb] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-4miwrg4ztb] {
        font-size: 0.85rem;
    }

    .guide-section[b-4miwrg4ztb] {
        padding: 24px 12px;
    }

    .guide-section-title[b-4miwrg4ztb] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-4miwrg4ztb] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-4miwrg4ztb] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-4miwrg4ztb] {
        padding: 28px 16px;
    }

    .guide-flags img[b-4miwrg4ztb] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Guides/UkNorway.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.guide-hero-wrapper[b-t9yjude4hi] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.guide-hero[b-t9yjude4hi] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.guide-hero-tagline[b-t9yjude4hi] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.guide-hero-title[b-t9yjude4hi] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.guide-hero-subtitle[b-t9yjude4hi] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────── */

.guide-section[b-t9yjude4hi] {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section + .guide-section[b-t9yjude4hi] {
    border-top: 1px solid #e5e7eb;
}

.guide-section-title[b-t9yjude4hi] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

/* ── Flags ────────────────────────────────────────────── */

.guide-flags[b-t9yjude4hi] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-flags img[b-t9yjude4hi] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.guide-flags-arrow[b-t9yjude4hi] {
    font-size: 1.6rem;
    color: #2BC48A;
    font-weight: 700;
}

/* ── Card ─────────────────────────────────────────────── */

.guide-card[b-t9yjude4hi] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.guide-card p[b-t9yjude4hi] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.guide-card ul[b-t9yjude4hi] {
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.guide-card li[b-t9yjude4hi] {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.guide-card h4[b-t9yjude4hi] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 8px 0;
}

.guide-card h4:first-child[b-t9yjude4hi] {
    margin-top: 0;
}

/* ── Comparison cards ─────────────────────────────────── */

.guide-comparison[b-t9yjude4hi] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.guide-compare-card[b-t9yjude4hi] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.guide-compare-header[b-t9yjude4hi] {
    padding: 20px 24px;
    text-align: center;
}

.guide-compare-header h3[b-t9yjude4hi] {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.guide-compare-header span[b-t9yjude4hi] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.guide-compare-nuf[b-t9yjude4hi] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.guide-compare-as[b-t9yjude4hi] {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.guide-compare-body[b-t9yjude4hi] {
    padding: 20px 24px;
}

.guide-compare-body ul[b-t9yjude4hi] {
    padding-left: 18px;
    margin: 0;
}

.guide-compare-body li[b-t9yjude4hi] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ── Table ────────────────────────────────────────────── */

.guide-table-wrapper[b-t9yjude4hi] {
    overflow-x: auto;
}

.guide-table[b-t9yjude4hi] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.guide-table th[b-t9yjude4hi],
.guide-table td[b-t9yjude4hi] {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.guide-table th[b-t9yjude4hi] {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.guide-table td:first-child[b-t9yjude4hi] {
    font-weight: 600;
    color: #334155;
}

.guide-table td[b-t9yjude4hi] {
    color: #475569;
}

/* ── Steps ────────────────────────────────────────────── */

.guide-steps[b-t9yjude4hi] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step[b-t9yjude4hi] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step-number[b-t9yjude4hi] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #2BC48A;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step strong[b-t9yjude4hi] {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.guide-step p[b-t9yjude4hi] {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Price summary ───────────────────────────────────── */

.guide-price-summary[b-t9yjude4hi] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.guide-price-row[b-t9yjude4hi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}

.guide-price-row strong[b-t9yjude4hi] {
    color: #0f172a;
    white-space: nowrap;
}

.guide-price-note[b-t9yjude4hi] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ── FAQ ──────────────────────────────────────────────── */

.guide-faq details[b-t9yjude4hi] {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.guide-faq details:last-child[b-t9yjude4hi] {
    border-bottom: none;
}

.guide-faq summary[b-t9yjude4hi] {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: #0f172a;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-faq summary[b-t9yjude4hi]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.guide-faq details[open] summary[b-t9yjude4hi]::before {
    content: "−";
    background: #2BC48A;
    color: #fff;
}

.guide-faq summary[b-t9yjude4hi]::-webkit-details-marker {
    display: none;
}

.guide-faq details p[b-t9yjude4hi] {
    margin: 10px 0 0 30px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── CTA box ─────────────────────────────────────────── */

.guide-cta-box[b-t9yjude4hi] {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.guide-cta-box h2[b-t9yjude4hi] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.guide-cta-box > p[b-t9yjude4hi] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.guide-cta-btn[b-t9yjude4hi] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.guide-cta-btn:hover[b-t9yjude4hi] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

.guide-cta-contact[b-t9yjude4hi] {
    margin: 16px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-cta-contact a[b-t9yjude4hi] {
    color: #2BC48A;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .guide-hero-wrapper[b-t9yjude4hi] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .guide-hero[b-t9yjude4hi] {
        padding: 28px 16px 24px 16px;
    }

    .guide-hero-title[b-t9yjude4hi] {
        font-size: 1.35rem;
    }

    .guide-hero-subtitle[b-t9yjude4hi] {
        font-size: 0.85rem;
    }

    .guide-section[b-t9yjude4hi] {
        padding: 24px 12px;
    }

    .guide-section-title[b-t9yjude4hi] {
        font-size: 1.15rem;
    }

    .guide-comparison[b-t9yjude4hi] {
        grid-template-columns: 1fr;
    }

    .guide-card[b-t9yjude4hi] {
        padding: 20px 16px 18px 16px;
    }

    .guide-cta-box[b-t9yjude4hi] {
        padding: 28px 16px;
    }

    .guide-flags img[b-t9yjude4hi] {
        width: 44px;
        height: 44px;
    }
}
/* /Pages/Index.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.hero-wrapper[b-9yn0fgw0b8] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.hero[b-9yn0fgw0b8] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 28px 40px 28px;
    text-align: center;
}

.hero-title[b-9yn0fgw0b8] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
}

.hero-subtitle[b-9yn0fgw0b8] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.hero-tagline[b-9yn0fgw0b8] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-cta[b-9yn0fgw0b8] {
    display: inline-block;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: 8px;
}

.hero-cta:hover[b-9yn0fgw0b8] {
    background: #34d399;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

/* ── Sections ─────────────────────────────────────────── */

.index-section[b-9yn0fgw0b8] {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}

.index-section + .index-section[b-9yn0fgw0b8] {
    border-top: 1px solid #e5e7eb;
}

.section-label[b-9yn0fgw0b8] {
    display: block;
    font-size: 0.72rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.section-title[b-9yn0fgw0b8] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    letter-spacing: 0.2px;
}

.section-text[b-9yn0fgw0b8] {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.section-center[b-9yn0fgw0b8] {
    text-align: center;
}

#login[b-9yn0fgw0b8] {
    scroll-margin-top: 80px;
}

/* ── Why Norway teaser ────────────────────────────────── */

.why-norway[b-9yn0fgw0b8] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
    padding: 48px 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.why-norway[b-9yn0fgw0b8]::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(43, 196, 138, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-norway-inner[b-9yn0fgw0b8] {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.why-norway .section-label[b-9yn0fgw0b8] {
    color: #2BC48A;
}

.why-norway .section-title[b-9yn0fgw0b8] {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.why-norway-intro[b-9yn0fgw0b8] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 28px auto;
}

.why-norway-stats[b-9yn0fgw0b8] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 760px;
    margin: 0 auto 28px auto;
}

.why-stat[b-9yn0fgw0b8] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
}

.why-stat-value[b-9yn0fgw0b8] {
    font-size: 1.7rem;
    font-weight: 800;
    color: #2BC48A;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.why-stat-label[b-9yn0fgw0b8] {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.why-norway-reasons[b-9yn0fgw0b8] {
    list-style: none;
    padding: 0;
    margin: 0 auto 28px auto;
    max-width: 720px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    text-align: left;
}

.why-norway-reasons li[b-9yn0fgw0b8] {
    position: relative;
    padding: 4px 0 4px 26px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
}

.why-norway-reasons li[b-9yn0fgw0b8]::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 4px;
    color: #2BC48A;
    font-weight: 700;
}

.why-norway-cta[b-9yn0fgw0b8] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.15s ease;
}

.why-norway-cta:hover[b-9yn0fgw0b8] {
    filter: brightness(0.92);
    transform: translateY(-1px);
    color: #0f172a;
    text-decoration: none;
}

/* ── Contact help card ────────────────────────────────── */

.contact-help-section[b-9yn0fgw0b8] {
    max-width: 1040px;
    margin: 24px auto 32px auto;
    padding: 0 20px;
}

.contact-help-card[b-9yn0fgw0b8] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 44px 40px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-help-card[b-9yn0fgw0b8]::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(43, 196, 138, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-help-card > *[b-9yn0fgw0b8] {
    position: relative;
    z-index: 1;
}

.contact-help-badge[b-9yn0fgw0b8] {
    display: inline-block;
    background: rgba(43, 196, 138, 0.15);
    color: #2BC48A;
    border: 1px solid rgba(43, 196, 138, 0.4);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.contact-help-title[b-9yn0fgw0b8] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 14px 0;
    letter-spacing: 0.2px;
    line-height: 1.3;
    color: #fff;
}

.contact-help-intro[b-9yn0fgw0b8] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 28px auto;
}

.contact-help-form[b-9yn0fgw0b8] {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.contact-help-row[b-9yn0fgw0b8] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-help-input[b-9yn0fgw0b8],
.contact-help-textarea[b-9yn0fgw0b8] {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

.contact-help-input[b-9yn0fgw0b8]::placeholder,
.contact-help-textarea[b-9yn0fgw0b8]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-help-input:focus[b-9yn0fgw0b8],
.contact-help-textarea:focus[b-9yn0fgw0b8] {
    outline: none;
    border-color: #2BC48A;
    background: rgba(255, 255, 255, 0.10);
}

.contact-help-textarea[b-9yn0fgw0b8] {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    line-height: 1.5;
}

.contact-help-button[b-9yn0fgw0b8] {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2BC48A;
    color: #0f172a;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 36px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 6px;
    transition: filter 0.2s ease, transform 0.15s ease;
}

.contact-help-button:hover:not(:disabled)[b-9yn0fgw0b8] {
    filter: brightness(0.92);
    transform: translateY(-1px);
}

.contact-help-button:disabled[b-9yn0fgw0b8] {
    opacity: 0.6;
    cursor: wait;
}

.contact-help-error[b-9yn0fgw0b8] {
    padding: 10px 14px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.45);
    border-radius: 8px;
    color: #fecaca;
    font-size: 0.88rem;
    text-align: center;
}

.contact-help-gdpr[b-9yn0fgw0b8] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    line-height: 1.6;
    margin: 8px auto 0 auto;
    max-width: 560px;
    text-align: center;
}

.contact-help-success[b-9yn0fgw0b8] {
    max-width: 560px;
    margin: 8px auto 0 auto;
    padding: 22px 26px;
    background: rgba(43, 196, 138, 0.12);
    border: 1px solid rgba(43, 196, 138, 0.45);
    border-radius: 12px;
    color: #a7f3d0;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.6;
}

.contact-help-success span[b-9yn0fgw0b8] {
    color: #2BC48A;
    font-weight: 700;
    margin-right: 6px;
}

/* ── Country Picker ───────────────────────────────────── */

.country-picker[b-9yn0fgw0b8] {
    max-width: 1040px;
    margin: 0 auto;
    padding: 36px 20px 8px 20px;
    text-align: center;
    scroll-margin-top: 24px;
}

.country-picker-intro[b-9yn0fgw0b8] {
    margin-bottom: 24px;
}

.country-picker-hint[b-9yn0fgw0b8] {
    color: #64748b;
    font-size: 0.92rem;
    margin: 6px 0 0 0;
}

.country-picker-grid[b-9yn0fgw0b8] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 960px;
    margin: 0 auto;
    scroll-margin-top: 24px;
}

.country-chip[b-9yn0fgw0b8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px 12px 10px;
    flex: 0 1 128px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    color: #0f172a;
    transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.country-chip:hover[b-9yn0fgw0b8] {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #2BC48A;
    background: #f0fdf4;
}

.country-chip:focus-visible[b-9yn0fgw0b8] {
    outline: 2px solid #2BC48A;
    outline-offset: 2px;
}

.country-chip img[b-9yn0fgw0b8] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    object-fit: cover;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.country-chip:hover img[b-9yn0fgw0b8] {
    border-color: #2BC48A;
    transform: scale(1.05);
}

.country-chip span[b-9yn0fgw0b8] {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1px;
    line-height: 1.2;
}

.country-picker-change[b-9yn0fgw0b8] {
    display: none;
    align-items: center;
    gap: 8px;
    margin: 8px auto 0 auto;
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    color: #0f172a;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.country-picker-change:hover[b-9yn0fgw0b8] {
    border-color: #2BC48A;
    background: #f0fdf4;
    transform: translateY(-1px);
}

.country-picker-change span[b-9yn0fgw0b8] {
    font-size: 1rem;
    line-height: 1;
}

/* Highlight animation when a card is selected via the picker */
.price-card-highlight[b-9yn0fgw0b8] {
    animation: country-highlight-b-9yn0fgw0b8 1.8s ease;
    position: relative;
}

@keyframes country-highlight-b-9yn0fgw0b8 {
    0% {
        box-shadow: 0 0 0 0 rgba(43, 196, 138, 0.55);
        transform: translateY(0);
    }
    35% {
        box-shadow: 0 0 0 14px rgba(43, 196, 138, 0);
        transform: translateY(-3px);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(43, 196, 138, 0);
        transform: translateY(0);
    }
}

.price-card[b-9yn0fgw0b8] {
    scroll-margin-top: 80px;
}

/* ── Price Cards ──────────────────────────────────────── */

.price-cards[b-9yn0fgw0b8] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 24px auto;
    max-width: 920px;
}

.price-cards[data-mode="picker"] .price-card[b-9yn0fgw0b8] {
    display: none;
}

/* Hide the "Transparent prices" heading when nothing is selected yet */
#pricing-section:has(.price-cards[data-mode="picker"]) > [data-hide-in-picker="true"][b-9yn0fgw0b8] {
    display: none;
}

#pricing-section:has(.price-cards[data-mode="picker"])[b-9yn0fgw0b8] {
    padding-top: 0;
    padding-bottom: 0;
    border-top: 0;
}

.price-cards[data-mode="selected"][b-9yn0fgw0b8] {
    grid-template-columns: 1fr;
    max-width: 520px;
}

.price-cards[data-mode="selected"] .price-card:not(.is-selected)[b-9yn0fgw0b8] {
    display: none;
}

.price-cards > .price-card:last-child:nth-child(odd)[b-9yn0fgw0b8] {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: calc(50% - 14px);
}

.price-cards[data-mode="selected"] > .price-card:last-child:nth-child(odd)[b-9yn0fgw0b8] {
    grid-column: auto;
    max-width: 100%;
}

.price-card[b-9yn0fgw0b8] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: visible;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.price-card:hover[b-9yn0fgw0b8] {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.price-card-header[b-9yn0fgw0b8] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.price-card-header img[b-9yn0fgw0b8] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.price-card-header-text h3[b-9yn0fgw0b8] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.price-card-header-text p[b-9yn0fgw0b8] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 2px 0 0 0;
}

.price-card-price[b-9yn0fgw0b8] {
    padding: 16px 24px;
    text-align: center;
    background: #f8fafc;
}

.price-card-amount[b-9yn0fgw0b8] {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.price-card-currency[b-9yn0fgw0b8] {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
    margin-left: 4px;
}

.price-card-vat[b-9yn0fgw0b8] {
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 2px;
}

.price-card-body[b-9yn0fgw0b8] {
    padding: 16px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

[b-9yn0fgw0b8] .price-card-body .mdc-text-field {
    width: 100%;
    max-width: 300px;
}

[b-9yn0fgw0b8] .price-card-body .mdc-select {
    width: 100%;
    max-width: 300px;
}

.de-register-row[b-9yn0fgw0b8] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
}

.de-register-prefix[b-9yn0fgw0b8] {
    font-weight: 700;
    font-size: 0.95rem;
    color: #334155;
    white-space: nowrap;
}

[b-9yn0fgw0b8] .de-register-row .mdc-text-field {
    flex: 1;
    max-width: none;
}

.price-card-details[b-9yn0fgw0b8] {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.7;
    padding: 14px 16px;
    background: #f0fdf4;
    border-left: 3px solid #2BC48A;
    border-radius: 0 8px 8px 0;
    margin-top: 12px;
    width: 100%;
    box-sizing: border-box;
}

.price-card-details strong[b-9yn0fgw0b8] {
    color: #0f172a;
}

.price-card-guide-link[b-9yn0fgw0b8] {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    color: #065f46;
    text-decoration: underline;
    font-size: 0.82rem;
}

.price-card-guide-link:hover[b-9yn0fgw0b8] {
    color: #0f172a;
}

.price-card-login-cta[b-9yn0fgw0b8] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px 22px;
    background: #2BC48A;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(43, 196, 138, 0.25);
}

.price-card-login-cta:hover[b-9yn0fgw0b8] {
    filter: brightness(0.92);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 196, 138, 0.35);
    color: #0f172a;
    text-decoration: none;
}

.price-card-login-cta:focus-visible[b-9yn0fgw0b8] {
    outline: 2px solid #0f172a;
    outline-offset: 2px;
}

.price-card-error[b-9yn0fgw0b8] {
    font-size: 0.85rem;
    color: #dc2626;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fef2f2;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

/* ── Registration ─────────────────────────────────────── */

.registration-grid[b-9yn0fgw0b8] {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
}

.registration-visual[b-9yn0fgw0b8] {
    flex: 0 0 auto;
    text-align: center;
}

.registration-visual img[b-9yn0fgw0b8] {
    width: 160px;
    height: auto;
    opacity: 0.9;
}

.registration-requirements[b-9yn0fgw0b8] {
    flex: 1;
    min-width: 220px;
}

.registration-requirements h4[b-9yn0fgw0b8] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.registration-requirements ul[b-9yn0fgw0b8] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-requirements li[b-9yn0fgw0b8] {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #475569;
    font-size: 0.9rem;
}

.registration-requirements li[b-9yn0fgw0b8]::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #2BC48A;
    font-weight: 700;
}

.login-buttons[b-9yn0fgw0b8] {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 28px 0;
}

.login-btn[b-9yn0fgw0b8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 160px;
    min-height: 100px;
    padding: 24px 24px 20px 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    text-decoration: none;
    color: #0f172a;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.login-btn:hover[b-9yn0fgw0b8] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
    border-color: #cbd5e1;
    text-decoration: none;
    color: #0f172a;
}

.login-btn img[b-9yn0fgw0b8] {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.login-btn span[b-9yn0fgw0b8] {
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: 8px;
    white-space: nowrap;
}

/* ── Reasons ──────────────────────────────────────────── */

.reasons-grid[b-9yn0fgw0b8] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 24px 0;
}

.reason-item[b-9yn0fgw0b8] {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 14px 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-item:hover[b-9yn0fgw0b8] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.reason-item img[b-9yn0fgw0b8] {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.reason-item b[b-9yn0fgw0b8] {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
    margin-bottom: 6px;
}

.reason-item p[b-9yn0fgw0b8] {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    margin-top: auto;
}

/* ── Partners ─────────────────────────────────────────── */

.partners-grid[b-9yn0fgw0b8] {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 40px;
    justify-content: center;
    align-items: center;
    margin: 24px 0;
}

.partner-logo[b-9yn0fgw0b8] {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.2s ease;
}

.partner-logo:hover[b-9yn0fgw0b8] {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img[b-9yn0fgw0b8] {
    max-width: 130px;
    max-height: 50px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ── Who We Are ───────────────────────────────────────── */

.who-logo[b-9yn0fgw0b8] {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.who-logo-badge[b-9yn0fgw0b8] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.who-logo-badge:hover[b-9yn0fgw0b8] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
    border-color: #cbd5e1;
    text-decoration: none;
}

.who-logo-badge img[b-9yn0fgw0b8] {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ── Contact help ─────────────────────────────────────── */

.contact-help[b-9yn0fgw0b8] {
    text-align: center;
    padding: 16px 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.contact-help b[b-9yn0fgw0b8] {
    display: block;
    color: #0f172a;
    margin-bottom: 6px;
}

[b-9yn0fgw0b8] .contact-help a {
    color: #0d47a1;
}

/* ── Learn more buttons ───────────────────────────────── */

.learn-more-wrap[b-9yn0fgw0b8] {
    text-align: center;
    padding: 8px 0 0 0;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .hero-wrapper[b-9yn0fgw0b8] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .hero[b-9yn0fgw0b8] {
        padding: 28px 16px 24px 16px;
    }

    .hero-title[b-9yn0fgw0b8] {
        font-size: 1.35rem;
        word-break: break-word;
    }

    .hero-subtitle[b-9yn0fgw0b8] {
        font-size: 0.85rem;
    }

    .hero-tagline[b-9yn0fgw0b8] {
        font-size: 0.7rem;
        letter-spacing: 0.8px;
    }

    .why-norway[b-9yn0fgw0b8] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        padding: 32px 16px;
    }

    .why-norway .section-title[b-9yn0fgw0b8] {
        font-size: 1.25rem;
    }

    .why-norway-intro[b-9yn0fgw0b8] {
        font-size: 0.88rem;
    }

    .why-norway-stats[b-9yn0fgw0b8] {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .why-stat[b-9yn0fgw0b8] {
        padding: 14px 8px;
    }

    .why-stat-value[b-9yn0fgw0b8] {
        font-size: 1.35rem;
    }

    .why-stat-label[b-9yn0fgw0b8] {
        font-size: 0.72rem;
    }

    .why-norway-reasons[b-9yn0fgw0b8] {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .contact-help-section[b-9yn0fgw0b8] {
        padding: 0 12px;
    }

    .contact-help-card[b-9yn0fgw0b8] {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .contact-help-title[b-9yn0fgw0b8] {
        font-size: 1.25rem;
    }

    .contact-help-intro[b-9yn0fgw0b8] {
        font-size: 0.88rem;
    }

    .contact-help-row[b-9yn0fgw0b8] {
        grid-template-columns: 1fr;
    }

    .contact-help-button[b-9yn0fgw0b8] {
        width: 100%;
        justify-content: center;
    }

    .country-picker[b-9yn0fgw0b8] {
        padding: 24px 12px 4px 12px;
    }

    .country-picker-grid[b-9yn0fgw0b8] {
        gap: 8px;
    }

    .country-chip[b-9yn0fgw0b8] {
        flex: 0 1 94px;
        padding: 10px 6px 8px 6px;
    }

    .country-chip img[b-9yn0fgw0b8] {
        width: 36px;
        height: 36px;
    }

    .country-chip span[b-9yn0fgw0b8] {
        font-size: 0.72rem;
    }

    .index-section[b-9yn0fgw0b8] {
        padding: 24px 12px;
    }

    .section-title[b-9yn0fgw0b8] {
        font-size: 1.15rem;
    }

    .price-cards[b-9yn0fgw0b8] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .price-cards > .price-card:last-child:nth-child(odd)[b-9yn0fgw0b8] {
        max-width: 100%;
    }

    .price-card[b-9yn0fgw0b8] {
        max-width: 100%;
    }

    .price-card-header[b-9yn0fgw0b8] {
        padding: 14px 16px;
        gap: 10px;
    }

    .price-card-header img[b-9yn0fgw0b8] {
        width: 36px;
        height: 36px;
    }

    .price-card-header-text h3[b-9yn0fgw0b8] {
        font-size: 0.95rem;
    }

    .price-card-price[b-9yn0fgw0b8] {
        padding: 12px 16px;
    }

    .price-card-amount[b-9yn0fgw0b8] {
        font-size: 1.3rem;
    }

    .price-card-body[b-9yn0fgw0b8] {
        padding: 12px 16px 20px 16px;
    }

    .registration-grid[b-9yn0fgw0b8] {
        flex-direction: column;
        gap: 20px;
    }

    .registration-visual img[b-9yn0fgw0b8] {
        width: 120px;
    }

    .login-buttons[b-9yn0fgw0b8] {
        flex-direction: column;
        align-items: center;
    }

    .login-btn[b-9yn0fgw0b8] {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .reasons-grid[b-9yn0fgw0b8] {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .reason-item[b-9yn0fgw0b8] {
        max-width: 100%;
        padding: 12px 10px;
    }

    .reason-item img[b-9yn0fgw0b8] {
        width: 80px;
    }

    .partners-grid[b-9yn0fgw0b8] {
        gap: 20px 24px;
    }

    .partner-logo img[b-9yn0fgw0b8] {
        max-width: 100px;
        max-height: 40px;
    }

    .contact-help[b-9yn0fgw0b8] {
        font-size: 0.82rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .who-logo-badge[b-9yn0fgw0b8] {
        width: 120px;
        height: 120px;
    }

    .who-logo-badge img[b-9yn0fgw0b8] {
        max-width: 120px;
        max-height: 48px;
    }

    .section-text[b-9yn0fgw0b8] {
        font-size: 0.88rem;
    }
}

.index-trust-cta[b-9yn0fgw0b8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    max-width: 1080px;
    margin: 32px 16px 0;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 32px);
    box-sizing: border-box;
    background: #2BC48A;
    color: #ffffff;
    padding: 18px 28px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(43,196,138,0.25);
    transition: background .15s, transform .15s;
}
.index-trust-cta:hover[b-9yn0fgw0b8] { background: #22a878; transform: translateY(-1px); color: #fff; text-decoration: none; }
.index-trust-cta-label[b-9yn0fgw0b8] { font-weight: 700; font-size: 1.05rem; line-height: 1.3; }
.index-trust-cta-sub[b-9yn0fgw0b8] { font-size: 0.92rem; opacity: 0.95; line-height: 1.4; }


.index-trust-cta + .index-trust-cta[b-9yn0fgw0b8] { margin-top: 12px; }
.index-trust-cta--inline[b-9yn0fgw0b8] { margin-top: 16px; }


.index-section--ctas[b-9yn0fgw0b8] { display: flex; flex-direction: column; gap: 12px; max-width: 1080px; margin: 32px auto; padding: 0 16px; }

/* /Pages/Overview.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.overview-hero-wrapper[b-5rn96ifgf2] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.overview-hero[b-5rn96ifgf2] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 40px 28px 36px 28px;
    text-align: center;
}

.overview-hero-tagline[b-5rn96ifgf2] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.overview-hero-title[b-5rn96ifgf2] {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    color: #fff;
}

/* ── Sections ─────────────────────────────────────────── */

.overview-section[b-5rn96ifgf2] {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 20px;
}

.overview-section + .overview-section[b-5rn96ifgf2] {
    border-top: 1px solid #e5e7eb;
}

.overview-section-label[b-5rn96ifgf2] {
    display: block;
    font-size: 0.72rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.overview-section-title[b-5rn96ifgf2] {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
    letter-spacing: 0.2px;
}

/* ── Hints ────────────────────────────────────────────── */

.overview-hints[b-5rn96ifgf2] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
}

.overview-hints p[b-5rn96ifgf2] {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.overview-hints p:last-child[b-5rn96ifgf2] {
    margin-bottom: 0;
}

[b-5rn96ifgf2] .overview-hints a {
    color: #2BC48A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

[b-5rn96ifgf2] .overview-hints a:hover {
    color: #34d399;
    text-decoration: none;
}

/* ── Tile Grid ────────────────────────────────────────── */

.overview-tiles[b-5rn96ifgf2] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
}

[b-5rn96ifgf2] .overview-tiles .inlineblockcard {
    width: 250px;
    max-width: 250px;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .overview-hero[b-5rn96ifgf2] {
        padding: 28px 16px 24px 16px;
    }

    .overview-hero-title[b-5rn96ifgf2] {
        font-size: 1.35rem;
    }

    .overview-section[b-5rn96ifgf2] {
        padding: 24px 16px;
    }

    .overview-hints[b-5rn96ifgf2] {
        padding: 18px 16px;
    }
}
/* /Pages/Wizards/Company/SearchCompanyCode.razor.rz.scp.css */
.code-table-section[b-1fftd63j0a] {
    margin-top: 24px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.code-table-heading[b-1fftd63j0a] {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 12px 0;
}
/* /Pages/Wizards/CreateCompany.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.page-hero-wrapper[b-jc5wqq2w9t] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.page-hero[b-jc5wqq2w9t] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 40px 28px 36px 28px;
    text-align: center;
}

.page-hero-tagline[b-jc5wqq2w9t] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero-title[b-jc5wqq2w9t] {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    color: #fff;
}

/* ── Section ──────────────────────────────────────────── */

.page-section[b-jc5wqq2w9t] {
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* ── Card ─────────────────────────────────────────────── */

.page-card[b-jc5wqq2w9t] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.page-intro[b-jc5wqq2w9t] {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* ── Tiles ────────────────────────────────────────────── */

.page-tiles[b-jc5wqq2w9t] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 20px;
}

/* ── Form ─────────────────────────────────────────────── */

.form-fields[b-jc5wqq2w9t] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-actions[b-jc5wqq2w9t] {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 4px 0;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .page-hero[b-jc5wqq2w9t] {
        padding: 28px 16px 24px 16px;
    }

    .page-hero-title[b-jc5wqq2w9t] {
        font-size: 1.35rem;
    }

    .page-section[b-jc5wqq2w9t] {
        padding: 24px 12px;
    }

    .page-card[b-jc5wqq2w9t] {
        padding: 20px 16px 18px 16px;
    }
}
/* /Pages/Wizards/ManagePeople.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.page-hero-wrapper[b-aq4jlq19ge] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.page-hero[b-aq4jlq19ge] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 40px 28px 36px 28px;
    text-align: center;
}

.page-hero-tagline[b-aq4jlq19ge] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero-title[b-aq4jlq19ge] {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    color: #fff;
}

/* ── Sections ─────────────────────────────────────────── */

.page-section[b-aq4jlq19ge] {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 20px;
}

.page-section + .page-section[b-aq4jlq19ge] {
    border-top: 1px solid #e5e7eb;
}

.page-section-center[b-aq4jlq19ge] {
    text-align: center;
}

.page-section-label[b-aq4jlq19ge] {
    display: block;
    font-size: 0.72rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.page-section-title[b-aq4jlq19ge] {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
    letter-spacing: 0.2px;
}

/* ── Card ─────────────────────────────────────────────── */

.page-card[b-aq4jlq19ge] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
}

.page-intro[b-aq4jlq19ge] {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.page-intro:last-child[b-aq4jlq19ge] {
    margin-bottom: 0;
}

/* ── Tile Grid ────────────────────────────────────────── */

.page-tiles[b-aq4jlq19ge] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .page-hero[b-aq4jlq19ge] {
        padding: 28px 16px 24px 16px;
    }

    .page-hero-title[b-aq4jlq19ge] {
        font-size: 1.35rem;
    }

    .page-section[b-aq4jlq19ge] {
        padding: 24px 16px;
    }

    .page-card[b-aq4jlq19ge] {
        padding: 18px 16px;
    }
}
/* /Pages/Wizards/People/CreateCompany.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.page-hero-wrapper[b-u7ubvvwsl0] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.page-hero[b-u7ubvvwsl0] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 40px 28px 36px 28px;
    text-align: center;
}

.page-hero-tagline[b-u7ubvvwsl0] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero-title[b-u7ubvvwsl0] {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    color: #fff;
}

/* ── Section ──────────────────────────────────────────── */

.page-section[b-u7ubvvwsl0] {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* ── Card ─────────────────────────────────────────────── */

.page-card[b-u7ubvvwsl0] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.page-intro[b-u7ubvvwsl0] {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* ── Form ─────────────────────────────────────────────── */

.form-fields[b-u7ubvvwsl0] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-actions[b-u7ubvvwsl0] {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 4px 0;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .page-hero[b-u7ubvvwsl0] {
        padding: 28px 16px 24px 16px;
    }

    .page-hero-title[b-u7ubvvwsl0] {
        font-size: 1.35rem;
    }

    .page-section[b-u7ubvvwsl0] {
        padding: 24px 12px;
    }

    .page-card[b-u7ubvvwsl0] {
        padding: 20px 16px 18px 16px;
    }
}
/* /Pages/Wizards/People/CreatePerson.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.page-hero-wrapper[b-w9r57oty7a] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.page-hero[b-w9r57oty7a] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 40px 28px 36px 28px;
    text-align: center;
}

.page-hero-tagline[b-w9r57oty7a] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero-title[b-w9r57oty7a] {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    color: #fff;
}

/* ── Section ──────────────────────────────────────────── */

.page-section[b-w9r57oty7a] {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* ── Card ─────────────────────────────────────────────── */

.page-card[b-w9r57oty7a] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.page-intro[b-w9r57oty7a] {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* ── Form ─────────────────────────────────────────────── */

.form-fields[b-w9r57oty7a] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-actions[b-w9r57oty7a] {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 4px 0;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .page-hero[b-w9r57oty7a] {
        padding: 28px 16px 24px 16px;
    }

    .page-hero-title[b-w9r57oty7a] {
        font-size: 1.35rem;
    }

    .page-section[b-w9r57oty7a] {
        padding: 24px 12px;
    }

    .page-card[b-w9r57oty7a] {
        padding: 20px 16px 18px 16px;
    }
}
/* /Pages/Wizards/People/EditCompany.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.page-hero-wrapper[b-owpscmemdu] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.page-hero[b-owpscmemdu] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 40px 28px 36px 28px;
    text-align: center;
}

.page-hero-tagline[b-owpscmemdu] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero-title[b-owpscmemdu] {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    color: #fff;
}

/* ── Section ──────────────────────────────────────────── */

.page-section[b-owpscmemdu] {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* ── Card ─────────────────────────────────────────────── */

.page-card[b-owpscmemdu] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.page-intro[b-owpscmemdu] {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* ── Form ─────────────────────────────────────────────── */

.form-fields[b-owpscmemdu] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-actions[b-owpscmemdu] {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 4px 0;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .page-hero[b-owpscmemdu] {
        padding: 28px 16px 24px 16px;
    }

    .page-hero-title[b-owpscmemdu] {
        font-size: 1.35rem;
    }

    .page-section[b-owpscmemdu] {
        padding: 24px 12px;
    }

    .page-card[b-owpscmemdu] {
        padding: 20px 16px 18px 16px;
    }
}
/* /Pages/Wizards/People/EditPerson.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */

.page-hero-wrapper[b-jiu85fiz0t] {
    margin: -1.1rem calc(-50vw + 50%) 0 calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}

.page-hero[b-jiu85fiz0t] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 40px 28px 36px 28px;
    text-align: center;
}

.page-hero-tagline[b-jiu85fiz0t] {
    display: inline-block;
    font-size: 0.78rem;
    color: #2BC48A;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero-title[b-jiu85fiz0t] {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    color: #fff;
}

/* ── Section ──────────────────────────────────────────── */

.page-section[b-jiu85fiz0t] {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* ── Card ─────────────────────────────────────────────── */

.page-card[b-jiu85fiz0t] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
}

.page-intro[b-jiu85fiz0t] {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* ── Form ─────────────────────────────────────────────── */

.form-fields[b-jiu85fiz0t] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-actions[b-jiu85fiz0t] {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 4px 0;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .page-hero[b-jiu85fiz0t] {
        padding: 28px 16px 24px 16px;
    }

    .page-hero-title[b-jiu85fiz0t] {
        font-size: 1.35rem;
    }

    .page-section[b-jiu85fiz0t] {
        padding: 24px 12px;
    }

    .page-card[b-jiu85fiz0t] {
        padding: 20px 16px 18px 16px;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-d3mjw17gb7] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-d3mjw17gb7] {
    flex: 1;
    background: #f8f9fb;
}

/* ── Header ───────────────────────────────────────────── */

.header-bar[b-d3mjw17gb7] {
    background: #0f172a;
    color: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-accent[b-d3mjw17gb7] {
    height: 3px;
    background: linear-gradient(90deg, #2BC48A 0%, #0ea5e9 50%, #2BC48A 100%);
}

.header-inner[b-d3mjw17gb7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 28px;
}

.header-brand[b-d3mjw17gb7] {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s ease;
}

.header-brand:hover[b-d3mjw17gb7] {
    opacity: 0.9;
    text-decoration: none;
    color: #fff;
}

.header-brand-text[b-d3mjw17gb7] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-title[b-d3mjw17gb7] {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: #fff;
}

.header-tagline[b-d3mjw17gb7] {
    font-size: 0.7rem;
    color: #2BC48A;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.header-nav[b-d3mjw17gb7] {
    display: flex;
    align-items: center;
    gap: 2px;
}

.header-nav-link[b-d3mjw17gb7] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 500;
}

.header-nav-link:hover[b-d3mjw17gb7] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

.header-nav-icon[b-d3mjw17gb7] {
    width: 24px;
    height: 24px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.header-nav-link:hover .header-nav-icon[b-d3mjw17gb7] {
    opacity: 1;
}

.header-nav-label[b-d3mjw17gb7] {
    display: inline;
}

.header-nav-divider[b-d3mjw17gb7] {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 6px;
}

.header-nav-logout[b-d3mjw17gb7] {
    opacity: 0.7;
}

.header-nav-logout:hover[b-d3mjw17gb7] {
    opacity: 1;
}

/* ── Footer ───────────────────────────────────────────── */

.site-footer[b-d3mjw17gb7] {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    font-size: 0.82rem;
}

.footer-accent[b-d3mjw17gb7] {
    height: 3px;
    background: linear-gradient(90deg, #2BC48A 0%, #0ea5e9 50%, #2BC48A 100%);
}

.footer-inner[b-d3mjw17gb7] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 28px 16px 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-brand[b-d3mjw17gb7] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo[b-d3mjw17gb7] {
    height: 30px;
    width: auto;
    opacity: 0.9;
}

.footer-company[b-d3mjw17gb7] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.footer-contact[b-d3mjw17gb7] {
    display: flex;
    gap: 20px;
}

[b-d3mjw17gb7] .footer-contact a {
    color: #2BC48A;
    text-decoration: none;
    transition: color 0.2s ease;
}

[b-d3mjw17gb7] .footer-contact a:hover {
    color: #34d399;
    text-decoration: none;
}

.footer-links[b-d3mjw17gb7] {
    display: flex;
    gap: 20px;
}

[b-d3mjw17gb7] .footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.78rem;
}

[b-d3mjw17gb7] .footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-copy[b-d3mjw17gb7] {
    width: 100%;
    text-align: center;
    padding-top: 8px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-trustpilot[b-d3mjw17gb7] {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trustpilot .trustpilot-widget[b-d3mjw17gb7] {
    max-width: 250px;
}

/* ── Legacy ───────────────────────────────────────────── */

.sidebar[b-d3mjw17gb7] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-d3mjw17gb7] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-d3mjw17gb7]  a, .top-row .btn-link[b-d3mjw17gb7] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-d3mjw17gb7] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
    .header-inner[b-d3mjw17gb7] {
        padding: 10px 16px;
    }

    .header-title[b-d3mjw17gb7] {
        font-size: 1.05rem;
    }

    .header-tagline[b-d3mjw17gb7] {
        font-size: 0.6rem;
        letter-spacing: 0.4px;
    }

    .header-nav-label[b-d3mjw17gb7] {
        display: none;
    }

    .header-nav-link[b-d3mjw17gb7] {
        padding: 8px;
    }

    .header-nav-divider[b-d3mjw17gb7] {
        margin: 0 2px;
    }

    .content[b-d3mjw17gb7] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .footer-inner[b-d3mjw17gb7] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 16px 12px 16px;
    }

    .footer-contact[b-d3mjw17gb7],
    .footer-links[b-d3mjw17gb7] {
        flex-direction: column;
        gap: 8px;
    }
}

@media (min-width: 641px) {
    .page[b-d3mjw17gb7] {
        width: 100%;
        flex-direction: column;
    }

    .top-row[b-d3mjw17gb7] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-d3mjw17gb7], article[b-d3mjw17gb7] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-fb7x15179w] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-fb7x15179w] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-fb7x15179w] {
    font-size: 1.1rem;
}

.oi[b-fb7x15179w] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-fb7x15179w] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-fb7x15179w] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-fb7x15179w] {
        padding-bottom: 1rem;
    }

    .nav-item[b-fb7x15179w]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-fb7x15179w]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-fb7x15179w]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 341px) {
    .navbar-toggler[b-fb7x15179w] {
        display: none;
    }

    .collapse[b-fb7x15179w] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-fb7x15179w] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
