/* PAGE 10: WHY HIRE - SAAS INTERACTIVE CURSOR EFFECT */
.why-hire-page {
    background-color: #0a0c10;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem var(--container-padding);
    position: relative;
    overflow: hidden;
}

/* Canvas overlay for interactive cursor particles & spotlight glow */
#cursor-canvas-page10 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Subtle SaaS grid pattern */
.why-hire-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

/* Mouse spotlight glow element */
.mouse-spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.18) 0%, rgba(0, 176, 122, 0.08) 40%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: width 0.3s ease, height 0.3s ease;
    filter: blur(20px);
}

.why-hire-content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.why-hire-header {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-emerald);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-hire-header::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--color-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-emerald);
}

.value-statement {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.1rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.value-statement:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 176, 122, 0.4);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 176, 122, 0.1);
}

.value-statement span {
    font-size: 1.5rem;
    color: var(--color-emerald);
    font-weight: 700;
    width: 32px;
    height: 32px;
    background: rgba(0, 176, 122, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-statement h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-family: var(--font-editorial);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

.bold-conclusion {
    margin-top: 1.5rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: var(--font-editorial);
    font-weight: 700;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, #00b07a 50%, #0055ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: right;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
