/* ===== Specialist-First Landing Styles (Stage 7.2) ===== */

:root {
    --sl-bg: #07111f;
    --sl-card-bg: rgba(18, 26, 43, 0.75);
    --sl-card-border: rgba(255, 255, 255, 0.08);
    --sl-card-hover-border: rgba(96, 165, 250, 0.28);
    --sl-text-main: #f8fafc;
    --sl-text-muted: #94a3b8;
    --sl-accent: #3b82f6;
    --sl-accent-hover: #2563eb;
    --sl-glow-blue: rgba(59, 130, 246, 0.18);
    --sl-glow-purple: rgba(168, 85, 247, 0.15);

    /* Systemic Typography Scale (+10–15% Desktop, compact Mobile) */
    --sl-font-hero-text: clamp(16px, 1.05vw + 12px, 18px);
    --sl-font-subtitle: clamp(16px, 1.1vw + 12px, 18.5px);
    --sl-font-card-body: clamp(15px, 0.8vw + 12px, 16.5px);
    --sl-font-card-sub: clamp(14px, 0.6vw + 12px, 15.5px);
    --sl-font-hint: 14px;
    --sl-line-height-body: 1.6;
    --sl-line-height-sub: 1.55;
    --sl-line-height-compact: 1.45;
}

html {
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body.specialist-landing-page {
    margin: 0;
    padding: 0;
    background-color: var(--sl-bg);
    color: var(--sl-text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.sl-preview-banner {
    background: linear-gradient(90deg, #1e3a8a, #4338ca);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sl-preview-banner a {
    color: #93c5fd;
    text-decoration: underline;
}

/* Shell & Container */
.sl-shell {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sl-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header & Nav */
.sl-header {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(7, 11, 20, 0.85);
}

.sl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

.sl-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    flex-shrink: 0;
    white-space: nowrap;
}

.sl-brand__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.sl-brand__image {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.sl-brand__text {
    display: flex;
    flex-direction: column;
}

.sl-brand__name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #ffffff;
    line-height: 1.2;
}

.sl-brand__sub {
    font-size: 9.5px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.sl-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    flex-shrink: 1;
}

.sl-nav__link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.sl-nav__link:hover {
    color: #ffffff;
}

.sl-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sl-btn-text {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 10px;
    transition: all 0.15s ease;
    box-sizing: border-box;
    white-space: nowrap;
}

.sl-btn-text:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.sl-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.sl-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.sl-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.sl-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
}

.sl-btn-pro {
    background: linear-gradient(135deg, #9333ea, #7e22ce);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 12px;
    border: 1px solid rgba(192, 132, 252, 0.45);
    box-shadow: 0 4px 18px rgba(147, 51, 234, 0.35);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.sl-btn-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(168, 85, 247, 0.55);
    background: linear-gradient(135deg, #a855f7, #9333ea);
    border-color: rgba(216, 180, 254, 0.65);
    color: #ffffff;
}

.sl-header__actions .sl-btn-primary {
    font-size: 13.5px;
    padding: 8px 16px;
}

.sl-scenario-card .sl-btn-primary,
.sl-scenario-card .sl-btn-secondary,
.sl-plan-card .sl-btn-primary,
.sl-plan-card .sl-btn-pro,
.sl-final-cta .sl-btn-primary {
    font-size: 16px !important;
    padding: 13px 24px !important;
    font-weight: 700 !important;
}

.sl-btn--block {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

/* Reusable Screenshot Slot Primitive */
.sl-screenshot-slot {
    background: rgba(15, 23, 42, 0.85);
    border: 2px solid rgba(59, 130, 246, 0.35);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(59, 130, 246, 0.12);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.25s ease;
    width: 100%;
}

.sl-screenshot-slot:hover {
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 50px rgba(59, 130, 246, 0.22);
}

.sl-screenshot-slot__topbar {
    background: rgba(30, 41, 59, 0.75);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sl-ui-dots {
    display: flex;
    gap: 6px;
}

.sl-ui-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.sl-screenshot-slot__label {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sl-preview-slot-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(59, 130, 246, 0.18);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.sl-screenshot-slot__body {
    padding: 22px;
    box-sizing: border-box;
}

.sl-screenshot-slot__body--flush {
    padding: 0;
}

/* Hero Screenshots Carousel */
.sl-hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0b1322;
    border-radius: 0 0 20px 20px;
}

.sl-carousel-viewer {
    position: relative;
    width: 100%;
    height: 330px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #070e1b;
}

@media (max-width: 1024px) {
    .sl-carousel-viewer {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .sl-carousel-viewer {
        height: 220px;
    }
}

.sl-carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.sl-carousel-slide.is-active {
    display: block;
    animation: slSlideFade 0.28s ease;
}

@keyframes slSlideFade {
    from { opacity: 0; transform: scale(0.985); }
    to { opacity: 1; transform: scale(1); }
}

.sl-carousel-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: transform 0.3s ease;
}

.sl-carousel-viewer:hover .sl-carousel-img {
    transform: scale(1.02) translateZ(0);
}

.sl-carousel-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f8fafc;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.sl-carousel-viewer:hover .sl-carousel-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Nav arrows */
.sl-carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    font-size: 18px;
    user-select: none;
}

.sl-carousel-nav-btn:hover {
    background: rgba(59, 130, 246, 0.95);
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.5);
    transform: translateY(-50%) scale(1.08);
}

.sl-carousel-nav-btn--prev {
    left: 10px;
}

.sl-carousel-nav-btn--next {
    right: 10px;
}

/* Footer / Caption bar */
.sl-carousel-footer {
    padding: 12px 18px;
    background: rgba(22, 33, 56, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sl-carousel-info {
    flex: 1;
    min-width: 0;
}

.sl-carousel-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sl-carousel-desc {
    font-size: 13px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sl-carousel-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sl-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sl-carousel-dot.is-active {
    width: 20px;
    border-radius: 10px;
    background: #38bdf8;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}

.sl-carousel-zoom-btn {
    background: rgba(56, 189, 248, 0.14);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38bdf8;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sl-carousel-zoom-btn:hover {
    background: rgba(56, 189, 248, 0.28);
    border-color: #38bdf8;
    color: #ffffff;
}

/* Lightbox Modal */
.sl-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
}

.sl-lightbox.is-open {
    display: flex;
    opacity: 1;
}

.sl-lightbox__dialog {
    position: relative;
    max-width: 1400px;
    width: 100%;
    max-height: 94vh;
    display: flex;
    flex-direction: column;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(59, 130, 246, 0.2);
    animation: slModalZoom 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

@keyframes slModalZoom {
    from { transform: scale(0.94); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.sl-lightbox__header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(30, 41, 59, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.sl-lightbox__title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.sl-lightbox__counter {
    font-size: 12px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 10px;
}

.sl-lightbox__close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    font-size: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.sl-lightbox__close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ffffff;
    transform: scale(1.1);
}

.sl-lightbox__body {
    position: relative;
    flex: 1 1 auto;
    background: #070e1b;
    padding: 12px 16px;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
    max-height: calc(94vh - 105px);
}

.sl-lightbox__body::-webkit-scrollbar {
    width: 8px;
}

.sl-lightbox__body::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.6);
}

.sl-lightbox__body::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.35);
    border-radius: 4px;
}

.sl-lightbox__body::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.6);
}

.sl-lightbox__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: initial;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.sl-lightbox__nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10005;
    transition: all 0.2s ease;
    font-size: 24px;
    user-select: none;
    backdrop-filter: blur(8px);
}

.sl-lightbox__nav-btn:hover {
    background: #3b82f6;
    border-color: #60a5fa;
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.sl-lightbox__nav-btn--prev {
    left: 16px;
}

.sl-lightbox__nav-btn--next {
    right: 16px;
}

@media (max-width: 1200px) {
    .sl-lightbox__nav-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    .sl-lightbox__nav-btn--prev { left: 6px; }
    .sl-lightbox__nav-btn--next { right: 6px; }
}

.sl-lightbox__footer {
    flex-shrink: 0;
    padding: 10px 20px;
    background: rgba(30, 41, 59, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.sl-lightbox__caption {
    font-size: 13px;
    color: #cbd5e1;
}

/* Sections Global */
.sl-section {
    padding: 90px 0;
    position: relative;
    scroll-margin-top: 80px;
}

.sl-section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.sl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.28);
    color: #93c5fd;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.sl-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px #3b82f6;
}

.sl-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.22;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.sl-subtitle {
    font-size: var(--sl-font-subtitle);
    line-height: var(--sl-line-height-sub);
    color: var(--sl-text-muted);
    margin: 0;
}

/* Card Component */
.sl-card {
    background: var(--sl-card-bg);
    border: 1px solid var(--sl-card-border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.sl-card:hover {
    border-color: var(--sl-card-hover-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* 1. Hero Section */
.sl-hero {
    padding: 60px 0 90px;
}

.sl-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 48px;
    align-items: center;
}

.sl-hero__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sl-hero__showcase {
    min-width: 0;
    width: 100%;
}

.sl-hero__title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: #ffffff;
}

.sl-hero__title-gradient {
    background: linear-gradient(135deg, #60a5fa 20%, #a855f7 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sl-hero__text {
    font-size: var(--sl-font-hero-text);
    line-height: var(--sl-line-height-body);
    color: #cbd5e1;
    margin: 0 0 20px;
}

.sl-hero-status-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 14px;
    padding: 12px 18px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.sl-hero-status-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #38bdf8;
    font-weight: 700;
}

.sl-status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.85);
    display: inline-block;
    flex-shrink: 0;
    animation: slStatusPulseGreen 2.2s ease-in-out infinite;
}

.sl-status-indicator--green {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.85);
    animation-name: slStatusPulseGreen;
}

.sl-status-indicator--orange,
.sl-status-indicator--warning {
    background: #f97316;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.85);
    animation-name: slStatusPulseOrange;
}

.sl-status-indicator--red,
.sl-status-indicator--danger {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.85);
    animation-name: slStatusPulseRed;
}

@keyframes slStatusPulseGreen {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.9);
    }
    50% {
        opacity: 0.35;
        box-shadow: 0 0 2px rgba(16, 185, 129, 0.3);
    }
}

@keyframes slStatusPulseOrange {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(249, 115, 22, 0.9);
    }
    50% {
        opacity: 0.35;
        box-shadow: 0 0 2px rgba(249, 115, 22, 0.3);
    }
}

@keyframes slStatusPulseRed {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.9);
    }
    50% {
        opacity: 0.35;
        box-shadow: 0 0 2px rgba(239, 68, 68, 0.3);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sl-status-indicator {
        animation: none;
    }
}

.sl-hero-status-limit {
    font-size: 16.5px;
    color: #ffffff;
    font-weight: 600;
}

.sl-hero-status-limit strong {
    color: #60a5fa;
    font-weight: 800;
}

.sl-hero-status-limit strong.sl-hero-status-highlight--green,
.sl-hero-status-card--green .sl-hero-status-limit strong {
    color: #34d399;
}

.sl-hero-status-limit strong.sl-hero-status-highlight--orange,
.sl-hero-status-card--orange .sl-hero-status-limit strong {
    color: #fb923c;
}

.sl-hero-status-limit strong.sl-hero-status-highlight--red,
.sl-hero-status-card--red .sl-hero-status-limit strong,
.sl-hero-status-card .sl-hero-status-limit strong.sl-hero-status-highlight--red {
    color: #f87171;
}

.sl-hero-status-sub {
    font-size: 13.5px;
    color: #94a3b8;
}

.sl-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.sl-hero__proof {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    flex-wrap: wrap;
}

.sl-proof-item {
    display: flex;
    flex-direction: column;
}

.sl-proof-item strong {
    font-size: 21px;
    color: #ffffff;
    font-weight: 700;
}

.sl-proof-item span {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: var(--sl-line-height-compact);
}

/* 2. Workflow Section (4-Block Illustration) */
.sl-workflow-wrapper {
    max-width: 1120px;
    margin: 0 auto;
}

.sl-workflow-frame {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.14);
    padding: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}

.sl-workflow-frame:hover {
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 50px rgba(59, 130, 246, 0.2);
}

.sl-workflow-frame:hover .sl-workflow-img {
    transform: scale(1.01);
}

.sl-workflow-frame:hover .sl-carousel-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

.sl-workflow-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.sl-workflow-note {
    margin: 18px 0 0;
    font-size: 15.5px;
    color: #94a3b8;
    text-align: center;
    line-height: var(--sl-line-height-sub);
}

.sl-testing-lead-box {
    margin-top: 36px;
    background: rgba(18, 26, 43, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
}

.sl-testing-lead-box h3 {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}

.sl-testing-lead-box p {
    font-size: var(--sl-font-card-body);
    line-height: var(--sl-line-height-body);
    color: #cbd5e1;
    margin: 0 0 12px;
}

.sl-testing-lead-box p:last-child {
    margin-bottom: 0;
}

/* 3. Expert Result Structure: Full-Width Master Panel */
.sl-subtitle--lead {
    font-size: clamp(17px, 1.15vw + 12px, 19.5px);
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 920px;
    margin: 0 auto;
}

.sl-result-master-panel {
    background: linear-gradient(165deg, rgba(26, 38, 64, 0.72) 0%, rgba(13, 20, 36, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 24px;
    padding: 34px 32px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(59, 130, 246, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-sizing: border-box;
}

.sl-result-lead-card__main {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.sl-result-lead-card__icon {
    font-size: 26px;
    line-height: 1;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.32);
    border-radius: 14px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sl-result-lead-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.sl-result-lead-card__text {
    font-size: var(--sl-font-card-body);
    line-height: var(--sl-line-height-body);
    color: #cbd5e1;
    margin: 0;
}

.sl-result-lead-card__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sl-result-lead-pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(10, 17, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px 16px;
    transition: all 0.2s ease;
}

.sl-result-lead-pillar:hover {
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(15, 24, 42, 0.75);
}

.sl-result-lead-pillar__icon {
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
}

.sl-result-lead-pillar strong {
    display: block;
    font-size: 14.5px;
    color: #f1f5f9;
    margin-bottom: 4px;
}

.sl-result-lead-pillar span {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.45;
    display: block;
}

.sl-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sl-zone-card {
    padding: 24px;
    border-radius: 18px;
    background: rgba(10, 16, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.sl-zone-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(15, 23, 42, 0.85);
}

@media (max-width: 860px) {
    .sl-result-master-panel {
        padding: 22px 18px;
        gap: 20px;
    }
    .sl-result-lead-card__pillars {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .sl-result-lead-card__main {
        flex-direction: column;
        gap: 12px;
    }
    .sl-result-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.sl-zone-card--1 {
    border-top: 4px solid #f97316;
}

.sl-zone-card--2 {
    border-top: 4px solid #ef4444;
}

.sl-zone-card--3 {
    border-top: 4px solid #3b82f6;
}

.sl-zone-card--4 {
    border-top: 4px solid #10b981;
}

.sl-zone-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sl-zone-num {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

.sl-zone-card--1 .sl-zone-num { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.sl-zone-card--2 .sl-zone-num { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.sl-zone-card--3 .sl-zone-num { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.sl-zone-card--4 .sl-zone-num { background: rgba(16, 185, 129, 0.2); color: #34d399; }

.sl-zone-card h3 {
    font-size: 18.5px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.sl-zone-card p {
    font-size: var(--sl-font-card-sub);
    color: #cbd5e1;
    margin: 0 0 16px;
    line-height: var(--sl-line-height-sub);
}

.sl-sample-chip {
    padding: 12px 16px;
    border-radius: 0 12px 12px 0;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-top: auto;
}

.sl-zone-card--1 .sl-sample-chip {
    border-left-color: #f97316;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.09) 0%, rgba(249, 115, 22, 0.01) 100%);
}
.sl-zone-card--1 .sl-sample-chip strong {
    color: #fb923c;
}

.sl-zone-card--2 .sl-sample-chip {
    border-left-color: #ef4444;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.09) 0%, rgba(239, 68, 68, 0.01) 100%);
}
.sl-zone-card--2 .sl-sample-chip strong {
    color: #f87171;
}

.sl-zone-card--3 .sl-sample-chip {
    border-left-color: #3b82f6;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.09) 0%, rgba(59, 130, 246, 0.01) 100%);
}
.sl-zone-card--3 .sl-sample-chip strong {
    color: #60a5fa;
}

.sl-zone-card--4 .sl-sample-chip {
    border-left-color: #10b981;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.09) 0%, rgba(16, 185, 129, 0.01) 100%);
}
.sl-zone-card--4 .sl-sample-chip strong {
    color: #34d399;
}

.sl-sample-chip strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

/* Result Example App Window Showcase */
.sl-result-example-wrapper {
    width: 100%;
    margin-top: 32px;
}

/* App Window Showcase */
.sl-result-showcase-window {
    width: 100%;
    background: #080e1b;
    border: 2px solid rgba(59, 130, 246, 0.45);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 50px rgba(59, 130, 246, 0.16);
    transition: all 0.25s ease;
    margin: 8px 0 16px;
}

.sl-result-showcase-window:hover {
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 65px rgba(59, 130, 246, 0.25);
}

.sl-result-window-topbar {
    background: rgba(22, 33, 56, 0.95);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sl-result-window-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #cbd5e1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sl-result-window-badge {
    background: rgba(59, 130, 246, 0.22);
    border: 1px solid rgba(59, 130, 246, 0.45);
    color: #f1f5f9;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.sl-result-window-path {
    color: #38bdf8;
    font-size: 14px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sl-result-screen-viewer {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #070e1b;
}

.sl-result-screen-viewer .sl-result-screen-img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.3s ease;
}

.sl-result-screen-viewer:hover .sl-result-screen-img {
    transform: scale(1.015);
}

.sl-result-screen-viewer .sl-carousel-zoom-hint {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.sl-result-screen-viewer:hover .sl-carousel-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

.sl-result-window-footer {
    background: rgba(15, 23, 42, 0.92);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sl-result-window-footer__text {
    font-size: 14px;
    color: #94a3b8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sl-result-window-footer__btn {
    background: transparent;
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38bdf8;
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sl-result-window-footer__btn:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: #38bdf8;
    color: #ffffff;
}

@media (max-width: 640px) {
    .sl-result-window-path {
        display: none;
    }
    .sl-result-window-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Discussion & Practical Recommendations 2-Column Grid */
.sl-result-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.sl-result-feature-card {
    background: rgba(18, 26, 43, 0.85);
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.sl-result-feature-card--discussion {
    border-top: 4px solid #38bdf8;
}

.sl-result-feature-card--recommendations {
    border-top: 4px solid #10b981;
}

.sl-result-feature-card__title {
    font-size: 19.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.sl-result-feature-card__text {
    font-size: var(--sl-font-card-body);
    color: #cbd5e1;
    line-height: var(--sl-line-height-body);
    margin: 0 0 12px;
}

.sl-result-feature-card__sub {
    font-size: var(--sl-font-card-sub);
    color: #94a3b8;
    line-height: var(--sl-line-height-sub);
    margin: 0;
    margin-top: auto;
}

.sl-result-bottom-disclaimer {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    line-height: var(--sl-line-height-sub);
    color: #94a3b8;
    text-align: center;
    margin-top: 16px;
}

@media (max-width: 860px) {
    .sl-result-features-grid {
        grid-template-columns: 1fr;
    }
}

/* 4. Professional Directions: Full-Width Master Panel */
.sl-directions-master-panel {
    background: linear-gradient(165deg, rgba(26, 38, 64, 0.72) 0%, rgba(13, 20, 36, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 24px;
    padding: 32px 32px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(59, 130, 246, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
}

.sl-directions-panel-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4px auto;
}

.sl-directions-panel-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.sl-directions-panel-desc {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.sl-directions-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0;
}

.sl-dir-btn {
    padding: 10px 18px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
}

.sl-dir-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
}

.sl-dir-btn.is-active {
    background: #2563eb;
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
}

.sl-directions-content-wrap {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sl-dir-preview-card {
    background: #0e172a;
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 18px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    animation: slSlideFade 0.22s ease;
}

.sl-dir-preview-card__body {
    position: relative;
    min-height: 290px;
    display: flex;
    align-items: center;
    width: 100%;
}

.sl-dir-preview-card__main {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 68%;
    padding: 32px 34px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sl-dir-preview-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}

.sl-dir-preview-card__desc {
    font-size: var(--sl-font-card-body);
    color: #cbd5e1;
    margin: 0 0 20px;
    line-height: var(--sl-line-height-body);
    max-width: 620px;
}

.sl-dir-preview-card__tasks-label {
    font-size: 13px;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.sl-dir-preview-card__tasks-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.sl-dir-preview-card__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    background: transparent;
}

.sl-dir-preview-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.05) 15%, rgba(0, 0, 0, 0.4) 38%, rgba(0, 0, 0, 0.88) 65%, #000 85%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.05) 15%, rgba(0, 0, 0, 0.4) 38%, rgba(0, 0, 0, 0.88) 65%, #000 85%, #000 100%);
    transition: transform 0.4s ease;
}

.sl-dir-preview-card:hover .sl-dir-preview-card__img {
    transform: scale(1.02);
}

.sl-dir-preview-card__fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to right, #0e172a 0%, #0e172a 18%, rgba(14, 23, 42, 0.7) 45%, transparent 80%),
                linear-gradient(to bottom, rgba(14, 23, 42, 0.4) 0%, transparent 15%, transparent 85%, rgba(14, 23, 42, 0.4) 100%);
}

.sl-dir-chip {
    font-size: 14px;
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.32);
    color: #93c5fd;
    padding: 7px 14px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.sl-dir-chip:hover {
    background: rgba(59, 130, 246, 0.24);
    border-color: rgba(96, 165, 250, 0.5);
    color: #ffffff;
}

.sl-directions-panel-footer {
    text-align: center;
    padding-top: 2px;
}

.sl-directions-panel-footer__text {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 992px) {
    .sl-dir-preview-card__media {
        width: 50%;
    }
    .sl-dir-preview-card__main {
        max-width: 74%;
        padding: 26px 26px;
    }
}

@media (max-width: 860px) {
    .sl-directions-master-panel {
        padding: 22px 18px;
        gap: 18px;
    }
    .sl-dir-btn {
        padding: 8px 14px;
        font-size: 13.5px;
    }
}

@media (max-width: 680px) {
    .sl-directions-panel-title {
        font-size: 17px;
    }
    .sl-directions-panel-desc {
        font-size: 13.5px;
    }
    .sl-dir-preview-card__body {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }
    .sl-dir-preview-card__media {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        order: -1;
        height: 180px;
        width: 100%;
    }
    .sl-dir-preview-card__img {
        -webkit-mask-image: linear-gradient(to bottom, #000 20%, rgba(0, 0, 0, 0.35) 65%, transparent 100%);
        mask-image: linear-gradient(to bottom, #000 20%, rgba(0, 0, 0, 0.35) 65%, transparent 100%);
    }
    .sl-dir-preview-card__fade {
        background: linear-gradient(to bottom, transparent 25%, #0e172a 100%);
    }
    .sl-dir-preview-card__main {
        max-width: 100%;
        padding: 16px 18px 22px;
        margin-top: -30px;
    }
}

/* 5. Local vs Remote Work */
.sl-scenarios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}

.sl-scenario-card {
    padding: 32px;
    border-radius: 20px;
    background: rgba(18, 26, 43, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sl-scenario-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #60a5fa;
    margin-bottom: 12px;
}

.sl-scenario-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #ffffff;
}

.sl-scenario-card p {
    font-size: var(--sl-font-card-body);
    color: #cbd5e1;
    line-height: var(--sl-line-height-body);
    margin: 0 0 24px;
}

.sl-scenario-card ul {
    margin: 0 0 24px;
    padding-left: 20px;
    color: #cbd5e1;
    font-size: var(--sl-font-card-body);
    line-height: var(--sl-line-height-sub);
}

.sl-scenario-card ul li {
    margin-bottom: 9px;
}

/* Unified Hub Showcase in Scenarios Section */
.sl-hub-showcase {
    width: 100%;
    margin: 28px 0 0;
    border-radius: 20px;
    overflow: hidden;
}

.sl-hub-screen-viewer {
    position: relative;
    width: 100%;
    height: auto;
    background: #070e1b;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0 0 20px 20px;
}

.sl-hub-screen-img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: transform 0.3s ease;
}

.sl-hub-screen-viewer:hover .sl-hub-screen-img {
    transform: scale(1.015) translateZ(0);
}

.sl-hub-screen-viewer:hover .sl-carousel-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

/* 6. Service Pricing Guidance */
.sl-pricing-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto 20px;
}

.sl-pricing-guide-card {
    padding: 32px;
    border-radius: 20px;
    background: rgba(18, 26, 43, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.sl-pricing-guide-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.sl-pricing-guide-card--highlight {
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.14), transparent 60%), rgba(18, 26, 43, 0.85);
    border: 1.5px solid rgba(168, 85, 247, 0.40);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.sl-pricing-guide-card--highlight:hover {
    border-color: rgba(168, 85, 247, 0.65);
}

.sl-pricing-guide-card__header {
    margin-bottom: 16px;
}

.sl-pricing-guide-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    margin-bottom: 10px;
}

.sl-pricing-guide-badge--pro {
    background: rgba(168, 85, 247, 0.18);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.40);
}

.sl-pricing-guide-card__title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
}

.sl-pricing-guide-card__price {
    margin: 12px 0 16px;
}

.sl-pricing-guide-card__amount {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    display: inline-block;
}

.sl-pricing-guide-card--highlight .sl-pricing-guide-card__amount {
    background: linear-gradient(135deg, #ffffff 30%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sl-pricing-guide-card__text {
    font-size: var(--sl-font-card-body);
    color: #cbd5e1;
    line-height: var(--sl-line-height-body);
    margin: 0;
}

.sl-pricing-guide-disclaimer {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    color: #94a3b8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: var(--sl-line-height-sub);
}

@media (max-width: 768px) {
    .sl-pricing-guide-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sl-pricing-guide-card {
        padding: 24px;
    }

    .sl-pricing-guide-card__amount {
        font-size: 28px;
    }
}

/* 7. Progression: Basic -> Professional */
.sl-progression-wrapper {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
    margin: 0 0 36px;
}

.sl-progression-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 24px;
    font-weight: 800;
}

.sl-plan-card {
    padding: 34px;
    border-radius: 22px;
    background: rgba(18, 26, 43, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.sl-plan-card--pro {
    border: 1.5px solid rgba(168, 85, 247, 0.45);
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.12), transparent 50%), rgba(18, 26, 43, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* Professional Pricing Box */
.sl-pro-pricing {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-radius: 14px;
    padding: 14px 16px;
    margin: 0 0 20px;
}

.sl-pro-pricing__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.sl-pro-pricing__title {
    font-size: 14px;
    font-weight: 700;
    color: #e9d5ff;
}

.sl-pro-pricing__badge {
    background: rgba(168, 85, 247, 0.22);
    border: 1px solid rgba(168, 85, 247, 0.45);
    color: #f3e8ff;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
}

.sl-pro-pricing__main {
    font-size: 15.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.45;
    margin-bottom: 6px;
}

.sl-pro-pricing__sub {
    font-size: 14px;
    line-height: 1.5;
    color: #cbd5e1;
    margin: 0 !important;
}

.sl-plan-badge {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #38bdf8;
    margin-bottom: 8px;
}

.sl-plan-card h3 {
    font-size: 23px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #ffffff;
}

.sl-plan-card p {
    font-size: var(--sl-font-card-body);
    color: #cbd5e1;
    margin: 0 0 20px;
    line-height: var(--sl-line-height-body);
}

.sl-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.sl-plan-features li {
    font-size: var(--sl-font-card-sub);
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: var(--sl-line-height-sub);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sl-check-icon {
    color: #10b981;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.2;
    flex-shrink: 0;
}

.sl-plan-client-price {
    font-size: 15px;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    padding: 8px 14px;
    margin: 0 0 16px;
    display: inline-block;
    line-height: 1.45;
}

.sl-plan-client-price strong {
    color: #38bdf8;
    font-weight: 700;
}

.sl-plan-client-price--pro {
    background: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.25);
    margin: 0 0 16px;
}

.sl-plan-client-price--pro strong {
    color: #c084fc;
}

.sl-plan-limit-note {
    font-size: 14.5px;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 18px;
    display: block;
    font-weight: 600;
    line-height: 1.45;
}

/* Pro Screenshots Grid inside Showcase Slot */
.sl-pro-screens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 16px 18px;
    background: #080e1b;
    box-sizing: border-box;
}

.sl-pro-screen-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    background: #0c1424;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.sl-pro-screen-card:hover {
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.sl-pro-screen-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.35s ease;
}

.sl-pro-screen-card:hover .sl-pro-screen-card__img {
    transform: scale(1.03);
}

.sl-pro-screen-card__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 65%, rgba(8, 14, 27, 0.85) 100%);
    transition: opacity 0.2s ease;
}

.sl-pro-screen-card:hover .sl-carousel-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .sl-pro-screens-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 14px;
    }
    .sl-pro-screen-card {
        height: 280px;
    }
}

@media (max-width: 540px) {
    .sl-pro-screens-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px;
    }
    .sl-pro-screen-card {
        height: 210px;
        border-radius: 8px;
    }
    .sl-pro-zoom-note {
        display: none !important;
    }
}

/* 8. Method & Trust (Process Sequence & Principles) */
.sl-method-wrapper {
    width: 100%;
    margin: 0;
}

.sl-process-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.28);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(59, 130, 246, 0.12);
    margin-bottom: 24px;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.sl-process-showcase:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 32px rgba(59, 130, 246, 0.22);
}

.sl-process-showcase__inner {
    position: relative;
    width: 100%;
}

.sl-process-showcase__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.sl-process-showcase:hover .sl-carousel-zoom-hint {
    opacity: 1;
}

.sl-method-intro {
    width: 100%;
    margin: 0 0 28px;
}

.sl-method-intro__lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #f8fafc;
    margin: 0 auto 18px;
    text-align: center;
    max-width: 960px;
}

.sl-method-intro__card {
    width: 100%;
    box-sizing: border-box;
    background: rgba(18, 26, 43, 0.7);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 16px;
    padding: 22px 28px;
    text-align: left;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.sl-method-intro__card p {
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
    color: #e2e8f0;
}

.sl-method-intro__card p + p {
    margin-top: 14px;
}

.sl-method-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .sl-method-intro__lead {
        font-size: 17px;
    }
    .sl-method-intro__card {
        padding: 16px 20px;
    }
    .sl-method-intro__card p {
        font-size: 16px;
    }
    .sl-method-bottom-grid {
        grid-template-columns: 1fr;
    }
}

.sl-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .sl-trust-grid {
        grid-template-columns: 1fr;
    }
}

.sl-trust-item {
    padding: 26px 24px;
    border-radius: 16px;
    background: rgba(18, 26, 43, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sl-trust-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}

.sl-trust-item p {
    font-size: 17px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .sl-trust-item h4 {
        font-size: 18px;
    }
    .sl-trust-item p {
        font-size: 15px;
    }
}

/* 9. Technology Section (Странник) */
.sl-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.sl-tech-card {
    background: var(--sl-card-bg);
    border: 1px solid var(--sl-card-border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sl-tech-card:hover {
    border-color: var(--sl-card-hover-border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.sl-tech-card__header {
    margin-bottom: 18px;
}

.sl-tech-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
}

.sl-tech-card__body {
    flex: 1 0 auto;
    font-size: var(--sl-font-card-body);
    color: #cbd5e1;
    line-height: 1.65;
}

.sl-tech-card__body p {
    margin: 0 0 14px;
}

.sl-tech-card__body p:last-child {
    margin-bottom: 0;
}

.sl-tech-highlight {
    background: rgba(59, 130, 246, 0.08);
    border-left: 3px solid #38bdf8;
    padding: 12px 16px;
    border-radius: 0 10px 10px 0;
    margin: 16px 0;
    font-size: var(--sl-font-card-sub);
    color: #e2e8f0;
    line-height: var(--sl-line-height-body);
}

.sl-tech-docs {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sl-tech-docs__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.sl-tech-docs__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    font-weight: 700;
}

.sl-tech-docs__hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 4px 10px;
    border-radius: 6px;
}

.sl-tech-docs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.sl-tech-doc-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
}

.sl-tech-doc-item:hover {
    transform: translateY(-3px);
    border-color: #38bdf8;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 16px rgba(56, 189, 248, 0.2);
}

.sl-tech-doc-item__thumb-wrap {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #07101e;
}

.sl-tech-doc-item__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.sl-tech-doc-item:hover .sl-tech-doc-item__thumb {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.sl-tech-doc-item__caption {
    padding: 9px 12px;
    background: rgba(11, 19, 36, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13.5px;
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .sl-tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .sl-tech-docs__grid {
        grid-template-columns: 1fr;
    }
    .sl-tech-doc-item__thumb-wrap {
        height: 180px;
    }
}

/* 10. Final CTA */
.sl-final-cta-card {
    text-align: center;
    padding: 56px 32px;
    border-radius: 24px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15), transparent 70%), rgba(18, 26, 43, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.3);
    max-width: 860px;
    margin: 0 auto;
}

.sl-final-cta-card h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
}

.sl-final-cta-card p {
    font-size: var(--sl-font-hero-text);
    color: #cbd5e1;
    max-width: 580px;
    margin: 0 auto 24px;
    line-height: var(--sl-line-height-body);
}

.sl-final-quota-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 12px;
    padding: 12px 24px;
    margin-bottom: 20px;
    max-width: 440px;
    width: 100%;
    box-sizing: border-box;
}

.sl-final-quota-box strong {
    font-size: 16px;
    color: #ffffff;
}

.sl-final-quota-box span {
    font-size: 13.5px;
    color: #94a3b8;
}

.sl-final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.sl-footer {
    padding: 32px 0 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13.5px;
    color: #64748b;
    text-align: center;
}

.sl-footer-legal-card {
    width: min(880px, calc(100% - 24px));
    margin: 0 auto 20px;
    padding: 16px 20px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.78));
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #e2e8f0;
    display: grid;
    gap: 8px;
    text-align: center;
    font-size: 13.5px;
    line-height: var(--sl-line-height-sub);
}

.sl-footer-legal-card .lk-app-footer__legal,
.sl-footer-legal-card .lk-app-footer__owner,
.sl-footer__owner {
    color: rgba(226, 232, 240, 0.9);
    font-size: 13.5px;
    font-weight: 500;
}

.sl-footer-legal-card .lk-app-footer__links,
.sl-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
}

.sl-footer-legal-card .lk-app-footer__links a,
.sl-footer-legal-card a,
.sl-footer__links a {
    color: rgba(191, 219, 254, 0.92);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(191, 219, 254, 0.35);
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
    font-size: 13px;
}

.sl-footer-legal-card .lk-app-footer__links a:hover,
.sl-footer-legal-card a:hover,
.sl-footer__links a:hover {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.85);
}

.sl-footer__disclaimer {
    margin: 0;
    font-size: 13px;
    color: #94a3b8;
    line-height: var(--sl-line-height-sub);
}

/* Responsive */
@media (max-width: 1180px) and (min-width: 1025px) {
    .sl-nav {
        gap: 10px;
    }
    .sl-nav__link {
        font-size: 12.5px;
    }
    .sl-header__actions .sl-btn-primary {
        padding: 8px 12px;
        font-size: 12.5px;
    }
}

@media (max-width: 1024px) {
    .sl-hero__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .sl-hero__title {
        font-size: 32px;
        line-height: 1.24;
    }
    .sl-progression-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sl-progression-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    .sl-trust-grid {
        grid-template-columns: 1fr;
    }
    .sl-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .sl-hero__proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .sl-proof-item {
        width: 100%;
    }
    .sl-proof-item strong {
        font-size: 17px;
    }
    .sl-proof-item span {
        font-size: 13.5px;
    }
}

@media (max-width: 640px) {
    .sl-header {
        padding: 12px 0;
    }
    .sl-header__inner {
        gap: 12px 14px;
    }
    .sl-brand__name {
        font-size: 17px;
    }
    .sl-brand__sub {
        font-size: 9px;
    }
    .sl-section {
        padding: 60px 0;
    }
    .sl-title {
        font-size: 28px;
    }
    .sl-hero__title {
        font-size: 25px;
        line-height: 1.28;
    }
    .sl-hero__actions {
        flex-direction: column;
        width: 100%;
    }
    .sl-hero__actions .sl-btn-primary,
    .sl-hero__actions .sl-btn-secondary {
        width: 100%;
    }
    .sl-result-grid,
    .sl-scenarios-grid {
        grid-template-columns: 1fr;
    }
    .sl-card,
    .sl-plan-card,
    .sl-scenario-card,
    .sl-method-lead-card {
        padding: 22px 18px;
    }
}

@media (max-width: 520px) {
    .sl-header__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .sl-brand {
        width: 100%;
    }
    .sl-header__actions {
        width: 100%;
        justify-content: flex-end;
        gap: 8px;
    }
}

/* ===== Auth Login Modal Styles ===== */
body.promo-modal-open {
    overflow: hidden;
}

.promo-login-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 14px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.promo-login-modal[hidden] {
    display: none;
}

.promo-login-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.promo-login-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 8, 18, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.promo-login-modal__inner {
    position: relative;
    z-index: 1;
    width: min(450px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 24px;
    color: #fff;
    background: rgba(25, 34, 51, 0.96);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.promo-login-modal__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.12), transparent 44%);
    pointer-events: none;
}

.promo-login-modal__inner > * {
    position: relative;
    z-index: 1;
}

.promo-login-modal__close {
    appearance: none;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s ease, transform 0.18s ease;
}

.promo-login-modal__close:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.promo-login-modal__head {
    padding-right: 38px;
    margin-bottom: 18px;
}

.promo-login-modal__kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.promo-login-modal h2 {
    margin: 0;
    color: rgba(255, 255, 255, 0.98);
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.promo-login-modal p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
    font-size: 14px;
}

.promo-alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.45;
}

.promo-alert--success {
    color: rgba(187, 247, 208, 0.96);
    background: rgba(34, 197, 94, 0.13);
    border: 1px solid rgba(34, 197, 94, 0.22);
}

.promo-alert--error {
    color: rgba(254, 202, 202, 0.98);
    background: rgba(239, 68, 68, 0.13);
    border: 1px solid rgba(239, 68, 68, 0.24);
}

.promo-login-form {
    display: grid;
    gap: 13px;
}

.promo-field {
    display: grid;
    gap: 7px;
}

.promo-field label,
.promo-checkbox {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.35;
}

.promo-field input {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 9px 12px;
    outline: none;
    font-size: 15px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.promo-field input:focus {
    border-color: rgba(59, 130, 246, 0.55);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.promo-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    cursor: pointer;
}

.promo-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #3b82f6;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.promo-btn--primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.promo-btn--primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}

.promo-btn--full {
    width: 100%;
}

.promo-forgot {
    width: fit-content;
    margin: 4px auto 0;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    font-size: 14px;
    text-underline-offset: 3px;
    transition: color 0.18s ease;
}

.promo-forgot:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

/* Floating Support Launcher on Specialist Landing */
.sl-floating-support {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.sl-floating-support__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 16px rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    font-family: inherit;
    text-decoration: none;
    user-select: none;
}

.sl-floating-support__btn:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: #60a5fa;
    color: #93c5fd;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), 0 0 24px rgba(59, 130, 246, 0.35);
}

.sl-floating-support__btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.sl-floating-support__icon {
    font-size: 16px;
    line-height: 1;
}

.sl-floating-support__text {
    white-space: nowrap;
}

.sl-link-btn {
    display: inline;
    color: #93c5fd;
    text-decoration: underline;
    text-underline-offset: 3px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    cursor: pointer;
    transition: color 0.15s ease;
}

.sl-link-btn:hover {
    color: #bfdbfe;
    text-decoration: underline;
}

.sl-link-btn:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
    border-radius: 2px;
}

.sl-final-cta-card .sl-final-cta-support,
.sl-final-cta-support {
    margin: 28px auto 0 !important;
    font-size: 13px !important;
    color: #94a3b8 !important;
    text-align: center;
}

.sl-final-cta-card .sl-final-cta-support .sl-link-btn,
.sl-final-cta-support .sl-link-btn {
    font-size: 13px !important;
    color: #93c5fd !important;
}

@media (max-width: 640px) {
    .sl-floating-support {
        bottom: 18px;
        right: 18px;
    }
    .sl-floating-support__btn {
        padding: 9px 14px;
        font-size: 13px;
        gap: 6px;
    }
}
