﻿/* ── THREADS SECTION STYLES ── */
.threads-showcase {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    margin: 60px 0;
    min-height: 580px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #060d1a 0%, #0d1f44 50%, #0f2d6e 100%);
}

/* Animated gradient overlay */
.threads-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0f172a, #1e3a8a, #1d4ed8);
    background-size: 300% 300%;
    animation: tsGrad 10s ease infinite;
    opacity: .85;
    z-index: 0;
}

@keyframes tsGrad {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Subtle grain overlay */
.threads-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    background-size: 160px;
    opacity: .45;
}

/* Floating bubble canvas layer */
.ts-bubbles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.ts-bubble {
    position: absolute;
    bottom: -160px;
    background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.11);
    border-top-color: rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 13px 15px;
    max-width: 230px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.14);
    animation: tsBubbleRise linear forwards;
    pointer-events: none;
}

@keyframes tsBubbleRise {
    0% {
        transform: translateY(0) scale(.92);
        opacity: 0;
    }

    7% {
        opacity: 1;
    }

    93% {
        opacity: .65;
    }

    100% {
        transform: translateY(-115vh) scale(1.02);
        opacity: 0;
    }
}

.ts-brow {
    display: flex;
    gap: 9px;
    align-items: flex-start;
}

.ts-av {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(96,165,250,0.28), rgba(37,99,235,0.45));
    border: 1px solid rgba(96,165,250,0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #bfdbfe;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

    .ts-av.sm {
        width: 20px;
        height: 20px;
        min-width: 20px;
        border-radius: 6px;
        font-size: 8px;
    }

.ts-uname {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.88);
    margin-bottom: 2px;
    font-family: 'Montserrat', sans-serif;
}

    .ts-uname.sm {
        font-size: 10px;
        color: rgba(255,255,255,.65);
    }

.ts-msg {
    font-size: 11.5px;
    color: rgba(255,255,255,.75);
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

    .ts-msg.sm {
        font-size: 10.5px;
        opacity: .8;
    }

.ts-reply {
    display: flex;
    gap: 7px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.07);
    align-items: flex-start;
}

/* Main content */
.ts-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    padding: 60px 52px;
}

@media(max-width: 900px) {
    .ts-content {
        grid-template-columns: 1fr;
        padding: 44px 28px;
        gap: 36px;
    }

    .ts-right {
        display: none;
    }

    .threads-showcase {
        min-height: 480px;
    }
}

@media(max-width: 480px) {
    .ts-content {
        padding: 36px 20px;
    }

    .threads-showcase {
        border-radius: 20px;
    }
}

/* LEFT TEXT */
.ts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

    .ts-eyebrow::before {
        content: '';
        display: block;
        width: 24px;
        height: 1.5px;
        background: #60a5fa;
        border-radius: 2px;
    }

.ts-headline {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #f1f5f9;
    letter-spacing: -.03em;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

    .ts-headline span {
        background: linear-gradient(90deg, #60a5fa, #93c5fd, #60a5fa);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: tsShimmer 4s linear infinite;
    }

@keyframes tsShimmer {
    to {
        background-position: 200% center;
    }
}

.ts-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.6);
    margin-bottom: 32px;
    font-family: 'Montserrat', sans-serif;
    max-width: 400px;
}

/* Feature pills */
.ts-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.ts-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    font-family: 'Montserrat', sans-serif;
    backdrop-filter: blur(8px);
}

/* CTA Button */
.ts-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa);
    background-size: 200% auto;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(37,99,235,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: background-position .5s, transform .18s, box-shadow .2s;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -.01em;
    animation: tsPulse 3s ease-in-out infinite;
}

@keyframes tsPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(37,99,235,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
    }

    50% {
        box-shadow: 0 8px 48px rgba(37,99,235,0.8), inset 0 1px 0 rgba(255,255,255,0.2);
    }
}

.ts-cta:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(37,99,235,0.7), inset 0 1px 0 rgba(255,255,255,0.25);
    color: #fff;
    text-decoration: none;
    animation: none;
}

.ts-cta-arrow {
    display: inline-block;
    transition: transform .2s;
}

.ts-cta:hover .ts-cta-arrow {
    transform: translateX(4px);
}

/* Stats row */
.ts-stats {
    display: flex;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.ts-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -.03em;
}

.ts-stat-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    font-family: 'Montserrat', sans-serif;
    margin-top: 3px;
    letter-spacing: .04em;
}

/* RIGHT MOCK PHONE / CARD */
.ts-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ts-mock {
    width: 300px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 40px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative;
    animation: tsMockFloat 6s ease-in-out infinite;
}

@keyframes tsMockFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(.4deg);
    }

    66% {
        transform: translateY(-5px) rotate(-.3deg);
    }
}

.ts-mock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
}

.ts-mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.ts-mock-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.15);
    object-fit: cover;
}

.ts-mock-title {
    font-size: 13px;
    font-weight: 700;
    color: #f1f5f9;
    font-family: 'Montserrat', sans-serif;
}

.ts-mock-sub {
    font-size: 10px;
    color: rgba(255,255,255,.4);
    font-family: 'Montserrat', sans-serif;
}

.ts-mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    margin-left: auto;
    box-shadow: 0 0 6px #4ade80;
    animation: tsBlink 2s ease-in-out infinite;
}

@keyframes tsBlink {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* Thread cards inside mock */
.ts-mock-thread {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 11px 12px;
    margin-bottom: 10px;
    animation: tsMockSlide .6s cubic-bezier(.16,1,.3,1) both;
}

    .ts-mock-thread:nth-child(1) {
        animation-delay: .2s;
    }

    .ts-mock-thread:nth-child(2) {
        animation-delay: .4s;
    }

    .ts-mock-thread:nth-child(3) {
        animation-delay: .6s;
    }

@keyframes tsMockSlide {
    from {
        opacity: 0;
        transform: translateX(14px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ts-mock-row {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.ts-mock-av {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.ts-mock-name {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    font-family: 'Montserrat', sans-serif;
}

.ts-mock-text {
    font-size: 10.5px;
    color: rgba(255,255,255,.6);
    line-height: 1.4;
    margin-top: 2px;
    font-family: 'Montserrat', sans-serif;
}

.ts-mock-time {
    font-size: 9px;
    color: rgba(255,255,255,.3);
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
}

.ts-mock-reply {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.ts-mock-av.xs {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 5px;
    font-size: 7px;
}

/* Live indicator */
.ts-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74,222,128,.12);
    border: 1px solid rgba(74,222,128,.25);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #4ade80;
    font-family: 'Montserrat', sans-serif;
}

.ts-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: tsBlink 1.5s ease-in-out infinite;
}




/* ── CRM PREMIUM SECTION ── */
.crm-premium {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    margin: 60px 0;
    background: linear-gradient(145deg, #0a0f1e 0%, #0d1b3e 50%, #0a1628 100%);
}

    /* Top gold accent line */
    .crm-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 8%;
        right: 8%;
        height: 1.5px;
        background: linear-gradient(90deg, transparent, #1d4ed8, #3b82f6, #1d4ed8, transparent);
        z-index: 2;
    }

    /* Noise grain */
    .crm-premium::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
        background-size: 160px;
        opacity: .4;
    }

/* Radial glow */
.crm-premium-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 1;
    animation: crmGlowPulse 6s ease-in-out infinite;
}

@keyframes crmGlowPulse {
    0%,100% {
        opacity: .6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.crm-premium-inner {
    position: relative;
    z-index: 10;
    padding: 56px 52px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 52px;
    align-items: center;
}

@media(max-width:960px) {
    .crm-premium-inner {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        gap: 36px;
    }

    .crm-screen-col {
        order: -1;
    }

    .crm-premium {
        border-radius: 20px;
        margin: 40px 0;
    }
}

@media(max-width:480px) {
    .crm-premium-inner {
        padding: 32px 18px;
    }
}

/* ── LEFT TEXT ── */
.crm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

    .crm-eyebrow::before {
        content: '';
        display: block;
        width: 24px;
        height: 1.5px;
        background: #60a5fa;
        border-radius: 2px;
    }

.crm-headline {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 800;
    line-height: 1.12;
    color: #f1f5f9;
    letter-spacing: -.03em;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

    .crm-headline span {
        background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd, #3b82f6);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: crmShimmer 4s linear infinite;
    }

@keyframes crmShimmer {
    to {
        background-position: 200% center;
    }
}

.crm-desc {
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(255,255,255,.55);
    margin-bottom: 28px;
    font-family: 'Montserrat', sans-serif;
    max-width: 420px;
}

/* Feature grid */
.crm-feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}

.crm-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 12px 14px;
    transition: background .2s, border-color .2s;
}

    .crm-feat-item:hover {
        background: rgba(59,130,246,.1);
        border-color: rgba(59,130,246,.3);
    }

.crm-feat-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.crm-feat-name {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.crm-feat-sub {
    font-size: 10.5px;
    color: rgba(255,255,255,.4);
    font-family: 'Montserrat', sans-serif;
    margin-top: 2px;
}

/* CTA buttons */
.crm-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.crm-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 28px rgba(29,78,216,.5), inset 0 1px 0 rgba(255,255,255,.18);
    transition: transform .18s, box-shadow .2s;
    font-family: 'Montserrat', sans-serif;
    animation: crmBtnPulse 3s ease-in-out infinite;
}

@keyframes crmBtnPulse {
    0%,100% {
        box-shadow: 0 6px 28px rgba(29,78,216,.5), inset 0 1px 0 rgba(255,255,255,.18);
    }

    50% {
        box-shadow: 0 8px 40px rgba(29,78,216,.75), inset 0 1px 0 rgba(255,255,255,.18);
    }
}

.crm-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(29,78,216,.7);
    color: #fff;
    text-decoration: none;
    animation: none;
}

.crm-btn-main .arr {
    transition: transform .18s;
}

.crm-btn-main:hover .arr {
    transform: translateX(4px);
}

.crm-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.8);
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s, border-color .18s, color .18s, transform .15s;
    font-family: 'Montserrat', sans-serif;
}

    .crm-btn-ghost:hover {
        background: rgba(255,255,255,.11);
        border-color: rgba(255,255,255,.28);
        color: #fff;
        text-decoration: none;
        transform: translateY(-1px);
    }

/* Stats */
.crm-stats {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.crm-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -.03em;
}

.crm-stat-lbl {
    font-size: 10.5px;
    color: rgba(255,255,255,.4);
    font-family: 'Montserrat', sans-serif;
    margin-top: 3px;
}

/* ── RIGHT SCREEN CAROUSEL ── */
.crm-screen-col {
    position: relative;
}

.crm-screen-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 40px 80px rgba(0,0,0,.65), 0 8px 24px rgba(0,0,0,.4);
    background: #0d1117;
}

/* Browser chrome bar */
.crm-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #161b27;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.crm-browser-dots {
    display: flex;
    gap: 5px;
}

.crm-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .crm-browser-dot:nth-child(1) {
        background: #ff5f57;
    }

    .crm-browser-dot:nth-child(2) {
        background: #febc2e;
    }

    .crm-browser-dot:nth-child(3) {
        background: #28c840;
    }

.crm-browser-url {
    flex: 1;
    background: rgba(255,255,255,.07);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    color: rgba(255,255,255,.35);
    font-family: monospace;
}

/* Screenshot area */
.crm-slides {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.crm-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease, transform .6s ease;
    transform: scale(1.02);
}

    .crm-slide.active {
        opacity: 1;
        transform: scale(1);
    }

    .crm-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        display: block;
    }

    /* Mobile slides — portrait aspect ratio */
    .crm-slide.mobile-slide img {
        object-fit: contain;
        background: #f0f2f7;
    }

/* Caption overlay */
.crm-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
    padding: 24px 18px 14px;
    opacity: 0;
    transition: opacity .3s;
}

.crm-screen-wrap:hover .crm-caption {
    opacity: 1;
}

.crm-caption-title {
    font-size: 13px;
    font-weight: 700;
    color: #f1f5f9;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2px;
}

.crm-caption-sub {
    font-size: 11px;
    color: rgba(255,255,255,.6);
    font-family: 'Montserrat', sans-serif;
}

/* Dot nav */
.crm-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
}

.crm-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    cursor: pointer;
    transition: background .25s, transform .2s;
    border: none;
    padding: 0;
}

    .crm-dot.active {
        background: #3b82f6;
        transform: scale(1.3);
    }

    .crm-dot:hover {
        background: rgba(255,255,255,.45);
    }

/* Screen type badge */
.crm-view-badge {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    justify-content: center;
}

.crm-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid transparent;
    font-family: 'Montserrat', sans-serif;
    transition: .2s;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.5);
}

    .crm-badge.active {
        background: rgba(59,130,246,.15);
        border-color: rgba(59,130,246,.4);
        color: #93c5fd;
    }

/* Progress bar under slides */
.crm-progress-bar {
    height: 2px;
    background: rgba(255,255,255,.08);
    position: relative;
    overflow: hidden;
}

.crm-progress-fill {
    height: 100%;
    background: #3b82f6;
    width: 0%;
    transition: width linear;
}