/* ══════════════════════════════════════════════════════════════
   RecordGate Design System
   Modern minimalist UI — generous whitespace, zero clutter
   ══════════════════════════════════════════════════════════════ */

:root {
    --rg-primary: #2563eb;
    --rg-primary-hover: #1d4ed8;
    --rg-success: #16a34a;
    --rg-warning: #d97706;
    --rg-danger: #dc2626;
    --rg-muted: #64748b;
    --rg-bg: #f8fafc;
    --rg-card-shadow: 0 1px 3px rgba(0,0,0,0.08);
    --rg-radius: 0.5rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    background-color: var(--rg-bg);
    color: #1e293b;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
    border: none;
    box-shadow: var(--rg-card-shadow);
    border-radius: var(--rg-radius);
}

.card-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
}

/* ── Status badges ────────────────────────────────────────── */
.badge { font-weight: 500; letter-spacing: 0.02em; }

/* ── Deadline urgency colors ──────────────────────────────── */
.deadline-safe { color: var(--rg-success); }
.deadline-warn { color: var(--rg-warning); }
.deadline-danger { color: var(--rg-danger); font-weight: 600; }
.deadline-paused { color: var(--rg-muted); font-style: italic; }

/* ── Stat tiles on dashboard ──────────────────────────────── */
.stat-tile {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: var(--rg-radius);
    background: white;
    box-shadow: var(--rg-card-shadow);
    transition: transform 0.15s ease;
}
.stat-tile:hover { transform: translateY(-2px); }
.stat-tile h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.25rem; }

/* ── Clickable table rows ─────────────────────────────────── */
.cursor-pointer { cursor: pointer; }
.cursor-pointer:hover { background-color: rgba(37, 99, 235, 0.04); }

/* ── Nav tweaks ───────────────────────────────────────────── */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}
.navbar-dark .navbar-nav .nav-link:hover { color: #fff; }
.navbar-brand { font-weight: 700; letter-spacing: -0.02em; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-control:focus, .form-select:focus {
    border-color: var(--rg-primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

/* ── Empty states ──────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--rg-muted);
}
.empty-state i { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }

/* ── OOO badge ─────────────────────────────────────────────── */
.badge-ooo {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
}

/* ── Action bar (right panel on detail page) ───────────────── */
.action-panel .card { margin-bottom: 1rem; }
.action-panel .card-header { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* ── Drag-and-drop upload zone ─────────────────────────────── */
.drop-zone {
    border: 2px dashed #cbd5e1;
    border-radius: var(--rg-radius);
    padding: 2rem;
    text-align: center;
    color: var(--rg-muted);
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}
.drop-zone.drag-over {
    border-color: var(--rg-primary);
    background: rgba(37, 99, 235, 0.04);
}

/* ── Print-friendly audit log ──────────────────────────────── */
@media print {
    .navbar, .action-panel, .btn { display: none !important; }
    .card { box-shadow: none; border: 1px solid #ccc; }
}

/* ── Responsive helpers ────────────────────────────────────── */
@media (max-width: 768px) {
    main.container-fluid { padding: 0.75rem; }
    .stat-tile h2 { font-size: 1.5rem; }
}

/* CivicRecordsOnline launch landing page */
.cro-landing {
    --cro-navy: #173250;
    --cro-navy-2: #244966;
    --cro-ink: #172333;
    --cro-muted: #5f6f7e;
    --cro-line: #d9e2ea;
    --cro-soft: #f6f8fb;
    --cro-teal: #0e6f68;
    --cro-teal-dark: #0a5c56;
    --cro-gold: #a66f2b;
    --cro-white: #ffffff;
    margin: 0;
    background: var(--cro-white);
    color: var(--cro-ink);
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
}

.cro-landing * {
    box-sizing: border-box;
}

.cro-landing a {
    color: inherit;
}

.cro-skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 20;
    padding: 0.75rem 1rem;
    background: var(--cro-navy);
    color: var(--cro-white);
    text-decoration: none;
    border-radius: 0.375rem;
}

.cro-skip-link:focus {
    top: 1rem;
}

.cro-header,
.cro-hero,
.cro-value-section,
.cro-feature,
.cro-pricing,
.cro-comparison,
.cro-footer {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.cro-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
}

.cro-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--cro-navy);
    font-weight: 700;
    text-decoration: none;
}

.cro-brand-mark {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    object-fit: cover;
}

.cro-header-link {
    color: var(--cro-muted);
    font-size: 0.95rem;
    text-decoration-color: transparent;
    text-underline-offset: 0.25rem;
}

.cro-header-link:hover,
.cro-header-link:focus {
    color: var(--cro-navy);
    text-decoration-color: currentColor;
}

.cro-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    min-height: calc(100svh - 6rem);
    padding: 3rem 0 4rem;
    border-top: 1px solid var(--cro-line);
}

.cro-hero-copy {
    max-width: 690px;
    min-width: 0;
}

.cro-hero h1,
.cro-feature h2,
.cro-pricing h2,
.cro-comparison h2,
.cro-footer h2 {
    margin: 0;
    color: var(--cro-navy);
    font-family: "Newsreader", serif;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.cro-hero h1 {
    font-size: clamp(3rem, 7vw, 5.85rem);
    max-width: 760px;
}

.cro-hero-lede {
    max-width: 650px;
    margin: 1.5rem 0 0;
    color: var(--cro-navy-2);
    font-size: 1.25rem;
    line-height: 1.55;
}

.cro-form-panel {
    width: min(100%, 620px);
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid var(--cro-line);
    border-radius: 0.5rem;
    background: var(--cro-white);
}

.cro-form-row > * {
    min-width: 0;
}

.cro-waitlist label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--cro-navy);
    font-size: 0.9rem;
    font-weight: 700;
}

.cro-form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
}

.cro-form-row input {
    min-height: 3rem;
    width: 100%;
    border: 1px solid #b7c4cf;
    border-radius: 0.375rem;
    padding: 0.75rem 0.9rem;
    color: var(--cro-ink);
    font: inherit;
    background: var(--cro-white);
}

.cro-form-row button {
    min-height: 3rem;
    border: 1px solid var(--cro-teal);
    border-radius: 0.375rem;
    padding: 0.7rem 1.15rem;
    background: var(--cro-teal);
    color: var(--cro-white);
    font: inherit;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.cro-form-row button:hover,
.cro-form-row button:focus {
    background: var(--cro-teal-dark);
    border-color: var(--cro-teal-dark);
    transform: translateY(-1px);
}

.cro-form-row input:focus,
.cro-form-row button:focus,
.cro-brand:focus,
.cro-header-link:focus,
.cro-footer a:focus {
    outline: 3px solid rgba(14, 111, 104, 0.25);
    outline-offset: 3px;
}

.cro-form-note,
.cro-form-error,
.cro-form-success {
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
}

.cro-form-note {
    color: var(--cro-muted);
}

.cro-form-error {
    color: #9a3412;
}

.cro-form-success {
    color: var(--cro-teal-dark);
    font-weight: 700;
}

.cro-hero-panel {
    border: 1px solid var(--cro-line);
    border-radius: 0.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    padding: 1.25rem;
    min-width: 0;
}

.cro-panel-topline,
.cro-section-label {
    color: var(--cro-gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cro-deadline-card {
    margin-top: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--cro-line);
    border-radius: 0.5rem;
    background: var(--cro-navy);
    color: var(--cro-white);
}

.cro-deadline-card span,
.cro-deadline-card small {
    display: block;
}

.cro-deadline-card strong {
    display: block;
    margin: 0.4rem 0;
    font-family: "Newsreader", serif;
    font-size: 2.5rem;
    line-height: 1;
}

.cro-deadline-card small {
    color: #dce8ef;
}

.cro-signal-list {
    display: grid;
    gap: 0;
    margin: 1rem 0 0;
    border: 1px solid var(--cro-line);
    border-radius: 0.5rem;
    overflow: hidden;
}

.cro-signal-list div {
    padding: 1rem;
    background: var(--cro-white);
}

.cro-signal-list div + div {
    border-top: 1px solid var(--cro-line);
}

.cro-signal-list dt {
    color: var(--cro-navy);
    font-weight: 700;
}

.cro-signal-list dd {
    margin: 0.1rem 0 0;
    color: var(--cro-muted);
}

.cro-value-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem 0 5rem;
}

.cro-value-card,
.cro-price-card {
    border: 1px solid var(--cro-line);
    border-radius: 0.5rem;
    background: var(--cro-white);
}

.cro-value-card {
    min-height: 15rem;
    padding: 1.4rem;
}

.cro-value-card span {
    color: var(--cro-gold);
    font-weight: 700;
}

.cro-value-card h2 {
    margin: 2rem 0 0.7rem;
    color: var(--cro-navy);
    font-family: "Newsreader", serif;
    font-size: 1.75rem;
    line-height: 1.1;
}

.cro-value-card p {
    margin: 0;
    color: var(--cro-muted);
}

.cro-feature {
    padding: 5rem 0;
    border-top: 1px solid var(--cro-line);
}

.cro-feature-split,
.cro-security,
.cro-comparison,
.cro-footer {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 6vw, 5rem);
}

.cro-feature h2,
.cro-pricing h2,
.cro-comparison h2,
.cro-footer h2 {
    margin-top: 0.6rem;
    font-size: clamp(2.25rem, 4.5vw, 4rem);
}

.cro-feature-body p,
.cro-security-copy p,
.cro-comparison p,
.cro-footer p,
.cro-section-heading p {
    margin: 0;
    color: var(--cro-navy-2);
    font-size: 1.12rem;
}

.cro-check-list,
.cro-security-grid,
.cro-price-card ul {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.cro-check-list li,
.cro-security-grid li,
.cro-price-card li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--cro-muted);
}

.cro-check-list li + li,
.cro-security-grid li + li,
.cro-price-card li + li {
    margin-top: 0.65rem;
}

.cro-check-list li::before,
.cro-security-grid li::before,
.cro-price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--cro-teal);
}

.cro-security {
    align-items: start;
    background: var(--cro-soft);
    border: 1px solid var(--cro-line);
    border-radius: 0.5rem;
    padding: clamp(2rem, 5vw, 3.5rem);
}

.cro-security-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1.25rem;
    margin-top: 0;
}

.cro-pricing {
    padding: 5rem 0;
}

.cro-section-heading {
    max-width: 780px;
}

.cro-section-heading p {
    margin-top: 1rem;
}

.cro-price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cro-price-card {
    display: flex;
    min-height: 28rem;
    flex-direction: column;
    padding: 1.35rem;
}

.cro-price-card-featured {
    border-color: var(--cro-teal);
    box-shadow: inset 0 0 0 2px rgba(14, 111, 104, 0.08);
}

.cro-price-card h3 {
    margin: 0;
    color: var(--cro-navy);
    font-size: 1.25rem;
    font-weight: 700;
}

.cro-price {
    margin: 1rem 0 0;
    color: var(--cro-navy);
    font-family: "Newsreader", serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.cro-price span {
    color: var(--cro-muted);
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.cro-best-for {
    margin: auto 0 0;
    padding-top: 1.25rem;
    color: var(--cro-navy-2);
    font-size: 0.95rem;
    font-weight: 600;
}

.cro-comparison {
    padding: 3rem 0 5rem;
    border-top: 1px solid var(--cro-line);
}

.cro-footer {
    padding: 3.5rem 0;
    border-top: 1px solid var(--cro-line);
}

.cro-footer-form-wrap {
    align-self: center;
}

.cro-footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2.5rem;
    color: var(--cro-muted);
    font-size: 0.95rem;
}

.cro-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.cro-footer-brand img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.cro-footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.cro-footer-bottom a {
    text-decoration-color: transparent;
    text-underline-offset: 0.25rem;
}

.cro-footer-bottom a:hover,
.cro-footer-bottom a:focus {
    color: var(--cro-navy);
    text-decoration-color: currentColor;
}

@media (max-width: 980px) {
    .cro-hero,
    .cro-feature-split,
    .cro-security,
    .cro-comparison,
    .cro-footer {
        grid-template-columns: 1fr;
    }

    .cro-hero {
        min-height: auto;
    }

    .cro-value-section,
    .cro-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .cro-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .cro-hero h1 {
        font-size: 2.75rem;
    }

    .cro-hero-lede {
        font-size: 1.08rem;
    }

    .cro-form-row,
    .cro-value-section,
    .cro-price-grid,
    .cro-security-grid {
        grid-template-columns: 1fr;
    }

    .cro-form-row button {
        width: 100%;
    }

    .cro-deadline-card strong {
        font-size: 2.05rem;
    }

    .cro-value-card,
    .cro-price-card {
        min-height: auto;
    }

    .cro-footer-bottom {
        flex-direction: column;
    }
}

.cro-legal-page {
    min-height: 100svh;
}

.cro-legal {
    width: min(860px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 5rem) 0 5rem;
}

.cro-legal h1 {
    margin: 0.5rem 0 0;
    color: var(--cro-navy);
    font-family: "Newsreader", serif;
    font-size: clamp(2.75rem, 7vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.cro-legal-updated {
    margin: 0.75rem 0 2.5rem;
    color: var(--cro-muted);
    font-weight: 600;
}

.cro-legal section {
    padding: 1.8rem 0;
    border-top: 1px solid var(--cro-line);
}

.cro-legal h2 {
    margin: 0 0 0.8rem;
    color: var(--cro-navy);
    font-family: "Newsreader", serif;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1.12;
}

.cro-legal p,
.cro-legal li {
    color: var(--cro-navy-2);
    font-size: 1.06rem;
}

.cro-legal p {
    margin: 0;
}

.cro-legal p + p,
.cro-legal ul + p {
    margin-top: 1rem;
}

.cro-legal ul {
    margin: 0.75rem 0 0;
    padding-left: 1.3rem;
}

.cro-legal li + li {
    margin-top: 0.45rem;
}

.cro-legal a {
    color: var(--cro-teal-dark);
    font-weight: 700;
    text-underline-offset: 0.2rem;
}

/* CivicRecordsOnline positioning refresh */
.cro-top-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    color: var(--cro-muted);
    font-size: 0.95rem;
}

.cro-top-nav a {
    text-decoration-color: transparent;
    text-underline-offset: 0.25rem;
}

.cro-top-nav a:hover,
.cro-top-nav a:focus {
    color: var(--cro-navy);
    text-decoration-color: currentColor;
}

.cro-hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.72fr);
    min-height: min(760px, calc(100svh - 5rem));
    padding: clamp(3rem, 7vw, 5.5rem) 0 3rem;
}

.cro-hero h1 {
    max-width: 680px;
    font-size: clamp(3rem, 5.4vw, 4.6rem);
    line-height: 1.02;
}

.cro-hero-seal {
    display: block;
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(23, 50, 80, 0.15));
}

.cro-hero-lede {
    max-width: 670px;
    font-size: 1.18rem;
}

.cro-form-panel {
    max-width: 690px;
}

.cro-hero-panel {
    align-self: center;
    padding: 1.4rem;
}

.cro-desk-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.cro-desk-list li {
    padding: 1rem;
    border: 1px solid var(--cro-line);
    border-radius: 0.45rem;
    background: var(--cro-white);
}

.cro-desk-list strong,
.cro-desk-list span {
    display: block;
}

.cro-desk-list strong {
    color: var(--cro-navy);
    font-size: 1.02rem;
}

.cro-desk-list span {
    margin-top: 0.25rem;
    color: var(--cro-muted);
    line-height: 1.45;
}

.cro-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 0 4rem;
}

.cro-proof-strip div {
    padding: 1.2rem 1.25rem;
    border: 1px solid var(--cro-line);
    border-radius: 0.5rem;
    background: var(--cro-soft);
}

.cro-proof-strip strong,
.cro-proof-strip span {
    display: block;
}

.cro-proof-strip strong {
    color: var(--cro-navy);
    font-size: 1.25rem;
}

.cro-proof-strip span {
    margin-top: 0.2rem;
    color: var(--cro-muted);
}

.cro-pain-section,
.cro-workflow,
.cro-card-band {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
    padding: 4.5rem 0;
    border-top: 1px solid var(--cro-line);
}

.cro-pain-section .cro-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 6vw, 5rem);
    max-width: none;
    align-items: end;
}

.cro-pain-section h2,
.cro-workflow h2,
.cro-card-band h2 {
    margin: 0.6rem 0 0;
    color: var(--cro-navy);
    font-family: "Newsreader", serif;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.cro-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cro-pain-grid article {
    min-height: 14rem;
    padding: 1.35rem;
    border: 1px solid var(--cro-line);
    border-radius: 0.5rem;
    background: var(--cro-white);
}

.cro-pain-grid h3,
.cro-workflow-list h3 {
    margin: 0;
    color: var(--cro-navy);
    font-size: 1.15rem;
    line-height: 1.2;
}

.cro-pain-grid p,
.cro-workflow-copy p,
.cro-workflow-list p,
.cro-card-band p,
.cro-procurement-list span,
.cro-pricing-note {
    color: var(--cro-muted);
}

.cro-pain-grid p {
    margin: 0.8rem 0 0;
}

.cro-workflow {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.cro-workflow-copy {
    position: sticky;
    top: 2rem;
}

.cro-workflow-copy p {
    margin: 1rem 0 0;
    font-size: 1.12rem;
}

.cro-workflow-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: workflow;
}

.cro-workflow-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid var(--cro-line);
    border-radius: 0.5rem;
    background: var(--cro-soft);
}

.cro-workflow-list span {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--cro-navy);
    color: var(--cro-white);
    font-weight: 700;
}

.cro-workflow-list p {
    margin: 0.25rem 0 0;
}

.cro-feature {
    padding: 4.5rem 0;
}

.cro-feature h2,
.cro-pricing h2,
.cro-comparison h2,
.cro-footer h2 {
    font-size: clamp(2.1rem, 4vw, 3.25rem);
    line-height: 1.05;
}

.cro-card-band {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 6vw, 5rem);
}

.cro-card-band > div:first-child {
    padding: clamp(1.8rem, 4vw, 2.5rem);
    border-radius: 0.5rem;
    background: var(--cro-navy);
}

.cro-card-band > div:first-child .cro-section-label,
.cro-card-band > div:first-child h2,
.cro-card-band > div:first-child p {
    color: var(--cro-white);
}

.cro-card-band > div:first-child p {
    margin: 1rem 0 0;
    color: #dce8ef;
    font-size: 1.1rem;
}

.cro-procurement-list {
    display: grid;
    gap: 1rem;
}

.cro-procurement-list div {
    padding: 1.2rem;
    border: 1px solid var(--cro-line);
    border-radius: 0.5rem;
    background: var(--cro-white);
}

.cro-procurement-list strong,
.cro-procurement-list span {
    display: block;
}

.cro-procurement-list strong {
    color: var(--cro-navy);
    font-size: 1.15rem;
}

.cro-procurement-list span {
    margin-top: 0.25rem;
}

.cro-pricing {
    padding: 4.5rem 0;
    border-top: 1px solid var(--cro-line);
}

.cro-pricing-note {
    margin: 1rem 0 0;
    font-size: 0.95rem;
}

@media (max-width: 980px) {
    .cro-hero,
    .cro-pain-section .cro-section-heading,
    .cro-workflow,
    .cro-card-band {
        grid-template-columns: 1fr;
    }

    .cro-proof-strip,
    .cro-pain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cro-workflow-copy {
        position: static;
    }
}

@media (max-width: 700px) {
    .cro-top-nav {
        gap: 0.85rem;
        font-size: 0.9rem;
    }

    .cro-header {
        align-items: flex-start;
    }

    .cro-hero {
        padding-top: 2.25rem;
    }

    .cro-hero-seal {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .cro-hero h1 {
        font-size: 2.55rem;
    }

    .cro-proof-strip,
    .cro-pain-grid {
        grid-template-columns: 1fr;
    }

    .cro-pain-section,
    .cro-workflow,
    .cro-card-band,
    .cro-feature,
    .cro-pricing {
        padding: 3.25rem 0;
    }

    .cro-pain-section h2,
    .cro-workflow h2,
    .cro-card-band h2,
    .cro-feature h2,
    .cro-pricing h2,
    .cro-footer h2 {
        font-size: 2.15rem;
    }
}
