/* ══════════════════════════════════════════════════════════
   CRM SOFTWARE — v2 (enterprise redesign)
   Page-scoped stylesheet for services/crm-software-v2.php only.
   Reuses --blue/--dark/--mid/--border/--sh-* tokens from
   common.css. Does not modify or replace crm.css.
   ══════════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────────────
   Solid brand gradient — keeps the video the only product
   visual in the fold, guarantees text contrast.
   ─────────────────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 64px;
    background: linear-gradient(140deg, #001e4a 0%, #004a99 60%, #0061c2 100%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero .eyebrow {
    color: #8fc0ff;
}

.hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-h1-accent {
    color: #8fc0ff;
}

.hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 22px;
}

/* ── HERO STATS STRIP ────────────────────────────────────── */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-stat-val {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.hero-stat-lbl {
    font-size: .78rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.4;
}

/* ── HERO FEATURE BADGES ────────────────────────────────── */
.hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 460px;
    margin: 22px 0 20px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
}

.hero-badge i {
    color: #8fc0ff;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── HERO DEMO VIDEO ────────────────────────────────────── */
.hero-video-wrap {
    max-width: 520px;
    margin: 0 auto;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .5);
    background: #000;
    border: 1px solid rgba(255, 255, 255, .14);
}

.hero-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.hero-video-caption {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 520px;
    margin: 16px auto 0;
    font-size: .85rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.6;
}

.hero-video-caption i {
    color: #8fc0ff;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-desc,
    .hero-badges,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-video-wrap {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .hero-badges {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px 28px;
    }
}


/* ── TRUSTED BY / PARTNER LOGOS ─────────────────────────── */
.crm2-partners {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
}

.crm2-partners-label {
    font-family: 'Manrope', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
    text-align: center;
}

.crm2-partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.crm2-partners-logos img {
    width: 160px;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .55;
    transition: filter .22s, opacity .22s;
}

.crm2-partners-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}


/* ══════════════════════════════════════════════════════════
   COMPONENTS CARRIED OVER FROM crm.css — the reused sections
   below (Business Challenges, CRM Solutions, Features, Benefits,
   FAQ) depend on these class names. Kept identical to crm.css
   so v2 doesn't fork the visual language of the shared pattern.
   ══════════════════════════════════════════════════════════ */

/* ── CLOUD OVERVIEW – scoped under .cov-section ─────────── */
.cov-section {
    padding: 64px 0;
    background: var(--white);
}

.cov-section .cov-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.cov-section .cov-heading {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.cov-section .cov-desc {
    font-size: .95rem;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 20px;
}

.cov-section .cov-cta-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--blue-pale);
    border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.cov-section .cov-cta-text i {
    font-size: 1.1rem;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.cov-section .cov-cta-text p {
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.55;
}

.cov-section .cov-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cov-section .cov-right-label {
    font-family: 'Manrope', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.cov-section .cov-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cov-section .cov-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    position: relative;
    overflow: hidden;
    transition: box-shadow .22s, transform .22s, border-color .22s, background .22s;
}

.cov-section .cov-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--blue-mid));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s ease;
    border-radius: 3px 0 0 3px;
}

.cov-section .cov-item:hover {
    box-shadow: var(--sh-md);
    transform: translateX(4px);
    border-color: transparent;
    background: var(--white);
}

.cov-section .cov-item:hover::before {
    transform: scaleY(1);
}

.cov-section .cov-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: background .22s, color .22s;
}

.cov-section .cov-item-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.cov-section .cov-item:hover .cov-item-icon {
    background: var(--blue);
    color: var(--white);
}

.cov-section .cov-item-body h6 {
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.cov-section .cov-item-body p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .cov-section .cov-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .cov-section {
        padding: 44px 0;
    }

    .cov-section .cov-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ── CRM SOLUTIONS / FEATURES / USE CASES – .ccs-section ── */
.ccs-section {
    padding: 60px 0;
    background: var(--bg);
}

.ccs-section .ccs-header {
    margin-bottom: 36px;
}

.ccs-section .ccs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ccs-section .ccs-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.ccs-section .ccs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.ccs-section .ccs-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.ccs-section .ccs-card:hover::before {
    transform: scaleX(1);
}

.ccs-section .ccs-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}

.ccs-section .ccs-card-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.ccs-section .ccs-card:hover .ccs-card-icon {
    background: var(--blue);
    color: var(--white);
}

.ccs-section .ccs-card-body {
    flex: 1;
}

.ccs-section .ccs-card-body h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.ccs-section .ccs-card-body p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.ccs-section .ccs-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: .83rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    transition: gap .18s, color .18s;
}

.ccs-section .ccs-link:hover {
    gap: 10px;
    color: var(--blue-mid);
}

@media (max-width: 1199px) {
    .ccs-section .ccs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ccs-section {
        padding: 40px 0;
    }

    .ccs-section .ccs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .ccs-section .ccs-card {
        padding: 26px 22px 22px;
    }
}


/* ── BENEFITS – scoped under .ccb-section ───────────────── */
.ccb-section {
    padding: 64px 0;
    background: var(--white);
}

.ccb-section .ccb-header {
    margin-bottom: 36px;
}

.ccb-section .ccb-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.ccb-section .ccb-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ccb-section .ccb-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    position: relative;
    overflow: hidden;
    transition: box-shadow .22s, transform .22s, background .22s, border-color .22s;
}

.ccb-section .ccb-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--blue-mid));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s ease;
    border-radius: 3px 0 0 3px;
}

.ccb-section .ccb-item:hover {
    background: var(--white);
    box-shadow: var(--sh-md);
    transform: translateX(4px);
    border-color: transparent;
}

.ccb-section .ccb-item:hover::before {
    transform: scaleY(1);
}

.ccb-section .ccb-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background .22s, color .22s;
}

.ccb-section .ccb-item-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.ccb-section .ccb-item:hover .ccb-item-icon {
    background: var(--blue);
    color: var(--white);
}

.ccb-section .ccb-item-body h5 {
    font-family: 'Manrope', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.ccb-section .ccb-item-body p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.ccb-section .ccb-cta-card {
    background: linear-gradient(140deg, #001e4a 0%, #004a99 60%, #0061c2 100%);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    position: sticky;
    top: 88px;
    overflow: hidden;
}

.ccb-section .ccb-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.ccb-section .ccb-cta-card::after {
    content: '\F62A';
    font-family: 'Bootstrap-icons';
    position: absolute;
    bottom: -24px;
    right: -10px;
    font-size: 10rem;
    color: rgba(255, 255, 255, .04);
    line-height: 1;
    pointer-events: none;
}

.ccb-section .ccb-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ccb-section .ccb-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 24px;
}

.ccb-section .ccb-cta-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.ccb-section .ccb-cta-inner h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 14px;
}

.ccb-section .ccb-cta-inner p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300;
}

.ccb-section .ccb-cta-inner h4 {
    color: #fff;
}

.ccb-section .ccb-cta-inner .btn-white {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.ccb-section .ccb-cta-inner .btn-outline-white {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1199px) {
    .ccb-section .ccb-layout {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 991px) {
    .ccb-section .ccb-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ccb-section .ccb-cta-card {
        position: static;
    }
}

@media (max-width: 767px) {
    .ccb-section {
        padding: 44px 0;
    }
}

@media (max-width: 575px) {
    .ccb-section .ccb-item {
        padding: 18px;
    }

    .ccb-section .ccb-cta-card {
        padding: 30px 24px;
    }
}


/* ── FAQ ───────────────────────────────────────────────── */
.oi-faq.section {
    padding: 60px 0;
}

.oi-faq .accordion-item {
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden;
    background: #fff;
    margin-bottom: 12px;
    box-shadow: var(--sh-sm);
}

.oi-faq .accordion-button {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark) !important;
    background: #fff !important;
    box-shadow: none !important;
    padding: 18px 20px;
}

.oi-faq .accordion-button:not(.collapsed) {
    color: var(--blue) !important;
}

.oi-faq .accordion-body {
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0 20px 18px;
    line-height: 1.75;
}


/* ── AEO ANSWER BLOCK ───────────────────────────────────── */
.crm2-aeo {
    padding: 56px 0;
    background: var(--bg);
}

.crm2-aeo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.crm2-aeo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
}

.crm2-aeo-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.crm2-aeo-card h3 i {
    color: var(--blue);
    font-size: 1.05rem;
}

.crm2-aeo-card p {
    font-size: .95rem;
    color: var(--mid);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 767px) {
    .crm2-aeo {
        padding: 40px 0;
    }

    .crm2-aeo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* ── WHY CHOOSE — icon card grid (replaces paragraph) ───── */
.crm2-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.crm2-why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
}

.crm2-why-item i {
    color: #8fc0ff;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.crm2-why-item span {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
    line-height: 1.5;
}

@media (max-width: 420px) {
    .crm2-why-grid {
        grid-template-columns: 1fr;
    }
}


/* ── INDUSTRIES SERVED ──────────────────────────────────── */
.crm2-industries {
    padding: 60px 0;
    background: var(--white);
}

.crm2-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.crm2-industry-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 26px 22px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: box-shadow .22s, transform .22s, border-color .22s, background .22s;
}

.crm2-industry-card:hover {
    background: var(--white);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: transparent;
}

.crm2-industry-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.crm2-industry-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: .92rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

.crm2-industry-card span.crm2-industry-link {
    margin-top: auto;
    font-size: .78rem;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 1199px) {
    .crm2-industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .crm2-industries {
        padding: 40px 0;
    }

    .crm2-industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .crm2-industries-grid {
        grid-template-columns: 1fr;
    }
}


/* ── CRM DEVELOPMENT PROCESS — TIMELINE ─────────────────── */
.crm2-process {
    padding: 60px 0;
    background: var(--bg);
}

.crm2-process-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    counter-reset: crm2-step;
}

.crm2-process-step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 20px 22px;
}

.crm2-process-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(140deg, var(--blue), var(--blue-mid));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.crm2-process-step h4 {
    font-family: 'Manrope', sans-serif;
    font-size: .92rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.crm2-process-step p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .crm2-process {
        padding: 40px 0;
    }

    .crm2-process-track {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .crm2-process-track {
        grid-template-columns: 1fr;
    }
}


/* ── ODOO CRM PLATFORM + COMPARISON TABLE ───────────────── */
.crm2-platform {
    padding: 60px 0;
    background: var(--white);
}

.crm2-platform-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.crm2-platform-copy p {
    font-size: .95rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.crm2-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    font-size: .85rem;
}

.crm2-compare-table th,
.crm2-compare-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.crm2-compare-table thead th {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: var(--dark);
    background: var(--white);
}

.crm2-compare-table tbody th {
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
}

.crm2-compare-table td {
    color: var(--mid);
    line-height: 1.6;
}

.crm2-compare-table tbody tr:last-child th,
.crm2-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.crm2-compare-table td.crm2-compare-highlight {
    color: var(--blue);
    font-weight: 700;
}

@media (max-width: 991px) {
    .crm2-platform-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .crm2-compare-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 767px) {
    .crm2-platform {
        padding: 40px 0;
    }
}


/* ── CASE STUDY ──────────────────────────────────────────── */
.crm2-case {
    padding: 60px 0;
    background: var(--bg);
}

.crm2-case-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}

.crm2-case-img {
    min-height: 260px;
}

.crm2-case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crm2-case-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.crm2-case-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

.crm2-case-body h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 14px;
}

.crm2-case-body p {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.crm2-case-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .crm2-case {
        padding: 40px 0;
    }

    .crm2-case-card {
        grid-template-columns: 1fr;
    }

    .crm2-case-img {
        min-height: 200px;
    }

    .crm2-case-body {
        padding: 30px 26px;
    }
}


/* ── FINAL CTA — CONTACT LINE ────────────────────────────── */
.crm2-contact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 20px 0 0;
    margin-top: -20px;
}

.crm2-contact-line a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.crm2-contact-line a i {
    color: var(--blue);
}

.crm2-contact-line a:hover {
    color: var(--blue);
}
