/* ============================================
   Realizer.io Design System
   ============================================ */

/* --- Design Tokens ---
   Palette follows the AccessPoint brand guide (docs/accesspoint-brand-guide.md):
   Brand Blue #0074C4, Brand Dark #005A9C, Text Primary #1A2332. */
:root {
    /* Primary Colors */
    --primary-blue: #0074C4;
    --primary-blue-dark: #005A9C;
    --primary-blue-light: #4DA3DD;
    --brand-tint: #E8F4FD;

    /* Status Colors */
    --success-green: #0E7A3A;
    --warning-amber: #9A6700;

    /* Neutrals */
    --gray-50: #F5F7FA;
    --gray-100: #EDF0F4;
    --gray-200: #E1E5EB;
    --gray-300: #C6CFDA;
    --gray-600: #5A6577;
    --gray-700: #3A4250;
    --gray-900: #1A2332;

    /* Gradients.
       --gradient-primary is text-safe: white text passes WCAG AA on both ends.
       --gradient-brand (the Realizer logo gradient) is DECORATIVE ONLY — its cyan
       end fails contrast under white text, so use it on edges/accents, never as
       a text background.
       --gradient-headline is for large display text on white (both ends ≥3:1). */
    --gradient-primary: linear-gradient(135deg, #0074C4 0%, #005A9C 100%);
    --gradient-brand: linear-gradient(135deg, #0074C4 0%, #009EE4 55%, #28D0F0 100%);
    --gradient-headline: linear-gradient(135deg, #0074C4 0%, #0084DE 100%);

    /* Typography — Segoe UI first: matches the product UI and M365 (brand guide) */
    --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* --- Base Reset & Typography ---
   Bootstrap has been removed; these resets carry over the parts of its
   Reboot the layout was built against. */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--gray-900);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
}

p {
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

ul, ol {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

img, svg {
    vertical-align: middle;
}

button, input, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-blue-dark);
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-muted { color: var(--gray-600); }
.text-danger { color: #C93B3B; }

.lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.gradient-text {
    background: var(--gradient-headline);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    gap: 0.5rem;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 116, 196, 0.25);
}

.btn-primary:hover {
    filter: brightness(1.08);
    box-shadow: 0 6px 20px rgba(0, 116, 196, 0.35);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: rgba(0, 116, 196, 0.08);
    color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
}

.btn-white {
    background: #fff;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    /* Explicit background required: Bootstrap's .btn:hover otherwise resolves
       background-color to transparent via its unset --bs-btn-hover-bg */
    background: var(--brand-tint);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-blue-dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* --- Section Layout --- */
.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Grid --- */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- Skip to main content (accessibility) --- */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--space-sm);
    background: var(--primary-blue);
    color: #fff;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 9999;
}

.skip-link:focus {
    top: var(--space-sm);
    color: #fff;
}

/* --- CTA Section --- */
.cta-section {
    /* Corner glows sit off-band so centered text stays on the AA-safe base gradient */
    background:
        radial-gradient(700px 320px at 92% 118%, rgba(40, 208, 240, 0.28), transparent 70%),
        radial-gradient(620px 300px at 4% -18%, rgba(0, 158, 228, 0.32), transparent 65%),
        var(--gradient-primary);
    color: #fff;
    padding: var(--space-3xl) 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin: 0 auto var(--space-lg);
}

/* --- Dashboard Mockup (plain elevated card around the hero screenshot) --- */
.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
}

.hero-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* --- Page Content Sections --- */
.page-content {
    padding: var(--space-2xl) 0;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* --- FAQ Accordion (native <details>, exclusive-open via name attribute) --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.faq-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 1rem 1.25rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item summary::after {
    content: '';
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--gray-600);
    border-bottom: 2px solid var(--gray-600);
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--transition-fast);
}

.faq-item summary:hover h3 {
    color: var(--primary-blue);
}

.faq-item summary:focus-visible {
    outline: 3px solid rgba(0, 116, 196, 0.35);
    outline-offset: -3px;
    border-radius: var(--radius-md);
}

.faq-item[open] {
    border-color: var(--primary-blue-light);
}

.faq-item[open] summary {
    background: rgba(0, 116, 196, 0.05);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.faq-item[open] summary h3 {
    color: var(--primary-blue);
}

.faq-item[open] summary::after {
    transform: rotate(225deg) translateY(2px);
    border-color: var(--primary-blue);
}

.faq-answer {
    padding: 1rem 1.25rem;
    color: var(--gray-700);
    line-height: 1.7;
    border-top: 1px solid var(--gray-100);
}

/* --- Delivery Methods List --- */
.delivery-methods {
    list-style: none;
    padding: 0;
}

.delivery-methods li {
    padding: 0.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--gray-700);
}

.delivery-methods li::before {
    content: '\2713';
    color: var(--success-green);
    font-weight: 700;
    flex-shrink: 0;
}

/* --- Feature Groups (product page) --- */
.feature-group-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.feature-group-nav a {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
    background: #fff;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.feature-group-nav a:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: var(--brand-tint);
}

.feature-group {
    scroll-margin-top: 90px; /* clear the sticky header on anchor jumps */
}

.feature-group + .feature-group {
    margin-top: var(--space-2xl);
}

.feature-group-head {
    margin-bottom: var(--space-lg);
}

.feature-group-title {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.feature-group-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, var(--gray-900) 0%, var(--gray-900) 60%, var(--primary-blue) 60%, var(--primary-blue) 100%);
}

.feature-group-blurb {
    margin: var(--space-sm) 0 0;
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 760px;
}

/* Labelled placeholder for feature screenshots not yet captured */
.screenshot-pending {
    width: 100%;
    min-height: 190px;
    height: 100%;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
    padding: var(--space-lg) var(--space-md);
}

.screenshot-pending svg {
    width: 30px;
    height: 30px;
    color: var(--gray-300);
}

.screenshot-pending-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.screenshot-pending-hint {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--gray-600);
    max-width: 320px;
}

.feature-detail-card .feature-detail-text h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

/* --- Get AccessPoint Page --- */
.get-option-featured {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.get-option-badge {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: var(--brand-tint);
    color: var(--primary-blue-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.offering-card .btn {
    align-self: flex-start;
    margin-top: var(--space-sm);
}

.get-help-note {
    text-align: center;
    color: var(--gray-600);
    margin: var(--space-xl) auto 0;
    max-width: 640px;
}

.get-pricing-note {
    margin: var(--space-lg) auto 0;
    font-size: 0.9rem;
}

/* ============================================
   Jurisdiction solutions pages
   ============================================ */

/* --- Hub (/solutions) --- */
.jur-toc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

.jur-toc-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-600);
    margin-right: var(--space-xs);
}

.jur-toc a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
    background: #fff;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.jur-toc a:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: var(--brand-tint);
}

.jur-toc-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: 999px;
    padding: 0.05rem 0.45rem;
}

.jur-toc a:hover .jur-toc-count {
    background: #fff;
    color: var(--primary-blue);
}

.jur-region {
    scroll-margin-top: 90px;
}

.jur-region + .jur-region {
    margin-top: var(--space-2xl);
}

.jur-region-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--gray-200);
}

.jur-group-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: var(--space-lg) 0 var(--space-md);
}

.jur-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

@media (max-width: 992px) { .jur-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .jur-hub-grid { grid-template-columns: 1fr; } }

.jur-hub-card {
    display: block;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    color: inherit;
}

a.jur-hub-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
    color: inherit;
}

.jur-hub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.jur-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 28px;
    padding: 0 0.5rem;
    background: var(--brand-tint);
    color: var(--primary-blue-dark);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.jur-pack-code {
    font-family: 'JetBrains Mono', ui-monospace, 'Cascadia Code', Consolas, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--gray-600);
}

.jur-hub-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.jur-hub-card p {
    color: var(--gray-600);
    font-size: 0.92rem;
    margin-bottom: var(--space-sm);
}

.jur-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.jur-hub-link svg { width: 15px; height: 15px; }

.jur-hub-head-right {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Draft (unpublished) jurisdiction cards — still clickable for review,
   but visually distinct and kept out of the sitemap. */
.jur-hub-card-draft {
    background: var(--gray-50);
    border-style: dashed;
}

.jur-hub-card-draft h4 { color: var(--gray-700); }

.jur-hub-card-draft .jur-hub-link { color: var(--gray-600); }

a.jur-hub-card-draft:hover {
    border-style: solid;
}

a.jur-hub-card-draft:hover .jur-hub-link { color: var(--primary-blue); }

.jur-draft-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warning-amber);
    background: #FFF8E1;
    border-radius: 4px;
    padding: 0.1rem 0.4rem;
}

.jur-hub-note {
    margin-top: var(--space-2xl);
    text-align: center;
    color: var(--gray-600);
}

/* --- Jurisdiction page hero --- */
.jur-hero {
    background:
        radial-gradient(700px 320px at 92% 120%, rgba(40, 208, 240, 0.28), transparent 70%),
        radial-gradient(620px 300px at 2% -20%, rgba(0, 158, 228, 0.32), transparent 65%),
        var(--gradient-primary);
    color: #fff;
    padding: var(--space-2xl) 0 var(--space-3xl);
    position: relative;
}

.jur-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-brand);
}

.jur-breadcrumb {
    font-size: 0.85rem;
    margin-bottom: var(--space-lg);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.jur-breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.jur-breadcrumb a:hover { color: #fff; }

.jur-eyebrow {
    font-family: 'JetBrains Mono', ui-monospace, 'Cascadia Code', Consolas, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a5e8ff;
    margin-bottom: var(--space-sm);
}

.jur-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    max-width: 900px;
    margin-bottom: var(--space-md);
}

.jur-hero-sub {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--space-lg);
}

.jur-hero-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) { .jur-hero h1 { font-size: 2.1rem; } }

/* --- Overview: at a glance + acts --- */
.jur-overview {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 900px) { .jur-overview { grid-template-columns: 1fr; gap: var(--space-xl); } }

.jur-glance h2 { font-size: 1.6rem; margin-bottom: var(--space-md); }

.jur-facts { margin: 0; }

.jur-fact {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--gray-200);
}

.jur-fact:last-child { border-bottom: 1px solid var(--gray-200); }

.jur-fact dt { font-weight: 600; color: var(--gray-900); }
.jur-fact dd { margin: 0; color: var(--gray-700); }

@media (max-width: 540px) { .jur-fact { grid-template-columns: 1fr; gap: 0.2rem; } }

.jur-acts {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.jur-acts h3 { font-size: 1.1rem; margin-bottom: var(--space-md); }

.jur-act, .jur-regulator { padding: var(--space-sm) 0; border-top: 1px solid var(--gray-200); }
.jur-acts h3 + .jur-act { border-top: none; padding-top: 0; }
.jur-regulator { border-top: 2px solid var(--gray-200); margin-top: var(--space-xs); }

.jur-act-name { font-weight: 700; color: var(--primary-blue-dark); }
.jur-act-citation {
    font-size: 0.85rem;
    color: var(--gray-700);
    margin: 0.15rem 0;
}
.jur-act-scope { font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; }

/* --- Spotlight band (regulatory hook) --- */
.jur-spotlight {
    background:
        radial-gradient(600px 280px at 90% 120%, rgba(0, 116, 196, 0.35), transparent 70%),
        var(--gray-900);
    color: #fff;
    padding: var(--space-3xl) 0;
    position: relative;
}

.jur-spotlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-brand);
}

.jur-spotlight h2 {
    font-size: 2rem;
    max-width: 820px;
    margin-bottom: var(--space-md);
}

.jur-spotlight-body {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
}

.jur-spotlight-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) { .jur-spotlight-points { grid-template-columns: 1fr; } }

.jur-spotlight-point { display: flex; gap: var(--space-sm); align-items: flex-start; }

.jur-spotlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #a5e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jur-spotlight-icon svg { width: 22px; height: 22px; }

.jur-spotlight-point strong { display: block; margin-bottom: 0.15rem; }
.jur-spotlight-point span { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; line-height: 1.5; }

/* --- Configured out of the box --- */
.jur-pack {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 900px) { .jur-pack { grid-template-columns: 1fr; gap: var(--space-lg); } }

.jur-pack-intro h2 { font-size: 1.6rem; margin-bottom: var(--space-sm); }
.jur-pack-intro p { color: var(--gray-600); }

.jur-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: var(--space-sm);
    font-weight: 600;
}

.jur-guide-link svg { width: 16px; height: 16px; }

.jur-pack-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
}

.jur-pack-list li {
    padding: 0.5rem 0 0.5rem 1.9rem;
    position: relative;
    color: var(--gray-700);
    border-top: 1px solid var(--gray-100);
}

.jur-pack-list li:first-child { border-top: none; }

.jur-pack-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230074C4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* --- Thank You Page --- */
.thank-you {
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.thank-you-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    background: var(--brand-tint);
    color: var(--success-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
}

/* --- Prose Content (for About, Privacy, Terms) --- */
.prose {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md);
}

.prose h1 {
    margin-bottom: var(--space-md);
}

.prose h2 {
    font-size: 1.75rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.prose h3 {
    font-size: 1.35rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
}

.prose p, .prose li {
    line-height: 1.7;
    color: var(--gray-700);
}

.prose ul, .prose ol {
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
}
