/* ============================================================================
   KeepPACE Page Styles
   Extracted from keeppace.html inline <style> block (was 1086 lines inline).
   Note: Critical FOUC-prevention CSS for [data-animate] stays inline in
   keeppace.html so it loads synchronously with the page.
   ============================================================================ */

/* KeepPACE Page Specific Styles */
.hero-section-keeppace {
    padding-top: calc(100px + var(--spacing-3xl));
    padding-bottom: calc(var(--spacing-lg) + 2rem); /* extra room for overlapping trust strip */
}

.keeppace-plan-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.keeppace-plan-card.popular {
    border-color: #2563eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.keeppace-plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-bottom-left-radius: 0.5rem;
}

.keeppace-plan-icon {
    width: 4rem;
    height: 4rem;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.keeppace-plan-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.keeppace-plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.keeppace-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
}

.keeppace-plan-features svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.keeppace-plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .keeppace-plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.keeppace-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .keeppace-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .keeppace-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.keeppace-feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s;
}

.keeppace-feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #2563eb;
}

.keeppace-feature-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    background: linear-gradient(to bottom right, #dbeafe, #eff6ff);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.keeppace-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.keeppace-feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.keeppace-feature-text p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.keeppace-plans-section {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .keeppace-plans-section {
        padding: 3rem;
    }
}

.keeppace-plans-intro {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.keeppace-plans-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .keeppace-plans-intro h2 {
        font-size: 2.25rem;
    }
}

.keeppace-plans-intro p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
}

.keeppace-benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .keeppace-benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.keeppace-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.keeppace-benefits-list svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.keeppace-benefits-list span {
    color: #374151;
    font-size: 1rem;
}

.keeppace-cta-box {
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .keeppace-cta-box {
        padding: 3rem;
    }
}

.keeppace-cta-box h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 768px) {
    .keeppace-cta-box h2 {
        font-size: 2.25rem;
    }
}

.keeppace-cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.keeppace-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .keeppace-cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.btn-keeppace-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: #111827;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 220px;
}

.btn-keeppace-primary:hover,
.btn-keeppace-primary:focus {
    background: #f3f4f6;
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-keeppace-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 220px;
}

.btn-keeppace-secondary:hover,
.btn-keeppace-secondary:focus {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-keeppace-primary svg,
.btn-keeppace-secondary svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ============================================
   Enhanced KeepPACE — Information Hub Styles
   ============================================ */

/* Hero: split layout with real product photo */
.kp-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .kp-hero-grid {
        grid-template-columns: 1.15fr 1fr;
        gap: 3.5rem;
    }
}
.kp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 999px;
    color: #bfdbfe;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}
.kp-hero-eyebrow svg { width: 1rem; height: 1rem; }
.kp-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
@media (min-width: 480px) {
    .kp-hero-bullets { grid-template-columns: 1fr 1fr; }
}
.kp-hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.45;
}
.kp-hero-bullets svg {
    width: 1.15rem;
    height: 1.15rem;
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.kp-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.kp-hero-cta-primary,
.kp-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.kp-hero-cta-primary {
    background: #2563eb;
    color: #ffffff;
}
.kp-hero-cta-primary:hover,
.kp-hero-cta-primary:focus { background: #1d4ed8; color: #ffffff; transform: translateY(-2px); }
.kp-hero-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.kp-hero-cta-secondary:hover,
.kp-hero-cta-secondary:focus { background: rgba(255, 255, 255, 0.15); color: #ffffff; border-color: rgba(255, 255, 255, 0.55); transform: translateY(-2px); }
.kp-hero-cta-primary svg,
.kp-hero-cta-secondary svg { width: 1.1rem; height: 1.1rem; }

.kp-hero-visual {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
    aspect-ratio: 4 / 5;
    max-width: 460px;
    margin: 0 auto;
    isolation: isolate;
}
.kp-hero-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.kp-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0) 55%, rgba(17, 24, 39, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}
.kp-hero-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 0.85rem 0.4rem 0.4rem;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    text-decoration: none;
}
.kp-hero-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #ffffff;
    object-fit: contain;
    padding: 2px;
}
.kp-hero-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.kp-hero-badge-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
}
.kp-hero-badge-sub {
    font-size: 0.65rem;
    color: rgba(191, 219, 254, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-top: 0.15rem;
}

/* Trust strip overlapping hero */
.kp-trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: -2.5rem auto 3.5rem;
    max-width: 64rem;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
    .kp-trust-strip {
        grid-template-columns: repeat(4, 1fr);
        padding: 1.75rem 2rem;
    }
}
.kp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}
.kp-trust-item .num {
    font-size: 1.65rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.kp-trust-item .label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* Centered section header */
.kp-section-head {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2.5rem;
}
.kp-section-head.align-left {
    text-align: left;
    margin-left: 0;
}
.kp-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.8rem;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
}
.kp-section-head h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.85rem;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .kp-section-head h2 { font-size: 2.125rem; }
}
.kp-section-head p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Why preventive maintenance */
.kp-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .kp-why-grid { grid-template-columns: repeat(3, 1fr); }
}
.kp-why-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.75rem;
    transition: all 0.2s ease;
}
.kp-why-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    border-color: #bfdbfe;
    transform: translateY(-3px);
}
.kp-why-card .icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}
.kp-why-card .icon-wrap svg { width: 1.5rem; height: 1.5rem; color: #2563eb; }
.kp-why-card h3 { font-size: 1.2rem; font-weight: 700; color: #111827; margin: 0 0 0.6rem; }
.kp-why-card p { font-size: 0.95rem; color: #4b5563; line-height: 1.6; margin: 0; }

/* What's included — image + list */
.kp-included-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .kp-included-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}
.kp-included-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.18);
    aspect-ratio: 4 / 3;
}
.kp-included-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kp-included-image .caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    background: rgba(17, 24, 39, 0.88);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
    backdrop-filter: blur(8px);
}
.kp-included-image .caption strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
    color: #ffffff;
}
.kp-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .kp-included-list { grid-template-columns: 1fr 1fr; }
}
.kp-included-list li {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.6rem;
    padding: 1rem 1.1rem;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}
.kp-included-list .ic {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.45rem;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.kp-included-list .ic svg { width: 1.15rem; height: 1.15rem; }
.kp-included-list strong {
    display: block;
    color: #111827;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.kp-included-list span.t {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* How it works — process steps with image */
.kp-process-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .kp-process-layout {
        grid-template-columns: 1fr 1.1fr;
        gap: 3rem;
    }
}
.kp-process-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    aspect-ratio: 4 / 3;
    order: -1;
}
@media (min-width: 1024px) { .kp-process-image { order: 0; } }
.kp-process-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kp-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.kp-step { display: flex; gap: 1rem; }
.kp-step-num {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.kp-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0.3rem 0 0.4rem;
}
.kp-step p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Comparison matrix */
.kp-compare-wrap {
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
}
.kp-compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    font-size: 0.92rem;
}
.kp-compare th,
.kp-compare td {
    padding: 0.9rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}
.kp-compare tbody tr:last-child td { border-bottom: none; }
.kp-compare thead th {
    background: #f9fafb;
    color: #111827;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}
.kp-compare thead th.tier { text-align: center; color: #2563eb; }
.kp-compare td.tier {
    text-align: center;
    color: #1f2937;
    font-weight: 500;
}
.kp-compare td.tier.no { color: #9ca3af; }
.kp-compare tbody tr:hover { background: #f9fafb; }
.kp-compare .feat { font-weight: 600; color: #111827; }

/* Enterprise / procurement band */
.kp-enterprise-band {
    background: linear-gradient(135deg, #111827 0%, #1e3a8a 100%);
    color: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .kp-enterprise-band { padding: 3rem; }
}
.kp-enterprise-band .kp-section-eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #bfdbfe;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.kp-enterprise-band h2 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.85rem;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .kp-enterprise-band h2 { font-size: 2rem; }
}
.kp-enterprise-band > p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 44rem;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 2rem;
}
.kp-enterprise-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (min-width: 640px) {
    .kp-enterprise-features { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .kp-enterprise-features { grid-template-columns: repeat(3, 1fr); }
}
.kp-enterprise-features li {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.6rem;
    padding: 1.1rem 1.2rem;
    backdrop-filter: blur(6px);
}
.kp-enterprise-features strong {
    display: block;
    color: #ffffff;
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
}
.kp-enterprise-features span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

/* FAQ accordion */
.kp-faq {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 56rem;
    margin: 0 auto;
}
.kp-faq details {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.6rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.kp-faq details[open] {
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.1);
    border-color: #bfdbfe;
}
.kp-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
}
.kp-faq summary::-webkit-details-marker { display: none; }
.kp-faq summary::after {
    content: '+';
    color: #2563eb;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.kp-faq details[open] summary::after { content: '−'; }
.kp-faq .ans {
    padding: 0 1.25rem 1.25rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}
.kp-faq .ans p { margin: 0; }

.kp-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
    margin: 4rem 0;
    border: none;
}

/* Enterprise CTA button (final action below engagement steps) */
.kp-enterprise-cta-wrap {
    text-align: center;
    margin-top: 2.5rem;
}
.kp-enterprise-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.85rem;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #ffffff;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.3);
}
a.kp-enterprise-cta,
a.kp-enterprise-cta:hover,
a.kp-enterprise-cta:focus,
a.kp-enterprise-cta:active,
a.kp-enterprise-cta:visited {
    color: #ffffff;
}
a.kp-enterprise-cta:hover,
a.kp-enterprise-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -4px rgba(37, 99, 235, 0.4);
}
.kp-enterprise-cta svg { width: 1.1rem; height: 1.1rem; }

/* Engagement process callout below the Enterprise band */
.kp-engagement {
    margin-top: 2rem;
    padding: 1.75rem;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .kp-engagement {
        grid-template-columns: 1.2fr 1.8fr;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
    }
}
.kp-engagement h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.45rem;
}
.kp-engagement p {
    font-size: 0.92rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}
.kp-engagement-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .kp-engagement-steps { grid-template-columns: repeat(4, 1fr); }
}
.kp-engagement-step {
    text-align: center;
    padding: 0.6rem 0.3rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}
.kp-engagement-step-num {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
}
.kp-engagement-step span {
    font-size: 0.78rem;
    color: #374151;
    font-weight: 600;
    display: block;
    line-height: 1.3;
}

/* Inline CTA refinement */
.kp-inline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-bottom: 4rem;
}
.kp-inline-cta p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
    max-width: 36rem;
    line-height: 1.6;
}
.kp-inline-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}
.kp-inline-cta a:hover,
.kp-inline-cta a:focus { background: #1d4ed8; color: #ffffff; transform: translateY(-2px); }
.kp-inline-cta a svg { width: 1rem; height: 1rem; }
