/* ── RESET & BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #050a14;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes pulse-line {
    0%,
    100% {
        opacity: .3;
    }
    50% {
        opacity: 1;
    }
}
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}
@keyframes drawPath {
    from {
        stroke-dashoffset: 2000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* ── ANIMATION UTILITY CLASSES ── */
.animate-fadeUp {
    animation: fadeUp .8s ease forwards;
}
.animate-fadeUp-delay-1 {
    animation: fadeUp .8s ease .2s forwards;
    opacity: 0;
}
.animate-fadeUp-delay-2 {
    animation: fadeUp .8s ease .4s forwards;
    opacity: 0;
}
.animate-fadeUp-delay-3 {
    animation: fadeUp .8s ease .6s forwards;
    opacity: 0;
}

/* ── GLASS HEADER ── */
.glass-header {
    background: rgba(5, 10, 20, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}
.nav-link {
    padding: 4px 2px;
    transition: color .3s ease;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}
.nav-link:hover {
    color: #4c5cf0;
}

/* ── DROPDOWN ── */
.dropdown-container {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(10, 18, 34, .96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 12px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .7), 0 0 0 1px rgba(76, 92, 240, .1);
    z-index: 100;
}
.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu .dropdown-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    margin: 0 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease;
}
.dropdown-menu .dropdown-heading:hover {
    background: rgba(76, 92, 240, .10);
}
.dropdown-menu .dropdown-heading i {
    font-size: 18px;
    color: #4c5cf0;
}
.dropdown-menu .dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, .06);
    margin: 8px 20px;
}
.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px 2px;
    transition: color .3s ease;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}
.dropdown-trigger:hover {
    color: #4c5cf0;
}
.dropdown-trigger i.ti-chevron-down {
    font-size: 12px;
    transition: transform .25s ease;
    color: rgba(255, 255, 255, .4);
}
.dropdown-trigger.open i.ti-chevron-down {
    transform: rotate(180deg);
    color: #4c5cf0;
}

/* ── HERO ── */
.solution-hero {
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.solution-hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .3;
    pointer-events: none;
}
.solution-hero .orb-1 {
    width: 400px;
    height: 400px;
    background: #7c6cf6;
    top: -150px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}
.solution-hero .orb-2 {
    width: 300px;
    height: 300px;
    background: #4c5cf0;
    bottom: -100px;
    right: -50px;
    animation: float 6s ease-in-out infinite reverse;
}
.solution-hero .badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(124, 108, 246, .15);
    border: 1px solid rgba(124, 108, 246, .25);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #7c6cf6;
    margin-bottom: 20px;
}
.solution-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto 16px;
}
.solution-hero h1 span {
    background: linear-gradient(135deg, #9adfff, #4c6ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.solution-hero .sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .7);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #7c6cf6, #4c5cf0);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 4px 30px rgba(124, 108, 246, .3);
    cursor: pointer;
    border: none;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(124, 108, 246, .5);
}
.cta-btn-ghost {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(124, 108, 246, .4);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: border-color .25s ease, color .25s ease;
    cursor: pointer;
    background: transparent;
}
.cta-btn-ghost:hover {
    border-color: #7c6cf6;
    color: #fff;
}

/* ── SECTION UTILITIES ── */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-tag {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #7c6cf6;
    font-family: 'Outfit', sans-serif;
    display: inline-block;
    margin-bottom: .6rem;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-title span {
    background: linear-gradient(135deg, #9adfff, #4c6ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.section-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.7;
    text-align: center;
}
.section-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(90deg, transparent, rgba(124, 108, 246, .2), transparent);
}

/* ── STATS ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, .02);
    border-radius: 50px 50px 20px 20px;
    border: 1px solid rgba(255, 255, 255, .04);
    transition: all .3s ease;
    opacity: 0;
    animation: fadeUp .8s ease forwards;
}
.stat-item:nth-child(1) {
    animation-delay: .1s;
}
.stat-item:nth-child(2) {
    animation-delay: .2s;
}
.stat-item:nth-child(3) {
    animation-delay: .3s;
}
.stat-item:nth-child(4) {
    animation-delay: .4s;
}
.stat-item:hover {
    border-color: rgba(124, 108, 246, .3);
    transform: translateY(-4px);
    background: rgba(124, 108, 246, .05);
}
.stat-item .num {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #9adfff, #4c6ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.stat-item .label {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px;
}

/* ── ADVANTAGE SECTION ── */
.adv-outer {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.adv-outer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -80px;
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(76, 92, 240, .06) 0%, transparent 70%);
    pointer-events: none;
}
.adv-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.adv-header {
    margin-bottom: 56px;
    text-align: center;
}
.adv-staircase {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.adv-staircase::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(76, 92, 240, .2) 20%, rgba(76, 92, 240, .2) 80%, transparent 100%);
    transform: translateX(-50%);
}
.adv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 160px;
    opacity: 0;
    animation: fadeUp .7s ease forwards;
}
.adv-row:nth-child(1) {
    animation-delay: .1s;
}
.adv-row:nth-child(2) {
    animation-delay: .2s;
}
.adv-row:nth-child(3) {
    animation-delay: .3s;
}
.adv-row:nth-child(4) {
    animation-delay: .4s;
}
.adv-content-cell {
    padding: 32px 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}
.adv-row.left-side .adv-content-cell {
    justify-content: flex-end;
    text-align: right;
    padding-right: 56px;
}
.adv-row.right-side .adv-content-cell {
    justify-content: flex-start;
    text-align: left;
    padding-left: 56px;
}
.adv-icon-ring {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(76, 92, 240, .1);
    border: 1px solid rgba(76, 92, 240, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #7c6cf6;
    position: relative;
    transition: all .3s ease;
}
.adv-icon-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(76, 92, 240, .15);
}
.adv-content-cell:hover .adv-icon-ring {
    background: rgba(76, 92, 240, .2);
    border-color: rgba(76, 92, 240, .5);
    transform: scale(1.05);
}
.adv-row.left-side .adv-icon-ring {
    order: 1;
}
.adv-row.left-side .adv-text {
    order: 0;
}
.adv-row.right-side .adv-icon-ring {
    order: 0;
}
.adv-row.right-side .adv-text {
    order: 1;
}
.adv-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(76, 92, 240, .7);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}
.adv-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}
.adv-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
    max-width: 320px;
}
.adv-row.left-side .adv-desc {
    margin-left: auto;
}
.adv-badge-pill {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 12px;
    border-radius: 50px;
    background: rgba(76, 92, 240, .08);
    border: 1px solid rgba(76, 92, 240, .15);
    font-size: 10px;
    font-weight: 700;
    color: rgba(76, 92, 240, .8);
    letter-spacing: .06em;
    text-transform: uppercase;
}
.adv-spine-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4c5cf0;
    box-shadow: 0 0 0 4px rgba(76, 92, 240, .12), 0 0 0 8px rgba(76, 92, 240, .05);
    z-index: 2;
}
.adv-empty-cell {
    position: relative;
}
.adv-row.left-side .adv-content-cell::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 92, 240, .3));
}
.adv-row.right-side .adv-content-cell::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, rgba(76, 92, 240, .3), transparent);
}

/* ── SCHEDULE SECTION ── */
.schedule-outer {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    border-top: 1px solid rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}
.schedule-outer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(76, 92, 240, .04) 0%, transparent 70%);
    pointer-events: none;
}
.schedule-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.schedule-header {
    text-align: center;
    margin-bottom: 64px;
}
.zz-layout {
    display: flex;
    flex-direction: column;
    position: relative;
}
.zz-top-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: flex-end;
    min-height: 190px;
    padding-bottom: 0;
    gap: 8px;
}
.zz-wave-row {
    position: relative;
    height: 80px;
}
.wave-svg {
    width: 100%;
    overflow: visible;
    height: 80px;
}
.zz-bottom-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: flex-start;
    min-height: 190px;
    padding-top: 0;
    gap: 8px;
}
.zz-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.zz-cell.top-cell {
    justify-content: flex-end;
}
.zz-cell.bottom-cell {
    justify-content: flex-start;
}
.zz-cell.empty {
    pointer-events: none;
}
.zz-dots-row {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    pointer-events: none;
    z-index: 2;
}
.zz-dot-cell {
    display: flex;
    justify-content: center;
}
.zz-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7c6cf6;
    box-shadow: 0 0 0 4px rgba(124, 108, 246, .15), 0 0 12px rgba(124, 108, 246, .3);
    z-index: 3;
    position: relative;
}
.zz-box {
    width: 140px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(76, 92, 240, .2);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.zz-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 108, 246, .06), transparent);
    animation: shimmer 3.5s ease-in-out infinite;
}
.zz-box:hover {
    border-color: rgba(76, 92, 240, .5);
    background: rgba(76, 92, 240, .06);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(76, 92, 240, .08);
}
.zz-icon {
    font-size: 18px;
    color: #7c6cf6;
    margin-bottom: 8px;
    opacity: .8;
}
.zz-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 4px;
}
.zz-value {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #9adfff, #6f7df5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 5px;
}
.zz-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.4;
}
.zz-pill {
    display: inline-block;
    margin-top: 7px;
    padding: 2px 10px;
    border-radius: 50px;
    background: rgba(76, 92, 240, .1);
    border: 1px solid rgba(76, 92, 240, .12);
    font-size: 9px;
    font-weight: 700;
    color: rgba(124, 108, 246, .85);
    letter-spacing: .05em;
    text-transform: uppercase;
}
.zz-stem {
    width: 1px;
    background: linear-gradient(180deg, rgba(76, 92, 240, .15), rgba(76, 92, 240, .4));
    flex-shrink: 0;
}
.zz-cell.top-cell .zz-stem {
    height: 36px;
    margin-top: 0;
}
.zz-cell.bottom-cell .zz-stem {
    height: 36px;
    margin-bottom: 0;
}
.zz-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
}
.zz-mob-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(76, 92, 240, .18);
    border-radius: 14px;
    transition: all .3s ease;
    opacity: 0;
    animation: fadeUp .7s ease forwards;
}
.zz-mob-item:nth-child(1) {
    animation-delay: .05s;
}
.zz-mob-item:nth-child(2) {
    animation-delay: .10s;
}
.zz-mob-item:nth-child(3) {
    animation-delay: .15s;
}
.zz-mob-item:nth-child(4) {
    animation-delay: .20s;
}
.zz-mob-item:nth-child(5) {
    animation-delay: .25s;
}
.zz-mob-item:nth-child(6) {
    animation-delay: .30s;
}
.zz-mob-item:hover {
    border-color: rgba(76, 92, 240, .4);
    background: rgba(76, 92, 240, .05);
}
.zz-mob-icon {
    font-size: 22px;
    color: #7c6cf6;
    flex-shrink: 0;
    margin-top: 2px;
}
.zz-mob-value {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, #9adfff, #6f7df5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}
.zz-mob-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 4px;
}
.zz-mob-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5;
}

/* ── STEPS GRID ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    position: relative;
}
.step-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px 50px 20px 50px;
    padding: 28px 24px;
    transition: all .3s ease;
    opacity: 0;
    animation: fadeUp .8s ease forwards;
    position: relative;
    text-align: center;
}
.step-card:nth-child(1) {
    animation-delay: .1s;
}
.step-card:nth-child(2) {
    animation-delay: .2s;
}
.step-card:nth-child(3) {
    animation-delay: .3s;
}
.step-card:nth-child(4) {
    animation-delay: .4s;
}
.step-card:hover {
    border-color: rgba(124, 108, 246, .4);
    transform: translateY(-6px) rotate(1deg);
    background: rgba(124, 108, 246, .04);
}
.step-card .step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    color: #7c6cf6;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.step-card .step-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}
.step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}
.step-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(124, 108, 246, .4);
    font-size: 22px;
    z-index: 2;
    animation: pulse-line 2s ease-in-out infinite;
    pointer-events: none;
}
.step-arrow-1 {
    left: calc(25% - 10px);
    animation-delay: .2s;
}
.step-arrow-2 {
    left: calc(50% - 10px);
    animation-delay: .5s;
}
.step-arrow-3 {
    left: calc(75% - 10px);
    animation-delay: .8s;
}
.step-arrow-mobile {
    display: none;
}

/* ── WORKLIST BOOK ── */
.wlbook-outer {
    max-width: 1080px;
    margin: 0 auto;
}
.wlbook-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}
.wlbook-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}
.wlbook-tab i {
    font-size: 14px;
}
.wlbook-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(124, 108, 246, 0.3);
    background: rgba(124, 108, 246, 0.06);
}
.wlbook-tab.active {
    color: #fff;
    border-color: rgba(124, 108, 246, 0.55);
    background: rgba(124, 108, 246, 0.14);
}
.wlbook-scene {
    perspective: 2600px;
    perspective-origin: 50% 46%;
}
.wlbook {
    display: flex;
    width: 100%;
    min-height: 460px;
    border-radius: 14px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.55), 0 2px 10px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    position: relative;
    background: #080f1e;
}
.wlbook:hover {
    transform: rotateX(1.5deg) translateY(-3px);
}
.wlbook-left {
    flex: 1;
    position: relative;
    min-height: 460px;
    padding: 30px 26px 20px;
    background: linear-gradient(100deg, #0e1828 0%, #0a1120 100%);
    border-radius: 14px 0 0 14px;
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
}
.wlbook-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 5px;
    background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0.015) 1px, rgba(255, 255, 255, 0.015) 3px);
    border-radius: 14px 0 0 14px;
}
.wlbook-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(76, 92, 240, 0.12) 40%, rgba(76, 92, 240, 0.12) 60%, transparent);
}
.wlbook-gutter {
    flex-shrink: 0;
    width: 34px;
    position: relative;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.15) 22%,
            rgba(255, 255, 255, 0.02) 50%,
            rgba(0, 0, 0, 0.15) 78%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 25;
}
.wlbook-gutter-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(76, 92, 240, .08);
    border: 1px solid rgba(76, 92, 240, .15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wlbook-gutter-dot i {
    font-size: 12px;
    color: rgba(76, 92, 240, .4);
}
.wlbook-right {
    flex: 1;
    position: relative;
    min-height: 460px;
    border-radius: 0 14px 14px 0;
    overflow: hidden;
    background: #080f1e;
}
.wlbook-right::after {
    content: '';
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    z-index: 50;
    background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0px, rgba(255, 255, 255, 0.07) 1px, rgba(255, 255, 255, 0.02) 1px, rgba(255, 255, 255, 0.02) 3px);
    border-radius: 0 14px 14px 0;
}
.wlbook-page {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 26px 20px;
    background: linear-gradient(100deg, #0e1828 0%, #0a1120 100%);
    border-radius: 0 14px 14px 0;
    transform-style: preserve-3d;
    transform-origin: left center;
    backface-visibility: hidden;
    will-change: transform, opacity;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}
.wlbook-page.page-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 20;
    transform: rotateY(0deg);
}
.wlbook-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0 14px 14px 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, transparent 25%);
    pointer-events: none;
    z-index: 5;
    opacity: 1;
}
.wlbook-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(76, 92, 240, 0.15) 40%, rgba(76, 92, 240, 0.15) 60%, transparent);
    z-index: 6;
}
@keyframes flipPageOut {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
    }
    45% {
        opacity: 1;
    }
    50% {
        transform: rotateY(-90deg);
        opacity: 0;
    }
    100% {
        transform: rotateY(-180deg);
        opacity: 0;
    }
}
@keyframes flipPageIn {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
    }
    50% {
        transform: rotateY(90deg);
        opacity: 0;
    }
    55% {
        opacity: 1;
    }
    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}
@keyframes flipPageOutBack {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
    }
    45% {
        opacity: 1;
    }
    50% {
        transform: rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: rotateY(180deg);
        opacity: 0;
    }
}
@keyframes flipPageInBack {
    0% {
        transform: rotateY(-90deg);
        opacity: 0;
    }
    50% {
        transform: rotateY(-90deg);
        opacity: 0;
    }
    55% {
        opacity: 1;
    }
    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}
.page-flip-out-fwd {
    animation: flipPageOut 0.55s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    z-index: 25 !important;
    pointer-events: none !important;
}
.page-flip-in-fwd {
    animation: flipPageIn 0.55s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    z-index: 22 !important;
}
.page-flip-out-back {
    animation: flipPageOutBack 0.55s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    z-index: 25 !important;
    pointer-events: none !important;
}
.page-flip-in-back {
    animation: flipPageInBack 0.55s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    z-index: 22 !important;
}
.wlbook-page-face {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 6;
}
.wlbook-left-face {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 6;
}
.wlb-left-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(124, 108, 246, .6);
    margin-bottom: 10px;
}
.wlb-left-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}
.wlb-left-heading span {
    background: linear-gradient(135deg, #9adfff, #4c6ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.wlb-left-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 280px;
}
.wlb-left-meta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wlb-left-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}
.wlb-left-meta-row i {
    font-size: 15px;
    color: #7c6cf6;
    width: 18px;
    text-align: center;
}
.wlb-left-pagenum {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .18);
    letter-spacing: .06em;
}
.wlb-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 6px;
}
.wlb-tag i {
    font-size: 12px;
}
.wlb-tag-red {
    color: rgba(255, 107, 107, .65);
}
.wlb-tag-blue {
    color: rgba(111, 125, 245, .75);
}
.wlb-tag-green {
    color: rgba(0, 200, 100, .65);
}
.wlb-tag-violet {
    color: rgba(124, 108, 246, .8);
}
.wlb-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.2;
}
.wlb-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .32);
    margin-bottom: 10px;
}
.wlb-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
}
.wlb-stat-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 20px 8px 20px 8px;
    padding: 8px 10px;
    text-align: center;
}
.wlb-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}
.wlb-stat-label {
    font-size: 9px;
    color: rgba(255, 255, 255, .32);
    margin-top: 2px;
}
.wlb-col-red {
    color: #ff6b6b;
}
.wlb-col-blue {
    color: #6f7df5;
}
.wlb-col-green {
    color: #00c864;
}
.wlb-col-amber {
    color: #ffaa00;
}
.wlb-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 3px;
}
.wlb-progress-track {
    height: 3px;
    background: rgba(255, 255, 255, .05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 4px;
}
.wlb-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7c6cf6, #4c5cf0);
    border-radius: 10px;
}
.wlb-study {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    flex: none;
}
.wlb-study:last-of-type {
    border-bottom: none;
}
.wlb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}
.wlb-dot-red {
    background: #ff6b6b;
    box-shadow: 0 0 6px rgba(255, 107, 107, .45);
}
.wlb-dot-blue {
    background: #6f7df5;
    box-shadow: 0 0 6px rgba(111, 125, 245, .35);
}
.wlb-dot-green {
    background: #00c864;
    box-shadow: 0 0 6px rgba(0, 200, 100, .35);
}
.wlb-dot-amber {
    background: #ffaa00;
    box-shadow: 0 0 6px rgba(255, 170, 0, .3);
}
.wlb-study-body {
    flex: 1;
    min-width: 0;
}
.wlb-study-name {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wlb-study-meta {
    font-size: 9px;
    color: rgba(255, 255, 255, .28);
    margin-top: 0;
}
.wlb-badges {
    margin-top: 3px;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}
.wlb-badge {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 2px 8px;
    border-radius: 50px 10px 50px 10px;
    display: inline-block;
    text-transform: uppercase;
}
.wlb-badge-stat {
    background: rgba(220, 50, 50, .12);
    color: #ff6b6b;
    border: 1px solid rgba(220, 50, 50, .1);
}
.wlb-badge-ai {
    background: rgba(76, 92, 240, .12);
    color: #6f7df5;
    border: 1px solid rgba(76, 92, 240, .08);
}
.wlb-badge-prior {
    background: rgba(124, 108, 246, .1);
    color: #7c6cf6;
    border: 1px solid rgba(124, 108, 246, .06);
}
.wlb-badge-signed {
    background: rgba(0, 200, 100, .08);
    color: #00c864;
    border: 1px solid rgba(0, 200, 100, .06);
}
.wlb-badge-routing {
    background: rgba(255, 170, 0, .08);
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, .06);
}
.wlb-badge-pending {
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .04);
}
.wlb-alert-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(255, 107, 107, .05);
    border: 1px solid rgba(255, 107, 107, .1);
    border-radius: 30px 8px 30px 8px;
    font-size: 10px;
    color: rgba(255, 107, 107, .65);
}
.wlb-alert-note i {
    font-size: 12px;
    flex-shrink: 0;
}
.wlb-info-section {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .18);
    margin: 6px 0 4px;
}
.wlb-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: 11px;
}
.wlb-info-row:last-of-type {
    border-bottom: none;
}
.wlb-info-key {
    color: rgba(255, 255, 255, .32);
}
.wlb-info-val {
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
}
.wlb-info-val-green {
    color: #00c864;
}
.wlb-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    flex-shrink: 0;
}
.wlb-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 30px 8px 30px 8px;
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all .2s ease;
    letter-spacing: .02em;
}
.wlb-nav-btn:hover:not(:disabled) {
    background: rgba(124, 108, 246, .1);
    border-color: rgba(124, 108, 246, .3);
    color: #fff;
}
.wlb-nav-btn:disabled {
    opacity: .2;
    cursor: not-allowed;
}
.wlb-nav-btn i {
    font-size: 12px;
}
.wlb-pagenum {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .18);
    letter-spacing: .06em;
}
.wlbook-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .18);
    text-transform: uppercase;
    flex-wrap: wrap;
}
.wlb-footer-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 2px;
}
.wlb-footer-dot-red {
    background: #ff6b6b;
}
.wlb-footer-dot-blue {
    background: #6f7df5;
}
.wlb-footer-dot-green {
    background: #00c864;
}
.wlb-footer-dot-gray {
    background: rgba(255, 255, 255, .15);
}

/* ── WHO READS CARDS ── */
.who-card-new {
    padding: 32px 28px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(76, 92, 240, .25);
    background: rgba(255, 255, 255, .02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: default;
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
}
.who-card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #7c6cf6, transparent);
    opacity: 0;
    transition: opacity .4s ease;
    transform: scaleX(0);
    transform-origin: center;
}
.who-card-num {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 900;
    opacity: .15;
    color: #7c6cf6;
    line-height: 1;
    transition: all .4s ease;
    pointer-events: none;
}
.who-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(76, 92, 240, .15), rgba(76, 92, 240, .05));
    border: 1px solid rgba(76, 92, 240, .15);
    color: #7c6cf6;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    z-index: 1;
}
.who-card-new:hover .who-card-line {
    opacity: 1;
    transform: scaleX(1);
}
.who-card-new:hover .who-card-num {
    opacity: .6;
    color: #9adfff;
}
.who-card-new:hover .who-card-icon {
    background: linear-gradient(135deg, #4c5cf0, #7c6cf6);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(76, 92, 240, .3);
    transform: scale(1.05) rotate(-4deg);
}
.who-card-new:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(124, 108, 246, .5);
    background: rgba(124, 108, 246, .04);
    box-shadow: 0 20px 60px rgba(76, 92, 240, .08);
}

/* ── FOOTER ── */
.footer-full {
    background: rgba(5, 10, 20, .9);
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 60px 0 24px;
}
.footer-full a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}
.footer-full a:hover {
    color: #fff;
}

/* ── MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 20px;
}
.modal-overlay.active {
    display: flex;
}
.modal-box {
    background: rgba(10, 18, 34, .98);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50px 20px 50px 20px;
    padding: 40px 36px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .8);
    animation: fadeUp .4s ease forwards;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, .05);
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 20px;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all .2s ease;
}
.modal-close:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}
.modal-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #7c6cf6;
    margin-bottom: 8px;
}
.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
}
.modal-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 20px;
    line-height: 1.6;
}
.modal-divider {
    height: 1px;
    background: rgba(255, 255, 255, .06);
    margin-bottom: 20px;
}
.modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.modal-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.modal-field.full {
    grid-column: 1 / -1;
}
.modal-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
}
.modal-label span {
    color: #7c6cf6;
}
.modal-input {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px 10px 30px 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color .2s ease;
    font-family: 'Inter', sans-serif;
}
.modal-input:focus {
    border-color: #7c6cf6;
}
.modal-input::placeholder {
    color: rgba(255, 255, 255, .2);
}
.modal-input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.8);
    cursor: pointer;
    transform: scale(1.5);
}
.modal-select {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px 10px 30px 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color .2s ease;
    font-family: 'Inter', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%238a93a6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 4.5l3.5 3.5 3.5-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: right 14px center;
    cursor: pointer;
}
.modal-select:focus {
    border-color: #7c6cf6;
}
.modal-select option {
    background: #fff;
    color: #000;
}
.modal-textarea {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px 10px 30px 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color .2s ease;
    font-family: 'Inter', sans-serif;
    min-height: 80px;
    resize: vertical;
}
.modal-textarea:focus {
    border-color: #7c6cf6;
}
.modal-textarea::placeholder {
    color: rgba(255, 255, 255, .2);
}
.modal-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #7c6cf6, #4c5cf0);
    border: none;
    border-radius: 50px 20px 50px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
}
.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 108, 246, .4);
}
.modal-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}
.modal-success {
    text-align: center;
    padding: 16px 0;
}
.modal-success .ms-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 20px;
}
.modal-success h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
}
.modal-success p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .adv-staircase::before {
        display: none;
    }
    .adv-row {
        grid-template-columns: 1fr;
    }
    .adv-row.left-side .adv-content-cell,
    .adv-row.right-side .adv-content-cell {
        justify-content: flex-start;
        text-align: left;
        padding: 20px 16px;
    }
    .adv-row.left-side .adv-icon-ring {
        order: 0;
    }
    .adv-row.left-side .adv-text {
        order: 1;
    }
    .adv-row.left-side .adv-desc {
        margin-left: 0;
    }
    .adv-row.left-side .adv-content-cell::after {
        display: none;
    }
    .adv-row.right-side .adv-content-cell::before {
        display: none;
    }
    .adv-spine-dot {
        display: none;
    }
    .adv-empty-cell {
        display: none;
    }
    .zz-layout {
        display: none;
    }
    .zz-mobile {
        display: flex !important;
    }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
    .wlbook {
        flex-direction: column;
    }
    .wlbook-left {
        border-radius: 14px 14px 0 0;
        min-height: auto;
        padding: 22px 20px;
    }
    .wlbook-left::before {
        display: none;
    }
    .wlbook-left::after {
        border-radius: 14px 14px 0 0;
    }
    .wlbook-gutter {
        display: none;
    }
    .wlbook-right {
        min-height: 380px;
        border-radius: 0 0 14px 14px;
    }
    .wlbook-page {
        border-radius: 0 0 14px 14px;
        padding: 18px 16px 14px;
    }
    .wlbook-page::after,
    .wlbook-page::before {
        border-radius: 0 0 14px 14px;
    }
    .wlbook-scene {
        perspective: none;
    }
    .step-arrow {
        display: none;
    }
    .step-arrow-mobile {
        display: block;
        text-align: center;
        color: rgba(124, 108, 246, .3);
        font-size: 18px;
        padding: 4px 0;
        animation: pulse-line 2s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    .solution-hero h1 {
        font-size: 28px;
    }
    .solution-hero .sub {
        font-size: 15px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
    .section-title {
        font-size: 24px;
    }
    .modal-box {
        padding: 28px 20px;
    }
    .modal-row {
        grid-template-columns: 1fr;
    }
    .wlbook-tabs {
        gap: 6px;
    }
    .wlbook-tab {
        font-size: 11px;
        padding: 6px 12px;
    }
}