/* ================================================================
   WebStudio Slider v2.0 — Public Styles
   ================================================================ */
.wss-outer *, .wss-outer *::before, .wss-outer *::after { box-sizing: border-box; }

/* ── Outer wrapper ────────────────────────────────────────────── */
.wss-outer {
    position: relative;
    width: 100%;
    font-family: var(--wss-font, inherit);
    padding: var(--wss-spt,0) var(--wss-spr,0) var(--wss-spb,0) var(--wss-spl,0);
}

/* ── FULL-SCREEN layout ───────────────────────────────────────── */
.wss-layout-fullscreen { background: #000; }
.wss-layout-fullscreen .wss-slides { height: var(--wss-height, 100vh); }

/* ── BOXED layout ─────────────────────────────────────────────── */
.wss-layout-boxed {
    padding: max(var(--wss-spt,0px), 40px) max(var(--wss-spr,0px), 24px)
             max(var(--wss-spb,0px), 40px) max(var(--wss-spl,0px), 24px);
    background: transparent;
}
.wss-boxed-wrap {
    max-width: var(--wss-boxed-max, 1100px);
    margin: 0 auto;
    border-radius: var(--wss-boxed-radius, 16px);
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.wss-layout-boxed .wss-slides { height: var(--wss-height, 600px); }

/* ── Slides container ────────────────────────────────────────── */
.wss-slides {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ── Individual slide ────────────────────────────────────────── */
.wss-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity var(--wss-anim-speed,.7s) ease,
                transform var(--wss-anim-speed,.7s) ease;
}
.wss-slide.wss-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
    position: relative;
    height: 100%;
}

/* Slide transition: zoom */
.wss-trans-zoom .wss-slide { transform: scale(1.04); }
.wss-trans-zoom .wss-slide.wss-active { transform: scale(1); }

/* Slide transition: slide */
.wss-trans-slide .wss-slide { transform: translateX(100%); opacity: 1; }
.wss-trans-slide .wss-slide.wss-active { transform: translateX(0); }
.wss-trans-slide .wss-slide.wss-exit { transform: translateX(-100%); }

/* ── Overlay ─────────────────────────────────────────────────── */
.wss-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ── Slide inner ─────────────────────────────────────────────── */
.wss-slide-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: var(--wss-pt,80px) var(--wss-pr,60px) var(--wss-pb,80px) calc(var(--wss-pl,80px) + 52px);
}
.wss-nav-right ~ .wss-slides .wss-slide-inner,
.wss-outer[style*="nav_position:right"] .wss-slide-inner {
    padding-left: var(--wss-pl,80px);
    padding-right: calc(var(--wss-pr,60px) + 52px);
}

/* ── Slide content row ───────────────────────────────────────── */
.wss-slide-content {
    display: flex;
    align-items: center;
    gap: 56px;
    width: 100%;
    max-width: var(--wss-content-max, 1280px);
    margin: 0 auto;
}
.wss-rp-none .wss-text-col   { max-width: 720px; }
.wss-img-left  { flex-direction: row-reverse; }

/* ── Text column ─────────────────────────────────────────────── */
.wss-text-col { flex: 1 1 0; min-width: 0; }

/* ── AI badge ────────────────────────────────────────────────── */
.wss-ai-wrap {
    position: relative;
    display: inline-flex;
    margin-bottom: 20px;
}
.wss-ai-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #1a56a0;
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: 8px 18px 8px 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.wss-ai-pill span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .3px;
    white-space: nowrap;
}
.wss-sparkle {
    position: absolute;
    font-size: 13px;
    color: #c8a84b;
    line-height: 1;
    pointer-events: none;
    animation: wss-spk 2.4s ease-in-out infinite;
}
.wss-sp-tl { top: -9px; left: -9px; font-size: 15px; animation-delay: 0s; }
.wss-sp-br { bottom: -7px; right: -12px; font-size: 10px; animation-delay: 1.2s; }
@keyframes wss-spk {
    0%,100% { opacity: .9; transform: scale(1) rotate(0deg); }
    50%      { opacity: .25; transform: scale(.6) rotate(20deg); }
}

/* ── Subheading ──────────────────────────────────────────────── */
.wss-subheading {
    font-size: var(--wss-sh-size, 14px);
    font-weight: var(--wss-sh-weight, 600);
    color: var(--wss-sh-color, rgba(255,255,255,.75));
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

/* ── Heading ─────────────────────────────────────────────────── */
.wss-heading {
    font-size: var(--wss-h-size, 52px);
    font-weight: var(--wss-h-weight, 700);
    line-height: var(--wss-h-lh, 1.15);
    color: var(--wss-h-color, #fff);
    margin: 0 0 20px;
}

/* ── Description ─────────────────────────────────────────────── */
.wss-desc {
    font-size: var(--wss-d-size, 17px);
    line-height: var(--wss-d-lh, 1.7);
    color: var(--wss-d-color, rgba(255,255,255,.85));
    margin: 0 0 30px;
    max-width: 560px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.wss-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.wss-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 30px;
    font-size: var(--wss-btn-size, 15px);
    font-weight: var(--wss-btn-weight, 600);
    border-radius: var(--wss-btn-radius, 6px);
    text-decoration: none;
    transition: transform .2s, filter .2s, box-shadow .2s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}
.wss-btn:hover { transform: translateY(-2px); filter: brightness(1.08); text-decoration: none; }
.wss-btn-primary {
    background: var(--wss-btn-bg, #4ade80);
    color: var(--wss-btn-color, #14532d);
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.wss-btn-primary:hover { color: var(--wss-btn-color, #14532d); box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.wss-btn-outline {
    background: var(--wss-btn2-bg, rgba(255,255,255,.15));
    color: var(--wss-btn2-color, #fff);
    border: 1.5px solid var(--wss-btn2-border, rgba(255,255,255,.4));
    backdrop-filter: blur(4px);
}
.wss-btn-outline:hover { color: var(--wss-btn2-color, #fff); background: rgba(255,255,255,.25); }

/* ── Badges ──────────────────────────────────────────────────── */
.wss-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.wss-badge {
    background: var(--wss-badge-bg, rgba(255,255,255,.12));
    color: var(--wss-badge-color, #fff);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
}

/* ── Right column ────────────────────────────────────────────── */
.wss-right-col {
    flex: 0 0 44%;
    max-width: 44%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.wss-rp-both .wss-right-col { gap: 16px; }

/* ── Slide image ─────────────────────────────────────────────── */
.wss-img-wrap { width: 100%; }
.wss-slide-img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}
.wss-frame-shadow .wss-slide-img {
    filter: drop-shadow(0 24px 50px rgba(0,0,0,.45));
}

/* ── Browser chrome ──────────────────────────────────────────── */
.wss-browser-chrome {
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,.18);
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.wss-browser-bar {
    background: rgba(255,255,255,.1);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.wss-win { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.wss-win-r { background: #ff5f57; }
.wss-win-y { background: #ffbd2e; }
.wss-win-g { background: #28ca40; }
.wss-url-bar { flex: 1; height: 18px; background: rgba(255,255,255,.12); border-radius: 20px; margin-left: 8px; }
.wss-browser-chrome img { width: 100%; display: block; max-height: 58vh; object-fit: cover; }

/* ── Phone chrome ────────────────────────────────────────────── */
.wss-phone-chrome {
    position: relative;
    max-width: 240px;
    margin: 0 auto;
    border: 10px solid rgba(255,255,255,.18);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.08);
}
.wss-phone-notch {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 90px; height: 22px;
    background: rgba(0,0,0,.7);
    border-radius: 0 0 16px 16px; z-index: 2;
}
.wss-phone-chrome img { width: 100%; display: block; max-height: 62vh; object-fit: cover; }

/* ── Right text panel ────────────────────────────────────────── */
.wss-rtp {
    width: 100%;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 28px 28px 24px;
}
.wss-rtp-h {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.25;
}
.wss-rtp-body {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.85);
    margin-bottom: 18px;
}
.wss-rtp-body ul  { padding-left: 18px; }
.wss-rtp-body li  { margin-bottom: 6px; }
.wss-rtp-body strong { color: #fff; }
.wss-rtp-btn {
    display: inline-block;
    padding: 9px 20px;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.35);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s;
}
.wss-rtp-btn:hover { background: rgba(255,255,255,.25); color: #fff; text-decoration: none; }

/* ================================================================
   LEFT NAV
   ================================================================ */
.wss-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.wss-nav-left  { left: 0; }
.wss-nav-right { right: 0; }

.wss-nav-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 6px 0;
}

.wss-nav-line {
    position: absolute;
    left: 17px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: rgba(255,255,255,.12);
    border-radius: 2px;
    pointer-events: none;
    z-index: 0;
}
.wss-nav-line-fill {
    width: 100%;
    background: var(--wss-nav-line, #4ade80);
    border-radius: 2px;
    transition: height .45s cubic-bezier(.4,0,.2,1);
    height: 0%;
}

.wss-nav-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 10px 14px 10px 11px;
    border-radius: 0 8px 8px 0;
    color: var(--wss-nav-color, rgba(255,255,255,.8));
    text-decoration: none;
    cursor: pointer;
    transition: background .22s ease, color .22s ease;
}
.wss-nav-item:hover,
.wss-nav-item.wss-active {
    background: var(--wss-nav-bg, rgba(0,0,0,.4));
    color: var(--wss-nav-active, #4ade80);
    text-decoration: none;
}

.wss-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    flex-shrink: 0;
    transition: background .22s, border-color .22s, transform .22s;
}
.wss-nav-item.wss-active .wss-nav-dot,
.wss-nav-item:hover .wss-nav-dot {
    background: var(--wss-nav-active, #4ade80);
    border-color: var(--wss-nav-active, #4ade80);
    transform: scale(1.35);
}

.wss-nav-label {
    font-size: var(--wss-nav-size, 12px);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 0;
    transition: max-width .28s ease, opacity .22s ease, margin-left .22s ease;
}
.wss-nav-item.wss-active .wss-nav-label,
.wss-nav-item:hover .wss-nav-label {
    max-width: 150px;
    opacity: 1;
    margin-left: 9px;
}

/* ================================================================
   ARROWS
   ================================================================ */
.wss-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,.35);
    border: 2px solid rgba(255,255,255,.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .2s, border-color .2s, transform .2s, opacity .2s;
    opacity: 0;
    padding: 0;
    line-height: 1;
    outline: none;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.wss-arrow svg {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: #ffffff;
    fill: none;
    overflow: visible;
}
.wss-outer:hover .wss-arrow { opacity: 1; }
.wss-prev { left: 60px; }
.wss-next { right: 16px; }
.wss-arrow:hover {
    background: rgba(255,255,255,.22);
    border-color: #fff;
    transform: translateY(-50%) scale(1.1);
}
.wss-arrow:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ================================================================
   DOTS (mobile)
   ================================================================ */
.wss-dots {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    gap: 8px;
    align-items: center;
}
.wss-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .22s, transform .22s, width .22s;
}
.wss-dot.wss-active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
    transform: none;
}

/* ================================================================
   PROGRESS BAR
   ================================================================ */
.wss-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10;
    background: rgba(255,255,255,.1);
}
.wss-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--wss-nav-active, #4ade80);
    border-radius: 0 2px 2px 0;
    transition: width .05s linear;
}

/* ================================================================
   CONTENT ANIMATIONS
   ================================================================ */
.wss-anim {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity var(--wss-anim-speed,.7s) ease,
                transform var(--wss-anim-speed,.7s) ease;
}
.wss-trans-zoom .wss-anim    { transform: scale(.92); }
.wss-trans-slide .wss-anim   { transform: translateX(-28px); }

.wss-slide.wss-active .wss-anim { opacity: 1; transform: none !important; }
.wss-slide.wss-active .wss-text-col .wss-anim:nth-child(1) { transition-delay: .05s; }
.wss-slide.wss-active .wss-text-col .wss-anim:nth-child(2) { transition-delay: .14s; }
.wss-slide.wss-active .wss-text-col .wss-anim:nth-child(3) { transition-delay: .22s; }
.wss-slide.wss-active .wss-text-col .wss-anim:nth-child(4) { transition-delay: .30s; }
.wss-slide.wss-active .wss-text-col .wss-anim:nth-child(5) { transition-delay: .36s; }
.wss-slide.wss-active .wss-text-col .wss-anim:nth-child(6) { transition-delay: .42s; }
.wss-slide.wss-active .wss-right-col.wss-anim               { transition-delay: .2s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .wss-slide-content { gap: 36px; }
    .wss-right-col { flex: 0 0 40%; max-width: 40%; }
    .wss-heading { font-size: clamp(28px, 4vw, var(--wss-h-size, 52px)) !important; }
}

@media (max-width: 900px) {
    .wss-slide-content { gap: 24px; }
    .wss-right-col { flex: 0 0 38%; max-width: 38%; }
    .wss-heading { font-size: clamp(24px, 4.5vw, 44px) !important; }
    .wss-desc { font-size: 15px !important; }
}

@media (max-width: 768px) {
    /* Hide left nav, show dots + arrows */
    .wss-nav { display: none; }
    .wss-dots { display: flex; }
    .wss-arrow { opacity: 1; width: 40px; height: 40px; background: rgba(0,0,0,.4); border-color: rgba(255,255,255,.6); }
    .wss-arrow svg { width: 18px; height: 18px; }
    .wss-prev { left: 10px; }
    .wss-next { right: 10px; }

    /* Layout */
    .wss-layout-fullscreen .wss-slides { height: auto !important; min-height: 100svh; }
    .wss-layout-boxed      .wss-slides { height: auto !important; min-height: 520px; }
    .wss-slide { position: relative !important; min-height: inherit; }
    .wss-slide:not(.wss-active) { display: none; }
    .wss-slide-inner {
        position: static !important;
        padding: 60px 20px 80px !important;
    }
    .wss-slide-content {
        flex-direction: column !important;
        gap: 28px;
        text-align: center;
    }
    .wss-img-left { flex-direction: column !important; }
    .wss-right-col {
        flex: unset !important;
        max-width: 88% !important;
        width: 88%;
        order: -1;
    }
    .wss-hide-img-mobile .wss-right-col { display: none; }
    .wss-text-col .wss-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .wss-btns { justify-content: center; }
    .wss-badges { justify-content: center; }
    .wss-ai-wrap { justify-content: center; }
    .wss-heading { font-size: var(--wss-mobile-h-size, 30px) !important; }
    .wss-desc    { font-size: var(--wss-mobile-d-size, 15px) !important; }
    .wss-phone-chrome { max-width: 180px; }
}

@media (max-width: 480px) {
    .wss-btn { padding: 12px 22px; font-size: 14px !important; }
    .wss-heading { font-size: calc(var(--wss-mobile-h-size, 30px) * .88) !important; }
}

/* ── No-slider message ─────────────────────────────────────────── */
.wss-no-slider { padding: 20px; color: #888; font-style: italic; }
