/* ═══════════════════════════════════════════════════════
   WHITE LABEL BROKERAGE PLATFORM — Page Styles
   Prefix: wl-   (no conflicts with other pages)
   Target: B2B Enterprise Sales Page
   ═══════════════════════════════════════════════════════ */

/* ─── Background Canvas ─── */
.wl-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 20%, transparent 100%);
}

/* ─── Shared Section Base ─── */
.wl-section {
    position: relative;
    z-index: 10;
    padding: 80px 24px;
}

.wl-container {
    max-width: 1160px;
    margin: 0 auto;
}

.wl-section--alt {
    background: rgba(139, 92, 246, 0.018);
}

.wl-section--dark {
    background: rgba(0, 243, 255, 0.012);
}

/* ─── Section Header Pattern ─── */
.wl-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.wl-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan-neon);
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.16);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.wl-section-label-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan-neon);
    box-shadow: 0 0 8px var(--cyan-neon);
    animation: wlPulse 2s ease-in-out infinite;
}

@keyframes wlPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.65); }
}

.wl-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.wl-section-desc {
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ═══════════ 1. HERO ═══════════ */
.wl-hero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.wl-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0, 243, 255, 0.06) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}

.wl-hero__inner {
    position: relative;
    max-width: 880px;
    animation: wlFadeUp 1s ease-out both;
}

@keyframes wlFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wl-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan-neon);
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 10px 24px;
    border-radius: 100px;
    margin-bottom: 40px;
}

.wl-hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success-neon);
    box-shadow: 0 0 10px var(--success-neon);
    animation: wlPulse 2s ease-in-out infinite;
}

.wl-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.06;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 243, 255, 0.9) 55%, rgba(139, 92, 246, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wl-hero__subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 48px;
}

.wl-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.wl-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(0, 243, 255, 0.08));
    color: var(--cyan-neon);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 16px 36px;
    border-radius: 14px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wl-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.wl-btn-primary:hover::before { left: 100%; }
.wl-btn-primary:hover {
    border-color: rgba(0, 243, 255, 0.55);
    background: rgba(0, 243, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 243, 255, 0.12);
}

.wl-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 36px;
    border-radius: 14px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wl-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* Hero Architecture Diagram */
.wl-hero__diagram {
    margin-top: 72px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.wl-arch-preview {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.wl-arch-preview::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.3), transparent);
}

.wl-arch-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.wl-arch-node:hover {
    background: rgba(0, 243, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.15);
}

.wl-arch-node__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 243, 255, 0.07);
    border: 1px solid rgba(0, 243, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-neon);
}

.wl-arch-node__icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.7;
}

.wl-arch-node__label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.3;
}

/* ═══════════ 2. TRUST POSITIONING ═══════════ */
.wl-trust {
    position: relative;
    z-index: 10;
    padding: 80px 24px;
}

.wl-trust__container {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.wl-trust__content {}

.wl-trust__title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.wl-trust__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: none;
}

.wl-trust__identifiers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
}

.wl-trust-id {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.wl-trust-id:hover {
    background: rgba(0, 243, 255, 0.04);
    border-color: rgba(0, 243, 255, 0.12);
}

.wl-trust-id--active {
    background: rgba(0, 243, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.18);
}

.wl-trust-id__check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wl-trust-id--active .wl-trust-id__check {
    background: rgba(0, 243, 255, 0.12);
    color: var(--cyan-neon);
}

.wl-trust-id--inactive .wl-trust-id__check {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.2);
}

.wl-trust-id__check svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
}

.wl-trust-id__text {
    font-size: 0.9rem;
    font-weight: 500;
}

.wl-trust-id--active .wl-trust-id__text {
    color: rgba(255, 255, 255, 0.85);
}

.wl-trust-id--inactive .wl-trust-id__text {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.12);
}

.wl-trust__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wl-trust-badge {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
    border: 1px solid rgba(0, 243, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.wl-trust-badge::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(0, 243, 255, 0.15) 25%, transparent 50%);
    animation: wlSpin 12s linear infinite;
}

@keyframes wlSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.wl-trust-badge__icon {
    color: var(--cyan-neon);
    width: 52px;
    height: 52px;
}

.wl-trust-badge__label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan-neon);
    text-align: center;
    line-height: 1.6;
}

/* ═══════════ 3. WHY COREX ═══════════ */
.wl-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.wl-why-card {
    padding: 28px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.wl-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.35), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wl-why-card:hover::before { opacity: 1; }

.wl-why-card:hover {
    background: rgba(0, 243, 255, 0.04);
    border-color: rgba(0, 243, 255, 0.14);
    transform: translateY(-4px);
}

.wl-why-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 243, 255, 0.07);
    border: 1px solid rgba(0, 243, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-neon);
    margin-bottom: 18px;
}

.wl-why-card__icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}

.wl-why-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.wl-why-card__desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: none;
}

/* ═══════════ 4. PLATFORM FEATURES ═══════════ */
.wl-platform__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wl-feature-card {
    padding: 28px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.wl-feature-card:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.18);
    transform: translateY(-4px);
}

.wl-feature-card__num {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(139, 92, 246, 0.5);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.wl-feature-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(139, 92, 246, 0.07);
    border: 1px solid rgba(139, 92, 246, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-neon);
    margin-bottom: 16px;
}

.wl-feature-card__icon svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.8;
}

.wl-feature-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.wl-feature-card__desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: none;
}

.wl-feature-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.wl-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(139, 92, 246, 0.7);
    background: rgba(139, 92, 246, 0.07);
    border: 1px solid rgba(139, 92, 246, 0.12);
    padding: 3px 9px;
    border-radius: 6px;
}

/* ═══════════ 5. ARCHITECTURE ═══════════ */
.wl-arch {
    position: relative;
    z-index: 10;
    padding: 80px 24px;
}

.wl-arch__diagram {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.wl-arch-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 0;
}

.wl-arch-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 130px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.wl-arch-block:hover {
    border-color: rgba(0, 243, 255, 0.2);
    background: rgba(0, 243, 255, 0.04);
}

.wl-arch-block--primary {
    border-color: rgba(0, 243, 255, 0.2);
    background: rgba(0, 243, 255, 0.05);
    min-width: 200px;
}

.wl-arch-block--highlight {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.07);
}

.wl-arch-block--ai {
    border-color: rgba(0, 255, 157, 0.25);
    background: rgba(0, 255, 157, 0.04);
}

.wl-arch-block__icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wl-arch-block--primary .wl-arch-block__icon {
    background: rgba(0, 243, 255, 0.1);
    color: var(--cyan-neon);
}

.wl-arch-block:not(.wl-arch-block--primary):not(.wl-arch-block--highlight):not(.wl-arch-block--ai) .wl-arch-block__icon {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
}

.wl-arch-block--highlight .wl-arch-block__icon {
    background: rgba(139, 92, 246, 0.12);
    color: var(--purple-neon);
}

.wl-arch-block--ai .wl-arch-block__icon {
    background: rgba(0, 255, 157, 0.08);
    color: var(--success-neon);
}

.wl-arch-block__icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
}

.wl-arch-block__label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

.wl-arch-block--primary .wl-arch-block__label {
    color: var(--cyan-neon);
}

.wl-arch-block--highlight .wl-arch-block__label {
    color: var(--purple-neon);
}

.wl-arch-block--ai .wl-arch-block__label {
    color: var(--success-neon);
}

.wl-arch-connector {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, rgba(0, 243, 255, 0.25), rgba(0, 243, 255, 0.05));
    margin: 0 auto;
}

.wl-arch-connector--h {
    width: 28px;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    flex-shrink: 0;
}

/* ═══════════ 6. TECH STACK ═══════════ */
.wl-tech__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wl-tech-group {
    padding: 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wl-tech-group__title {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan-neon);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wl-tech-group__title::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--cyan-neon);
    opacity: 0.4;
}

.wl-tech-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wl-tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.wl-tech-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.4);
    flex-shrink: 0;
}

.wl-tech-item strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ═══════════ 7. BINARY OPTIONS ENGINE ═══════════ */
.wl-engine__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.wl-engine-card {
    padding: 24px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.wl-engine-card:hover {
    background: rgba(255, 76, 107, 0.04);
    border-color: rgba(255, 76, 107, 0.15);
    transform: translateY(-3px);
}

.wl-engine-card__num {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 76, 107, 0.45);
    margin-bottom: 12px;
}

.wl-engine-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 8px;
}

.wl-engine-card__desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.7;
    max-width: none;
}

/* ═══════════ 8. AI SECTION ═══════════ */
.wl-ai__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.wl-ai-card {
    padding: 32px 28px;
    border-radius: 16px;
    background: rgba(0, 255, 157, 0.025);
    border: 1px solid rgba(0, 255, 157, 0.1);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.wl-ai-card::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.3), transparent);
}

.wl-ai-card:hover {
    background: rgba(0, 255, 157, 0.04);
    border-color: rgba(0, 255, 157, 0.2);
}

.wl-ai-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-neon);
    margin-bottom: 18px;
}

.wl-ai-card__icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}

.wl-ai-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.wl-ai-card__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.75;
    max-width: none;
}

/* ═══════════ 9. DEPLOYMENT MODELS ═══════════ */
.wl-deploy__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.wl-deploy-card {
    padding: 28px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
}

.wl-deploy-card--featured {
    background: rgba(0, 243, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.2);
}

.wl-deploy-card--featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    background: var(--cyan-neon);
    color: var(--void-black);
    padding: 4px 14px;
    border-radius: 0 0 8px 8px;
}

.wl-deploy-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 243, 255, 0.2);
    background: rgba(0, 243, 255, 0.04);
}

.wl-deploy-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.12);
    color: var(--cyan-neon);
}

.wl-deploy-card__icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.7;
}

.wl-deploy-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.wl-deploy-card__desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.7;
    max-width: none;
}

/* ═══════════ 10. CUSTOMIZATION ═══════════ */
.wl-custom__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.wl-custom-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}

.wl-custom-item:hover {
    background: rgba(139, 92, 246, 0.04);
    border-color: rgba(139, 92, 246, 0.12);
}

.wl-custom-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.25);
    flex-shrink: 0;
    margin-top: 5px;
}

.wl-custom-item__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: none;
}

.wl-custom-item__text strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    display: block;
    margin-bottom: 3px;
}

/* ═══════════ 11. SECURITY ═══════════ */
.wl-security__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wl-security-card {
    padding: 28px 24px;
    border-radius: 16px;
    background: rgba(255, 76, 107, 0.025);
    border: 1px solid rgba(255, 76, 107, 0.08);
    transition: all 0.3s ease;
}

.wl-security-card:hover {
    background: rgba(255, 76, 107, 0.04);
    border-color: rgba(255, 76, 107, 0.18);
    transform: translateY(-3px);
}

.wl-security-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 76, 107, 0.07);
    border: 1px solid rgba(255, 76, 107, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF4C6B;
    margin-bottom: 16px;
}

.wl-security-card__icon svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.8;
}

.wl-security-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 8px;
}

.wl-security-card__desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.7;
    max-width: none;
}

/* ═══════════ 12. IMPLEMENTATION PROCESS ═══════════ */
.wl-process {
    position: relative;
    z-index: 10;
    padding: 80px 24px;
}

.wl-process__timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wl-process__line {
    position: absolute;
    left: 31px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom,
        rgba(0, 243, 255, 0.25),
        rgba(0, 243, 255, 0.08),
        transparent);
}

.wl-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    transition: all 0.3s ease;
}

.wl-step:last-child {
    border-bottom: none;
}

.wl-step:hover .wl-step__number {
    background: rgba(0, 243, 255, 0.12);
    border-color: rgba(0, 243, 255, 0.35);
    color: var(--cyan-neon);
}

.wl-step__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background: var(--void-black);
}

.wl-step__content {}

.wl-step__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 6px;
}

.wl-step__desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: none;
}

.wl-step__duration {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(0, 243, 255, 0.5);
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.12);
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ═══════════ 13. FAQ ═══════════ */
.wl-faq {
    position: relative;
    z-index: 10;
    padding: 80px 24px;
}

.wl-faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wl-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wl-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wl-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: inherit;
    text-align: left;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wl-faq-question:hover .wl-faq-question__text {
    color: rgba(255, 255, 255, 0.95);
}

.wl-faq-question__text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
    transition: color 0.2s ease;
}

.wl-faq-question__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wl-faq-question__icon svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.wl-faq-item.open .wl-faq-question__icon {
    background: rgba(0, 243, 255, 0.08);
    border-color: rgba(0, 243, 255, 0.2);
    color: var(--cyan-neon);
}

.wl-faq-item.open .wl-faq-question__icon svg {
    transform: rotate(45deg);
}

.wl-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wl-faq-item.open .wl-faq-answer {
    max-height: 300px;
}

.wl-faq-answer__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    padding-bottom: 24px;
    max-width: none;
}

/* ═══════════ 14. FINAL CTA ═══════════ */
.wl-cta {
    position: relative;
    z-index: 10;
    padding: 100px 24px 120px;
    text-align: center;
    overflow: hidden;
}

.wl-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 243, 255, 0.07) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
}

.wl-cta__inner {
    position: relative;
    max-width: 740px;
    margin: 0 auto;
}

.wl-cta__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan-neon);
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.16);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.wl-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 243, 255, 0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wl-cta__desc {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.wl-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.wl-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.18), rgba(0, 243, 255, 0.1));
    color: var(--cyan-neon);
    border: 1px solid rgba(0, 243, 255, 0.35);
    padding: 18px 44px;
    border-radius: 14px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wl-btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.12), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.wl-btn-cta:hover::before { transform: translateX(100%); }
.wl-btn-cta:hover {
    border-color: rgba(0, 243, 255, 0.6);
    background: rgba(0, 243, 255, 0.14);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 243, 255, 0.15), 0 0 80px rgba(0, 243, 255, 0.05);
}

.wl-cta__note {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.04em;
}

/* ─── Divider ─── */
.wl-divider {
    position: relative;
    z-index: 10;
    max-width: 1160px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
}

/* ═══════════ SCROLL REVEAL ═══════════ */
.wl-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.wl-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
    .wl-why__grid { grid-template-columns: repeat(2, 1fr); }
    .wl-platform__grid { grid-template-columns: repeat(2, 1fr); }
    .wl-tech__grid { grid-template-columns: 1fr; }
    .wl-engine__grid { grid-template-columns: repeat(2, 1fr); }
    .wl-ai__grid { grid-template-columns: 1fr; }
    .wl-deploy__grid { grid-template-columns: repeat(2, 1fr); }
    .wl-custom__grid { grid-template-columns: repeat(2, 1fr); }
    .wl-security__grid { grid-template-columns: repeat(2, 1fr); }
    .wl-trust__container { grid-template-columns: 1fr; gap: 40px; }
    .wl-trust__visual { display: none; }
    .wl-arch-preview { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .wl-section { padding: 60px 16px; }
    .wl-hero { padding: 120px 16px 60px; min-height: 100svh; }
    .wl-hero__title { font-size: clamp(2rem, 7.5vw, 3rem); }
    .wl-hero__actions { flex-direction: column; align-items: center; }
    .wl-btn-primary, .wl-btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
    .wl-why__grid { grid-template-columns: 1fr; }
    .wl-platform__grid { grid-template-columns: 1fr; }
    .wl-engine__grid { grid-template-columns: 1fr; }
    .wl-deploy__grid { grid-template-columns: 1fr; }
    .wl-custom__grid { grid-template-columns: 1fr; }
    .wl-security__grid { grid-template-columns: 1fr; }
    .wl-arch-preview { grid-template-columns: 1fr; }
    .wl-process__line { display: none; }
    .wl-step { flex-wrap: wrap; }
    .wl-step__duration { margin-left: 0; }
    .wl-cta { padding: 72px 16px 80px; }
    .wl-cta__actions { flex-direction: column; align-items: center; }
    .wl-btn-cta { width: 100%; max-width: 340px; justify-content: center; }
}
