/* CATAMA DMS – Marketing Site Styles
   Brand-aligned with /css/catama-modern.css (Primary #128370). */

:root {
    --c-primary: #128370;
    --c-primary-hover: #0f6f5f;
    --c-primary-dark: #0a473d;
    --c-primary-50: #e6f5f3;
    --c-primary-100: #c2e8e3;
    --c-text: #0f172a;
    --c-text-soft: #475569;
    --c-text-muted: #64748b;
    --c-border: #e2e8f0;
    --c-bg: #ffffff;
    --c-bg-soft: #f8fafc;
    --c-bg-section: #f1f5f9;
    --c-shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
    --c-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .07), 0 2px 4px -2px rgba(0, 0, 0, .07);
    --c-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .08), 0 4px 6px -4px rgba(0, 0, 0, .08);
    --c-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .08);
    --c-radius: 12px;
    --c-radius-sm: 6px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-hover); }

/* Skip link for keyboard / screenreaders */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--c-primary);
    color: #fff;
    padding: .75rem 1rem;
    z-index: 100;
    border-radius: 0 0 var(--c-radius-sm) 0;
    font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* Header / nav -------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled {
    border-bottom-color: var(--c-border);
    box-shadow: var(--c-shadow-sm);
}
.site-header .container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: .9rem 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: var(--c-text);
    font-weight: 900;
    font-size: 1.425rem;
}
.brand:hover { color: var(--c-text); }
.brand .brand-mark {
    width: 50px; height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.brand .brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.brand .brand-text { line-height: 1.1; }
.brand .brand-text small {
    display: block;
    font-size: .65rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
    margin-top: 2px;
}

.nav-primary {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .25rem;
}
.nav-primary a {
    color: var(--c-text-soft);
    padding: .5rem .85rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    transition: background .15s, color .15s;
}
.nav-primary a:hover { background: var(--c-primary-50); color: var(--c-primary); }
.nav-primary a.is-active {
    color: var(--c-primary);
    background: var(--c-primary-50);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    padding: 2px;
    background: var(--c-bg);
    margin-left: .5rem;
}
.lang-switch a {
    padding: .25rem .65rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--c-text-muted);
    border-radius: 999px;
    line-height: 1;
}
.lang-switch a.is-active {
    background: var(--c-primary);
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.2rem;
    border-radius: var(--c-radius-sm);
    font-weight: 600;
    font-size: .9rem;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s, box-shadow .15s, transform .1s;
    text-align: center;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    background: var(--c-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(18, 131, 112, .25);
}
.btn-primary:hover { background: var(--c-primary-hover); color: #fff; }
.btn-outline {
    background: #fff;
    color: var(--c-primary);
    border-color: var(--c-border);
}
.btn-outline:hover { border-color: var(--c-primary); color: var(--c-primary-hover); }
.btn-ghost {
    background: transparent;
    color: var(--c-text-soft);
}
.btn-ghost:hover { color: var(--c-primary); background: var(--c-primary-50); }
.btn-lg { padding: .9rem 1.5rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* Mobile burger */
.burger {
    display: none;
    background: #fff;
    border: 1px solid var(--c-border);
    padding: .55rem .8rem;
    border-radius: 8px;
    cursor: pointer;
    color: var(--c-text);
    margin-left: auto;
    font-size: 1.05rem;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
}
.burger:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; }

@media (max-width: 880px) {
    .site-header .container {
        gap: .75rem;
        padding: .75rem 1rem;
        flex-wrap: wrap;
    }
    .brand .brand-text { font-size: 1rem; }
    .brand .brand-text small { font-size: .58rem; }
    .burger { display: inline-flex; align-items: center; justify-content: center; }

    .nav-primary {
        display: none;
        order: 99;
        flex-basis: 100%;
        width: 100%;
        margin: .75rem -1rem -.75rem;
        padding: .5rem 1rem 1rem;
        background: #fff;
        border-top: 1px solid var(--c-border);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: var(--c-shadow-md);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    .nav-primary.is-open { display: flex; }
    .nav-primary a {
        padding: .9rem .25rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--c-border);
        border-radius: 0;
    }
    .nav-primary a:last-of-type { border-bottom: none; }
    .nav-primary a.is-active { background: transparent; color: var(--c-primary); }
    .lang-switch { margin: .9rem 0 0; align-self: flex-start; }
}

/* Layout ------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.container-sm { max-width: 880px; margin: 0 auto; padding: 0 1.25rem; }

section { padding: 5rem 0; }
@media (min-width: 880px) { section { padding: 7rem 0; } }
.section-tight { padding: 3.5rem 0; }
.section-bg-soft { background: var(--c-bg-soft); }
.section-bg-primary {
    background: linear-gradient(180deg, var(--c-primary-50) 0%, #fff 100%);
}
.section-bg-dark {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    color: #fff;
}
.section-bg-dark h1, .section-bg-dark h2, .section-bg-dark h3 { color: #fff; }
.section-bg-dark p { color: rgba(255, 255, 255, .85); }

/* Typography --------------------------------------------------------- */
h1, h2, h3, h4, h5 {
    color: var(--c-text);
    margin: 0 0 .75rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.015em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}
h1 { font-size: clamp(1.55rem, 6vw, 2.5rem); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(1.35rem, 4.2vw, 2.15rem); }
h3 { font-size: clamp(1.05rem, 2.8vw, 1.25rem); }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1rem; color: var(--c-text-soft); overflow-wrap: break-word; }
.lead { font-size: clamp(.98rem, 2.4vw, 1.15rem); color: var(--c-text-soft); }
.eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .75rem;
}

/* Hero --------------------------------------------------------------- */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 980px) {
    .hero { padding-top: 7rem; padding-bottom: 7rem; }
    .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px circle at 80% 0%, rgba(18, 131, 112, .12), transparent 60%),
        radial-gradient(600px circle at 0% 100%, rgba(18, 131, 112, .08), transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* Trust bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--c-border);
}
@media (min-width: 700px) {
    .trust-bar { grid-template-columns: repeat(4, 1fr); }
}
.trust-bar .trust-item { font-size: .85rem; color: var(--c-text-muted); }
.trust-bar .trust-item strong { display: block; color: var(--c-text); font-size: 1.05rem; margin-bottom: .15rem; }

/* Cards -------------------------------------------------------------- */
.card-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 1.75rem;
    box-shadow: var(--c-shadow-sm);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--c-shadow-lg);
    border-color: var(--c-primary-100);
}
.card-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { margin-bottom: 0; font-size: .95rem; }

/* Feature blocks ----------------------------------------------------- */
.feature-block {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 2rem;
    box-shadow: var(--c-shadow-sm);
}
.feature-block h3 {
    display: flex; align-items: center; gap: .65rem;
    margin-bottom: 1rem;
}
.feature-block h3 .feature-icon {
    width: 36px; height: 36px;
    background: var(--c-primary-50);
    color: var(--c-primary);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.feature-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.feature-list li {
    display: flex; gap: .75rem;
    padding: .5rem 0;
    color: var(--c-text-soft);
    font-size: .92rem;
    line-height: 1.55;
}
.feature-list li::before {
    content: "";
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 3px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='%23128370'><path d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
}
.feature-list li strong { color: var(--c-text); }

/* USP grid */
.usp-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}
@media (min-width: 900px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }
.usp-item {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 2rem;
    box-shadow: var(--c-shadow-sm);
}
.usp-item .usp-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
    color: #fff;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 16px rgba(18, 131, 112, .25);
}

/* Pricing */
.price-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
    position: relative;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 2.25rem 2rem;
    box-shadow: var(--c-shadow-sm);
    display: flex;
    flex-direction: column;
}
.price-card.is-featured {
    border-color: var(--c-primary);
    border-width: 2px;
    box-shadow: var(--c-shadow-lg);
    transform: scale(1.02);
}
.price-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .35rem .85rem;
    border-radius: 999px;
}
.price-card h3 { margin-bottom: .25rem; }
.price-card .quota {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1;
    margin: 1.5rem 0 .5rem;
}
.price-card .quota small { font-size: 1rem; color: var(--c-text-muted); font-weight: 500; }
.price-card .feature-list { flex: 1; }
.price-card .btn { margin-top: 1.5rem; }

/* Compare table */
.compare-wrap { overflow-x: auto; margin-top: 3rem; }
.compare-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    overflow: hidden;
}
.compare-table th, .compare-table td {
    padding: .9rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: .92rem;
}
.compare-table thead th {
    background: var(--c-bg-soft);
    font-weight: 600;
    color: var(--c-text);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .check { color: var(--c-primary); font-weight: 600; }
.compare-table th:first-child, .compare-table td:first-child { color: var(--c-text-soft); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 2.5rem; }
.faq-item {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    overflow: hidden;
    transition: border-color .15s, box-shadow .15s;
}
.faq-item[open] { border-color: var(--c-primary-100); box-shadow: var(--c-shadow-sm); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 1.5rem;
    font-weight: 600;
    color: var(--c-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    width: 12px; height: 12px;
    border-right: 2px solid var(--c-text-muted);
    border-bottom: 2px solid var(--c-text-muted);
    transform: rotate(45deg);
    transition: transform .2s;
    flex-shrink: 0;
    margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq-item .faq-body { padding: 0 1.5rem 1.4rem; color: var(--c-text-soft); font-size: .95rem; line-height: 1.6; }
.faq-item .faq-body p { margin-bottom: .65rem; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* CTA Strip */
.cta-strip {
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
    color: #fff;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px -10px rgba(18, 131, 112, .35);
}
.cta-strip h2 { color: #fff; margin-bottom: .75rem; }
.cta-strip p { color: rgba(255, 255, 255, .9); margin-bottom: 1.5rem; }
.cta-strip .btn-primary { background: #fff; color: var(--c-primary); }
.cta-strip .btn-primary:hover { background: rgba(255, 255, 255, .9); color: var(--c-primary-dark); }
.cta-strip .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.cta-strip .btn-outline:hover { border-color: #fff; color: #fff; }

/* Page header (sub pages) */
.page-header {
    background: linear-gradient(180deg, var(--c-primary-50) 0%, #fff 100%);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--c-border);
}
.page-header h1 { margin-bottom: .75rem; }
.page-header .lead { max-width: 720px; }
.breadcrumbs {
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: .35rem;
    flex-wrap: wrap;
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-primary); }
.breadcrumbs .sep { color: var(--c-border); }
.breadcrumbs [aria-current] { color: var(--c-text); font-weight: 500; }

/* Footer ------------------------------------------------------------- */
.site-footer {
    background: #0f1f1c;
    color: rgba(255, 255, 255, .7);
    padding: 4rem 0 2rem;
    margin-top: 0;
}
.site-footer .container { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .site-footer .container { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.site-footer h4 {
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.site-footer a { color: rgba(255, 255, 255, .7); font-size: .9rem; }
.site-footer a:hover { color: #fff; }
.site-footer .brand-mark { background: #fff; border-radius: 10px; padding: 4px; box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.site-footer .footer-brand { color: #fff; }
.site-footer .footer-brand small { color: rgba(255, 255, 255, .55); }
.site-footer .footer-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
}

/* Tag chip */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .65rem;
    background: var(--c-primary-50);
    color: var(--c-primary);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
}

/* Diagram (for signatures hash chain) */
.chain-diagram {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}
@media (min-width: 700px) {
    .chain-diagram {
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
        gap: .75rem;
    }
}
.chain-node {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: var(--c-shadow-sm);
    position: relative;
}
.chain-node .chain-event {
    font-size: .75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .5rem;
    font-weight: 600;
}
.chain-node code {
    display: block;
    background: var(--c-bg-soft);
    border-radius: 6px;
    padding: .35rem;
    font-size: .7rem;
    color: var(--c-text-soft);
    word-break: break-all;
    margin-top: .5rem;
}
.chain-arrow {
    text-align: center;
    color: var(--c-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeUp .6s ease-out both;
    }
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(12px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* Mobile fine-tuning ------------------------------------------------- */
@media (max-width: 640px) {
    .container, .container-sm { padding-left: 1rem; padding-right: 1rem; }

    section { padding: 3rem 0; }
    .section-tight { padding: 2rem 0; }

    /* Hero */
    .hero { padding-top: 2.5rem; padding-bottom: 2.5rem; }
    .hero-grid { gap: 2rem; }
    .hero-cta { gap: .6rem; margin-top: 1.25rem; }
    .hero-cta .btn { width: 100%; }
    .hero h1 br { display: none; }

    /* Cards / blocks tighter padding */
    .card { padding: 1.25rem; }
    .feature-block { padding: 1.25rem; }
    .usp-item { padding: 1.5rem; }

    /* Trust bar single column on very small */
    .trust-bar { grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; }

    /* Pricing: never scale featured card on mobile, otherwise it overflows */
    .price-card { padding: 1.5rem 1.25rem; }
    .price-card.is-featured { transform: none; }
    .price-card .quota { font-size: 2rem; }

    /* CTA strip */
    .cta-strip { padding: 2rem 1.25rem; }
    .cta-strip .btn { width: 100%; }

    /* Buttons fit on narrow screens */
    .btn { white-space: normal; }
    .btn-lg { padding: .85rem 1.2rem; font-size: .95rem; }

    /* Footer stacked, less padding */
    .site-footer { padding: 2.5rem 0 1.5rem; }
    .site-footer .container { gap: 2rem; }
    .site-footer .footer-bottom { flex-direction: column; gap: .5rem; }

    /* Page header tighter */
    .page-header { padding: 2rem 0 1.5rem; }
    .breadcrumbs { font-size: .75rem; }

    /* FAQ: smaller summary padding */
    .faq-item summary { padding: 1rem 1.25rem; font-size: .95rem; }
}

/* Print */
@media print {
    .site-header, .site-footer, .cta-strip, .burger { display: none; }
    body { background: #fff; color: #000; }
    a { color: #000; text-decoration: underline; }
    section { padding: 1.5rem 0; }
}

/* Focus visibility */
:focus-visible {
    outline: 2px solid var(--c-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Utility: flex utilities used inline-light */
.flex-wrap { display: flex; flex-wrap: wrap; gap: .75rem; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-prose { max-width: 65ch; }

/* Legal page styling */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin-top: 2.5rem; padding-bottom: .5rem; border-bottom: 1px solid var(--c-border); }
.legal-content h3 { margin-top: 1.5rem; }
.legal-content p, .legal-content li { font-size: .95rem; }
.legal-content ul { padding-left: 1.25rem; }
.legal-content address { font-style: normal; padding: 1rem 1.25rem; background: var(--c-bg-soft); border-radius: var(--c-radius-sm); border-left: 3px solid var(--c-primary); margin: 1rem 0; }
