/* ==========================================================================
   VIREZO SÉCURITÉ & RÉSEAUX - BRAND BLUE & CLEAN INDUSTRIAL DESIGN SYSTEM
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Brand Palette - Matched with Virezo Blue Logo */
    --bg-paper: #FDFBF7;
    --bg-bone: #F5F3EC;
    --bg-card: #FFFFFF;
    --bg-dark: #0F0F0F;

    /* Typography Colors */
    --text-ink: #0F0F0F;
    --text-soot: #18181B;
    --text-slate: #52525B;
    --text-stone: #71717A;
    --text-paper: #FDFBF7;

    /* Virezo Logo Blue Accents */
    --virezo-blue: #0072CE;
    --virezo-blue-hover: #005FA8;
    --virezo-cyan: #0091FF;
    --virezo-blue-light: rgba(0, 114, 206, 0.08);

    /* Borders & Shadows */
    --border-linen: #E4E4E7;
    --border-dark: #27272A;
    --border-blue: rgba(0, 114, 206, 0.25);

    --shadow-card: 0 4px 20px -2px rgba(15, 15, 15, 0.05);
    --shadow-elev: 0 16px 36px -6px rgba(15, 15, 15, 0.08);
    --shadow-blue: 0 8px 25px rgba(0, 114, 206, 0.25);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-paper);
}

body {
    background-color: var(--bg-paper);
    color: var(--text-ink);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-ink);
    letter-spacing: -0.03em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
    background: var(--bg-dark);
    color: var(--text-paper);
    padding: 10px 0;
    font-size: 0.82rem;
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dot-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--virezo-cyan);
    box-shadow: 0 0 10px var(--virezo-cyan);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #A1A1AA;
}

.top-bar-right a:hover {
    color: var(--virezo-cyan);
}

/* ==========================================================================
   HEADER & NAVBAR (NAV-BLUR)
   ========================================================================== */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-linen);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 98px;
}

.logo-brand, .site-branding, .custom-logo-link {
    display: inline-flex;
    align-items: center;
    background: transparent !important;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}

.logo-brand img, .custom-logo-link img {
    height: 84px !important;
    max-height: 88px !important;
    width: auto;
    object-fit: contain;
    background: transparent !important;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-item-link {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-soot);
    position: relative;
    padding: 4px 0;
}

.nav-item-link:hover, .nav-item-link.active {
    color: var(--virezo-blue);
}

.nav-item-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--virezo-blue);
    transition: var(--transition-fast);
}

.nav-item-link:hover::after, .nav-item-link.active::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-pill-group {
    display: flex;
    align-items: center;
    background: var(--bg-bone);
    border: 1px solid var(--border-linen);
    border-radius: 9999px;
    padding: 3px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
}

.lang-btn {
    padding: 4px 10px;
    border-radius: 9999px;
    color: var(--text-stone);
    cursor: pointer;
    border: none;
    background: transparent;
    transition: var(--transition-fast);
}

.lang-btn.active {
    background: var(--virezo-blue);
    color: #FFFFFF;
}

/* Virezo Buttons - Matched to Logo Blue */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 28px;
    border-radius: 9999px;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--virezo-blue);
    color: #FFFFFF;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--virezo-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 114, 206, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text-ink);
    border: 1px solid var(--border-linen);
}

.btn-ghost:hover {
    border-color: var(--virezo-blue);
    color: var(--virezo-blue);
    transform: translateY(-2px);
}

.arrow-nudge {
    transition: transform 0.2s ease;
}

.btn:hover .arrow-nudge {
    transform: translateX(4px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 80px 0 110px 0;
    background: var(--bg-paper);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.eyebrow-tag {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--virezo-blue);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--virezo-blue);
}

.hero-heading {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-ink);
}

.hero-desc {
    font-size: 1.12rem;
    color: var(--text-slate);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hero Showcase Image & Badge */
.hero-showcase {
    position: relative;
}

.hero-image-box {
    aspect-ratio: 4/5;
    width: 100%;
    max-width: 460px;
    background: var(--bg-bone);
    border: 1px solid var(--border-linen);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-elev);
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-badge {
    position: absolute;
    bottom: -24px;
    left: -32px;
    background: var(--bg-card);
    border: 1px solid var(--border-linen);
    border-radius: 14px;
    padding: 18px 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 260px;
}

.badge-pulse-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--virezo-blue);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-val {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-ink);
}

.badge-sub {
    font-size: 0.78rem;
    color: var(--text-stone);
}

/* ==========================================================================
   STAT GRID SECTION
   ========================================================================== */
.stat-section {
    background: var(--bg-bone);
    border-top: 1px solid var(--border-linen);
    border-bottom: 1px solid var(--border-linen);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 44px 28px;
    border-right: 1px solid var(--border-linen);
}

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

.stat-val {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--virezo-blue);
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-unit {
    color: var(--text-stone);
    font-size: 2.2rem;
}

.stat-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-stone);
    margin-top: 12px;
}

.stat-subtext {
    font-size: 0.8rem;
    color: #A1A1AA;
    margin-top: 4px;
}

/* ==========================================================================
   CATALOG GRID (CLEAN CARDS WITHOUT NUMBER TAGS)
   ========================================================================== */
.catalog-section {
    background: var(--bg-paper);
    padding: 120px 0;
}

.catalog-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 64px;
}

.catalog-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 12px;
}

.catalog-desc {
    font-size: 1.05rem;
    color: var(--text-slate);
    line-height: 1.7;
}

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

.cat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-linen);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 290px;
    transition: var(--transition-fast);
}

.cat-card:hover {
    border-color: var(--virezo-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.cat-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cat-icon-area {
    margin: 16px 0 20px 0;
    height: 56px;
    display: flex;
    align-items: flex-end;
    color: var(--virezo-blue);
}

.cat-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-ink);
}

.cat-card-desc {
    font-size: 0.88rem;
    color: var(--text-slate);
    line-height: 1.6;
}

/* ==========================================================================
   QUOTE FORM SECTION
   ========================================================================== */
.quote-section {
    background: var(--bg-bone);
    border-top: 1px solid var(--border-linen);
    padding: 110px 0;
}

.quote-box {
    background: var(--bg-card);
    border: 1px solid var(--border-linen);
    border-radius: 20px;
    padding: 56px;
    box-shadow: var(--shadow-elev);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.quote-sub {
    font-size: 1.05rem;
    color: var(--text-slate);
    margin-bottom: 32px;
}

.yomax-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soot);
}

.field-input, .field-select, .field-textarea {
    width: 100%;
    background: var(--bg-paper);
    border: 1px solid var(--border-linen);
    padding: 14px 18px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-ink);
    outline: none;
    transition: var(--transition-fast);
}

.field-input:focus, .field-select:focus, .field-textarea:focus {
    border-color: var(--virezo-blue);
    background: #FFFFFF;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-paper);
    padding: 80px 0 36px 0;
    font-family: var(--font-display);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.footer-text {
    color: #A1A1AA;
    font-size: 0.9rem;
    font-family: var(--font-body);
    margin-bottom: 24px;
}

.footer-head {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.88rem;
}

.footer-ul a {
    color: #A1A1AA;
}

.footer-ul a:hover {
    color: var(--virezo-cyan);
}

.footer-btm {
    border-top: 1px solid var(--border-dark);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #71717A;
}

@media (max-width: 1024px) {
    .hero-grid, .catalog-header, .quote-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cat-grid, .stat-grid {
        grid-template-columns: 1fr;
    }
    .hero-heading {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   HERO ACTIVITY CARD SLIDER (PROMINENT & EXPANDED LIGHT BLUE ACCENT)
   ========================================================================== */
.hero-full-showcase {
    max-width: 1140px;
    margin: 0 auto;
}

.hero-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.hero-main-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-ink);
    letter-spacing: -0.03em;
    margin-top: 8px;
}

.hero-slider-large {
    background: linear-gradient(145deg, #F0F7FF 0%, #E3F1FF 100%);
    border: 2px solid rgba(0, 114, 206, 0.25);
    border-radius: 28px;
    padding: 36px 40px;
    box-shadow: 0 25px 60px -12px rgba(0, 114, 206, 0.16), 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.hero-slider-large::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 114, 206, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.slider-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1.5px solid rgba(0, 114, 206, 0.16);
}

.slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--virezo-blue);
    text-transform: uppercase;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 114, 206, 0.3);
    background: #FFFFFF;
    color: var(--virezo-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 114, 206, 0.08);
}

.slider-arrow:hover {
    background: var(--virezo-blue);
    color: #FFFFFF;
    border-color: var(--virezo-blue);
    transform: scale(1.08);
}

.activity-slides-wrapper {
    position: relative;
    min-height: 280px;
    margin: 24px 0;
}

.activity-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.98);
    transition: all 0.45 cubic-bezier(0.16, 1, 0.3, 1);
}

.activity-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.slide-inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.slide-image-box-lg {
    width: 100%;
    aspect-ratio: 16/10;
    max-height: 220px;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 18px;
    border: 1.5px solid rgba(0, 114, 206, 0.2);
    box-shadow: 0 10px 25px -5px rgba(0, 114, 206, 0.12);
}

.slide-image-box-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-slider-large:hover .slide-image-box-lg img {
    transform: scale(1.04);
}

.slide-tag-pill {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--virezo-blue);
    background: rgba(0, 114, 206, 0.12);
    padding: 5px 14px;
    border-radius: 9999px;
    margin-bottom: 14px;
}

.slide-icon-box-lg {
    margin-bottom: 14px;
    color: var(--virezo-blue);
}

.slide-title-lg {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-ink);
    line-height: 1.2;
    margin-bottom: 14px;
}

.slide-desc-lg {
    font-size: 1.02rem;
    color: var(--text-slate);
    line-height: 1.65;
}

.slide-features-head {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--virezo-blue);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.slide-bullets-lg {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.slide-bullets-lg li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-soot);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.slide-bullets-lg li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.slide-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.slider-footer-lg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1.5px solid rgba(0, 114, 206, 0.16);
    margin-top: 20px;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 114, 206, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    width: 32px;
    border-radius: 9999px;
    background: var(--virezo-blue);
}

.slider-hint {
    font-size: 0.84rem;
    color: var(--text-stone);
    font-weight: 500;
}

@media (max-width: 900px) {
    .slide-inner-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero-main-title {
        font-size: 2.1rem;
    }
    .hero-slider-large {
        padding: 24px;
    }
    .slider-hint {
        display: none;
    }
}

/* ==========================================================================
   BRANDS SECTION
   ========================================================================== */
.brands-section {
    background: var(--bg-paper);
    padding: 90px 0;
    border-bottom: 1px solid var(--border-linen);
}

.brands-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.brands-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 14px;
}

.brands-subtitle {
    font-size: 1rem;
    color: var(--text-slate);
}

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

.brand-card {
    background: #FFFFFF;
    border: 1px solid var(--border-linen);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.brand-card:hover {
    border-color: var(--virezo-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 114, 206, 0.12);
}

.brand-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 114, 206, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--text-ink);
    margin-bottom: 6px;
}

.brand-domain {
    font-size: 0.82rem;
    color: var(--text-stone);
    font-weight: 500;
}

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

@media (max-width: 640px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CLIENTS MARQUEE SECTION
   ========================================================================== */
.clients-section {
    background: var(--bg-bone);
    padding: 80px 0;
    overflow: hidden;
}

.clients-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.clients-title {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 10px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 16px 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: inline-flex;
    gap: 20px;
    animation: scroll-marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 1.5px solid var(--border-linen);
    padding: 14px 28px;
    border-radius: 9999px;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-soot);
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.client-pill:hover {
    border-color: var(--virezo-blue);
    color: var(--virezo-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 114, 206, 0.15);
}

.client-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--virezo-blue);
}

