.v2-who-serve {
position: relative;
overflow: hidden;
padding: 70px 0 70px;
background: #ffffff;
color: var(--v2-ink, #211b33);
}

.v2-who-serve__pattern {
position: absolute;
top: 0;
right: 0;
width: 42%;
height: 100%;
opacity: 0.55;
pointer-events: none;
background-image:
linear-gradient(
rgba(92, 27, 179, 0.045) 1px,
transparent 1px
),
linear-gradient(
90deg,
rgba(92, 27, 179, 0.045) 1px,
transparent 1px
);
background-size: 56px 56px;
mask-image: linear-gradient(
90deg,
transparent,
rgba(0, 0, 0, 1)
);
}

.v2-who-serve__container {
position: relative;
z-index: 2;
width: min(1180px, calc(100% - 48px));
margin: 0 auto;
}

/* =========================================================
HEADER
========================================================= */

.v2-who-serve__header {
max-width: 760px;
margin: 0 auto 48px;
text-align: center;
}

.v2-who-serve__eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
color: var(--v2-logo, #5C1BB3);
font-size: 10px;
font-weight: 800;
line-height: 1;
letter-spacing: 0.19em;
text-transform: uppercase;
}

.v2-who-serve__eyebrow::before,
.v2-who-serve__eyebrow::after {
content: "";
width: 18px;
height: 1px;
background: var(--v2-highlight, #ff5757);
}

.v2-who-serve__header h2 {
margin: 0;
color: var(--v2-heading, #391D77);
font-size: clamp(32px, 3.4vw, 48px);
font-weight: 750;
line-height: 1.12;
letter-spacing: -0.045em;
}

.v2-who-serve__header h2 span {
color: var(--v2-logo, #5C1BB3);
}

.v2-who-serve__header p {
max-width: 630px;
margin: 18px auto 0;
color: var(--v2-subheading, #625E65);
font-size: 15px;
line-height: 1.75;
}

/* =========================================================
SPECIALTY SYSTEM
========================================================= */

.v2-who-serve__content {
width: min(930px, 100%);
margin: 0 auto;
}

.v2-who-serve__specialties {
border-top: 1px solid rgba(57, 29, 119, 0.13);
}

.v2-who-serve__specialty {
position: relative;
display: grid;
grid-template-columns: 70px minmax(0, 1fr) 42px;
align-items: center;
gap: 24px;
min-height: 80px;
padding: 18px 18px 18px 4px;
border-bottom: 1px solid rgba(57, 29, 119, 0.11);
transition:
background 260ms ease,
padding 260ms ease,
box-shadow 260ms ease;
}

.v2-who-serve__specialty::before {
content: "";
position: absolute;
left: 0;
top: 50%;
width: 3px;
height: 0;
border-radius: 999px;
background: var(--v2-highlight, #ff5757);
transform: translateY(-50%);
transition: height 260ms ease;
}

.v2-who-serve__specialty:hover {
padding-left: 18px;
background: rgba(92, 27, 179, 0.035);
box-shadow:
0 12px 30px rgba(57, 29, 119, 0.055);
}

.v2-who-serve__specialty:hover::before {
height: 58%;
}

.v2-who-serve__number {
color: rgba(92, 27, 179, 0.38);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.12em;
font-variant-numeric: tabular-nums;
}

.v2-who-serve__specialty-body {
min-width: 0;
}

.v2-who-serve__specialty-body h3 {
margin: 0;
color: var(--v2-heading, #391D77);
font-size: 17px;
font-weight: 700;
line-height: 1.45;
letter-spacing: -0.02em;
}

.v2-who-serve__specialty-body p {
max-width: 780px;
margin: 7px 0 0;
color: var(--v2-subheading, #625E65);
font-size: 13px;
line-height: 1.7;
}

.v2-who-serve__arrow {
width: 38px;
height: 38px;
display: grid;
place-items: center;
color: var(--v2-logo, #5C1BB3);
transition:
color 260ms ease,
transform 260ms ease;
}

.v2-who-serve__arrow svg {
width: 17px;
height: 17px;
}

.v2-who-serve__specialty:hover .v2-who-serve__arrow {
color: var(--v2-cta, #6222D5);
transform: translateX(3px);
}

/* =========================================================
CTA
========================================================= */

.v2-who-serve__cta {
display: flex;
align-items: center;
justify-content: center;
gap: 28px;
margin-top: 42px;
}

.v2-who-serve__cta-line {
width: 90px;
height: 1px;
background: linear-gradient(
90deg,
transparent,
rgba(92, 27, 179, 0.22)
);
}

.v2-who-serve__button {
display: inline-flex;
align-items: center;
gap: 13px;
min-height: 50px;
padding: 5px 6px 5px 22px;
border: 1px solid rgba(98, 34, 213, 0.18);
border-radius: 999px;
color: var(--v2-cta, #6222D5);
background: #ffffff;
box-shadow:
0 8px 24px rgba(57, 29, 119, 0.07);
text-decoration: none;
font-size: 13px;
font-weight: 750;
transition:
color 220ms ease,
background 220ms ease,
border-color 220ms ease,
transform 220ms ease,
box-shadow 220ms ease;
}

.v2-who-serve__button:hover {
color: #ffffff;
background: var(--v2-cta, #6222D5);
border-color: var(--v2-cta, #6222D5);
transform: translateY(-2px);
box-shadow:
0 14px 30px rgba(98, 34, 213, 0.2);
}

.v2-who-serve__button-icon {
width: 38px;
height: 38px;
display: grid;
place-items: center;
border-radius: 50%;
color: #ffffff;
background: var(--v2-cta, #6222D5);
transition:
background 220ms ease,
color 220ms ease,
transform 220ms ease;
}

.v2-who-serve__button-icon svg {
width: 17px;
height: 17px;
}

.v2-who-serve__button:hover .v2-who-serve__button-icon {
color: var(--v2-cta, #6222D5);
background: #ffffff;
transform: translateX(2px);
}

/* =========================================================
ACCESSIBILITY
========================================================= */

.v2-who-serve a:focus-visible {
outline: 2px solid var(--v2-highlight, #ff5757);
outline-offset: 4px;
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {
.v2-who-serve {
padding: 76px 0 78px;
}


.v2-who-serve__header {
    margin-bottom: 38px;
}

.v2-who-serve__specialty {
    grid-template-columns: 55px minmax(0, 1fr) 38px;
    gap: 18px;
}


}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {
.v2-who-serve {
padding: 62px 0 66px;
}

.v2-who-serve__container {
    width: min(100% - 34px, 620px);
}

.v2-who-serve__pattern {
    width: 75%;
}

.v2-who-serve__header {
    margin-bottom: 32px;
}

.v2-who-serve__header h2 {
    font-size: 31px;
    line-height: 1.15;
}

.v2-who-serve__header p {
    margin-top: 15px;
    font-size: 13px;
}

.v2-who-serve__specialty {
    grid-template-columns: 38px minmax(0, 1fr) 34px;
    gap: 12px;
    min-height: auto;
    padding: 19px 2px;
}

.v2-who-serve__specialty:hover {
    padding-left: 10px;
}

.v2-who-serve__number {
    font-size: 9px;
}

.v2-who-serve__specialty-body h3 {
    font-size: 14px;
}

.v2-who-serve__specialty-body p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.65;
}

.v2-who-serve__arrow {
    width: 32px;
    height: 32px;
}

.v2-who-serve__arrow svg {
    width: 14px;
    height: 14px;
}

.v2-who-serve__cta {
    margin-top: 32px;
}

.v2-who-serve__cta-line {
    display: none;
}

.v2-who-serve__button {
    width: 100%;
    justify-content: space-between;
    padding-left: 18px;
}


}

/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
.v2-who-serve__container {
width: calc(100% - 28px);
}


.v2-who-serve__header h2 {
    font-size: 28px;
}

.v2-who-serve__specialty {
    grid-template-columns: 31px minmax(0, 1fr) 30px;
    gap: 9px;
}

.v2-who-serve__specialty-body h3 {
    font-size: 13px;
}

.v2-who-serve__specialty-body p {
    font-size: 11px;
}


}

/* =========================================================
REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
.v2-who-serve *,
.v2-who-serve *::before,
.v2-who-serve *::after {
transition-duration: 0.01ms !important;
animation-duration: 0.01ms !important;
}
}
