/* =====================================================
   CREDORA PARTNERS — HOMEPAGE STYLESHEET
   ===================================================== */

/* FONT */
.cp-home,
.cp-home h1, .cp-home h2, .cp-home h3, .cp-home h4,
.cp-home p, .cp-home a, .cp-home span, .cp-home div,
.cp-home button, .cp-home input {
    font-family: 'Graphik', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

:root {
    --navy:      #0B1F3A;
    --navy-mid:  #132844;
    --navy-light:#1C3963;
    --gold:      #C9A84C;
    --gold-light:#E8C96C;
    --gold-pale: #FDF6E3;
    --white:     #FFFFFF;
    --off-white: #F4F7FC;
    --text:      #1E2D40;
    --text-muted:#6B7A90;
    --border:    #E1E8F0;
    --shadow:    0 8px 40px rgba(11,31,58,.10);
    --shadow-lg: 0 20px 60px rgba(11,31,58,.15);
}

/* ===== GLOBAL RESET FOR HOMEPAGE ===== */
.cp-home * {
    box-sizing: border-box;
}

.cp-home section {
    position: relative;
    overflow: hidden;
}

.cp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.cp-section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.cp-section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 16px;
}

.cp-section-title span {
    color: var(--gold);
}

.cp-section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 600px;
}

/* ===================================================
   1. HERO SECTION
   =================================================== */
.cp-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--navy);
    position: relative;
}

.cp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://credorapartners.com/wp-content/uploads/2026/02/WhatsApp-Image-2026-02-21-at-7.03.03-PM.jpeg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

.cp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(11,31,58,.92) 0%,
        rgba(11,31,58,.75) 55%,
        rgba(11,31,58,.35) 100%
    );
    z-index: 1;
}

.cp-hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
}

.cp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.4);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.cp-hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: blink 2s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .3; }
}

.cp-hero-headline {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin: 0 0 20px;
    max-width: 720px;
}

.cp-hero-headline em {
    font-style: normal;
    color: var(--gold);
    position: relative;
}

.cp-hero-sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 44px;
}

.cp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.cp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all .3s ease;
    white-space: nowrap;
}

.cp-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,.4);
    color: var(--navy);
    text-decoration: none;
}

.cp-btn-primary svg { flex-shrink: 0; }

.cp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,.4);
    text-decoration: none;
    transition: all .3s ease;
    white-space: nowrap;
}

.cp-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,.07);
    text-decoration: none;
}

/* ===== HERO STATS STRIP ===== */
.cp-hero-stats {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,.1);
}

.cp-hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide: 1px solid rgba(255,255,255,.1);
}

.cp-stat-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.1);
    transition: background .3s;
}

.cp-stat-item:last-child { border-right: none; }

.cp-stat-item:hover {
    background: rgba(201,168,76,.08);
}

.cp-stat-num {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.cp-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================================
   2. TRUST BAR
   =================================================== */
.cp-trust-bar {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
}

.cp-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.cp-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.6);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
}

.cp-trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.cp-trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,.15);
}

/* ===================================================
   3. ABOUT SECTION
   =================================================== */
.cp-about {
    padding: 110px 0;
    background: #0d1e35;
}

.cp-about .cp-section-title { color: var(--white); }
.cp-about .cp-section-desc  { color: rgba(255,255,255,.6); }

.cp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cp-about-text .cp-section-desc {
    margin-bottom: 36px;
}

.cp-about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.cp-pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}

.cp-pillar-icon {
    width: 38px;
    height: 38px;
    background: rgba(201,168,76,.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cp-pillar-icon svg { color: var(--gold); }

.cp-pillar-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px;
}

.cp-pillar-body p {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    margin: 0;
    line-height: 1.5;
}

/* About visual card */
.cp-about-visual {
    position: relative;
}

.cp-about-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 48px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cp-about-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(201,168,76,.12);
}

.cp-about-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(201,168,76,.07);
}

.cp-about-card-tag {
    display: inline-block;
    background: rgba(201,168,76,.2);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.cp-about-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cp-about-card p {
    font-size: 15px;
    color: rgba(255,255,255,.7);
    line-height: 1.75;
    margin: 0 0 32px;
    position: relative;
    z-index: 1;
}

.cp-about-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.cp-metric {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
}

.cp-metric-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.cp-metric-label {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .8px;
}

.cp-about-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 12px;
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(201,168,76,.35);
    z-index: 2;
}

.cp-about-badge .badge-num {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.cp-about-badge .badge-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===================================================
   4. SOLUTIONS SECTION
   =================================================== */
.cp-solutions {
    padding: 110px 0;
    background: #0d1e35;
}

.cp-solutions-header .cp-section-title { color: var(--white); }
.cp-solutions-header .cp-section-desc  { color: rgba(255,255,255,.6); }

.cp-solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.cp-solutions-header .cp-section-label {
    justify-content: center;
}

.cp-solutions-header .cp-section-label::before { display: none; }

.cp-solutions-header .cp-section-label::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.cp-solutions-header .cp-section-desc {
    margin: 0 auto;
    text-align: center;
}

/* Wrap the existing shortcode */
.cp-solutions-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

/* ===================================================
   5. WHY CHOOSE US
   =================================================== */
.cp-why {
    padding: 110px 0;
    background: var(--navy);
    position: relative;
}

.cp-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cp-why-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 32px;
    flex-wrap: wrap;
}

.cp-why-header .cp-section-title {
    color: var(--white);
    margin: 0;
}

.cp-why-header .cp-section-desc {
    color: rgba(255,255,255,.6);
    max-width: 400px;
}

.cp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cp-why-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.cp-why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.cp-why-card:hover {
    background: rgba(201,168,76,.08);
    border-color: rgba(201,168,76,.25);
    transform: translateY(-6px);
}

.cp-why-card:hover::after {
    transform: scaleX(1);
}

.cp-why-icon {
    width: 56px;
    height: 56px;
    background: rgba(201,168,76,.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    transition: background .35s;
}

.cp-why-card:hover .cp-why-icon {
    background: rgba(201,168,76,.25);
}

.cp-why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px;
}

.cp-why-card p {
    font-size: 14px;
    color: rgba(255,255,255,.58);
    line-height: 1.7;
    margin: 0;
}

.cp-why-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255,255,255,.04);
    line-height: 1;
    font-family: Georgia, serif;
}

/* ===================================================
   6. OUR PROCESS
   =================================================== */
.cp-process {
    padding: 110px 0;
    background: var(--navy);
}

.cp-process-header .cp-section-title { color: var(--white); }
.cp-process-header .cp-section-desc  { color: rgba(255,255,255,.6); }

.cp-process-header {
    text-align: center;
    margin-bottom: 70px;
}

.cp-process-header .cp-section-label { justify-content: center; }
.cp-process-header .cp-section-label::before { display: none; }
.cp-process-header .cp-section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    display: block;
}

.cp-process-header .cp-section-desc { margin: 0 auto; text-align: center; }

.cp-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.cp-process-steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(255,255,255,.1) 100%);
    z-index: 0;
}

.cp-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.cp-step-num {
    width: 88px;
    height: 88px;
    background: var(--navy);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    position: relative;
    transition: all .3s ease;
    box-shadow: 0 0 0 8px var(--navy);
}

.cp-step:hover .cp-step-num {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 0 0 8px var(--navy), 0 8px 24px rgba(201,168,76,.3);
}

.cp-step-icon {
    position: absolute;
    bottom: -10px;
    right: -4px;
    width: 28px;
    height: 28px;
    background: rgba(201,168,76,.2);
    border: 1px solid rgba(201,168,76,.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.cp-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
}

.cp-step p {
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    margin: 0;
}

/* ===================================================
   7. AWARDS & RECOGNITION — Continuous marquee strip
   =================================================== */
.cp-awards {
    padding: 100px 0 90px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cp-awards::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cp-awards-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 24px;
    flex-wrap: wrap;
}

.cp-awards-header .cp-section-title { margin: 0; color: var(--white); }
.cp-awards-header .cp-section-label { color: var(--gold); }
.cp-awards-header .cp-section-desc  { color: rgba(255,255,255,.55); max-width: 420px; }

/* Marquee wrapper */
.cp-awards-marquee {
    position: relative;
    overflow: hidden;
    padding: 8px 0 12px;
}

.cp-awards-marquee .cp-marquee-fade-left {
    background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}
.cp-awards-marquee .cp-marquee-fade-right {
    background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
}

/* Scrolling strip */
.cp-awards-strip {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: cp-awards-scroll 40s linear infinite;
    padding: 16px 0 8px;
}

.cp-awards-marquee:hover .cp-awards-strip {
    animation-play-state: paused;
}

@keyframes cp-awards-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* Award card */
.cp-award-card {
    flex-shrink: 0;
    width: 260px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,.18);
    background: #0d1e35;
    transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease;
    cursor: default;
    position: relative;
}

.cp-award-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.cp-award-card:hover {
    border-color: rgba(201,168,76,.55);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 24px rgba(201,168,76,.12);
}

.cp-award-card:hover::after { opacity: 1; }

.cp-award-frame {
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.cp-award-frame img {
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,.5));
    transition: transform .4s ease, filter .4s ease;
}

.cp-award-card:hover .cp-award-frame img {
    transform: scale(1.06);
    filter: drop-shadow(0 10px 24px rgba(201,168,76,.18));
}

/* ===================================================
   8. TEAM SECTION WRAPPER
   =================================================== */
.cp-team {
    padding: 110px 0;
    background: #0d1e35;
}

.cp-team .cp-section-label {
    justify-content: center;
    color: #C9A84C;
}

.cp-team .cp-section-label::before { display: none; }
.cp-team .cp-section-label::after {
    content: '';
    width: 30px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    display: block;
}

.cp-team .cp-section-title {
    color: #F0E6CC;
}

.cp-team .cp-section-desc {
    color: rgba(255,255,255,0.5);
    margin: 0 auto;
    text-align: center;
}

.cp-team-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===================================================
   9. OUR CLIENTS — DUAL-ROW MARQUEE
   =================================================== */
.cp-clients {
    padding: 90px 0 80px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cp-clients::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Decorative background circles */
.cp-clients::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
    pointer-events: none;
}

.cp-clients-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 24px;
    flex-wrap: wrap;
}

.cp-clients-header .cp-section-label { justify-content: flex-start; }

/* Counter badge */
.cp-clients-count {
    text-align: center;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 14px;
    padding: 16px 28px;
    flex-shrink: 0;
}

.cp-clients-num {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.cp-clients-sub {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Each marquee row */
.cp-marquee-row {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.cp-marquee-row:last-of-type { margin-bottom: 0; }

/* Fade masks */
.cp-marquee-fade {
    position: absolute;
    top: 0; bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.cp-marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}

.cp-marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
}

/* Track */
.cp-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 8px 0;
}

/* Row directions */
.cp-marquee-ltr {
    animation: cp-ltr 40s linear infinite;
}

.cp-marquee-rtl {
    animation: cp-rtl 40s linear infinite;
}

.cp-marquee-row:hover .cp-marquee-ltr,
.cp-marquee-row:hover .cp-marquee-rtl {
    animation-play-state: paused;
}

@keyframes cp-ltr {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes cp-rtl {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Logo cards */
.cp-client-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 80px;
    flex-shrink: 0;
    cursor: pointer;
    transition: background .35s ease, border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.cp-client-card:hover {
    background: rgba(201,168,76,.12);
    border-color: rgba(201,168,76,.45);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 28px rgba(201,168,76,.2);
}

.cp-client-card img {
    max-height: 42px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .55;
    transition: opacity .35s, filter .35s;
    display: block;
}

.cp-client-card:hover img {
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* ===================================================
   10. CTA SECTION
   =================================================== */
.cp-cta {
    padding: 100px 0;
    background: var(--navy);
}

.cp-cta-inner {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
    border-radius: 24px;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.cp-cta-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(201,168,76,.1);
}

.cp-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 200px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(201,168,76,.06);
}

.cp-cta-text .cp-section-label { color: var(--gold-light); }

.cp-cta-text h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.cp-cta-text p {
    font-size: 16px;
    color: rgba(255,255,255,.68);
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 480px;
}

.cp-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.cp-cta-actions .cp-btn-primary {
    justify-content: center;
    min-width: 220px;
}

.cp-cta-actions .cp-btn-outline {
    justify-content: center;
    border-color: rgba(255,255,255,.3);
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* ===================================================
   SOLUTIONS WRAP — remove overflow clip
   =================================================== */
.cp-solutions-wrap {
    padding: 32px 32px 48px !important;
    overflow: visible !important;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .cp-why-grid { grid-template-columns: repeat(2, 1fr); }
    .cp-process-steps { grid-template-columns: repeat(2, 1fr); }
    .cp-process-steps::before { display: none; }
    .cp-step { padding-bottom: 40px; }
    .cp-about-grid { grid-template-columns: 1fr; gap: 50px; }
    .cp-about-badge { top: -16px; right: 24px; }
    .cp-cta-inner { grid-template-columns: 1fr; text-align: center; }
    .cp-cta-text p { max-width: 100%; }
    .cp-cta-actions { flex-direction: row; justify-content: center; }
    .cp-home .rn-team-wrap { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .cp-hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .cp-stat-item:nth-child(2) { border-right: none; }
    .cp-hero-headline { font-size: 36px; }
    .cp-why-grid { grid-template-columns: 1fr; }
    .cp-about-pillars { grid-template-columns: 1fr; }
    .cp-about-metrics { grid-template-columns: 1fr 1fr; }
    .cp-why-header { flex-direction: column; align-items: flex-start; }
    .cp-awards-header { flex-direction: column; }
    .cp-trust-inner { gap: 24px; }
    .cp-trust-divider { display: none; }
    .cp-cta-inner { padding: 50px 30px; }
    .cp-cta-actions { flex-direction: column; }
    .cp-solutions-wrap { padding: 20px 16px 40px !important; }
    .cp-clients-header { flex-direction: column; }
    .cp-clients-count { width: 100%; }
}

@media (max-width: 480px) {
    .cp-hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .cp-hero-actions { flex-direction: column; align-items: flex-start; }
    .cp-process-steps { grid-template-columns: 1fr; }
    .cp-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}
/* =====================================================
   Credora redesign pass 01
   Light gray theme with #1c3963 as the core accent.
   This file intentionally sits after the captured site CSS.
   ===================================================== */

:root,
.cp-home {
  --cp-blue: #1c3963;
  --cp-blue-soft: #e8edf4;
  --cp-blue-faint: #f1f4f8;
  --cp-bg: #eef1f5;
  --cp-surface: #f7f8fa;
  --cp-surface-2: #e9edf2;
  --cp-card: #f8fafc;
  --cp-border: #d8dee7;
  --cp-text: #1f2937;
  --cp-muted: #687385;
  --cp-shadow: 0 18px 50px rgba(28, 57, 99, 0.1);
  --navy: #1c3963;
  --navy-mid: #2a4b76;
  --navy-light: #1c3963;
  --gold: #1c3963;
  --gold-light: #35557d;
  --gold-pale: #e8edf4;
  --white: #f8fafc;
  --off-white: #eef1f5;
  --text: #1f2937;
  --text-muted: #687385;
  --border: #d8dee7;
  --shadow: var(--cp-shadow);
  --shadow-lg: 0 24px 70px rgba(28, 57, 99, 0.14);
}

html,
body,
.site,
.site-content,
.ast-container,
.ast-separate-container {
  background: var(--cp-bg) !important;
  color: var(--cp-text) !important;
}

body {
  background-image: none !important;
}

a {
  color: var(--cp-blue);
}

a:hover,
a:focus {
  color: #102849;
}

.cp-home {
  background: var(--cp-bg);
  color: var(--cp-text);
  display: flex;
  flex-direction: column;
}

.cp-home > * {
  order: 20;
}

.cp-home > .cp-hero {
  order: 1;
}

.cp-home > .cp-trust-bar {
  order: 2;
}

.cp-home > .cp-solutions {
  order: 3;
}

.cp-home > .cp-awards {
  order: 4;
}

.cp-home > .cp-team {
  order: 5;
}

.cp-home > .cp-clients {
  order: 6;
}

.cp-home > .cp-home-transactions {
  order: 7;
}

.cp-home > .cp-about {
  order: 8;
}

.cp-home > .cp-why {
  order: 9;
}

.cp-home > .cp-process {
  order: 10;
}

.cp-home > .cp-cta {
  order: 11;
}

.cp-home section,
.cp-trust-bar {
  border-bottom: 1px solid var(--cp-border);
}

.cp-home section {
  background: var(--cp-bg) !important;
}

.cp-home section:nth-of-type(even) {
  background: var(--cp-surface-2) !important;
}

.cp-section-label,
.cp-about-card-tag,
.cp-leader-kicker {
  display: none !important;
}

.cp-section-label,
.cp-team .cp-section-label,
.cp-awards-header .cp-section-label,
.cp-cta-text .cp-section-label,
.cp-tv2-role-text,
.cp-tv2-linkedin {
  color: var(--cp-blue) !important;
}

.cp-section-label::before,
.cp-section-label::after,
.cp-team .cp-section-label::after,
.cp-process-header .cp-section-label::after,
.cp-solutions-header .cp-section-label::after,
.cp-tv2-role-line,
.custom-heading-1::before {
  background: var(--cp-blue) !important;
}

.cp-section-title,
.cp-section-title[style],
.cp-section-title span,
.cp-about .cp-section-title,
.cp-solutions-header .cp-section-title,
.cp-why-header .cp-section-title,
.cp-process-header .cp-section-title,
.cp-awards-header .cp-section-title,
.cp-team .cp-section-title,
.cp-clients-header .cp-section-title,
.cp-cta-text h2,
.cp-home h1,
.cp-home h2,
.cp-home h3,
.cp-home h4 {
  color: var(--cp-blue) !important;
}

.cp-section-desc,
.cp-section-desc[style],
.cp-about .cp-section-desc,
.cp-solutions-header .cp-section-desc,
.cp-why-header .cp-section-desc,
.cp-process-header .cp-section-desc,
.cp-awards-header .cp-section-desc,
.cp-team .cp-section-desc,
.cp-cta-text p {
  color: var(--cp-muted) !important;
}

.cp-btn-primary,
.wp-block-button .wp-block-button__link,
.cp-home button,
.ast-button,
.ast-custom-button,
input[type="submit"] {
  background: var(--cp-blue) !important;
  border-color: var(--cp-blue) !important;
  color: #f8fafc !important;
  box-shadow: 0 10px 24px rgba(28, 57, 99, 0.18) !important;
}

.cp-btn-primary:hover,
.wp-block-button .wp-block-button__link:hover,
.cp-home button:hover,
.ast-button:hover,
.ast-custom-button:hover,
input[type="submit"]:hover {
  background: #102849 !important;
  border-color: #102849 !important;
  color: #f8fafc !important;
  transform: translateY(-2px);
}

.cp-btn-outline,
.cp-cta-actions .cp-btn-outline,
.cp-tv2-linkedin {
  background: transparent !important;
  border-color: rgba(28, 57, 99, 0.35) !important;
  color: var(--cp-blue) !important;
}

.cp-btn-outline:hover,
.cp-tv2-linkedin:hover {
  background: var(--cp-blue) !important;
  border-color: var(--cp-blue) !important;
  color: #f8fafc !important;
}

/* Header */
.elementor-location-header .e-con,
.elementor-location-header .elementor-sticky,
.elementor-location-header .elementor-sticky__spacer,
.site-header {
  background: rgba(247, 248, 250, 0.94) !important;
  border-bottom: 1px solid var(--cp-border) !important;
  box-shadow: 0 10px 28px rgba(28, 57, 99, 0.08) !important;
  backdrop-filter: blur(14px);
}

.elementor-location-header .elementor-nav-menu--main .elementor-item,
.elementor-location-header .menu-link,
.ast-mobile-popup-content .menu-link,
.primary-nav a {
  color: var(--cp-text) !important;
}

.elementor-location-header .elementor-nav-menu--main .elementor-item:hover,
.elementor-location-header .menu-link:hover,
.ast-mobile-popup-content .menu-link:hover,
.primary-nav a:hover {
  color: var(--cp-blue) !important;
}

.elementor-menu-toggle,
.ast-mobile-popup-drawer.active .ast-mobile-popup-inner,
.elementor-nav-menu--dropdown {
  background: var(--cp-card) !important;
  color: var(--cp-blue) !important;
}

.site-logo-img img,
.elementor-widget-theme-site-logo img,
.elementor-location-footer img[src*="cp-footer"] {
  filter: brightness(0) saturate(100%) invert(20%) sepia(33%) saturate(1190%) hue-rotate(176deg) brightness(91%) contrast(93%);
}

/* Hero */
.cp-hero {
  min-height: auto !important;
  background: var(--cp-bg) !important;
  justify-content: flex-start !important;
  padding: 0 !important;
}

.cp-home .cp-hero {
  padding: 0 !important;
}

.cp-hero-bg {
  inset: 0 0 0 auto !important;
  width: min(44vw, 880px) !important;
  height: 100% !important;
  opacity: 0.94;
  overflow: hidden;
  pointer-events: none;
  background-image: none !important;
  background-position: center right !important;
  background-size: cover !important;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.16) 10%,
    rgba(0, 0, 0, 0.58) 26%,
    rgba(0, 0, 0, 0.95) 52%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.16) 10%,
    rgba(0, 0, 0, 0.58) 26%,
    rgba(0, 0, 0, 0.95) 52%,
    #000 100%
  );
}

.cp-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.94;
  filter: saturate(1.05) contrast(0.94) brightness(0.86);
}

.cp-hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(238, 241, 245, 1) 0%,
      rgba(238, 241, 245, 0.94) 42%,
      rgba(238, 241, 245, 0.1) 66%,
      rgba(238, 241, 245, 0) 100%
    ) !important;
}

.cp-hero-badge {
  background: rgba(28, 57, 99, 0.08) !important;
  border-color: rgba(28, 57, 99, 0.18) !important;
  color: var(--cp-blue) !important;
  backdrop-filter: none;
}

.cp-hero-badge::before {
  background: var(--cp-blue) !important;
  animation: none;
}

.cp-home .cp-hero .cp-hero-headline {
  color: var(--cp-blue) !important;
}

.cp-home .cp-hero .cp-hero-brand-line {
  color: var(--cp-blue) !important;
  font-family: "Graphik", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
}

.cp-home .cp-hero .cp-hero-headline em {
  color: #111827 !important;
  font-family: "Graphik", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
}

.cp-hero-sub {
  color: var(--cp-muted) !important;
  max-width: 670px !important;
  margin-bottom: 30px !important;
}

.cp-hero-actions {
  margin-top: 4px !important;
}

.cp-hero-actions .cp-btn-primary {
  padding: 18px 40px !important;
}

.cp-hero-content {
  padding-top: clamp(120px, 13vh, 170px) !important;
  padding-bottom: clamp(58px, 7vh, 84px) !important;
}

.cp-hero-stats {
  background: rgba(247, 248, 250, 0.86) !important;
  border-top: 1px solid var(--cp-border) !important;
  backdrop-filter: blur(10px);
  padding: 0;
  transform: none;
}

.cp-stat-item {
  background: transparent !important;
  border-right-color: var(--cp-border) !important;
}

.cp-stat-item:hover {
  background: rgba(28, 57, 99, 0.06) !important;
}

.cp-stat-num {
  color: var(--cp-blue) !important;
}

.cp-stat-label {
  color: var(--cp-muted) !important;
}

.cp-hero-stats .cp-container {
  max-width: 1200px;
  padding: 0 24px;
}

.cp-hero-stats-inner {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* Trust strip */
.cp-trust-bar {
  display: none !important;
}

.cp-trust-item {
  color: var(--cp-muted) !important;
}

.cp-trust-item svg {
  color: var(--cp-blue) !important;
}

.cp-trust-divider {
  background: var(--cp-border) !important;
}

.cp-home .cp-about {
  padding-top: clamp(44px, 4vw, 60px) !important;
}

.cp-about-visual {
  display: none !important;
}

.cp-about-features {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  align-self: center;
}

.cp-about-features .cp-about-pillars {
  margin-top: 0 !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.cp-about-features .cp-pillar {
  min-height: 124px;
  padding: 22px !important;
  border-radius: 8px !important;
}

.cp-home .cp-solutions {
  padding-top: clamp(58px, 5vw, 76px) !important;
  padding-bottom: clamp(64px, 6vw, 88px) !important;
}

.cp-home .cp-solutions-header {
  margin-bottom: 38px !important;
}

.cp-home .cp-solutions-wrap {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 0 34px !important;
}

/* Shared cards */
.cp-pillar,
.cp-about-card,
.cp-why-card,
.cp-step-num,
.cp-award-card,
.cp-client-card,
.cp-cta-inner,
.service-card,
.cp-tv2-card,
.cp-clients-count {
  background: var(--cp-card) !important;
  border: 1px solid var(--cp-border) !important;
  box-shadow: 0 12px 34px rgba(28, 57, 99, 0.08) !important;
}

.cp-pillar {
  border-left: 3px solid var(--cp-blue) !important;
}

.cp-pillar-icon,
.cp-why-icon,
.cp-step-icon,
.cp-about-card-tag,
.cp-clients-count {
  background: rgba(28, 57, 99, 0.08) !important;
  border-color: rgba(28, 57, 99, 0.18) !important;
  color: var(--cp-blue) !important;
}

.cp-pillar-icon svg,
.cp-why-icon,
.cp-step-icon,
.cp-about-card-tag,
.cp-metric-num,
.cp-why-num,
.cp-step-num,
.cp-clients-num {
  color: var(--cp-blue) !important;
}

.cp-pillar-body h4,
.cp-about-card h3,
.cp-why-card h3,
.cp-step h3,
.service-card h3,
.cp-tv2-name {
  color: var(--cp-text) !important;
}

.cp-pillar-body p,
.cp-about-card p,
.cp-why-card p,
.cp-step p,
.cp-metric-label,
.cp-clients-sub,
.cp-tv2-bio {
  color: var(--cp-muted) !important;
}

/* Compact single-leader duplicate */
.cp-team-single {
  padding-top: clamp(64px, 6vw, 86px) !important;
  padding-bottom: clamp(64px, 6vw, 86px) !important;
  background: var(--cp-blue) !important;
  border-bottom-color: rgba(248, 250, 252, 0.16) !important;
}

.cp-team-single .cp-team-header {
  max-width: 760px;
  margin: 0 auto 34px !important;
}

.cp-team-single .cp-section-title,
.cp-team-single .cp-section-title span {
  color: #f8fafc !important;
}

.cp-team-single .cp-section-desc {
  max-width: 720px !important;
  color: rgba(248, 250, 252, 0.76) !important;
}

.cp-team-single .cp-tv2-grid {
  display: none !important;
}

.cp-leader-single {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  width: min(940px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--cp-border);
  border-radius: 10px;
  background: var(--cp-card);
  box-shadow: 0 16px 40px rgba(28, 57, 99, 0.1);
}

.cp-leader-media {
  position: relative;
  min-height: 390px;
  background: #dfe5eb;
  overflow: hidden;
}

.cp-leader-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(0.98) brightness(0.98);
}

.cp-leader-role {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(28, 57, 99, 0.92);
  color: #f8fafc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.cp-leader-single:hover .cp-leader-role,
.cp-leader-single:focus-within .cp-leader-role {
  opacity: 1;
  transform: translateY(0);
}

.cp-leader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  padding: clamp(30px, 4vw, 54px);
}

.cp-leader-kicker {
  margin-bottom: 12px;
  color: var(--cp-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cp-leader-name {
  margin: 0 0 16px !important;
  color: var(--cp-blue) !important;
  font-size: clamp(36px, 4vw, 54px) !important;
  line-height: 1.02 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.cp-leader-bio {
  max-width: 520px;
  margin: 0 !important;
  color: var(--cp-muted) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

.cp-leader-linkedin {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(28, 57, 99, 0.22);
  border-radius: 50%;
  color: var(--cp-blue);
  background: rgba(248, 250, 252, 0.84);
  text-decoration: none !important;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.cp-leader-linkedin:hover,
.cp-leader-linkedin:focus-visible {
  background: var(--cp-blue);
  border-color: var(--cp-blue);
  color: #f8fafc;
  transform: translateY(-2px);
}

.cp-leader-portrait-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.cp-leader-portrait-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--cp-border);
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.82);
  box-shadow: 0 16px 36px rgba(28, 57, 99, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cp-leader-portrait-card:hover,
.cp-leader-portrait-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(28, 57, 99, 0.28);
  box-shadow: 0 24px 52px rgba(28, 57, 99, 0.14);
}

.cp-leader-portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 3px solid var(--cp-blue);
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 3;
}

.cp-leader-portrait-card:hover::before,
.cp-leader-portrait-card:focus-within::before {
  opacity: 1;
}

.cp-leader-portrait-media {
  position: relative;
  overflow: hidden;
  height: 0 !important;
  min-height: 0 !important;
  padding-top: 100% !important;
  aspect-ratio: auto !important;
  background: #dfe5eb;
}

.cp-leader-portrait-media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0) 0%, rgba(247, 248, 250, 0.42) 100%);
}

.cp-leader-portrait-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.98) contrast(0.98) brightness(0.99);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.cp-leader-portrait-card:hover .cp-leader-portrait-video,
.cp-leader-portrait-card:focus-within .cp-leader-portrait-video {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1) brightness(1);
}

.cp-leader-portrait-card:hover .cp-leader-role,
.cp-leader-portrait-card:focus-within .cp-leader-role {
  opacity: 1;
  transform: translateY(0);
}

.cp-leader-portrait-content {
  position: relative;
  min-height: 156px;
  padding: 22px 24px 24px;
}

.cp-leader-portrait-content .cp-leader-name {
  margin: 0 46px 10px 0 !important;
  color: var(--cp-blue) !important;
  font-size: clamp(25px, 2vw, 34px) !important;
  line-height: 1.12 !important;
  font-weight: 800 !important;
}

.cp-leader-portrait-content .cp-leader-bio {
  color: var(--cp-muted) !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}

.cp-leader-portrait-card .cp-leader-linkedin {
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  z-index: 4;
  background: rgba(248, 250, 252, 0.92);
}

.cp-team-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.cp-team-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(248, 250, 252, 0.92);
  box-shadow: 0 16px 34px rgba(5, 18, 38, 0.24);
  color: #173763 !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cp-team-view-all:hover {
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(5, 18, 38, 0.3);
  transform: translateY(-2px);
}

.cp-about-card::before,
.cp-about-card::after,
.cp-cta-inner::before,
.cp-cta-inner::after,
.cp-clients::after {
  display: none !important;
}

.cp-about-badge {
  background: var(--cp-blue) !important;
  color: #f8fafc !important;
  box-shadow: 0 12px 26px rgba(28, 57, 99, 0.18) !important;
}

.cp-metric {
  background: var(--cp-blue-faint) !important;
  border-color: var(--cp-border) !important;
}

/* Why, process, awards, clients, CTA */
.cp-why::before,
.cp-awards::before,
.cp-clients::before,
.cp-why-card::after,
.cp-award-card::after,
.cp-tv2-accent {
  background: var(--cp-blue) !important;
}

.cp-why-card:hover,
.cp-award-card:hover,
.cp-client-card:hover,
.cp-tv2-card:hover {
  background: var(--cp-blue-faint) !important;
  border-color: rgba(28, 57, 99, 0.28) !important;
  box-shadow: 0 18px 46px rgba(28, 57, 99, 0.13) !important;
}

.cp-process-steps::before {
  background: linear-gradient(90deg, var(--cp-blue) 0%, var(--cp-border) 100%) !important;
}

.cp-step-num {
  box-shadow: 0 0 0 8px var(--cp-bg), 0 12px 34px rgba(28, 57, 99, 0.08) !important;
}

.cp-step:hover .cp-step-num {
  background: var(--cp-blue) !important;
  color: #f8fafc !important;
  box-shadow: 0 0 0 8px var(--cp-bg), 0 12px 28px rgba(28, 57, 99, 0.2) !important;
}

.cp-awards-marquee .cp-marquee-fade-left,
.cp-marquee-fade-left {
  background: linear-gradient(to right, var(--cp-bg) 0%, rgba(238, 241, 245, 0) 100%) !important;
}

.cp-awards-marquee .cp-marquee-fade-right,
.cp-marquee-fade-right {
  background: linear-gradient(to left, var(--cp-bg) 0%, rgba(238, 241, 245, 0) 100%) !important;
}

.cp-award-frame img {
  filter: none !important;
}

.cp-client-card img,
.cp-client-card:hover img {
  filter: none !important;
  opacity: 0.82 !important;
}

.cp-cta-inner {
  background: var(--cp-surface) !important;
  grid-template-columns: 1fr auto;
}

/* Team cards embedded in the page */
.cp-tv2-photo {
  background: var(--cp-surface-2) !important;
}

.cp-tv2-photo::after {
  background: linear-gradient(to top, rgba(248, 250, 252, 0.92) 0%, rgba(248, 250, 252, 0) 100%) !important;
}

.cp-tv2-watermark {
  color: rgba(28, 57, 99, 0.1) !important;
}

.cp-tv2-divider {
  background: rgba(28, 57, 99, 0.2) !important;
}

/* Elementor footer */
.elementor-location-footer,
.elementor-location-footer .e-con,
.elementor-location-footer .elementor-element {
  background-color: var(--cp-surface-2) !important;
  background-image: none !important;
  color: var(--cp-muted) !important;
}

.elementor-location-footer {
  border-top: 1px solid var(--cp-border);
}

.elementor-location-footer h1,
.elementor-location-footer h2,
.elementor-location-footer h3,
.elementor-location-footer h4,
.elementor-location-footer .elementor-heading-title {
  color: var(--cp-blue) !important;
}

.elementor-location-footer a,
.elementor-location-footer .elementor-icon-list-text,
.elementor-location-footer .elementor-widget-text-editor {
  color: var(--cp-muted) !important;
}

.elementor-location-footer a:hover,
.elementor-location-footer .elementor-icon-list-icon svg {
  color: var(--cp-blue) !important;
  fill: var(--cp-blue) !important;
}

/* Leftover old palette hooks */
.blue-txt,
.blue-txt a {
  color: var(--cp-blue) !important;
}

::selection {
  background: var(--cp-blue) !important;
  color: #f8fafc !important;
}

@media (max-width: 768px) {
  .cp-home section,
  .cp-about,
  .cp-solutions,
  .cp-why,
  .cp-process,
  .cp-awards,
  .cp-team,
  .cp-clients,
  .cp-cta {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }

  .cp-home .cp-hero {
    min-height: auto;
    padding: 0 !important;
  }

  .cp-home .cp-about {
    padding-top: 44px !important;
  }

  .cp-home .cp-solutions {
    padding-top: 56px !important;
    padding-bottom: 64px !important;
  }

  .cp-home .cp-solutions-wrap {
    padding: 0 0 40px !important;
  }

  .cp-solutions .services-swiper .swiper-pagination {
    margin-top: 20px;
  }

  .cp-solutions-cta {
    margin-top: 18px;
  }

  .cp-solutions-view-all {
    width: min(100%, 260px);
    min-height: 46px;
    padding: 0 22px;
    font-size: 13px;
  }

  .cp-leader-single {
    grid-template-columns: 1fr;
  }

  .cp-leader-portrait-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .cp-team-cta {
    margin-top: 26px;
  }

  .cp-team-view-all {
    width: min(100%, 260px);
    min-height: 46px;
    padding: 0 22px;
    font-size: 13px;
  }

  .cp-leader-media,
  .cp-leader-video {
    min-height: 340px;
  }

  .cp-leader-portrait-media {
    height: 0 !important;
    min-height: 0 !important;
    padding-top: 100% !important;
  }

  .cp-leader-content {
    min-height: auto;
    padding: 30px 24px 34px;
  }

  .cp-hero-bg {
    inset: 0 0 0 auto !important;
    width: min(92vw, 430px) !important;
    opacity: 0.78;
    transform: translateX(16%);
    transform-origin: right center;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 22%, rgba(0, 0, 0, 0.72) 48%, #000 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 22%, rgba(0, 0, 0, 0.72) 48%, #000 100%);
  }

  .cp-hero-video {
    object-position: right center;
    opacity: 0.9;
    filter: saturate(1.05) contrast(0.94) brightness(0.86);
  }

  .cp-hero-overlay {
    background:
      linear-gradient(90deg, rgba(238, 241, 245, 0.92) 0%, rgba(238, 241, 245, 0.72) 52%, rgba(238, 241, 245, 0.28) 100%),
      rgba(238, 241, 245, 0.22) !important;
  }

  .cp-hero-content {
    padding-top: 120px !important;
  }

  .cp-stat-item {
    border-bottom-color: var(--cp-border) !important;
  }
}

/* Leadership section dark mode: keep cards light, make only the section shell brand blue. */
.cp-home > .cp-team.cp-team-single,
.cp-team.cp-team-single {
  background-color: #1a3a66 !important;
  background-image: none !important;
  position: relative;
  overflow: hidden;
}

.cp-home > .cp-team.cp-team-single::before,
.cp-team.cp-team-single::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../images/leadership-bg-dark.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.4;
}

.cp-home > .cp-team.cp-team-single > .cp-container,
.cp-team.cp-team-single > .cp-container {
  position: relative;
  z-index: 1;
}

.cp-home > .cp-team.cp-team-single .cp-section-title,
.cp-home > .cp-team.cp-team-single .cp-section-title span,
.cp-team.cp-team-single .cp-section-title,
.cp-team.cp-team-single .cp-section-title span {
  color: #f8fafc !important;
}

.cp-home > .cp-team.cp-team-single .cp-section-desc,
.cp-team.cp-team-single .cp-section-desc {
  color: rgba(248, 250, 252, 0.76) !important;
}

.cp-home > .cp-awards::before,
.cp-awards::before {
  display: none !important;
}

.cp-home > section.cp-solutions.cp-solutions,
.cp-home > .cp-solutions,
.cp-solutions {
  background: #1a3a66 !important;
  background-image: none !important;
  border-bottom-color: rgba(248, 250, 252, 0.16) !important;
  position: relative;
  overflow: hidden;
}

.cp-home > .cp-solutions::before,
.cp-solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../images/solutions-bg-dark.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.cp-home > .cp-solutions > .cp-container,
.cp-solutions > .cp-container {
  position: relative;
  z-index: 1;
}

.cp-home > .cp-solutions .cp-section-title,
.cp-home > .cp-solutions .cp-section-title span,
.cp-solutions .cp-section-title,
.cp-solutions .cp-section-title span {
  color: #f8fafc !important;
}

.cp-home > .cp-solutions .cp-section-desc,
.cp-solutions .cp-section-desc {
  color: rgba(248, 250, 252, 0.76) !important;
}

.cp-solutions .swiper-pagination-bullet {
  background: rgba(248, 250, 252, 0.46) !important;
  opacity: 1 !important;
}

.cp-solutions .swiper-pagination-bullet-active {
  background: #f8fafc !important;
}

.cp-solutions .services-swiper .swiper-pagination {
  position: relative !important;
  inset: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.cp-solutions-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.cp-solutions-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(248, 250, 252, 0.92);
  box-shadow: 0 16px 34px rgba(5, 18, 38, 0.24);
  color: #173763 !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cp-solutions-view-all:hover {
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(5, 18, 38, 0.3);
  transform: translateY(-2px);
}

.cp-solutions .service-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.3)) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow:
    0 20px 52px rgba(5, 18, 38, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.58) !important;
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.cp-solutions .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 82% 12%, rgba(43, 190, 222, 0.14), transparent 32%);
}

.cp-solutions .service-card > * {
  position: relative;
  z-index: 1;
}

.cp-solutions .service-card img {
  filter: drop-shadow(0 9px 14px rgba(5, 18, 38, 0.14));
}

.cp-solutions .service-card h3 {
  color: var(--cp-text) !important;
  text-shadow: none;
}

.cp-solutions .service-card:hover {
  transform: translateY(-7px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.38)) !important;
  border-color: rgba(255, 255, 255, 0.64) !important;
  box-shadow:
    0 28px 68px rgba(5, 18, 38, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.68) !important;
}

.cp-home > section.cp-home-transactions.cp-home-transactions,
.cp-home-transactions {
  display:none;
  position: relative;
  overflow: hidden;
  padding: 54px 0 52px !important;
  background:
    linear-gradient(90deg, rgba(1, 18, 39, 0.98) 0%, rgba(1, 20, 43, 0.92) 36%, rgba(1, 20, 43, 0.58) 62%, rgba(1, 20, 43, 0.2) 100%),
    url("../images/transactions-page-hero.png") center right / cover no-repeat !important;
  border-bottom: 0 !important;
  color: #f8fafc;
}

.cp-home-transactions::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(248, 250, 252, 0.12);
  pointer-events: none;
}

.cp-home-transactions > .cp-container {
  position: relative;
  z-index: 1;
}

.cp-home-transactions-copy {
  max-width: 640px;
}

.cp-home-transactions-kicker {
  display: block;
  margin-bottom: 14px;
  color: #5ab7ff;
  font-family: "Graphik", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cp-home-transactions h2 {
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-family: "Graphik", Arial, sans-serif !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.08 !important;
  text-transform: none !important;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.cp-home-transactions-copy p {
  max-width: 520px;
  margin: 0 !important;
  color: rgba(248, 250, 252, 0.88);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.cp-home-transactions-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 980px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 250, 252, 0.16);
}

.cp-home-transaction-stat {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  padding: 0 24px;
  border-left: 1px solid rgba(248, 250, 252, 0.14);
}

.cp-home-transaction-stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.cp-home-transaction-icon {
  display: inline-flex;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #f8fafc;
  background: linear-gradient(145deg, #0b72d7, #0b4ca4);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 84, 180, 0.32);
}

.cp-home-transaction-icon svg {
  width: 21px;
  height: 21px;
}

.cp-home-transaction-stat strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.cp-home-transaction-stat span:last-child {
  color: rgba(248, 250, 252, 0.76);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.cp-home-transactions-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  margin-bottom: 16px;
}

.cp-home-transactions-tabs {
  display: flex;
  gap: 12px;
}

.cp-home-transactions-tabs button {
  min-width: 104px;
  height: 38px;
  padding: 0 18px;
  color: rgba(248, 250, 252, 0.74) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(147, 183, 224, 0.22) !important;
  border-radius: 8px;
  font: 700 13px/1 "Graphik", Arial, sans-serif;
  cursor: default;
  box-shadow: none !important;
  transform: none !important;
}

.cp-home-transactions-tabs button.is-active {
  color: #f8fafc !important;
  background: rgba(11, 114, 215, 0.14) !important;
  border-color: #0b72d7 !important;
  box-shadow: inset 0 0 0 1px rgba(90, 183, 255, 0.18) !important;
}

.cp-home-transactions-tabs button:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(147, 183, 224, 0.4) !important;
  color: #f8fafc !important;
  transform: none !important;
}

.cp-home-transactions-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(248, 250, 252, 0.9) !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
}

.cp-home-transactions-link:hover {
  color: #ffffff !important;
}

.cp-home-transactions-link span {
  font-size: 24px;
  line-height: 1;
}

.cp-home-transactions-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 2px;
}

.cp-home-transactions-track {
  display: flex;
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cp-home-transactions-track::-webkit-scrollbar {
  display: none;
}

.cp-home-transaction-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 48px;
  flex: 0 0 calc((100% - 36px) / 3);
  align-items: center;
  min-width: 0;
  min-height: 118px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(209, 220, 234, 0.82);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 11, 28, 0.22);
  scroll-snap-align: start;
}

.cp-home-transaction-card-preview {
  opacity: 1;
  filter: none;
}

.cp-home-transaction-card img {
  display: block;
  width: 76px;
  max-height: 58px;
  object-fit: contain;
}

.cp-home-transaction-card h3 {
  margin: 0 0 7px !important;
  color: #07152a !important;
  font-family: "Graphik", Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  text-transform: none !important;
}

.cp-home-transaction-card span {
  display: block;
  margin-bottom: 7px;
  color: #0f4f91;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.cp-home-transaction-card strong {
  display: block;
  color: #15233a;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

.cp-home-transaction-card p,
.cp-home-transaction-card time {
  margin: 7px 0 0 !important;
  color: #607089;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.cp-home-transaction-card time {
  align-self: end;
  justify-self: end;
  margin: 0 !important;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cp-home > .cp-solutions::before,
  .cp-solutions::before {
    inset: 0 0 0 auto;
    width: min(150vw, 620px);
    background-position: right center;
    background-size: auto 100%;
    opacity: 0.3;
    transform: translateX(20%);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.28) 24%, rgba(0, 0, 0, 0.78) 52%, #000 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.28) 24%, rgba(0, 0, 0, 0.78) 52%, #000 100%);
  }

  .cp-home .cp-clients {
    padding-top: 84px !important;
    padding-bottom: 86px !important;
  }

  .cp-clients-header {
    margin-bottom: 44px !important;
    gap: 28px !important;
  }

  .cp-clients-count {
    padding: 20px 28px !important;
    min-height: 92px;
  }

  .cp-clients-num {
    font-size: 42px !important;
  }

  .cp-marquee-row {
    margin-bottom: 28px !important;
  }

  .cp-marquee-track {
    gap: 18px !important;
    padding: 10px 0 !important;
  }

  .cp-client-card {
    min-width: 210px !important;
    height: 112px !important;
    padding: 22px 34px !important;
    border-radius: 12px !important;
  }

  .cp-client-card img,
  .cp-client-card:hover img {
    max-width: 172px !important;
    max-height: 70px !important;
    opacity: 1 !important;
  }

  .cp-marquee-fade {
    width: 48px !important;
  }

  .cp-cta {
    padding-top: 56px !important;
    padding-bottom: 64px !important;
  }

  .cp-cta-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 38px 24px 34px !important;
    text-align: center !important;
    border-radius: 18px !important;
  }

  .cp-cta-text {
    max-width: 100%;
  }

  .cp-cta-text h2 {
    max-width: 286px;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: 25px !important;
    line-height: 1.14 !important;
  }

  .cp-cta-text h2 br {
    display: none;
  }

  .cp-cta-text p {
    max-width: 286px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    text-align: center !important;
  }

  .cp-cta-actions {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .cp-cta-actions .cp-btn-primary,
  .cp-cta-actions .cp-btn-outline {
    width: 100%;
    min-width: 0 !important;
    justify-content: center !important;
    padding: 16px 18px !important;
    font-size: 13px !important;
    white-space: nowrap;
  }

  .cp-home > section.cp-home-transactions.cp-home-transactions,
  .cp-home-transactions {
    padding-top: 52px !important;
    padding-bottom: 54px !important;
    background:
      linear-gradient(180deg, rgba(1, 18, 39, 0.98) 0%, rgba(1, 20, 43, 0.92) 58%, rgba(1, 20, 43, 0.76) 100%),
      url("../images/transactions-page-hero.png") 68% center / auto 100% no-repeat !important;
  }

  .cp-home-transactions-kicker {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .cp-home-transactions h2 {
    max-width: 330px;
    font-size: 31px !important;
    line-height: 1.12 !important;
  }

  .cp-home-transactions-copy p {
    max-width: 326px;
    font-size: 14px;
    line-height: 1.62;
  }

  .cp-home-transactions-stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .cp-home-transaction-stat,
  .cp-home-transaction-stat:first-child {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    min-height: 76px;
    padding: 12px;
    border: 1px solid rgba(248, 250, 252, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
  }

  .cp-home-transaction-icon {
    width: 36px;
    height: 36px;
  }

  .cp-home-transaction-icon svg {
    width: 18px;
    height: 18px;
  }

  .cp-home-transaction-stat strong {
    font-size: 19px;
  }

  .cp-home-transaction-stat span:last-child {
    font-size: 11px;
  }

  .cp-home-transactions-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 16px;
  }

  .cp-home-transactions-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .cp-home-transactions-tabs button {
    min-width: 0;
    height: 40px;
    padding: 0 10px;
    font-size: 12px !important;
    white-space: nowrap;
  }

  .cp-home-transactions-link {
    justify-content: flex-start;
    font-size: 13px;
  }

  .cp-home-transactions-track {
    display: flex;
    gap: 14px;
    width: auto;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cp-home-transactions-track::-webkit-scrollbar {
    display: none;
  }

  .cp-home-transaction-card {
    grid-template-columns: 76px minmax(0, 1fr);
    flex-basis: min(306px, 84vw);
    min-width: min(318px, 86vw);
    min-height: 128px;
    padding: 18px 16px;
    scroll-snap-align: start;
  }

  .cp-home-transaction-card-preview {
    opacity: 1;
    filter: none;
  }

  .cp-home-transaction-card img {
    width: 66px;
    max-height: 58px;
  }

  .cp-home-transaction-card h3 {
    font-size: 15px !important;
  }

  .cp-home-transaction-card span {
    font-size: 11px;
  }

  .cp-home-transaction-card strong {
    font-size: 21px;
  }

  .cp-home-transaction-card p,
  .cp-home-transaction-card time {
    font-size: 12px;
  }

  .cp-home-transaction-card time {
    grid-column: 2;
    justify-self: start;
    margin-top: 8px !important;
  }

}

/* ===================================================
   SERVICE CARD — base layout (for homepage carousel)
   Visual overrides are set above via .cp-solutions .service-card
   =================================================== */
.service-link {
    display: block;
    text-decoration: none;
}

.service-card {
    min-height: 200px;
    height: 100%;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 24px;
    cursor: pointer;
    transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.service-card img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.service-card h3 {
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
