/* ============================================================
   Clean Incentive — Brand Layer  v1.3
   Professional light shell + dark green brand-moment bands.
   Green CTAs everywhere. Product marks as section lockups only.
   ============================================================ */

/* ---- 1. Tokens --------------------------------------------- */
:root {
    --ci-green: #71db77;
    --ci-green-deep: #2f9e4a;       /* deeper for AA text/links on white */
    --ci-green-teal: #1bc99c;
    --ci-green-mid: #3fc841;
    --ci-green-contrast: #06340a;

    --ci-ink: #0b1a12;
    --ci-ink-2: #08140e;

    --sss-charcoal: #393536;
    --sss-charcoal-soft: #5a5457;
    --granular-navy: #1e3a5f;
    --granular-navy-soft: #34567f;

    --ci-surface: #ffffff;
    --ci-surface-alt: #f4f7f5;
    --ci-surface-muted: #eef3ef;
    --ci-text: #121c17;
    --ci-text-muted: #4d5a53;
    --ci-border: rgb(18 28 23 / 0.10);
    --ci-border-strong: rgb(18 28 23 / 0.16);
    --ci-shadow: 0 18px 50px rgba(12, 28, 20, 0.08);
    --ci-shadow-sm: 0 8px 24px rgba(12, 28, 20, 0.06);

    --font-brand: "Space Grotesk", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --section-accent: var(--ci-green-deep);
    --ghost-accent-color: #2f9e4a !important;

    --nav-h: 72px;
    /* Dual-width shell: grids/nav use content-max; long prose uses prose-max */
    --content-max: 1320px;
    --prose-max: 72ch;
    --hero-inner-max: 960px;
    --page-gutter: clamp(24px, 3.5vw, 48px);
}

/* ---- 2. Base ----------------------------------------------- */
html { scroll-behavior: smooth; }
body {
    color: var(--ci-text);
    background: var(--ci-surface);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.is-title, .gh-article-title, .gh-card-title,
.ci-hero h1, .ci-band h2, .ci-cta-final h2,
.ci-product-card h3, .ci-solution h3 {
    font-family: var(--font-brand);
    letter-spacing: -0.02em;
    color: var(--ci-text);
}

a { color: var(--ci-green-deep); text-underline-offset: 0.15em; }
a:hover { color: #1f7a38; }

/* Kill Ghost pink leftovers hard */
:root { --ghost-accent-color: #2f9e4a !important; }
.gh-button,
.gh-navigation .gh-button,
button.gh-button,
a.gh-button {
    background: var(--ci-green) !important;
    color: var(--ci-green-contrast) !important;
    border-color: transparent !important;
}
.gh-button:hover,
a.gh-button:hover {
    background: var(--ci-green-deep) !important;
    color: #fff !important;
}

/* ---- 3. Buttons -------------------------------------------- */
.ci-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 1.55rem;
    line-height: 1.1;
    padding: 15px 26px;
    border-radius: 999px;
    text-decoration: none !important;
    transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.ci-btn:hover { transform: translateY(-1px); }
.ci-btn:active { transform: translateY(0); }

.ci-btn-primary {
    background: var(--ci-green);
    color: var(--ci-green-contrast) !important;
    box-shadow: none;
}
.ci-btn-primary:hover {
    background: #5fd066;
    color: var(--ci-green-contrast) !important;
    box-shadow: none;
}

/* Ghost outline on light surfaces */
.ci-btn-ghost {
    background: transparent;
    color: var(--ci-green-deep) !important;
    border-color: rgb(47 158 74 / 0.45);
}
.ci-btn-ghost:hover {
    background: rgb(47 158 74 / 0.08);
    color: #1f7a38 !important;
    border-color: var(--ci-green-deep);
}

/* Outline on dark bands */
.ci-hero .ci-btn-ghost,
.ci-cta-final .ci-btn-ghost,
.ci-band-dark .ci-btn-ghost {
    color: #fff !important;
    border-color: rgb(255 255 255 / 0.72);
    background: rgb(255 255 255 / 0.04);
}
.ci-hero .ci-btn-ghost:hover,
.ci-cta-final .ci-btn-ghost:hover,
.ci-band-dark .ci-btn-ghost:hover {
    background: #fff;
    color: var(--ci-ink) !important;
    border-color: #fff;
}

.ci-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* ---- 4. Navigation ----------------------------------------- */
.gh-navigation.ci-nav {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--ci-border);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h) !important;
    min-height: var(--nav-h) !important;
}
.gh-navigation.ci-nav .gh-navigation-inner {
    height: 100% !important;
    min-height: var(--nav-h) !important;
}
/* Mobile: respect Source's fixed 64px closed header; don't force desktop height */
@media (max-width: 767px) {
    .gh-navigation.ci-nav,
    #gh-navigation.ci-nav {
        height: 64px !important;
        min-height: 64px !important;
    }
    .gh-navigation.ci-nav .gh-navigation-inner,
    #gh-navigation.ci-nav .gh-navigation-inner {
        min-height: 64px !important;
        height: 64px !important;
        gap: 0 !important;
    }
    .gh-navigation.ci-nav.is-open,
    #gh-navigation.ci-nav.is-open {
        height: 100% !important;
        min-height: 100% !important;
    }
    .ci-nav-cta { display: none !important; }
}

.gh-navigation.ci-nav .gh-navigation-inner {
    min-height: var(--nav-h);
    align-items: center;
    gap: 16px;
    padding-top: 0;
    padding-bottom: 0;
    max-width: var(--content-max);
    width: 100%;
}

.gh-navigation.ci-nav .gh-navigation-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.gh-navigation-logo {
    display: flex !important;
    align-items: center;
    line-height: 0;
    text-decoration: none !important;
}

.gh-navigation-logo img,
.ci-logo-img {
    display: block !important;
    height: 36px !important;
    width: auto !important;
    max-width: min(220px, 42vw) !important;
    object-fit: contain !important;
}

.gh-navigation.ci-nav .gh-navigation-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-navigation.ci-nav .nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.gh-navigation.ci-nav .nav a {
    color: var(--ci-text);
    font-family: var(--font-brand);
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    text-decoration: none !important;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.15s ease, background 0.15s ease;
}
.gh-navigation.ci-nav .nav a:hover {
    color: var(--ci-green-deep);
    background: rgb(47 158 74 / 0.08);
}

.gh-navigation.ci-nav .gh-navigation-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.ci-nav-cta {
    padding: 11px 18px !important;
    font-size: 1.35rem !important;
    box-shadow: none !important;
}

.gh-navigation-members { display: none !important; }

@media (max-width: 980px) {
    .ci-nav-cta { display: none !important; }
    .gh-navigation.ci-nav .nav a {
        font-size: 1.35rem;
        padding: 8px 10px;
    }
}

/* ---- 5. Hero ----------------------------------------------- */
.ci-hero {
    background:
        radial-gradient(70% 90% at 82% 12%, rgba(113, 219, 119, 0.18), transparent 58%),
        radial-gradient(55% 70% at 8% 88%, rgba(27, 201, 156, 0.12), transparent 60%),
        linear-gradient(180deg, #0f2419 0%, #0b1a12 55%, #08140e 100%);
    color: #fff;
    padding: clamp(56px, 7vw, 92px) var(--page-gutter) clamp(40px, 5vw, 64px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ci-hero > * {
    position: relative;
    z-index: 1;
    max-width: var(--hero-inner-max);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.ci-hero h1 {
    font-family: var(--font-body) !important;
    font-size: clamp(3.4rem, 5.2vw, 5.4rem) !important;
    line-height: 1.08 !important;
    font-weight: 650 !important;
    margin: 0 0 18px !important;
    color: #fff !important;
    letter-spacing: -0.028em !important;
    text-align: center !important;
    text-wrap: balance;
    /* Wider H1 measure — avoids sparse island on ultrawide */
    max-width: min(22ch, 100%);
    margin-left: auto !important;
    margin-right: auto !important;
    hyphens: manual;
    -webkit-hyphens: manual;
}
/* Product pages need a wider measure than the home staccato H1 */
.page-template .ci-hero h1,
.ci-landing .ci-hero h1 {
    max-width: min(28ch, 100%);
}
.ci-home .ci-hero h1 {
    max-width: min(20ch, 100%);
}
html, body {
    overflow-x: hidden;
}
.ci-hero, .ci-cta-final, .ci-trustbar, .ci-band {
    max-width: 100vw;
    box-sizing: border-box;
}
.ci-hero .ci-lede {
    font-size: clamp(1.65rem, 1.9vw, 1.9rem);
    line-height: 1.55;
    color: rgb(255 255 255 / 0.86);
    max-width: min(680px, 100%);
    margin: 0 auto 32px;
    font-weight: 400;
}
/* Soft brand geometry in hero side-field on wide screens — fills empty rails without clutter */
.ci-hero::after {
    content: "";
    position: absolute;
    inset: -20% -10% auto auto;
    width: min(48vw, 720px);
    height: min(48vw, 720px);
    border-radius: 50%;
    background:
        radial-gradient(circle at 40% 40%, rgb(113 219 119 / 0.16), transparent 58%),
        radial-gradient(circle at 70% 60%, rgb(27 201 156 / 0.10), transparent 55%);
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 900px) {
    .ci-hero::after { opacity: 0.55; width: 70vw; height: 70vw; }
}
.ci-hero .ci-cta-row { justify-content: center; }

.ci-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9be6a0;
    margin: 0 0 22px;
}

/* Product-zone heroes keep CI green eyebrow on dark */
.ci-hero .ci-eyebrow { color: var(--ci-green); }

/* ---- 5b. Trust bar ----------------------------------------- */
.ci-trustbar {
    background: #fff;
    border-bottom: 1px solid var(--ci-border);
    padding: 22px var(--page-gutter);
}
.ci-trustbar-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 40px;
    text-align: center;
}
.ci-trustbar p {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.45;
    color: var(--ci-text-muted);
}
.ci-trustbar strong {
    color: var(--ci-text);
    font-family: var(--font-brand);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    font-size: 1.45rem;
    letter-spacing: -0.01em;
}
@media (max-width: 800px) {
    .ci-trustbar-inner { grid-template-columns: 1fr; gap: 12px; }
}

/* ---- 6. Content bands -------------------------------------- */
.ci-band {
    padding: clamp(64px, 8vw, 104px) var(--page-gutter);
    max-width: var(--content-max);
    margin: 0 auto;
}
.ci-band h2 {
    font-size: clamp(2.8rem, 4vw, 4rem);
    line-height: 1.12;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: -0.025em;
}
.ci-section-lede {
    font-size: 1.75rem;
    color: var(--ci-text-muted);
    line-height: 1.6;
    max-width: min(720px, 100%);
    margin: 0 0 8px;
}
/* Long-form reading measure stays tight even when shell widens */
.ci-prose,
.ci-band > p:not(.ci-section-lede),
.ci-band .ci-list,
.ci-band .ci-steps,
.ci-band .ci-ladder {
    max-width: var(--prose-max);
}
/* Layout grids / card rows use the full shell width */
.ci-band .ci-product-row,
.ci-band .ci-solution-grid,
.ci-band .ci-tier-grid,
.ci-band .ci-capability-grid,
.ci-band .ci-audience-grid,
.ci-band .ci-compare-grid,
.ci-band .ci-step-grid,
.ci-band .ci-proof-grid,
.ci-band .ci-deliverables,
.ci-band .ci-contact-grid,
.ci-band .ci-numbered-ladder {
    max-width: none;
    width: 100%;
}
.ci-note {
    font-size: 1.45rem;
    color: var(--ci-text-muted);
    margin-top: 18px;
}

.ci-list {
    font-size: 1.65rem;
    line-height: 1.55;
    padding-left: 0;
    list-style: none;
    margin: 28px 0 0;
}
.ci-list li {
    position: relative;
    padding: 0 0 0 28px;
    margin: 0 0 16px;
}
.ci-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ci-green);
    box-shadow: 0 0 0 4px rgb(113 219 119 / 0.18);
}

.ci-steps,
.ci-ladder {
    font-size: 1.7rem;
    line-height: 1.55;
    margin: 28px 0 0;
    padding-left: 1.2em;
}
.ci-steps li,
.ci-ladder li { margin: 0 0 16px; }
.ci-steps li strong,
.ci-ladder li strong { color: var(--ci-text); font-weight: 650; }

/* Home alternating bands full-bleed */
.ci-home .ci-band:nth-of-type(even) {
    background: var(--ci-surface-alt);
    max-width: none;
    width: 100%;
    padding-left: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
    padding-right: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
}
.ci-home .ci-band:nth-of-type(even) > * {
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
}

/* ---- 7. Product cards -------------------------------------- */
.ci-product-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
    align-items: stretch;
}
@media (max-width: 960px) {
    .ci-product-row { grid-template-columns: 1fr; }
}

.ci-product-card {
    background: var(--ci-surface);
    border: 1px solid var(--ci-border);
    border-radius: 20px;
    padding: 28px 26px 26px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: var(--ci-shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ci-product-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--card-accent, var(--ci-green));
}
.ci-product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ci-shadow);
    border-color: var(--ci-border-strong);
}
.ci-product-card h3 {
    font-size: 2.15rem;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.ci-product-card p {
    font-size: 1.5rem;
    color: var(--ci-text-muted);
    line-height: 1.55;
    margin: 0 0 12px;
}
.ci-product-card > p:last-child {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 8px;
}
.ci-product-card > p:last-child a {
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 1.45rem;
    text-decoration: none !important;
    color: var(--ci-green-deep);
}
.ci-product-card > p:last-child a:hover { color: #1f7a38; }

.ci-product-card .ci-eyebrow {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--sss-charcoal);
}

.ci-product-mark {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    margin: 0 0 14px;
}

.ci-zone-sss.ci-product-card::before { background: var(--sss-charcoal); }
.ci-zone-granular.ci-product-card::before { background: var(--granular-navy); }
.ci-zone-advisory.ci-product-card::before { background: var(--ci-green-deep); }
.ci-zone-sss .ci-eyebrow { color: var(--sss-charcoal); }
.ci-zone-granular .ci-eyebrow { color: var(--granular-navy); }
.ci-zone-advisory .ci-eyebrow { color: var(--ci-green-deep); }

/* ---- 8. Solutions / misc ----------------------------------- */
.ci-solution {
    padding: 28px 0;
    border-top: 1px solid var(--ci-border);
}
.ci-solution:first-of-type { border-top: 0; padding-top: 8px; }
.ci-solution h3 {
    font-size: 2.1rem;
    margin: 0 0 10px;
}
.ci-solution p {
    font-size: 1.6rem;
    color: var(--ci-text-muted);
    line-height: 1.6;
    margin: 0;
}

.ci-quote {
    border-left: 3px solid var(--ci-green);
    padding: 4px 0 4px 22px;
    margin: 24px 0 0;
    font-size: 1.85rem;
    line-height: 1.5;
    color: var(--ci-text);
    font-style: italic;
}

.ci-contact-card {
    background: var(--ci-surface-alt);
    border: 1px solid var(--ci-border);
    border-radius: 18px;
    padding: 28px;
    margin-top: 28px;
    box-shadow: var(--ci-shadow-sm);
}

/* ---- 9. Final CTA ------------------------------------------ */
.ci-cta-final {
    background:
        radial-gradient(70% 100% at 50% -10%, rgba(63, 200, 65, 0.28), transparent 58%),
        linear-gradient(180deg, #0e2218 0%, #0b1a12 100%);
    color: #fff;
    text-align: center;
    padding: clamp(72px, 9vw, 112px) var(--page-gutter);
    position: relative;
    overflow: hidden;
}
.ci-cta-final > * { position: relative; z-index: 1; }
.ci-cta-final h2 {
    color: #fff;
    font-size: clamp(2.8rem, 4.2vw, 4.2rem);
    margin: 0 0 14px;
    letter-spacing: -0.025em;
}
.ci-cta-final p {
    color: rgb(255 255 255 / 0.78);
    font-size: 1.75rem;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.55;
}
.ci-cta-final .ci-cta-row { justify-content: center; }

/* ---- 10. Zone hero tints ----------------------------------- */
.ci-hero.ci-zone-sss {
    background:
        radial-gradient(60% 80% at 80% 15%, rgba(113, 219, 119, 0.18), transparent 58%),
        radial-gradient(46% 64% at 12% 90%, rgba(57, 53, 54, 0.45), transparent 62%),
        linear-gradient(165deg, #121816 0%, #0b1a12 100%);
}
.ci-hero.ci-zone-granular {
    background:
        radial-gradient(60% 80% at 80% 15%, rgba(113, 219, 119, 0.18), transparent 58%),
        radial-gradient(48% 66% at 12% 90%, rgba(30, 58, 95, 0.5), transparent 62%),
        linear-gradient(165deg, #0d1722 0%, #0b1a12 100%);
}
.ci-hero.ci-zone-advisory {
    background:
        radial-gradient(60% 80% at 80% 15%, rgba(113, 219, 119, 0.24), transparent 58%),
        linear-gradient(165deg, #0e2218 0%, #0b1a12 100%);
}

/* ---- 11. Footer -------------------------------------------- */
.gh-footer.ci-footer {
    background: var(--ci-ink);
    color: rgb(255 255 255 / 0.78);
    border-top: 0;
    padding: 36px 0;
}
.ci-footer .gh-footer-inner { max-width: var(--content-max); }
.ci-footer .gh-footer-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 28px;
}
.ci-footer .gh-footer-logo img,
.ci-logo-img-footer {
    display: block;
    height: 34px !important;
    width: auto !important;
    max-width: 220px;
    object-fit: contain;
    filter: none !important; /* use real white asset */
}
.ci-footer .gh-footer-menu .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ci-footer .gh-footer-menu a {
    color: rgb(255 255 255 / 0.78);
    font-size: 1.35rem;
    text-decoration: none !important;
    font-family: var(--font-brand);
    font-weight: 500;
}
.ci-footer .gh-footer-menu a:hover { color: var(--ci-green); }
.ci-footer .gh-footer-copyright {
    color: rgb(255 255 255 / 0.48);
    font-size: 1.25rem;
}

/* ---- 12. Page chrome cleanup ------------------------------- */
body.page-template .gh-article-header { display: none !important; }
body.home-template .gh-canvas,
body.page-template .gh-canvas { max-width: none; }

.ci-landing,
.ci-landing .gh-content {
    max-width: none;
    padding: 0;
}
.ci-landing .gh-content > * { margin-left: auto; margin-right: auto; }

/* When page body HTML is rendered inside gh-content, full-bleed heroes */
.gh-content .ci-hero,
.gh-content .ci-cta-final {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
}
.gh-content .ci-band { max-width: var(--content-max); }

.ci-insights-header {
    padding: clamp(56px, 7vw, 96px) var(--page-gutter) 28px;
    max-width: var(--content-max);
    margin: 0 auto;
}
.ci-insights-header h1 {
    font-family: var(--font-brand);
    font-size: clamp(3.2rem, 5vw, 4.6rem);
    margin: 0 0 12px;
    letter-spacing: -0.03em;
}
.ci-insights-header p {
    font-size: 1.75rem;
    color: var(--ci-text-muted);
    max-width: 620px;
    margin: 0;
    line-height: 1.55;
}

/* Post cards on home */
.ci-home .gh-card {
    border: 1px solid var(--ci-border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--ci-shadow-sm);
}
.ci-home .gh-card-title { font-family: var(--font-brand); letter-spacing: -0.02em; }
.ci-home .gh-card-excerpt { color: var(--ci-text-muted); }

/* Hide search if it crowds nav on small screens */
@media (max-width: 720px) {
    .gh-navigation.ci-nav .gh-search { display: none; }
    .gh-navigation-logo img,
    .ci-logo-img {
        height: 34px !important;
        max-width: min(180px, 48vw) !important;
    }
}

/* ---- 13. Proof band polish --------------------------------- */
.ci-band-proof {
    text-align: left;
}
.ci-band-proof .ci-section-lede { max-width: min(760px, 100%); }
.ci-band-proof .ci-cta-row { margin-top: 28px; }

/* Ladder visual */
.ci-ladder {
    list-style: none;
    padding: 0;
    counter-reset: ladder;
    margin-top: 32px;
}
.ci-ladder li {
    counter-increment: ladder;
    position: relative;
    padding: 18px 18px 18px 72px;
    margin: 0 0 12px;
    background: var(--ci-surface);
    border: 1px solid var(--ci-border);
    border-radius: 14px;
    box-shadow: var(--ci-shadow-sm);
}
.ci-ladder li::before {
    content: counter(ladder);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgb(113 219 119 / 0.16);
    color: var(--ci-green-deep);
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ci-home .ci-band-ladder .ci-ladder li {
    background: #fff;
}

/* Steps numbered cleanly */
.ci-steps {
    list-style: none;
    padding: 0;
    counter-reset: steps;
}
.ci-steps li {
    counter-increment: steps;
    position: relative;
    padding-left: 52px;
    margin-bottom: 18px;
}
.ci-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ci-ink);
    color: #fff;
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Product page expansion (v1.4) ------------------------- */
.ci-product-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}
.ci-product-mark {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: none; /* was invert — broke filled SVG marks */
    opacity: 0.95;
}
.ci-zone-sss .ci-product-mark,
.ci-zone-granular .ci-product-mark,
.ci-zone-advisory .ci-product-mark { filter: none !important; opacity: 1 !important; }

.ci-eyebrow-light {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ci-green-deep);
    margin: 0 0 14px;
}

.ci-band {
    padding: clamp(48px, 6vw, 80px) var(--page-gutter);
    max-width: 100%;
}
.ci-band > h2,
.ci-band > .ci-section-lede,
.ci-band > .ci-eyebrow-light,
.ci-band > .ci-footnote {
    max-width: min(760px, 100%);
}
.ci-band h2 {
    font-size: clamp(2.4rem, 3.2vw, 3.4rem);
    line-height: 1.15;
    margin: 0 0 16px;
    font-weight: 650;
}
.ci-section-lede {
    font-size: 1.7rem;
    line-height: 1.55;
    color: var(--ci-text-muted);
    margin: 0 0 28px;
    max-width: 68ch;
}
.ci-section-lede-light { color: rgb(255 255 255 / 0.86) !important; }
.ci-section-lede-light a { color: var(--ci-green) !important; }

.ci-band-alt {
    background: var(--ci-surface-alt);
}
.ci-band-dark {
    background:
        radial-gradient(60% 80% at 90% 10%, rgba(113, 219, 119, 0.14), transparent 55%),
        linear-gradient(180deg, #0f2419 0%, #0b1a12 100%);
    color: #fff;
}
.ci-band-dark h2 { color: #fff !important; }
.ci-band-dark .ci-eyebrow { color: var(--ci-green); }

.ci-band-proof {
    background: linear-gradient(180deg, #f7faf8 0%, #eef5f0 100%);
    border-top: 1px solid var(--ci-border);
    border-bottom: 1px solid var(--ci-border);
}

/* Feature / audience grids */
.ci-feature-grid,
.ci-audience-grid,
.ci-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 8px;
    max-width: var(--content-max);
}
.ci-feature-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.ci-feature,
.ci-audience,
.ci-tier {
    background: #fff;
    border: 1px solid var(--ci-border);
    border-radius: 16px;
    padding: 22px 22px 20px;
    box-shadow: var(--ci-shadow-sm);
}
.ci-band-alt .ci-feature,
.ci-band-alt .ci-audience,
.ci-band-alt .ci-tier {
    background: #fff;
}
.ci-feature h3,
.ci-audience h3,
.ci-tier h3 {
    font-size: 1.7rem;
    margin: 0 0 8px;
    font-weight: 650;
}
.ci-feature p,
.ci-audience p,
.ci-tier p {
    margin: 0;
    color: var(--ci-text-muted);
    font-size: 1.5rem;
    line-height: 1.5;
}

/* Check list */
.ci-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 780px;
    display: grid;
    gap: 12px;
}
.ci-check-list li {
    position: relative;
    padding: 14px 16px 14px 44px;
    background: #fff;
    border: 1px solid var(--ci-border);
    border-radius: 12px;
    font-size: 1.55rem;
    line-height: 1.45;
    color: var(--ci-text);
}
.ci-check-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 1.15em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ci-green);
    box-shadow: 0 0 0 4px rgb(113 219 119 / 0.2);
}
.ci-band-alt .ci-check-list li { background: #fff; }

/* 6-step process */
.ci-process {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    max-width: var(--content-max);
    display: grid;
    gap: 14px;
}
.ci-process > li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--ci-border);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: var(--ci-shadow-sm);
}
.ci-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ci-ink);
    color: #fff;
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ci-process h3 {
    margin: 2px 0 6px;
    font-size: 1.7rem;
}
.ci-process p {
    margin: 0;
    color: var(--ci-text-muted);
    font-size: 1.5rem;
    line-height: 1.5;
}
.ci-process em {
    font-style: normal;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.92em;
    color: var(--ci-text);
    background: var(--ci-surface-muted);
    padding: 1px 6px;
    border-radius: 6px;
}

/* Tiers */
.ci-tier-label {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ci-green-deep);
    margin-bottom: 8px;
}
.ci-timeline-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
    max-width: var(--content-max);
}
.ci-timeline-row > div {
    background: #fff;
    border: 1px solid var(--ci-border);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ci-timeline-row strong {
    font-family: var(--font-brand);
    font-size: 1.7rem;
    color: var(--ci-text);
}
.ci-timeline-row span {
    color: var(--ci-text-muted);
    font-size: 1.4rem;
}

.ci-footnote {
    margin: 18px 0 0;
    font-size: 1.35rem;
    color: var(--ci-text-muted);
    max-width: 70ch;
}

/* Pills / trust */
.ci-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 22px;
}
.ci-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 0.22);
    background: rgb(255 255 255 / 0.06);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 500;
}

/* Ladder on dark */
.ci-band-dark .ci-ladder {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    max-width: 720px;
    counter-reset: ladder;
}
.ci-band-dark .ci-ladder li {
    counter-increment: ladder;
    position: relative;
    padding: 14px 0 14px 52px;
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
    color: rgb(255 255 255 / 0.9);
    font-size: 1.6rem;
}
.ci-band-dark .ci-ladder li::before {
    content: counter(ladder);
    position: absolute;
    left: 0;
    top: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ci-green);
    color: var(--ci-green-contrast);
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats in hero */
.ci-stat-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}
.ci-stat {
    min-width: 140px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / 0.16);
    background: rgb(255 255 255 / 0.06);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ci-stat strong {
    font-family: var(--font-brand);
    font-size: 1.7rem;
    color: #fff;
}
.ci-stat span {
    font-size: 1.25rem;
    color: rgb(255 255 255 / 0.72);
}

/* Quote */
.ci-blockquote {
    margin: 0;
    max-width: 780px;
    padding: 22px 24px;
    border-left: 4px solid var(--ci-green-deep);
    background: #fff;
    border-radius: 0 14px 14px 0;
    box-shadow: var(--ci-shadow-sm);
}
.ci-blockquote p {
    margin: 0 0 14px;
    font-size: 1.7rem;
    line-height: 1.5;
    color: var(--ci-text);
    font-style: italic;
}
.ci-blockquote footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ci-blockquote strong {
    font-family: var(--font-brand);
    font-size: 1.45rem;
    font-style: normal;
}
.ci-blockquote span {
    font-size: 1.3rem;
    color: var(--ci-text-muted);
    font-style: normal;
}

/* CTA final already exists; ensure spacing */
.ci-cta-final {
    text-align: center;
    padding: clamp(56px, 7vw, 88px) var(--page-gutter);
}
.ci-cta-final .ci-cta-row { justify-content: center; }

/* Product page hero wider H1 */
.page-sss .ci-hero h1,
.page-granular .ci-hero h1 {
    max-width: min(24ch, 100%) !important;
}

/* Content containers centered */
.ci-landing .ci-band > .ci-feature-grid,
.ci-landing .ci-band > .ci-audience-grid,
.ci-landing .ci-band > .ci-tier-grid,
.ci-landing .ci-band > .ci-process,
.ci-landing .ci-band > .ci-check-list,
.ci-landing .ci-band > .ci-timeline-row,
.ci-landing .ci-band > .ci-blockquote,
.ci-landing .ci-band > .ci-ladder,
.ci-landing .ci-band > .ci-pill-row {
    margin-left: auto;
    margin-right: auto;
}
.ci-landing .ci-band {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.ci-landing .ci-band > .ci-eyebrow-light,
.ci-landing .ci-band > h2,
.ci-landing .ci-band > .ci-section-lede,
.ci-landing .ci-band > .ci-footnote {
    width: 100%;
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
}
.ci-landing .ci-band > .ci-feature-grid,
.ci-landing .ci-band > .ci-audience-grid,
.ci-landing .ci-band > .ci-tier-grid,
.ci-landing .ci-band > .ci-timeline-row {
    width: 100%;
    max-width: var(--content-max);
}

@media (max-width: 900px) {
    .ci-feature-grid,
    .ci-feature-grid-3,
    .ci-audience-grid,
    .ci-tier-grid,
    .ci-timeline-row {
        grid-template-columns: 1fr;
    }
    .ci-process > li {
        grid-template-columns: 40px 1fr;
    }
    .ci-stat { min-width: 120px; flex: 1 1 30%; }
}

@media (max-width: 600px) {
    .ci-check-list li { font-size: 1.45rem; }
    .ci-process p,
    .ci-feature p,
    .ci-audience p { font-size: 1.4rem; }
}


/* === Product hub expansion (v1.4.0) === */
.ci-formula {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--ci-surface-muted, #f4f6f5);
    border: 1px solid var(--ci-border);
    display: grid;
    gap: 6px;
}
.ci-formula-label {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ci-green-deep, #4FB856);
}
.ci-formula code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 1.35rem;
    color: var(--ci-text);
    white-space: normal;
    word-break: break-word;
}

.ci-ladder-light {
    list-style: none;
    padding: 0;
    margin: 8px auto 0;
    max-width: 780px;
    counter-reset: ladder;
    width: 100%;
}
.ci-ladder-light li {
    counter-increment: ladder;
    position: relative;
    padding: 16px 18px 16px 56px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid var(--ci-border);
    border-radius: 14px;
    box-shadow: var(--ci-shadow-sm);
    font-size: 1.55rem;
    line-height: 1.45;
    color: var(--ci-text);
}
.ci-ladder-light li::before {
    content: counter(ladder);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ci-ink, #14201a);
    color: #fff;
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: var(--content-max);
    margin: 8px auto 0;
}
.ci-compare-card {
    background: #fff;
    border: 1px solid var(--ci-border);
    border-radius: 18px;
    padding: 22px 22px 20px;
    box-shadow: var(--ci-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ci-compare-card h3 {
    margin: 0;
    font-size: 1.85rem;
}
.ci-compare-card p { margin: 0; color: var(--ci-text-muted); font-size: 1.5rem; line-height: 1.5; }
.ci-compare-card-accent {
    border-color: color-mix(in srgb, var(--ci-green, #71DB77) 45%, var(--ci-border));
    box-shadow: 0 10px 30px rgb(20 32 26 / 0.06);
}
.ci-card-cta {
    margin-top: auto !important;
    padding-top: 10px;
    font-size: 1.4rem !important;
    font-weight: 600;
}
.ci-card-cta a {
    color: var(--ci-green-deep, #4FB856);
    text-decoration: none;
}
.ci-card-cta a:hover { text-decoration: underline; }

.ci-stat-row-light {
    margin-top: 28px;
}
.ci-hero.ci-zone-sss .ci-stat-row-light .ci-stat,
.ci-zone-sss .ci-stat {
    background: rgb(255 255 255 / 0.08);
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: 14px;
    padding: 12px 16px;
    min-width: 140px;
}
.ci-hero.ci-zone-sss .ci-stat strong { color: #fff; }
.ci-hero.ci-zone-sss .ci-stat span { color: rgb(255 255 255 / 0.78); }

.ci-landing .ci-band > .ci-compare,
.ci-landing .ci-band > .ci-ladder-light {
    margin-left: auto;
    margin-right: auto;
}

.page-sss .ci-hero h1,
.page-granular .ci-hero h1 {
    max-width: min(26ch, 100%) !important;
}

@media (max-width: 900px) {
    .ci-compare { grid-template-columns: 1fr; }
}


/* === v1.4.1 visual QA fixes === */
.ci-hero .ci-eyebrow-on-dark {
    color: var(--ci-green) !important;
    opacity: 1;
    letter-spacing: 0.12em;
    font-weight: 700;
}
.ci-hero .ci-kicker {
    text-align: center;
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
}
.ci-kicker {
    margin: 0 0 14px;
    font-size: 1.45rem;
    color: rgb(255 255 255 / 0.78);
    font-weight: 500;
}
.ci-hero .ci-stat-row {
    gap: 12px;
}
.ci-hero .ci-stat {
    background: rgb(255 255 255 / 0.1) !important;
    border: 1px solid rgb(255 255 255 / 0.22) !important;
    border-radius: 14px;
    padding: 14px 16px;
    min-width: 148px;
    backdrop-filter: blur(6px);
}
.ci-hero .ci-stat strong {
    color: #fff !important;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}
.ci-hero .ci-stat span {
    color: rgb(255 255 255 / 0.82) !important;
}
.ci-formula {
    background: #f0f4f2 !important;
    border: 1px solid #d5e0da !important;
}
.ci-formula code {
    display: block;
    line-height: 1.45;
}
.ci-blockquote {
    background: #fff;
    border: 1px solid var(--ci-border);
    border-left: 4px solid var(--ci-green);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: var(--ci-shadow-sm);
}
.ci-br-mobile { display: none; }

@media (max-width: 600px) {
    .ci-br-mobile { display: inline; }
    .ci-hero .ci-cta-row {
        flex-direction: column !important;
        align-items: stretch !important;
        width: min(100%, 360px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 10px !important;
    }
    .ci-hero .ci-btn,
    .ci-hero a.ci-btn,
    .ci-hero .ci-btn-primary,
    .ci-hero .ci-btn-ghost {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        display: inline-flex !important;
        justify-content: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
    .ci-hero .ci-stat-row {
        flex-direction: column !important;
        width: min(100%, 360px) !important;
        margin-left: auto;
        margin-right: auto;
    }
    .ci-hero .ci-stat {
        width: 100% !important;
        min-width: 0 !important;
    }
    .page-sss .ci-hero h1,
    .page-granular .ci-hero h1 {
        max-width: 18ch !important;
    }
}


/* === v1.5.2 — home trustbar → products spacing === */
.ci-home .ci-trustbar {
    padding: 28px var(--page-gutter);
    background: var(--ci-surface-alt);
    border-bottom: 1px solid var(--ci-border);
}
.ci-home .ci-trustbar + .ci-band,
.ci-home #products {
    padding-top: clamp(80px, 10vw, 128px) !important;
}
.ci-home #products {
    max-width: none;
    width: 100%;
    background: #fff;
}
.ci-home #products > * {
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
}
.ci-home #products > .ci-product-row {
    max-width: var(--content-max);
}

/* === v1.5.0 — solutions/about/advisory/insights/contact/404 === */
.ci-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 8px;
}
.ci-contact-grid .ci-contact-card {
    margin-top: 0;
    height: 100%;
}
.ci-contact-email {
    font-family: var(--font-brand);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    word-break: break-word;
}
.ci-contact-email a {
    color: var(--ci-text);
    text-decoration: none;
}
.ci-contact-email a:hover { color: var(--ci-green-deep); }

.ci-steps-compact { margin: 0; padding-left: 1.2em; }
.ci-steps-compact li {
    margin: 0 0 12px;
    font-size: 1.5rem;
    color: var(--ci-text-muted);
    line-height: 1.5;
}
.ci-steps-compact li:last-child { margin-bottom: 0; }
.ci-steps-compact strong { color: var(--ci-text); }

.ci-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 8px;
}
.ci-post-card {
    background: #fff;
    border: 1px solid var(--ci-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--ci-shadow-sm);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.ci-post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--ci-shadow);
}
.ci-post-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, #e8f5ea 0%, #dfe8e3 100%);
    overflow: hidden;
}
.ci-post-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ci-post-card-media-empty {
    background:
        radial-gradient(60% 80% at 80% 20%, rgba(113, 219, 119, 0.35), transparent 60%),
        linear-gradient(145deg, #0e2218 0%, #1e3a5f 100%);
}
.ci-post-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.ci-post-meta {
    margin: 0;
    font-size: 1.25rem;
    color: var(--ci-text-muted);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
}
.ci-post-title {
    margin: 0;
    font-size: 1.85rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.ci-post-title a {
    color: var(--ci-text);
    text-decoration: none;
}
.ci-post-title a:hover { color: var(--ci-green-deep); }
.ci-post-excerpt {
    margin: 0;
    color: var(--ci-text-muted);
    font-size: 1.45rem;
    line-height: 1.55;
    flex: 1;
}

.page-insights .ci-insights-header h1 {
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}
.page-error .ci-hero h1 { max-width: 16ch; margin-left: auto; margin-right: auto; }

/* Home insights cards when Source post-list renders */
.ci-home .gh-card {
    border: 1px solid var(--ci-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--ci-shadow-sm);
    background: #fff;
}
.ci-home .gh-card-title { font-family: var(--font-brand); letter-spacing: -0.02em; }
.ci-home .gh-card-link { text-decoration: none; }

@media (max-width: 960px) {
    .ci-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .ci-contact-grid { grid-template-columns: 1fr; }
    .ci-post-grid { grid-template-columns: 1fr; }
    .page-solutions .ci-hero .ci-cta-row .ci-btn-ghost { display: none; }
}

/* === v1.5.3 — product card alignment === */
.ci-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.ci-product-mark {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin: 0 0 14px;
    display: block;
    flex: 0 0 auto;
}
.ci-product-card > p:last-child,
.ci-product-card .ci-card-cta {
    margin-top: auto !important;
    padding-top: 18px;
}
.ci-product-card h3 { margin-top: 0; }
.ci-product-card .ci-eyebrow { margin-bottom: 12px; }

/* === v1.5.5 — bold card marks + hard CTA pin === */
.ci-product-row { align-items: stretch; }
.ci-product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
}
.ci-product-card .ci-product-mark {
    width: 52px !important;
    height: 52px !important;
    margin: 0 0 16px !important;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgb(12 28 20 / 0.10);
}
.ci-product-card > p:last-of-type {
    margin-top: auto !important;
    padding-top: 20px !important;
}

/* === v1.5.7 — force product CTA baseline === */
.ci-home .ci-product-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.ci-home .ci-product-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 360px;
}
.ci-home .ci-product-card > p:last-child {
  margin-top: auto !important;
  padding-top: 24px !important;
}
.ci-home .ci-product-card > p:last-child a {
  display: inline-block;
}

/* === v1.5.10 — Microsoft Bookings embed (/book/) === */
.page-book .ci-booking-frame-wrap {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    border: 1px solid var(--ci-border, rgba(0,0,0,.08));
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--ci-shadow-sm, 0 8px 24px rgba(11, 26, 18, 0.06));
    min-height: 920px;
}
.page-book .ci-booking-frame {
    display: block;
    width: 100%;
    min-height: 920px;
    height: 920px;
    border: 0;
    background: #fff;
}
.page-book .ci-hero .ci-cta-row {
    margin-top: 22px;
}
@media (max-width: 700px) {
    .page-book .ci-booking-frame-wrap,
    .page-book .ci-booking-frame {
        min-height: 1100px;
        height: 1100px;
    }
}
