/* #region hero */
/* v2- medical credentialing-hero */

:root {
    --v2-cred-hero-purple-dark: #391D77;
    --v2-cred-hero-purple-mid: #5C1BB3;
    --v2-cred-hero-purple-light: rgba(92, 27, 179, 0.08);
    --v2-cred-hero-coral: #ff5757;
    --v2-cred-hero-transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-cred-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F8F6FA 0%, #FFFFFF 50%, #F8F6FA 100%);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

/* Background layers */
.v2-cred-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.v2-cred-hero-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(92, 27, 179, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.v2-cred-hero-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background-image: radial-gradient(circle, rgba(92, 27, 179, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
}

.v2-cred-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.v2-cred-hero-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(92, 27, 179, 0.2);
    top: 10%;
    right: 25%;
}

.v2-cred-hero-orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 87, 87, 0.15);
    bottom: 20%;
    left: 5%;
}

.v2-cred-hero-ring {
    position: absolute;
    border: 2px solid rgba(92, 27, 179, 0.15);
    border-radius: 50%;
}

.v2-cred-hero-ring-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
}

.v2-cred-hero-ring-2 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: -50px;
    border-color: rgba(255, 87, 87, 0.15);
}

/* Container */
.v2-cred-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left content */
.v2-cred-hero-content {
    max-width: 650px;
}

.v2-cred-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--v2-cred-hero-purple-light);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--v2-cred-hero-purple-mid);
    margin-bottom: 2rem;
}

.v2-cred-hero-eyebrow-icon {
    display: flex;
    color: var(--v2-cred-hero-coral);
}

.v2-cred-hero-headline {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--v2-cred-hero-purple-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.v2-cred-hero-highlight {
    position: relative;
    color: var(--v2-cred-hero-purple-mid);
}

.v2-cred-hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--v2-cred-hero-coral) 0%, rgba(255, 87, 87, 0.3) 100%);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.4;
}

.v2-cred-hero-subheading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--v2-cred-hero-purple-mid);
    margin-bottom: 1rem;
}

.v2-cred-hero-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--v2-subheading);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

/* CTA buttons */
.v2-cred-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.v2-cred-hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--v2-cred-hero-coral);
    color: var(--v2-white);
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 87, 0.3);
}

.v2-cred-hero-cta-primary:hover {
    background: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 87, 0.4);
}

.v2-cred-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--v2-cred-hero-purple-mid);
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--v2-cred-hero-purple-mid);
    transition: all 0.3s ease;
}

.v2-cred-hero-cta-secondary:hover {
    background: var(--v2-cred-hero-purple-mid);
    color: var(--v2-white);
    transform: translateY(-2px);
}

/* Trust indicators */
.v2-cred-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.v2-cred-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-cred-hero-purple-dark);
}

.v2-cred-hero-trust-item svg {
    color: var(--v2-cred-hero-coral);
}

/* Right visual */
.v2-cred-hero-visual {
    position: relative;
}

.v2-cred-hero-visual-wrapper {
    position: relative;
    border-radius: var(--v2-radius-lg);
    overflow: visible;
}

.v2-cred-hero-centerpiece {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--v2-cred-hero-purple-dark) 0%, var(--v2-cred-hero-purple-mid) 100%);
    border-radius: var(--v2-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-white);
    box-shadow: 0 30px 60px rgba(57, 29, 119, 0.3);
}

.v2-cred-hero-centerpiece svg {
    width: 180px;
    height: 180px;
    stroke-width: 1.5;
}

/* Floating cards */
.v2-cred-hero-float-card {
    position: absolute;
    background: var(--v2-white);
    border-radius: var(--v2-radius-md);
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(57, 29, 119, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.v2-cred-hero-float-card-1 {
    top: 30px;
    left: -30px;
    animation-delay: 0s;
}

.v2-cred-hero-float-card-2 {
    bottom: 30px;
    right: -30px;
    animation-delay: 2s;
}

.v2-cred-hero-float-icon {
    width: 40px;
    height: 40px;
    background: var(--v2-cred-hero-purple-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-cred-hero-purple-mid);
}

.v2-cred-hero-float-content {
    display: flex;
    flex-direction: column;
}

.v2-cred-hero-float-label {
    font-size: 0.75rem;
    color: var(--v2-subheading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v2-cred-hero-float-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--v2-cred-hero-purple-dark);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Decorative elements */
.v2-cred-hero-deco-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--v2-cred-hero-coral);
    border-radius: 50%;
    bottom: -20px;
    left: -30px;
    z-index: -1;
    opacity: 0.5;
}

.v2-cred-hero-deco-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    top: -20px;
    right: -20px;
    background-image: radial-gradient(circle, var(--v2-cred-hero-purple-mid) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.3;
}

.v2-cred-hero-deco-line {
    position: absolute;
    top: 50%;
    left: -80px;
    width: 100px;
    height: 2px;
    background: var(--v2-cred-hero-coral);
    z-index: -1;
    transform: rotate(45deg);
}

/* Info bar */
.v2-cred-hero-info-bar {
    background: var(--v2-cred-hero-purple-mid);
    border-radius: var(--v2-radius-md);
    padding: 1.5rem 2rem;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(92, 27, 179, 0.3);
}

.v2-cred-hero-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v2-cred-hero-info-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--v2-white);
}

.v2-cred-hero-info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v2-cred-hero-info-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Scroll indicator */
.v2-cred-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.v2-cred-hero-scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--v2-cred-hero-purple-mid) 0%, transparent 100%);
}

.v2-cred-hero-scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-cred-hero-purple-mid);
    font-weight: 600;
}

/* Animations */
.v2-cred-hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.v2-cred-hero-content.v2-loaded > * {
    opacity: 1;
    transform: translateY(0);
}

.v2-cred-hero-content.v2-loaded > *:nth-child(1) { transition-delay: 0.1s; }
.v2-cred-hero-content.v2-loaded > *:nth-child(2) { transition-delay: 0.2s; }
.v2-cred-hero-content.v2-loaded > *:nth-child(3) { transition-delay: 0.3s; }
.v2-cred-hero-content.v2-loaded > *:nth-child(4) { transition-delay: 0.4s; }
.v2-cred-hero-content.v2-loaded > *:nth-child(5) { transition-delay: 0.5s; }
.v2-cred-hero-content.v2-loaded > *:nth-child(6) { transition-delay: 0.6s; }

.v2-cred-hero-visual {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.v2-cred-hero-visual.v2-loaded {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .v2-cred-hero-container {
        gap: 3rem;
    }

    .v2-cred-hero-float-card-1 {
        left: -10px;
    }

    .v2-cred-hero-float-card-2 {
        right: -10px;
    }
}

@media (max-width: 1023px) {
    .v2-cred-hero {
        padding: 6rem 0 3rem;
    }

    .v2-cred-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .v2-cred-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .v2-cred-hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-cred-hero-body {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-cred-hero-ctas {
        justify-content: center;
    }

    .v2-cred-hero-trust {
        justify-content: center;
    }

    .v2-cred-hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .v2-cred-hero-info-bar {
        margin-top: -20px;
    }
}

@media (max-width: 767px) {
    .v2-cred-hero {
        padding: 5rem 0 2rem;
    }

    .v2-cred-hero-headline {
        font-size: 2.2rem;
    }

    .v2-cred-hero-subheading {
        font-size: 1.2rem;
    }

    .v2-cred-hero-body {
        font-size: 1rem;
    }

    .v2-cred-hero-ctas {
        flex-direction: column;
    }

    .v2-cred-hero-cta-primary,
    .v2-cred-hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .v2-cred-hero-trust {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .v2-cred-hero-centerpiece {
        height: 300px;
    }

    .v2-cred-hero-centerpiece svg {
        width: 140px;
        height: 140px;
    }

    .v2-cred-hero-float-card {
        padding: 0.5rem 0.75rem;
    }

    .v2-cred-hero-float-card-1 {
        left: 10px;
    }

    .v2-cred-hero-float-card-2 {
        right: 10px;
    }

    .v2-cred-hero-info-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .v2-cred-hero-info-divider {
        width: 100%;
        height: 1px;
    }

    .v2-cred-hero-scroll {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-cred-hero-content > *,
    .v2-cred-hero-visual {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .v2-cred-hero-float-card {
        animation: none;
    }
}

.v2-cred-hero-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.v2-cred-hero-cta-primary,
.v2-cred-hero-cta-secondary {
    position: relative;
    overflow: hidden;
}

/* #endregion hero */

/* #region challenges */
/* {{-- v2-credentialing-challenges --}} */
/* public/front/css/v2/v2-credentialing-challenges.css */

:root {
    --v2-challenges-purple-dark: #391D77;
    --v2-challenges-purple-mid: #5C1BB3;
    --v2-challenges-coral: #ff5757;
    --v2-challenges-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-challenges-section {
    background: linear-gradient(135deg, var(--v2-challenges-purple-dark) 0%, #2A1558 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.v2-challenges-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 87, 87, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-challenges-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(92, 27, 179, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-challenges-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.v2-challenges-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
}

.v2-challenges-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-challenges-coral);
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--v2-challenges-coral);
}

.v2-challenges-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--v2-white);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.v2-challenges-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Grid */
.v2-challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Card */
.v2-challenge-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--v2-radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.v2-challenge-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.v2-challenge-icon {
    margin-bottom: 1rem;
    color: var(--v2-challenges-coral);
}

.v2-challenge-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--v2-white);
    margin-bottom: 0.75rem;
}

.v2-challenge-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1023px) {
    .v2-challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .v2-challenges-section {
        padding: 3rem 0;
    }

    .v2-challenges-heading {
        font-size: 1.8rem;
    }

    .v2-challenges-body {
        font-size: 1rem;
    }

    .v2-challenges-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .v2-challenge-card {
        padding: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-challenge-card,
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* #endregion challenges */


/* #region SERVICE */
/* v2- medical credentialing-service */
:root {
    --v2-cred-svc-purple-dark: #391d77;
    --v2-cred-svc-purple-mid: #5c1bb3;
    --v2-cred-svc-purple-light: rgba(92, 27, 179, 0.08);
    --v2-cred-svc-coral: #ff5757;
    --v2-cred-svc-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-cred-service-section {
    background: var(--v2-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.v2-cred-service-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(92, 27, 179, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.v2-cred-service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.v2-cred-service-content {
    max-width: 600px;
}

.v2-cred-service-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-cred-svc-coral);
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--v2-cred-svc-coral);
}

.v2-cred-service-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--v2-cred-svc-purple-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.v2-cred-service-paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--v2-subheading);
    margin-bottom: 2rem;
}

/* List */
.v2-cred-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.v2-cred-service-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: var(--v2-heading);
    font-weight: 500;
}

.v2-cred-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C1BB3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: cover;
}

/* Callout */
.v2-cred-service-callout {
    display: flex;
    gap: 1rem;
    background: var(--v2-cred-svc-purple-light);
    border-left: 4px solid var(--v2-cred-svc-purple-mid);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--v2-radius-md) var(--v2-radius-md) 0;
    margin-bottom: 2rem;
}

.v2-cred-service-callout-icon {
    flex-shrink: 0;
    color: var(--v2-cred-svc-purple-mid);
    margin-top: 0.25rem;
}

.v2-cred-service-callout p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--v2-heading);
    margin: 0;
    font-weight: 500;
}

/* Link */
.v2-cred-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--v2-cred-svc-purple-mid);
    text-decoration: none;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.v2-cred-service-link:hover {
    color: var(--v2-cred-svc-coral);
    gap: 0.75rem;
}

/* Right Visual */
.v2-cred-service-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.v2-cred-service-visual-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--v2-cred-svc-purple-light);
    border-radius: 50%;
    z-index: 0;
}

/* Central Process Circle */
.v2-cred-service-process {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v2-cred-service-process-circle {
    width: 180px;
    height: 180px;
    background: var(--v2-cred-svc-purple-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-white);
    box-shadow: 0 20px 40px rgba(92, 27, 179, 0.3);
    margin-bottom: 1rem;
}

.v2-cred-service-process-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--v2-cred-svc-purple-dark);
    text-align: center;
}

/* Floating Badges */
.v2-cred-service-badge {
    position: absolute;
    background: var(--v2-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--v2-radius-md);
    box-shadow: 0 8px 24px rgba(92, 27, 179, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--v2-cred-svc-purple-dark);
    z-index: 2;
    animation: floatBadge 6s ease-in-out infinite;
}

.v2-cred-service-badge-icon {
    color: var(--v2-cred-svc-coral);
}

.v2-cred-service-badge-1 {
    top: 10%;
    left: -10px;
    animation-delay: 0s;
}

.v2-cred-service-badge-2 {
    top: 30%;
    right: -20px;
    animation-delay: 2s;
}

.v2-cred-service-badge-3 {
    bottom: 20%;
    left: -20px;
    animation-delay: 4s;
}

.v2-cred-service-badge-4 {
    bottom: 10%;
    right: -10px;
    animation-delay: 1s;
}

@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Decorative Elements */
.v2-cred-service-deco-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--v2-cred-svc-coral);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    opacity: 0.3;
    z-index: 1;
}

.v2-cred-service-deco-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 10%;
    background-image: radial-gradient(
        circle,
        var(--v2-cred-svc-purple-mid) 2px,
        transparent 2px
    );
    background-size: 16px 16px;
    opacity: 0.2;
    z-index: 1;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1023px) {
    .v2-cred-service-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .v2-cred-service-content {
        max-width: 100%;
        text-align: left;
    }

    .v2-cred-service-list {
        grid-template-columns: 1fr;
    }

    .v2-cred-service-callout {
        text-align: left;
    }

    .v2-cred-service-visual {
        margin-top: 2rem;
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .v2-cred-service-section {
        padding: 3rem 0;
    }

    .v2-cred-service-heading {
        font-size: 1.8rem;
    }

    .v2-cred-service-paragraph {
        font-size: 1rem;
    }

    .v2-cred-service-list li {
        font-size: 0.95rem;
    }

    .v2-cred-service-visual {
        min-height: 300px;
    }

    .v2-cred-service-process-circle {
        width: 140px;
        height: 140px;
    }

    .v2-cred-service-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-cred-service-badge {
        animation: none;
    }

    [data-reveal] {
        transition: none;
        opacity: 1;
        transform: none;
    }
}
/* #endregion */

/* #region delivers */
/* medical credentialing delivers */
/* public/front/css/v2/v2-credentialing-delivers.css */

:root {
    --v2-cd-purple-dark: #391D77;
    --v2-cd-purple-mid: #5C1BB3;
    --v2-cd-coral: #ff5757;
    --v2-cd-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-cd-section {
    background: linear-gradient(135deg, var(--v2-cd-purple-dark) 0%, #2A1558 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.v2-cd-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 87, 87, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-cd-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(92, 27, 179, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-cd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.v2-cd-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.v2-cd-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-cd-coral);
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--v2-cd-coral);
}

.v2-cd-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--v2-white);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.v2-cd-subheading {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Grid */
.v2-cd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Card */
.v2-cd-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--v2-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.v2-cd-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.v2-cd-icon {
    margin-bottom: 1.5rem;
    color: var(--v2-cd-coral);
}

.v2-cd-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--v2-white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.v2-cd-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--v2-white);
    margin-bottom: 0.75rem;
}

.v2-cd-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1023px) {
    .v2-cd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .v2-cd-section {
        padding: 3rem 0;
    }

    .v2-cd-heading {
        font-size: 1.8rem;
    }

    .v2-cd-subheading {
        font-size: 1rem;
    }

    .v2-cd-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .v2-cd-card {
        padding: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-cd-card,
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
/* #endregion delivers*/

/* #region why  */
/* {{-- v2-why-choose-credentialing --}} */
:root {
    --v2-wc-purple-dark: #391D77;
    --v2-wc-purple-mid: #5C1BB3;
    --v2-wc-purple-light: rgba(92, 27, 179, 0.08);
    --v2-wc-coral: #ff5757;
    --v2-wc-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-wc-section {
    background: var(--v2-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.v2-wc-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(92, 27, 179, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-wc-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 87, 87, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-wc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.v2-wc-header {
    max-width: 700px;
    margin-bottom: 3rem;
}

.v2-wc-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-wc-coral);
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--v2-wc-coral);
}

.v2-wc-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--v2-wc-purple-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.v2-wc-subheading {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--v2-subheading);
    font-weight: 400;
}

/* Grid */
.v2-wc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Card */
.v2-wc-card {
    background: linear-gradient(135deg, var(--v2-wc-purple-light) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(92, 27, 179, 0.1);
    border-radius: var(--v2-radius-lg);
    padding: 2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.v2-wc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--v2-wc-purple-mid), var(--v2-wc-coral));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.v2-wc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(92, 27, 179, 0.1);
    border-color: rgba(92, 27, 179, 0.3);
}

.v2-wc-card:hover::before {
    opacity: 1;
}

.v2-wc-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.v2-wc-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--v2-wc-purple-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-white);
    margin-bottom: 1.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.v2-wc-card:hover .v2-wc-card-icon {
    background: var(--v2-wc-coral);
    transform: scale(1.05);
}

.v2-wc-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--v2-wc-purple-dark);
    margin-bottom: 0.75rem;
}

.v2-wc-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--v2-subheading);
    margin: 0;
}

/* Banner (End-to-End Service) */
.v2-wc-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--v2-wc-purple-dark);
    border-radius: var(--v2-radius-lg);
    padding: 2rem 2.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.v2-wc-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 87, 87, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-wc-banner-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-wc-coral);
}

.v2-wc-banner-content {
    position: relative;
    z-index: 1;
}

.v2-wc-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--v2-white);
    margin-bottom: 0.5rem;
}

.v2-wc-banner-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1023px) {
    .v2-wc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .v2-wc-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem;
    }

    .v2-wc-banner-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767px) {
    .v2-wc-section {
        padding: 3rem 0;
    }

    .v2-wc-heading {
        font-size: 1.8rem;
    }

    .v2-wc-subheading {
        font-size: 1rem;
    }

    .v2-wc-card {
        padding: 1.5rem;
    }

    .v2-wc-card-title {
        font-size: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-wc-card,
    .v2-wc-card-icon,
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* #endregion why*/

/* #region process */
/* {{-- v2-credentialing-process --}} */

:root {
    --v2-cp-purple-dark: #391D77;
    --v2-cp-purple-mid: #5C1BB3;
    --v2-cp-purple-light: rgba(92, 27, 179, 0.08);
    --v2-cp-coral: #ff5757;
    --v2-cp-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-cp-section {
    background: var(--v2-bg); /* Light lavender */
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.v2-cp-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(92, 27, 179, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-cp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.v2-cp-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.v2-cp-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-cp-coral);
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--v2-cp-coral);
}

.v2-cp-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--v2-cp-purple-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.v2-cp-subheading {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--v2-subheading);
    font-weight: 400;
}

/* Timeline */
.v2-cp-timeline {
    position: relative;
    padding-left: 60px; /* space for marker */
}

.v2-cp-timeline::before {
    content: '';
    position: absolute;
    left: 25px; /* center of markers */
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--v2-cp-purple-mid) 0%, var(--v2-cp-coral) 100%);
    opacity: 0.3;
    z-index: 0;
}

/* Step */
.v2-cp-step {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: flex-start;
}

.v2-cp-step:last-child {
    margin-bottom: 0;
}

/* Marker */
.v2-cp-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--v2-white);
    border: 2px solid var(--v2-cp-purple-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-cp-purple-mid);
    box-shadow: 0 4px 12px rgba(92, 27, 179, 0.1);
    z-index: 1;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.v2-cp-step:hover .v2-cp-marker {
    background: var(--v2-cp-purple-mid);
    color: var(--v2-white);
    transform: scale(1.05);
}

.v2-cp-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--v2-cp-coral);
    color: var(--v2-white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-cp-marker svg {
    width: 20px;
    height: 20px;
}

/* Card */
.v2-cp-card {
    background: var(--v2-white);
    border-radius: var(--v2-radius-md);
    padding: 1.5rem 2rem;
    flex: 1;
    box-shadow: 0 4px 12px rgba(92, 27, 179, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-cp-step:hover .v2-cp-card {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(92, 27, 179, 0.12);
}

.v2-cp-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--v2-cp-purple-dark);
    margin-bottom: 1rem;
}

.v2-cp-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.v2-cp-step-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--v2-subheading);
}

.v2-cp-step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C1BB3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: cover;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 767px) {
    .v2-cp-section {
        padding: 3rem 0;
    }

    .v2-cp-heading {
        font-size: 1.8rem;
    }

    .v2-cp-subheading {
        font-size: 1rem;
    }

    .v2-cp-timeline {
        padding-left: 50px;
    }

    .v2-cp-marker {
        left: -50px;
        width: 40px;
        height: 40px;
    }

    .v2-cp-step-number {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        top: -6px;
        right: -6px;
    }

    .v2-cp-card {
        padding: 1.25rem 1.5rem;
    }

    .v2-cp-step-title {
        font-size: 1.1rem;
    }

    .v2-cp-step-list {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-cp-marker,
    .v2-cp-card,
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* #endregion process */

/* #region solutions */
/* v2-credentialing-solutions 2 */

:root {
    --v2-mcs-purple-dark: #391D77;
    --v2-mcs-purple-mid: #5C1BB3;
    --v2-mcs-purple-light: rgba(92, 27, 179, 0.08);
    --v2-mcs-coral: #ff5757;
    --v2-mcs-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-mcs-section {
    background: var(--v2-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.v2-mcs-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(92, 27, 179, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-mcs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.v2-mcs-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.v2-mcs-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-mcs-coral);
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--v2-mcs-coral);
}

.v2-mcs-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--v2-mcs-purple-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.v2-mcs-subheading {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--v2-subheading);
    font-weight: 400;
}

/* Grid */
.v2-mcs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

/* Card */
.v2-mcs-card {
    background: linear-gradient(180deg, var(--v2-white) 0%, var(--v2-mcs-purple-light) 100%);
    border: 1px solid rgba(92, 27, 179, 0.1);
    border-radius: var(--v2-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.v2-mcs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--v2-mcs-purple-mid), var(--v2-mcs-coral));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.v2-mcs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(92, 27, 179, 0.15);
    border-color: rgba(92, 27, 179, 0.3);
}

.v2-mcs-card:hover::before {
    opacity: 1;
}

/* Card Header */
.v2-mcs-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(92, 27, 179, 0.1);
}

.v2-mcs-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--v2-mcs-purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-mcs-purple-mid);
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.v2-mcs-card:hover .v2-mcs-card-icon {
    background: var(--v2-mcs-purple-mid);
    color: var(--v2-white);
}

.v2-mcs-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--v2-mcs-purple-dark);
    margin: 0;
}

/* Card List */
.v2-mcs-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.v2-mcs-card-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--v2-subheading);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.v2-mcs-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C1BB3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: cover;
}

.v2-mcs-card:hover .v2-mcs-card-list li {
    color: var(--v2-heading);
}

/* Card Footer */
.v2-mcs-card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(92, 27, 179, 0.1);
}

.v2-mcs-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--v2-mcs-purple-mid);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.v2-mcs-card-link:hover {
    color: var(--v2-mcs-coral);
    gap: 0.75rem;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1023px) {
    .v2-mcs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .v2-mcs-section {
        padding: 3rem 0;
    }

    .v2-mcs-heading {
        font-size: 1.8rem;
    }

    .v2-mcs-subheading {
        font-size: 1rem;
    }

    .v2-mcs-card {
        padding: 1.5rem;
    }

    .v2-mcs-card-title {
        font-size: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-mcs-card,
    .v2-mcs-card-icon,
    .v2-mcs-card-link,
    [data-reveal] {
        transition: none !important;
    }
}

/* #endregion solutions */

/* #region pricing */
/* {{-- v2-credentialing-pricing --}} */

:root {
    --v2-cpricing-purple-dark: #391D77;
    --v2-cpricing-purple-mid: #5C1BB3;
    --v2-cpricing-purple-light: rgba(92, 27, 179, 0.08);
    --v2-cpricing-coral: #ff5757;
    --v2-cpricing-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-cpricing-section {
    background: var(--v2-bg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.v2-cpricing-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(92, 27, 179, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-cpricing-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.v2-cpricing-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.v2-cpricing-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-cpricing-coral);
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--v2-cpricing-coral);
}

.v2-cpricing-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--v2-cpricing-purple-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.v2-cpricing-subheading {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--v2-subheading);
    font-weight: 400;
}

/* Grid */
.v2-cpricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

/* Card */
.v2-cpricing-card {
    background: var(--v2-white);
    border-radius: var(--v2-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(92, 27, 179, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-cpricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(92, 27, 179, 0.12);
}

/* Featured Card */
.v2-cpricing-featured {
    background: linear-gradient(135deg, var(--v2-cpricing-purple-dark) 0%, var(--v2-cpricing-purple-mid) 100%);
    border: none;
    color: var(--v2-white);
}

.v2-cpricing-featured:hover {
    box-shadow: 0 30px 60px rgba(92, 27, 179, 0.3);
}

.v2-cpricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--v2-cpricing-coral);
    color: var(--v2-white);
    padding: 0.35rem 1.5rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 87, 87, 0.3);
}

/* Card Inner */
.v2-cpricing-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Plan Title */
.v2-cpricing-plan-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--v2-cpricing-purple-dark);
    margin-bottom: 1.5rem;
}

.v2-cpricing-featured .v2-cpricing-plan-title {
    color: var(--v2-white);
}

/* Price */
.v2-cpricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.v2-cpricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--v2-cpricing-purple-mid);
}

.v2-cpricing-featured .v2-cpricing-currency {
    color: var(--v2-cpricing-coral);
}

.v2-cpricing-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--v2-cpricing-purple-dark);
}

.v2-cpricing-featured .v2-cpricing-amount {
    color: var(--v2-white);
}

.v2-cpricing-period {
    font-size: 0.9rem;
    color: var(--v2-subheading);
}

.v2-cpricing-featured .v2-cpricing-period {
    color: rgba(255, 255, 255, 0.8);
}

/* Features */
.v2-cpricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.v2-cpricing-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--v2-subheading);
}

.v2-cpricing-featured .v2-cpricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.v2-cpricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C1BB3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: cover;
}

.v2-cpricing-featured .v2-cpricing-features li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5757' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* CTA Buttons */
.v2-cpricing-cta {
    display: block;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--v2-cpricing-purple-light);
    color: var(--v2-cpricing-purple-mid);
    transition: background 0.3s ease, color 0.3s ease;
}

.v2-cpricing-cta:hover {
    background: var(--v2-cpricing-purple-mid);
    color: var(--v2-white);
}

.v2-cpricing-cta-primary {
    background: var(--v2-cpricing-coral);
    color: var(--v2-white);
}

.v2-cpricing-cta-primary:hover {
    background: #e74c3c;
}

/* Banner */
.v2-cpricing-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--v2-white);
    border: 2px dashed var(--v2-cpricing-purple-mid);
    border-radius: var(--v2-radius-lg);
    padding: 2rem 2.5rem;
}

.v2-cpricing-banner-content {
    flex: 1;
}

.v2-cpricing-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--v2-cpricing-purple-dark);
    margin-bottom: 0.5rem;
}

.v2-cpricing-banner-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--v2-subheading);
    margin: 0;
}

.v2-cpricing-banner-cta {
    flex-shrink: 0;
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--v2-cpricing-purple-mid);
    color: var(--v2-white);
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.v2-cpricing-banner-cta:hover {
    background: var(--v2-cpricing-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(92, 27, 179, 0.3);
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 767px) {
    .v2-cpricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .v2-cpricing-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .v2-cpricing-banner-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .v2-cpricing-card {
        padding: 1.5rem;
    }

    .v2-cpricing-amount {
        font-size: 2.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-cpricing-card,
    .v2-cpricing-cta,
    .v2-cpricing-banner-cta,
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
/* #endregion pricing*/

/* #region faq */
/* {{-- v2-credentialing-faq --}} */

/* public/front/css/v2/v2-faq.css */

:root {
    --v2-faq-bg: #ffffff;
    --v2-faq-pad: 4rem 0;
    --v2-faq-radius: var(--v2-radius-md);
    --v2-faq-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-faq-section {
    background: var(--v2-faq-bg);
    padding: var(--v2-faq-pad);
    position: relative;
}

.v2-faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.v2-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.v2-faq-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-cta);
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--v2-highlight);
}

.v2-faq-heading {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--v2-heading);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.v2-faq-subheading {
    font-size: 1.15rem;
    color: var(--v2-subheading);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Bar */
.v2-faq-search {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

.v2-faq-search-wrapper {
    position: relative;
}

.v2-faq-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--v2-subheading);
    pointer-events: none;
}

.v2-faq-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid rgba(92, 27, 179, 0.2);
    border-radius: var(--v2-radius-pill);
    background: var(--v2-white);
    font-family: var(--v2-font);
    font-size: 1rem;
    color: var(--v2-heading);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.v2-faq-search input:focus {
    outline: none;
    border-color: var(--v2-cta);
    box-shadow: 0 0 0 4px rgba(98, 34, 213, 0.1);
}

/* Layout */
.v2-faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Sidebar */
.v2-faq-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.v2-faq-sidebar-inner {
    padding: 1.5rem;
    background: var(--v2-bg);
    border-radius: var(--v2-radius-md);
    border: 1px solid rgba(92, 27, 179, 0.1);
}

.v2-faq-sidebar-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--v2-subheading);
    margin-bottom: 1rem;
}

.v2-faq-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2-faq-sidebar-list li {
    margin-bottom: 0.5rem;
}

.v2-faq-sidebar-list a {
    font-size: 0.95rem;
    color: var(--v2-heading);
    text-decoration: none;
    line-height: 1.4;
    padding: 0.25rem 0;
    display: block;
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.v2-faq-sidebar-list a:hover,
.v2-faq-sidebar-list a.v2-active {
    color: var(--v2-cta);
    padding-left: 0.5rem;
    border-left: 2px solid var(--v2-cta);
    margin-left: -2px;
}

/* FAQ List */
.v2-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Item */
.v2-faq-item {
    background: var(--v2-white);
    border: 1px solid rgba(92, 27, 179, 0.1);
    border-radius: var(--v2-faq-radius);
    overflow: hidden;
    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.v2-faq-item:hover {
    border-color: rgba(92, 27, 179, 0.3);
    box-shadow: 0 4px 12px rgba(92, 27, 179, 0.08);
}

.v2-faq-item.v2-open {
    border-color: var(--v2-cta);
    box-shadow: 0 8px 24px rgba(98, 34, 213, 0.1);
}

/* Question Button */
.v2-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--v2-font);
}

.v2-faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--v2-heading);
    line-height: 1.5;
}

.v2-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-cta);
    transition: transform 0.3s ease;
}

.v2-faq-item.v2-open .v2-faq-icon {
    transform: rotate(90deg);
}

/* Answer */
.v2-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        opacity 0.4s ease,
        padding 0.4s ease;
    opacity: 0;
    padding: 0 2rem;
}

.v2-faq-item.v2-open .v2-faq-answer {
    max-height: 1000px; /* large enough for content */
    opacity: 1;
    padding: 0 2rem 1.5rem;
}

.v2-faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--v2-subheading);
    margin: 0;
    padding-bottom: 0.5rem;
}

/* CTA */
.v2-faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--v2-heading-soft);
}

.v2-faq-cta p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--v2-heading);
    margin-bottom: 1rem;
}

.v2-faq-cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--v2-cta);
    color: var(--v2-white);
    border-radius: var(--v2-radius-pill);
    text-decoration: none;
    font-weight: 600;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.v2-faq-cta-btn:hover {
    background: var(--v2-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(98, 34, 213, 0.2);
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1023px) {
    .v2-faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .v2-faq-sidebar {
        position: static;
        display: none; /* Hide sidebar on tablet/mobile */
    }
}

@media (max-width: 767px) {
    .v2-faq-section {
        padding: 3rem 0;
    }

    .v2-faq-heading {
        font-size: 1.8rem;
    }

    .v2-faq-subheading {
        font-size: 1rem;
    }

    .v2-faq-question {
        padding: 1rem 1.5rem;
    }

    .v2-faq-question-text {
        font-size: 1rem;
    }

    .v2-faq-answer {
        padding: 0 1.5rem;
    }

    .v2-faq-item.v2-open .v2-faq-answer {
        padding: 0 1.5rem 1rem;
    }

    .v2-faq-cta {
        margin-top: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-faq-item,
    .v2-faq-icon,
    .v2-faq-answer,
    [data-reveal] {
        transition: none !important;
    }
}

/* #endregion faq */
