/* ============================================================
   HEX CLIENTS SECTION v2 — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Wrapper ── */
.hcv2-wrap {
    position: relative;
    background: #050510;
    overflow: hidden;
    padding: 80px 0;
    width: 100%;
}

/* ── Animated Blobs ── */
.hcv2-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(85px);
    z-index: 0;
}

.hcv2-blob--purple {
    width: 400px;
    height: 500px;
    background: radial-gradient(ellipse,
        rgba(139, 92, 246, 0.72) 0%,
        rgba(79, 70, 229, 0.35) 50%,
        transparent 75%);
    top: 0%;
    left: 42%;
    transform: translateX(-50%);
    animation: hcBlob1 9s ease-in-out infinite;
}

.hcv2-blob--blue {
    width: 360px;
    height: 460px;
    background: radial-gradient(ellipse,
        rgba(29, 78, 216, 0.78) 0%,
        rgba(30, 64, 175, 0.38) 50%,
        transparent 80%);
    bottom: 0%;
    left: 38%;
    transform: translateX(-50%);
    animation: hcBlob2 11s ease-in-out infinite;
}

.hcv2-blob--violet {
    width: 240px;
    height: 300px;
    background: radial-gradient(ellipse,
        rgba(109, 40, 217, 0.48) 0%,
        transparent 70%);
    top: 40%;
    right: 8%;
    filter: blur(70px);
    animation: hcBlob3 7s ease-in-out infinite;
}

@keyframes hcBlob1 {
    0%, 100% { transform: translateX(-50%) translate(0,0) scale(1); }
    33%       { transform: translateX(-50%) translate(22px,-32px) scale(1.10); }
    66%       { transform: translateX(-50%) translate(-14px,18px) scale(0.93); }
}
@keyframes hcBlob2 {
    0%, 100% { transform: translateX(-50%) translate(0,0) scale(1); }
    40%       { transform: translateX(-50%) translate(-18px,24px) scale(0.90); }
    75%       { transform: translateX(-50%) translate(16px,-16px) scale(1.07); }
}
@keyframes hcBlob3 {
    0%, 100% { transform: translate(0,0); }
    50%       { transform: translate(10px,-20px); }
}

/* ── Inner Grid ── */
.hcv2-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}

/* ── Left: Content ── */
.hcv2-left {
    padding-right: 16px;
}

.hcv2-eyebrow {
    font-family: 'DM Sans', sans-serif;
    color: rgba(160, 160, 200, 0.45);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 14px;
    line-height: 1.6;
}

.hcv2-eyebrow em {
    color: rgba(160, 160, 220, 0.75);
    font-style: normal;
}

.hcv2-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 105px);
    line-height: 0.92;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: 1px;
}

.hcv2-since {
    font-family: 'DM Sans', sans-serif;
    color: rgba(80, 80, 120, 0.8);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0 0 36px;
}

.hcv2-quote {
    font-family: 'DM Sans', sans-serif;
    color: rgba(160, 160, 200, 0.75);
    font-size: 13.5px;
    line-height: 1.78;
    border-left: 2px solid #4f46e5;
    padding-left: 18px;
    margin: 0 0 30px;
}

.hcv2-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hcv2-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    flex-shrink: 0;
    overflow: hidden;
}

.hcv2-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hcv2-author-name {
    font-family: 'DM Sans', sans-serif;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.hcv2-author-role {
    font-family: 'DM Sans', sans-serif;
    color: rgba(100, 100, 140, 0.9);
    font-size: 12px;
    margin: 3px 0 0;
}

/* ── Right: SVG ── */
.hcv2-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hcv2-svg-wrap {
    width: 100%;
    max-width: 420px;
}

.hcv2-svg-wrap svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Hex hover animation */
.hcv2-hex {
    transition: opacity 0.3s;
}
.hcv2-hex:hover {
    opacity: 0.88;
}
.hcv2-hex--on {
    animation: hcHexPulse 4s ease-in-out infinite;
}
.hcv2-hex--on:nth-child(2) { animation-delay: 0.6s; }
.hcv2-hex--on:nth-child(3) { animation-delay: 1.2s; }
.hcv2-hex--on:nth-child(4) { animation-delay: 0.3s; }
.hcv2-hex--on:nth-child(5) { animation-delay: 0.9s; }

@keyframes hcHexPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.82; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hcv2-inner {
        grid-template-columns: 1fr;
        padding: 0 28px;
        gap: 32px;
    }
    .hcv2-left { padding-right: 0; order: 2; }
    .hcv2-right { order: 1; }
    .hcv2-svg-wrap { max-width: 340px; margin: 0 auto; }
}

@media (max-width: 480px) {
    .hcv2-wrap { padding: 60px 0; }
    .hcv2-inner { padding: 0 20px; }
    .hcv2-svg-wrap { max-width: 280px; }
}
