
*, *::before, *::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:root {
    --bg-dark: #06090f;
    --bg-dark-2: #0c1220;
    --bg-light: #f4f7fb;
    --bg-white: #ffffff;
    --accent: #22a7e6;
    --accent-dark: #1D4ED8;
    --accent-darker: #1E40AF;
    --accent-light: #93C5FD;
    --accent-bright: #DBEAFE;
    --accent-glow: rgba(37, 99, 235, .18);
    --accent-glow2: rgba(37, 99, 235, .08);
    --green: #10b981;
    --orange: #f59e0b;
    --red: #f43f5e;
    --text-white: #f1f5f9;
    --text-muted: #475569;
    --text-dark: #0f172a;
    --text-dark-sub: #475569;
    --border-glass: rgba(255, 255, 255, .07);
    --border-light: rgba(226, 232, 240, .7);
    --border-subtle: rgba(0, 0, 0, .06);
    --glass-dark: rgba(12, 18, 32, .55);
    /* Duotone icon colors - match brand accent */
    --fa-primary-color: #22a7e6;
    --fa-secondary-color: #22a7e6;
    --fa-secondary-opacity: .55;
    --glass-light: rgba(255, 255, 255, .75);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .08);
    --r-xl: 24px;
    --r-lg: 18px;
    --r-md: 14px;
    --r-sm: 10px;
    --r-full: 9999px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    max-width: 100vw;
    overflow-x: hidden
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

*:focus-visible {
    outline: 2px solid #22a7e6;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid #22a7e6;
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}
img {
    max-width: 100%;
    display: block
}

.wrap {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .9rem;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border-radius: var(--r-full);
    box-shadow: 0 2px 20px rgba(37, 99, 235, .35);
}

.btn-accent:hover {
    background: #0284C7;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-white {
    background: rgba(255, 255, 255, .85);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.btn-white:hover {
    background: #fff;
    border-color: var(--accent);
    color: var(--accent-dark)
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light)
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow2)
}

.btn-dark {
    background: var(--bg-dark);
    color: #fff
}

.btn-dark:hover {
    background: var(--bg-dark-2);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.btn-lg {
    padding: 17px 40px;
    font-size: .95rem
}

.btn-green {
    background: var(--green);
    color: #fff;
    -webkit-box-shadow: 0 2px 20px rgba(16, 185, 129, .3);
    box-shadow: 0 2px 20px rgba(16, 185, 129, .3)
}

.btn-green:hover {
    background: #059669;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 30px rgba(16, 185, 129, .4);
    box-shadow: 0 8px 30px rgba(16, 185, 129, .4)
}

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    -webkit-transition: padding .4s;
    -o-transition: padding .4s;
    transition: padding .4s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.header.scrolled {
    padding: 8px 0
}

.header-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px 8px 8px 22px;
    border-radius: var(--r-full);
    -webkit-transition: all .45s cubic-bezier(.25, .8, .25, 1);
    -o-transition: all .45s cubic-bezier(.25, .8, .25, 1);
    transition: all .45s cubic-bezier(.25, .8, .25, 1);
}

.header.dark .header-bar {
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(30px) saturate(1.8);
    -webkit-backdrop-filter: blur(30px) saturate(1.8);
    border: 1px solid rgba(0, 0, 0, .06);
    -webkit-box-shadow: 0 2px 30px rgba(0, 0, 0, .05);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .05);
}

.header.light .header-bar {
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(30px) saturate(1.8);
    -webkit-backdrop-filter: blur(30px) saturate(1.8);
    border: 1px solid rgba(0, 0, 0, .06);
    -webkit-box-shadow: 0 2px 30px rgba(0, 0, 0, .05);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .05);
}

.logo img {
    height: 28px
}

.header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header-nav a {
    padding: 8px 16px;
    border-radius: var(--r-full);
    font-size: .85rem;
    font-weight: 600;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.header.dark .header-nav a {
    color: rgba(255, 255, 255, .7)
}

.header.dark .header-nav a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, .08)
}


.header.light .header-nav a {
    color: rgba(0, 0, 0, .55)
}

.header.light .header-nav a:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, .04)
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header-right .link {
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--r-full);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px
}

.header.dark .header-right .link {
    color: rgba(255, 255, 255, .7);
    white-space: nowrap;
}

.header.dark .header-right .link:hover {
    color: #FFFFFF
}

.header.dark .btn.btn-ghost {
    border-color: rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .85);
}

.header.dark .btn.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.header.light .header-right .link {
    color: rgba(0, 0, 0, .55);
    white-space: nowrap;
}

.header.light .header-right .link:hover {
    color: var(--text-dark)
}


.header-right .link-logout {
    font-size: .8rem;
    opacity: .6
}

.header-right .link-logout:hover {
    opacity: 1
}

.btn.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 12px;
    border: 1.5px solid #cbd5e1;
    color: #1e293b;
    background: transparent;
    font-size: 13.6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn.btn-ghost:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

.btn.btn-ghost i {
    font-size: 16px;
}

.header-right .btn.btn-accent:hover {
    background: #0284C7;
}

.header .btn-accent {
    padding: 10px 24px;
    font-size: .85rem
}

.burger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(0, 0, 0, .08);
    background: rgba(0, 0, 0, .04);
    cursor: pointer;
    border-radius: var(--r-md);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.2rem
}

.burger:hover {
    background: rgba(0, 0, 0, .08);
    border-color: rgba(0, 0, 0, .12)
}

.header.dark .burger {
    color: var(--text-dark)
}

.header.light .burger {
    color: var(--text-dark);
    border-color: rgba(0, 0, 0, .08);
    background: rgba(0, 0, 0, .04)
}

.header.light .burger:hover {
    background: rgba(0, 0, 0, .08);
    border-color: rgba(0, 0, 0, .12)
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .99);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: auto
}

.mnav-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.mnav-top img {
    height: 26px
}

.mnav-close {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    background: rgba(0, 0, 0, .04);
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    -webkit-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s
}

.mnav-close:hover {
    background: rgba(0, 0, 0, .08)
}

.mnav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 24px 8px;
    gap: 2px
}

.mnav-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 16px 16px;
    border-radius: var(--r-md);
    -webkit-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s;
    text-decoration: none
}

.mnav-links a:hover, .mnav-links a:active {
    background: rgba(0, 0, 0, .04)
}

.mnav-links a i {
    font-size: 1.15rem;
    color: var(--accent);
    opacity: .65;
    width: 24px;
    text-align: center
}

.mnav-divider {
    height: 1px;
    background: rgba(0, 0, 0, .06);
    margin: 8px 24px
}

.mnav-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    padding: 12px 24px 20px
}

.mnav-contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--r-lg);
    background: rgba(37, 99, 235, .06);
    border: 1px solid rgba(37, 99, 235, .12);
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.mnav-contact a:hover {
    background: rgba(37, 99, 235, .12);
    border-color: rgba(37, 99, 235, .25)
}

.mnav-contact a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center
}

.mnav-cta {
    padding: 8px 24px 32px;
    margin-top: auto
}

.mnav-cta .btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1rem
}

.mnav-cta .btn + .btn {
    margin-top: 10px
}

.mnav-logout {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

.mnav-logout:hover {
    color: #ef4444
}

.mnav-footer {
    padding: 0 24px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px
}

.mnav-footer a {
    font-size: .78rem;
    color: var(--text-muted);
    text-decoration: none;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

.mnav-footer a:hover {
    color: var(--text-dark)
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    max-height: 1080px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-gradient(linear, left top, left bottom, from(#f0f9ff), color-stop(60%, #ffffff), to(#f8fafc));
    background: -o-linear-gradient(top, #f0f9ff 0%, #ffffff 60%, #f8fafc 100%);
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 60%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    -webkit-filter: blur(140px);
    filter: blur(140px);
    pointer-events: none;
    will-change: transform, opacity;
}

.hero-glow-1 {
    width: 900px;
    height: 900px;
    background: rgba(37, 99, 235, .12);
    top: -280px;
    right: -200px;
    -webkit-animation: glowDrift1 14s ease-in-out infinite;
    animation: glowDrift1 14s ease-in-out infinite
}

.hero-glow-2 {
    width: 700px;
    height: 700px;
    background: rgba(37, 99, 235, .08);
    bottom: -220px;
    left: -180px;
    -webkit-animation: glowDrift2 18s ease-in-out infinite;
    animation: glowDrift2 18s ease-in-out infinite
}

.hero-glow-3 {
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, .1);
    top: 30%;
    left: 20%;
    -webkit-animation: glowDrift3 12s ease-in-out infinite;
    animation: glowDrift3 12s ease-in-out infinite
}

.hero-glow-4 {
    width: 450px;
    height: 450px;
    background: rgba(37, 99, 235, .1);
    bottom: 5%;
    right: 15%;
    animation: glowDrift2 20s ease-in-out infinite reverse
}

@-webkit-keyframes glowDrift1 {
    0%, 100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
        opacity: 1
    }
    50% {
        -webkit-transform: translate(60px, 40px) scale(1.15);
        transform: translate(60px, 40px) scale(1.15);
        opacity: .65
    }
}

@keyframes glowDrift1 {
    0%, 100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
        opacity: 1
    }
    50% {
        -webkit-transform: translate(60px, 40px) scale(1.15);
        transform: translate(60px, 40px) scale(1.15);
        opacity: .65
    }
}

@-webkit-keyframes glowDrift2 {
    0%, 100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
        opacity: 1
    }
    50% {
        -webkit-transform: translate(-40px, -50px) scale(1.2);
        transform: translate(-40px, -50px) scale(1.2);
        opacity: .55
    }
}

@keyframes glowDrift2 {
    0%, 100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
        opacity: 1
    }
    50% {
        -webkit-transform: translate(-40px, -50px) scale(1.2);
        transform: translate(-40px, -50px) scale(1.2);
        opacity: .55
    }
}

@-webkit-keyframes glowDrift3 {
    0%, 100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
        opacity: .8
    }
    33% {
        -webkit-transform: translate(60px, -30px) scale(1.25);
        transform: translate(60px, -30px) scale(1.25);
        opacity: 1
    }
    66% {
        -webkit-transform: translate(-30px, 50px) scale(.85);
        transform: translate(-30px, 50px) scale(.85);
        opacity: .5
    }
}

@keyframes glowDrift3 {
    0%, 100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
        opacity: .8
    }
    33% {
        -webkit-transform: translate(60px, -30px) scale(1.25);
        transform: translate(60px, -30px) scale(1.25);
        opacity: 1
    }
    66% {
        -webkit-transform: translate(-30px, 50px) scale(.85);
        transform: translate(-30px, 50px) scale(.85);
        opacity: .5
    }
}

.hero-aurora {
    position: absolute;
    width: 200%;
    height: 250px;
    background: -o-linear-gradient(left, transparent, rgba(37, 99, 235, .07), rgba(139, 92, 246, .05), rgba(16, 185, 129, .04), transparent);
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(37, 99, 235, .07)), color-stop(rgba(139, 92, 246, .05)), color-stop(rgba(16, 185, 129, .04)), to(transparent));
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .07), rgba(139, 92, 246, .05), rgba(16, 185, 129, .04), transparent);
    pointer-events: none;
    -webkit-filter: blur(60px);
    filter: blur(60px);
    will-change: transform
}

.hero-aurora-1 {
    top: 25%;
    left: -50%;
    -webkit-transform: rotate(-12deg);
    -ms-transform: rotate(-12deg);
    transform: rotate(-12deg);
    -webkit-animation: auroraDrift 22s ease-in-out infinite;
    animation: auroraDrift 22s ease-in-out infinite
}

.hero-aurora-2 {
    top: 55%;
    left: -50%;
    -webkit-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    transform: rotate(-8deg);
    animation: auroraDrift 28s ease-in-out infinite reverse;
    background: -o-linear-gradient(left, transparent, rgba(16, 185, 129, .05), rgba(37, 99, 235, .06), rgba(139, 92, 246, .04), transparent);
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(16, 185, 129, .05)), color-stop(rgba(37, 99, 235, .06)), color-stop(rgba(139, 92, 246, .04)), to(transparent));
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, .05), rgba(37, 99, 235, .06), rgba(139, 92, 246, .04), transparent)
}

@-webkit-keyframes auroraDrift {
    0%, 100% {
        -webkit-transform: rotate(-12deg) translateX(-5%);
        transform: rotate(-12deg) translateX(-5%);
        opacity: .6
    }
    50% {
        -webkit-transform: rotate(-6deg) translateX(5%);
        transform: rotate(-6deg) translateX(5%);
        opacity: 1
    }
}

@keyframes auroraDrift {
    0%, 100% {
        -webkit-transform: rotate(-12deg) translateX(-5%);
        transform: rotate(-12deg) translateX(-5%);
        opacity: .6
    }
    50% {
        -webkit-transform: rotate(-6deg) translateX(5%);
        transform: rotate(-6deg) translateX(5%);
        opacity: 1
    }
}

.hero-shape {
    position: absolute;
    pointer-events: none;
    will-change: transform
}

.hero-ring-1 {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1.5px solid rgba(37, 99, 235, .12);
    top: 12%;
    right: 10%;
    -webkit-animation: shapeOrbit 28s linear infinite;
    animation: shapeOrbit 28s linear infinite
}

.hero-ring-2 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, .1);
    bottom: 22%;
    left: 6%;
    animation: shapeOrbit 35s linear infinite reverse
}

.hero-ring-3 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, .08);
    top: 55%;
    right: 30%;
    -webkit-animation: shapeOrbit 40s linear infinite;
    animation: shapeOrbit 40s linear infinite
}

.hero-diamond-1 {
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(37, 99, 235, .15);
    border-radius: 5px;
    top: 18%;
    left: 12%;
    -webkit-animation: shapeSpin 22s linear infinite;
    animation: shapeSpin 22s linear infinite
}

.hero-diamond-2 {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(16, 185, 129, .12);
    border-radius: 3px;
    bottom: 28%;
    right: 22%;
    animation: shapeSpin 18s linear infinite reverse
}

.hero-cross-1 {
    width: 18px;
    height: 18px;
    top: 35%;
    left: 8%;
    position: absolute;
    pointer-events: none;
    -webkit-animation: shapeSpin 30s linear infinite;
    animation: shapeSpin 30s linear infinite
}

.hero-cross-1::before, .hero-cross-1::after {
    content: '';
    position: absolute;
    background: rgba(37, 99, 235, .12);
    border-radius: 1px
}

.hero-cross-1::before {
    width: 100%;
    height: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.hero-cross-1::after {
    width: 2px;
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

@-webkit-keyframes shapeOrbit {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
    25% {
        -webkit-transform: rotate(90deg) scale(1.08);
        transform: rotate(90deg) scale(1.08)
    }
    50% {
        -webkit-transform: rotate(180deg) scale(1);
        transform: rotate(180deg) scale(1)
    }
    75% {
        -webkit-transform: rotate(270deg) scale(.92);
        transform: rotate(270deg) scale(.92)
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1)
    }
}

@keyframes shapeOrbit {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
    25% {
        -webkit-transform: rotate(90deg) scale(1.08);
        transform: rotate(90deg) scale(1.08)
    }
    50% {
        -webkit-transform: rotate(180deg) scale(1);
        transform: rotate(180deg) scale(1)
    }
    75% {
        -webkit-transform: rotate(270deg) scale(.92);
        transform: rotate(270deg) scale(.92)
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1)
    }
}

@-webkit-keyframes shapeSpin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes shapeSpin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform
}

.hero-p1 {
    width: 4px;
    height: 4px;
    background: rgba(37, 99, 235, .35);
    top: 22%;
    left: 18%;
    -webkit-animation: particleFloat1 14s ease-in-out infinite;
    animation: particleFloat1 14s ease-in-out infinite
}

.hero-p2 {
    width: 3px;
    height: 3px;
    background: rgba(139, 92, 246, .3);
    top: 58%;
    right: 12%;
    -webkit-animation: particleFloat2 18s ease-in-out infinite;
    animation: particleFloat2 18s ease-in-out infinite
}

.hero-p3 {
    width: 5px;
    height: 5px;
    background: rgba(16, 185, 129, .25);
    bottom: 18%;
    left: 32%;
    -webkit-animation: particleFloat1 20s ease-in-out infinite 4s;
    animation: particleFloat1 20s ease-in-out infinite 4s
}

.hero-p4 {
    width: 3px;
    height: 3px;
    background: rgba(37, 99, 235, .2);
    top: 42%;
    right: 28%;
    -webkit-animation: particleFloat2 16s ease-in-out infinite 2s;
    animation: particleFloat2 16s ease-in-out infinite 2s
}

.hero-p5 {
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, .2);
    bottom: 35%;
    right: 8%;
    -webkit-animation: particleFloat1 12s ease-in-out infinite 6s;
    animation: particleFloat1 12s ease-in-out infinite 6s
}

.hero-p6 {
    width: 3px;
    height: 3px;
    background: rgba(37, 99, 235, .25);
    top: 15%;
    left: 40%;
    -webkit-animation: particleFloat2 15s ease-in-out infinite 3s;
    animation: particleFloat2 15s ease-in-out infinite 3s
}

@-webkit-keyframes particleFloat1 {
    0%, 100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: .3
    }
    25% {
        -webkit-transform: translate(20px, -30px);
        transform: translate(20px, -30px);
        opacity: .9
    }
    50% {
        -webkit-transform: translate(-15px, -50px);
        transform: translate(-15px, -50px);
        opacity: .4
    }
    75% {
        -webkit-transform: translate(25px, -20px);
        transform: translate(25px, -20px);
        opacity: .7
    }
}

@keyframes particleFloat1 {
    0%, 100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: .3
    }
    25% {
        -webkit-transform: translate(20px, -30px);
        transform: translate(20px, -30px);
        opacity: .9
    }
    50% {
        -webkit-transform: translate(-15px, -50px);
        transform: translate(-15px, -50px);
        opacity: .4
    }
    75% {
        -webkit-transform: translate(25px, -20px);
        transform: translate(25px, -20px);
        opacity: .7
    }
}

@-webkit-keyframes particleFloat2 {
    0%, 100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: .4
    }
    30% {
        -webkit-transform: translate(-25px, 20px);
        transform: translate(-25px, 20px);
        opacity: .8
    }
    60% {
        -webkit-transform: translate(20px, -35px);
        transform: translate(20px, -35px);
        opacity: .3
    }
    90% {
        -webkit-transform: translate(-10px, 15px);
        transform: translate(-10px, 15px);
        opacity: .7
    }
}

@keyframes particleFloat2 {
    0%, 100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: .4
    }
    30% {
        -webkit-transform: translate(-25px, 20px);
        transform: translate(-25px, 20px);
        opacity: .8
    }
    60% {
        -webkit-transform: translate(20px, -35px);
        transform: translate(20px, -35px);
        opacity: .3
    }
    90% {
        -webkit-transform: translate(-10px, 15px);
        transform: translate(-10px, 15px);
        opacity: .7
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: -o-linear-gradient(rgba(37, 99, 235, .06) 1px, transparent 1px), -o-linear-gradient(left, rgba(37, 99, 235, .06) 1px, transparent 1px);
    background-image: linear-gradient(rgba(37, 99, 235, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, .06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black, transparent);
}

.hero-noise {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .015;
    pointer-events: none;
}

.hero .wrap {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-columns: 1fr 72px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: center;
    align-content: center;
    text-align: center;
}

.hero-text {
    color: var(--text-dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;

}

.main_title {
    color: var(--text-dark);
}

.main_title span {
    display: block;
    font-size: 45px;
    line-height: 1.6;
    font-weight: 300;
    color: var(--accent-dark);
}

.hero-pill {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    border-radius: var(--r-full);
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .2);
    font-size: .78rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-light);
    -webkit-box-shadow: 0 0 12px var(--accent-light);
    box-shadow: 0 0 12px var(--accent-light);
    -webkit-animation: dotpulse 2s infinite;
    animation: dotpulse 2s infinite
}

@-webkit-keyframes dotpulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .35
    }
}

@keyframes dotpulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .35
    }
}

.hero-text h1 {
    font-size: clamp(2.6rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.04em;
    margin-bottom: 28px
}

.hero-text h1 em {
    font-style: normal;
    background: -o-linear-gradient(315deg, var(--accent-light), var(--accent-bright), #c4b5fd, var(--accent-light));
    background: linear-gradient(135deg, var(--accent-light), var(--accent-bright), #c4b5fd, var(--accent-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-animation: textShimmer 4s linear infinite;
    animation: textShimmer 4s linear infinite
}

h2 span {
    font-style: normal;
    background: -o-linear-gradient(315deg, var(--accent), var(--accent-dark), #0284C7, var(--accent));
    background: linear-gradient(135deg, var(--accent), var(--accent-dark), #0284C7, var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-animation: textShimmer 4s linear infinite;
    animation: textShimmer 4s linear infinite;
    display: block;
    line-height: 1.4;
}

@-webkit-keyframes textShimmer {
    0% {
        background-position: 0% center
    }
    100% {
        background-position: 200% center
    }
}

@keyframes textShimmer {
    0% {
        background-position: 0% center
    }
    100% {
        background-position: 200% center
    }
}

.hero-sub {
    font-size: 1.18rem;
    color: var(--text-dark-sub);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 40px
}

.hero-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.hero-proof {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.hero-proof span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500
}

.hero-proof span i {
    color: var(--accent-light);
    font-size: .7rem
}

.hero-visual {
    position: relative
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: -o-radial-gradient(ellipse, rgba(37, 99, 235, .12), transparent 70%);
    background: radial-gradient(ellipse, rgba(37, 99, 235, .12), transparent 70%);
    -webkit-animation: glowDrift3 8s ease-in-out infinite;
    animation: glowDrift3 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-mockup {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-xl);
    padding: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -webkit-box-shadow: 0 24px 80px rgba(0, 0, 0, .4), 0 0 0 1px rgba(255, 255, 255, .3) inset;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .4), 0 0 0 1px rgba(255, 255, 255, .3) inset;
}

.mockup-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 16px
}

.mockup-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.mockup-dot:nth-child(1) {
    background: var(--red)
}

.mockup-dot:nth-child(2) {
    background: var(--orange)
}

.mockup-dot:nth-child(3) {
    background: var(--green)
}

.mockup-bar .url {
    margin-left: auto;
    font-size: .7rem;
    color: var(--text-muted);
    font-weight: 600
}

.chat-flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px
}

.msg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.msg.right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.msg-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: .6rem
}

.msg-av.human {
    background: rgba(255, 255, 255, .08);
    color: var(--text-muted)
}

.msg-av.ai {
    background: -o-linear-gradient(315deg, var(--accent), var(--accent-light));
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff
}

.msg-bub {
    padding: 11px 15px;
    border-radius: var(--r-md);
    font-size: .82rem;
    line-height: 1.6;
    max-width: 82%
}

.msg-bub.human {
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .7);
    border: 1px solid var(--border-glass)
}

.msg-bub.ai {
    background: -o-linear-gradient(315deg, rgba(37, 99, 235, .12), rgba(37, 99, 235, .04));
    background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(37, 99, 235, .04));
    border: 1px solid rgba(37, 99, 235, .12);
    color: rgba(255, 255, 255, .8)
}

.msg-bub .ai-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    font-size: .65rem;
    color: var(--accent-light);
    font-weight: 700;
    margin-bottom: 5px
}

.typing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    padding: 12px
}

.typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    -webkit-animation: typedot 1.4s infinite;
    animation: typedot 1.4s infinite
}

.typing span:nth-child(2) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.typing span:nth-child(3) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

@-webkit-keyframes typedot {
    0%, 60%, 100% {
        opacity: .2;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    30% {
        opacity: 1;
        -webkit-transform: scale(1.35);
        transform: scale(1.35)
    }
}

@keyframes typedot {
    0%, 60%, 100% {
        opacity: .2;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    30% {
        opacity: 1;
        -webkit-transform: scale(1.35);
        transform: scale(1.35)
    }
}

.float-card {
    position: absolute;
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    padding: 14px 18px;
    -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
    z-index: 5;
}

.fc1 {
    bottom: -16px;
    left: -24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px
}

.fc1 .big {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-light)
}

.fc1 .sm {
    font-size: .72rem;
    color: var(--text-muted);
    line-height: 1.4
}

.fc2 {
    top: 24px;
    right: -16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

.fc2 .ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(16, 185, 129, .12);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--green);
    font-size: .8rem
}

.fc2 .lbl {
    font-size: .78rem;
    font-weight: 700;
    color: var(--text-white)
}

/* ── Social proof bar ── */
.proof-bar {
    padding: 44px 0;
    background: var(--bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, .04)
}

.proof-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 48px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.proof-inner span {
    font-weight: 700;
    font-size: .95rem;
    color: rgba(0, 0, 0, .15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px
}

.proof-inner span i {
    font-size: 1.2rem
}

/* ── Section headers ── */
.sec-head {
    text-align: center;
    margin-bottom: 56px
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #22a7e6;
    background: rgba(37, 99, 235, 0.07);
    border: 1px solid rgba(37, 99, 235, 0.12);
    margin-bottom: 18px;
}

.sec-tag.sec-tag-warn {
    color: #D97706;
    background: rgba(217, 119, 6, 0.07);
    border-color: rgba(217, 119, 6, 0.12);
}

.on-light .sec-tag {
    background: rgba(37, 99, 235, 0.07);
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: #22a7e6;
}

.on-dark .sec-tag {
    background: rgba(37, 99, 235, 0.08);
    color: #22a7e6;
}

.sec-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.005em;
    line-height: 1.15
}

.on-dark .sec-head h2 {
    color: var(--text-dark)
}

.on-light .sec-head h2 {
    color: var(--text-dark)
}

.sec-head p {
    font-size: 1.1rem;
    max-width: 580px;
    margin: 16px auto 0;
    line-height: 1.75
}

.on-dark .sec-head p {
    color: var(--text-dark-sub)
}

.on-light .sec-head p {
    color: var(--text-dark-sub)
}

/* ── Problems ── */
.problems {
    padding: 100px 0 110px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1000px;
    height: 500px;
    background: -o-radial-gradient(ellipse, rgba(37, 99, 235, .03), transparent);
    background: radial-gradient(ellipse, rgba(37, 99, 235, .03), transparent);
    pointer-events: none;
}

.problems .wrap {
    position: relative;
    z-index: 2
}

.prob-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px
}

.prob-item {
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 36px 24px;
    text-align: center;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.prob-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--r-xl);
    background: -o-linear-gradient(315deg, var(--red), var(--accent));
    background: linear-gradient(135deg, var(--red), var(--accent));
    opacity: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
    z-index: 0;
}

.prob-item::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--r-xl) - 2px);
    background: var(--bg-light);
    z-index: 1;
}

.prob-item > * {
    position: relative;
    z-index: 2
}

.prob-item:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, .06);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .06)
}

.prob-item:hover::before {
    opacity: 1
}

.prob-item-ico {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}

.prob-item-ico.red {
    background: rgba(239, 68, 68, .08);
    color: var(--red)
}

.prob-item-ico.orange {
    background: rgba(245, 158, 11, .08);
    color: var(--orange)
}

.prob-item-ico.blue {
    background: rgba(37, 99, 235, .08);
    color: var(--accent)
}

.prob-item-ico.purple {
    background: rgba(139, 92, 246, .08);
    color: #8b5cf6
}

.prob-item-num {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 6px;
    background: -o-linear-gradient(315deg, var(--text-dark), var(--accent));
    background: linear-gradient(135deg, var(--text-dark), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.prob-item h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark)
}

.prob-item p {
    font-size: .92rem;
    color: var(--text-dark-sub);
    line-height: 1.7
}

.prob-cta {
    text-align: center;
    margin-top: 40px
}

.prob-cta a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--accent);
    padding: 12px 24px;
    border-radius: var(--r-full);
    border: 2px solid rgba(37, 99, 235, .2);
    background: rgba(37, 99, 235, .04);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.prob-cta a:hover {
    background: rgba(37, 99, 235, .08);
    border-color: var(--accent);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 24px rgba(37, 99, 235, .1);
    box-shadow: 0 8px 24px rgba(37, 99, 235, .1)
}

/* ── Solutions ── */
.solutions {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden
}

.sol-glow {
    position: absolute;
    border-radius: 50%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    pointer-events: none
}

.sol-glow-1 {
    width: 500px;
    height: 400px;
    background: rgba(37, 99, 235, .06);
    top: 0;
    right: 0
}

.sol-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, .04);
    bottom: 0;
    left: 0
}

.solutions .wrap {
    position: relative;
    z-index: 2
}

.sol-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 64px 1fr;
    grid-template-columns:1fr 1fr;
    gap: 64px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 110px
}

.sol-row:last-child {
    margin-bottom: 0
}

.sol-row.flip .sol-info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.sol-row.flip .sol-demo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.sol-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-light);
    margin-bottom: 16px
}

.sol-info h3 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 14px;
    letter-spacing: -.02em;
    line-height: 1.15
}

.sol-info > p {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px
}

.sol-checks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 28px
}

.sol-checks li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500
}

.sol-checks li i {
    color: var(--accent-light);
    font-size: .7rem
}

.sol-demo-box {
    background: rgba(255, 255, 255, .3);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
}

.sol-img-slot {
    width: 100%;
    aspect-ratio: 4/3;
    background: -o-linear-gradient(315deg, rgba(37, 99, 235, .06), rgba(37, 99, 235, .02));
    background: linear-gradient(135deg, rgba(37, 99, 235, .06), rgba(37, 99, 235, .02));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sol-img-slot .ph-icon {
    font-size: 2.8rem;
    color: rgba(37, 99, 235, .15)
}

.sol-img-slot img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.sol-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(6, 9, 15, .55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    padding: 16px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}

.sol-stat {
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.sol-stat .sv {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff
}

.sol-stat .sl {
    font-size: .68rem;
    color: var(--text-muted);
    margin-top: 2px
}

.inbox-list {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px
}

.inbox-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .3);
    border: 1px solid var(--border-glass);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.inbox-row:hover {
    background: rgba(37, 99, 235, .06);
    border-color: rgba(37, 99, 235, .15)
}

.ch-ico {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: .85rem;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.ch-fb {
    background: rgba(24, 119, 242, .12);
    color: #1877F2
}

.ch-ig {
    background: rgba(228, 64, 95, .12);
    color: #E4405F
}

.ch-wa {
    background: rgba(37, 211, 102, .12);
    color: #25D366
}

.ch-em {
    background: rgba(245, 158, 11, .12);
    color: #F59E0B
}

.ch-tk {
    background: rgba(255, 255, 255, .07);
    color: #fff
}

.inbox-row .data {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0
}

.inbox-row .data .nm {
    font-size: .8rem;
    font-weight: 700;
    color: #fff
}

.inbox-row .data .preview {
    font-size: .72rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.inbox-row .time {
    font-size: .68rem;
    color: rgba(255, 255, 255, .25);
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.inbox-row .pip {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-light);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-shadow: 0 0 8px var(--accent-light);
    box-shadow: 0 0 8px var(--accent-light)
}

/* ── Pricing ── */
.pricing {
    padding: 100px 0 120px;
    background: #F8F9FA;
    position: relative;
    overflow: hidden
}

.pricing-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 700px;
    background: -o-radial-gradient(ellipse, rgba(37, 99, 235, .1), transparent);
    background: radial-gradient(ellipse, rgba(37, 99, 235, .1), transparent);
    pointer-events: none
}

.pricing-glow-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 400px;
    background: rgba(37, 99, 235, .06);
    border-radius: 50%;
    -webkit-filter: blur(120px);
    filter: blur(120px);
    pointer-events: none;
    -webkit-animation: glowDrift2 20s ease-in-out infinite;
    animation: glowDrift2 20s ease-in-out infinite
}

.pricing-glow-3 {
    position: absolute;
    top: 20%;
    left: -80px;
    width: 350px;
    height: 350px;
    background: rgba(139, 92, 246, .05);
    border-radius: 50%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    pointer-events: none;
    -webkit-animation: glowDrift3 16s ease-in-out infinite;
    animation: glowDrift3 16s ease-in-out infinite
}

.pricing-shape {
    position: absolute;
    pointer-events: none;
    will-change: transform
}

.pricing-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, .08);
    top: 15%;
    right: 8%;
    -webkit-animation: shapeOrbit 30s linear infinite;
    animation: shapeOrbit 30s linear infinite
}

.pricing-diamond {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(139, 92, 246, .1);
    border-radius: 3px;
    bottom: 20%;
    left: 5%;
    -webkit-animation: shapeSpin 25s linear infinite;
    animation: shapeSpin 25s linear infinite
}

.pricing-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.pricing-p1 {
    width: 3px;
    height: 3px;
    background: rgba(37, 99, 235, .25);
    top: 30%;
    left: 3%;
    -webkit-animation: particleFloat1 16s ease-in-out infinite;
    animation: particleFloat1 16s ease-in-out infinite
}

.pricing-p2 {
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, .2);
    bottom: 25%;
    right: 5%;
    -webkit-animation: particleFloat2 20s ease-in-out infinite 3s;
    animation: particleFloat2 20s ease-in-out infinite 3s
}

.pricing .wrap {
    position: relative;
    z-index: 2
}

/* Pricing cards */
.price-cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 28px 1fr 28px 1fr;
    grid-template-columns:repeat(3, 1fr);
    gap: 28px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.p-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    -webkit-transition: all .4s cubic-bezier(.25, .8, .25, 1);
    -o-transition: all .4s cubic-bezier(.25, .8, .25, 1);
    transition: all .4s cubic-bezier(.25, .8, .25, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.p-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--r-xl);
    background: none;
    z-index: 0;
    pointer-events: none;
}

.p-card > * {
    position: relative;
    z-index: 1
}

.p-card:hover {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: var(--shadow-lg);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, .3)
}

.p-card.popular {
    border-color: rgba(37, 99, 235, .25);
    background: rgba(37, 99, 235, .04);
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-box-shadow: 0 20px 60px rgba(37, 99, 235, .12), 0 0 0 1px rgba(37, 99, 235, .08) inset;
    box-shadow: 0 20px 60px rgba(37, 99, 235, .12), 0 0 0 1px rgba(37, 99, 235, .08) inset;
    z-index: 2;
}

.p-card.popular::before {
    background: -o-linear-gradient(top, rgba(37, 99, 235, .12), transparent 50%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(37, 99, 235, .12)), color-stop(50%, transparent));
    background: linear-gradient(180deg, rgba(37, 99, 235, .12), transparent 50%)
}

.p-card.popular:hover {
    -webkit-transform: scale(1.06) translateY(-8px);
    -ms-transform: scale(1.06) translateY(-8px);
    transform: scale(1.06) translateY(-8px);
    -webkit-box-shadow: 0 28px 80px rgba(37, 99, 235, .18);
    box-shadow: 0 28px 80px rgba(37, 99, 235, .18)
}

.p-card-badge {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: -o-linear-gradient(315deg, var(--accent), #22a7e6);
    background: linear-gradient(135deg, var(--accent), #22a7e6);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 0 0 var(--r-md) var(--r-md);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    -webkit-box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
}

.p-card-head {
    padding: 44px 32px 28px;
    text-align: center;
    border-bottom: 1px solid var(--border-light)
}

.p-card.popular .p-card-head {
    padding-top: 56px
}

.p-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--r-lg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
    position: relative;
}

.p-card-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--r-lg);
    background: inherit;
    opacity: .3;
    -webkit-filter: blur(8px);
    filter: blur(8px);
    z-index: -1;
}

.p-card-icon.blue {
    background: rgba(37, 99, 235, .12);
    color: var(--accent-light)
}

.p-card-icon.green {
    background: rgba(16, 185, 129, .12);
    color: var(--green)
}

.p-card-icon.purple {
    background: rgba(139, 92, 246, .12);
    color: #a78bfa
}

.p-card-head h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px
}

.p-card-desc {
    font-size: .92rem;
    color: var(--text-muted);
    margin-bottom: 20px
}

.p-card-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px
}

.p-card-price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -.04em
}


.p-card-price .period {
    font-size: .88rem;
    color: var(--text-muted);
    font-weight: 500
}

.p-card-from {
    font-size: .92rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: lowercase;
}

.p-card-unlimited {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    margin: 0;
    background: rgba(16, 185, 129, .06);
    border-top: 1px solid rgba(16, 185, 129, .08);
    border-bottom: 1px solid rgba(16, 185, 129, .08);
    font-size: .88rem;
    font-weight: 700;
    color: var(--green);
}

.p-card-unlimited i {
    font-size: 1rem
}

.p-card-body {
    padding: 28px 32px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.p-card-body ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px
}

.p-card-body li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: var(--text-dark-sub);
    font-weight: 500
}

.p-card-body li i {
    font-size: .85rem;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.p-card-body li i.ti-check {
    color: var(--accent)
}

.p-card-body li i.ti-minus {
    color: rgba(0, 0, 0, .15)
}

.p-card-body li.disabled {
    color: rgba(0, 0, 0, .25)
}

.p-card-foot {
    padding: 8px 32px 32px
}

.p-card-foot .btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 32px
}

.p-card.popular .p-card-foot .btn {
    -webkit-box-shadow: 0 4px 24px rgba(37, 99, 235, .25);
    box-shadow: 0 4px 24px rgba(37, 99, 235, .25)
}

.tip {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    color: rgba(255, 255, 255, .3);
    font-size: .55rem;
    cursor: help;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 4px;
    position: relative;
    font-weight: 800;
}

.on-light .tip {
    background: rgba(0, 0, 0, .05);
    color: rgba(0, 0, 0, .3)
}

.tip .tt {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: var(--bg-dark);
    color: rgba(255, 255, 255, .85);
    font-size: .76rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    width: 250px;
    line-height: 1.6;
    text-align: left;
    -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    z-index: 50;
}

.tip .tt::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--bg-dark)
}

.tip:hover .tt {
    display: block
}

.price-note {
    text-align: center;
    margin-top: 80px;
    padding: 20px 28px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    font-size: .92rem;
    color: var(--text-dark-sub);
    line-height: 1.7;
}

.price-note i {
    color: var(--accent);
    margin-right: 6px
}

/* ── Competitor Comparison ── */
.comparison {
    padding: 100px 0 120px;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, .04);
    position: relative;
    overflow: hidden
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: -o-radial-gradient(ellipse, rgba(37, 99, 235, .04), transparent);
    background: radial-gradient(ellipse, rgba(37, 99, 235, .04), transparent);
    pointer-events: none
}

.comparison .wrap {
    position: relative;
    z-index: 2
}

.cmp-table-wrap {
    overflow-x: auto;
    margin: 0 -24px;
    padding: 0 24px
}

.cmp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-white);
    border-radius: var(--r-xl);
    overflow: hidden;
    -webkit-box-shadow: 0 4px 40px rgba(0, 0, 0, .06);
    box-shadow: 0 4px 40px rgba(0, 0, 0, .06);
    border: 2px solid var(--border-light);
}

.cmp-table thead th {
    padding: 22px 18px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 2px solid var(--border-light);
    background: var(--bg-light);
    font-size: .9rem;
    font-weight: 800;
    color: var(--text-dark-sub);
}

.cmp-table thead th:first-child {
    text-align: left;
    width: 220px;
    padding-left: 28px
}

.cmp-table thead th.cmp-us {
    background: -o-linear-gradient(top, rgba(37, 99, 235, .08), rgba(37, 99, 235, .02));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(37, 99, 235, .08)), to(rgba(37, 99, 235, .02)));
    background: linear-gradient(180deg, rgba(37, 99, 235, .08), rgba(37, 99, 235, .02));
    color: var(--accent);
    font-size: .88rem;
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    border-top: 3px solid var(--accent);
    position: relative;
}

.cmp-table thead th.cmp-us .cmp-logo {
    font-weight: 900;
    font-size: .95rem;
    color: var(--text-dark)
}

.cmp-table thead th .cmp-comp {
    font-size: .88rem;
    color: var(--text-dark-sub);
    font-weight: 600;
    opacity: .6
}

.cmp-table tbody td {
    padding: 16px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    font-size: .92rem;
    color: var(--text-dark-sub);
    font-weight: 500;
    vertical-align: middle;
}

.cmp-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    padding-left: 28px;
    color: var(--text-dark)
}

.cmp-table tbody td.cmp-us {
    background: rgba(37, 99, 235, .03);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    font-weight: 700;
    color: var(--text-dark);
}

.cmp-table tbody tr:last-child td {
    border-bottom: none
}

.cmp-table tbody tr:hover td {
    background: rgba(0, 0, 0, .01)
}

.cmp-table tbody tr:hover td.cmp-us {
    background: rgba(37, 99, 235, .06)
}

.cmp-yes {
    color: var(--accent);
    font-weight: 700
}

.cmp-yes i {
    font-size: .7rem
}

.cmp-partial {
    color: var(--orange);
    font-weight: 600
}

.cmp-no {
    color: rgba(0, 0, 0, .15)
}

.cmp-no i {
    font-size: .7rem
}

.cmp-best {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, .08);
    color: var(--green);
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-size: .8rem
}

.cmp-table tfoot td {
    border-top: 2px solid var(--border-light);
    padding: 20px 18px;
    background: var(--bg-light)
}

.cmp-table tfoot td:first-child {
    padding-left: 28px
}

.cmp-table tfoot td.cmp-us {
    background: rgba(37, 99, 235, .04);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    text-align: center;
}

/* ── Services ── */
.services {
    padding: 100px 0 120px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden
}

.srv-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: -o-radial-gradient(ellipse, rgba(37, 99, 235, .04), transparent);
    background: radial-gradient(ellipse, rgba(37, 99, 235, .04), transparent);
    pointer-events: none
}

.services .wrap {
    position: relative;
    z-index: 2
}

.srv-top {
    text-align: center;
    margin-bottom: 56px
}

.srv-top h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 16px
}

.srv-top p {
    font-size: 1.1rem;
    color: var(--text-dark-sub);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75
}

.srv-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto
}

.srv-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 24px 1fr 24px auto;
    grid-template-columns:auto 1fr auto;
    gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 28px 32px;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}

.srv-item:hover {
    border-color: rgba(37, 99, 235, .3);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: var(--shadow-lg);
    box-shadow: var(--shadow-lg)
}

.srv-item-ico {
    width: 56px;
    height: 56px;
    border-radius: var(--r-lg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.3rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.srv-item-ico.blue {
    background: rgba(37, 99, 235, .1);
    color: var(--accent)
}

.srv-item-ico.green {
    background: rgba(16, 185, 129, .1);
    color: var(--green)
}

.srv-item-ico.purple {
    background: rgba(139, 92, 246, .1);
    color: #a78bfa
}

.srv-item-ico.orange {
    background: rgba(245, 158, 11, .1);
    color: var(--orange)
}

.srv-item-info h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px
}

.srv-item-info p {
    font-size: .95rem;
    color: var(--text-dark-sub);
    line-height: 1.7
}

.srv-item-price {
    text-align: right;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.srv-item-price .sp-amount {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent-dark);
    white-space: nowrap
}

.srv-item-price .sp-period {
    font-size: .72rem;
    color: var(--text-dark-sub);
    font-weight: 500
}

/* ── Testimonials ── */
.testim {
    padding: 100px 0 120px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden
}

.testim::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 400px;
    background: -o-radial-gradient(ellipse, rgba(37, 99, 235, .04), transparent);
    background: radial-gradient(ellipse, rgba(37, 99, 235, .04), transparent);
    pointer-events: none;
}

.testim .wrap {
    position: relative;
    z-index: 2
}

.testim-header {
    display: block;
    text-align: center;
    margin-bottom: 48px
}

.testim-header-text {
    text-align: center
}

.testim-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 10px
}

.testim-header p {
    font-size: 1.1rem;
    color: var(--text-dark-sub);
    line-height: 1.75
}

.testim-rating {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 24px;
    background: var(--bg-light);
    border-radius: var(--r-lg);
    border: 1px solid var(--border-light)
}

.testim-rating .tr-stars {
    color: var(--orange);
    font-size: .9rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2px
}

.testim-rating .tr-text {
    font-size: .88rem;
    font-weight: 700
}

.testim-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px
}

.testim-slider {
    overflow: visible
}

.testim-track {
    display: contents
}

.t-card {
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 36px;
    background: var(--bg-white);
    -webkit-transition: border-color .35s, -webkit-box-shadow .35s;
    transition: border-color .35s, -webkit-box-shadow .35s;
    -o-transition: border-color .35s, box-shadow .35s;
    transition: border-color .35s, box-shadow .35s;
    transition: border-color .35s, box-shadow .35s, -webkit-box-shadow .35s;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.t-card:hover {
    border-color: var(--accent);
    -webkit-box-shadow: 0 12px 40px rgba(37, 99, 235, .06);
    box-shadow: 0 12px 40px rgba(37, 99, 235, .06)
}

.t-card-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px
}

.t-stars {
    color: var(--orange);
    font-size: .75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2px
}

.t-quote-icon {
    color: rgba(37, 99, 235, .12);
    font-size: 1.8rem
}

.t-text {
    font-size: 1.05rem;
    color: var(--text-dark-sub);
    line-height: 1.8;
    margin-bottom: 24px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.t-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, .04)
}

.t-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: -o-linear-gradient(315deg, var(--accent), var(--accent-light));
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
    color: #fff
}

.t-name {
    font-weight: 700;
    font-size: .95rem
}

.t-role {
    font-size: .88rem;
    color: var(--text-dark-sub)
}

.testim-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px
}

.testim-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--bg-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    font-family: inherit
}

.testim-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow2)
}

.testim-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px
}

.testim-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .1);
    border: none;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.testim-dot.active {
    background: var(--accent);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.testim-btn:focus-visible, .testim-dot:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px
}

.testim-verify {
    text-align: center;
    margin-top: 24px;
    font-size: 13.5px;
    color: #64748b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px
}

@media (max-width: 768px) {
    .testim-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 20px
    }
}

/* ── FAQ ── */
.faq {
    padding: 100px 0 120px;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, .04)
}

.faq-layout {
    display: block
}

.faq-layout-centered {
    display: block;
    max-width: 760px;
    margin: 0 auto
}

.faq-head {
    text-align: center;
    margin-bottom: 40px
}

.faq-head .sec-tag {
    margin: 0 auto 12px
}

.faq-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 12px
}

.faq-head p {
    color: #475569;
    font-size: 15px
}

.faq-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 18px
}

.faq-left p {
    font-size: 1.05rem;
    color: var(--text-dark-sub);
    line-height: 1.8;
    margin-bottom: 28px
}

.faq-cta {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9
}

.faq-cta p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px
}

.faq-cta-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #22a7e6;
    text-decoration: none;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

.faq-cta-link:hover {
    color: #0284C7
}

.faq-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    border: 2px solid var(--border-light);
    border-radius: var(--r-lg);
    background: var(--bg-white);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    overflow: hidden
}

.faq-item.open {
    border-color: var(--accent);
    border-left: 3px solid #22a7e6;
    padding-left: 0;
    -webkit-box-shadow: 0 4px 20px rgba(37, 99, 235, .06);
    box-shadow: 0 4px 20px rgba(37, 99, 235, .06)
}

.faq-q {
    padding: 20px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 14px;
    font-weight: 700;
    font-size: 1.02rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: inherit;
    color: var(--text-dark);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.faq-q:hover {
    background: rgba(0, 0, 0, .015)
}

.faq-q .ic {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .04);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--accent);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.faq-item.open .faq-q .ic {
    background: var(--accent);
    color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .35s cubic-bezier(.25, .8, .25, 1);
    -o-transition: max-height .35s cubic-bezier(.25, .8, .25, 1);
    transition: max-height .35s cubic-bezier(.25, .8, .25, 1)
}

.faq-a-body {
    padding: 0 24px 22px;
    font-size: 1rem;
    color: var(--text-dark-sub);
    line-height: 1.8
}

/* ── Contact / CTA ── */
.contact {
    padding: 100px 0 120px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden
}

.contact-glow-1 {
    position: absolute;
    width: 600px;
    height: 500px;
    background: rgba(37, 99, 235, .1);
    border-radius: 50%;
    -webkit-filter: blur(120px);
    filter: blur(120px);
    top: -150px;
    right: -100px;
    pointer-events: none;
    -webkit-animation: glowDrift1 18s ease-in-out infinite;
    animation: glowDrift1 18s ease-in-out infinite
}

.contact-glow-2 {
    position: absolute;
    width: 500px;
    height: 400px;
    background: rgba(37, 99, 235, .06);
    border-radius: 50%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
    -webkit-animation: glowDrift2 22s ease-in-out infinite;
    animation: glowDrift2 22s ease-in-out infinite
}

.contact-glow-3 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(139, 92, 246, .06);
    border-radius: 50%;
    -webkit-filter: blur(90px);
    filter: blur(90px);
    top: 40%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
    -webkit-animation: glowDrift3 15s ease-in-out infinite;
    animation: glowDrift3 15s ease-in-out infinite
}

.contact-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, .08);
    top: 10%;
    left: 5%;
    pointer-events: none;
    -webkit-animation: shapeOrbit 35s linear infinite;
    animation: shapeOrbit 35s linear infinite
}

.contact-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.contact-cp1 {
    width: 4px;
    height: 4px;
    background: rgba(37, 99, 235, .3);
    top: 20%;
    right: 8%;
    -webkit-animation: particleFloat1 14s ease-in-out infinite;
    animation: particleFloat1 14s ease-in-out infinite
}

.contact-cp2 {
    width: 3px;
    height: 3px;
    background: rgba(139, 92, 246, .2);
    bottom: 15%;
    left: 10%;
    -webkit-animation: particleFloat2 18s ease-in-out infinite 5s;
    animation: particleFloat2 18s ease-in-out infinite 5s
}

.contact .wrap {
    position: relative;
    z-index: 2
}

.contact-hero {
    text-align: center;
    margin-bottom: 56px
}

.contact-hero h2 {
    font-size: clamp(1.8rem, 3.5vw, 4rem);
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 14px
}

.contact-hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto
}

.contact-perks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px;
}

.c-perk-card {
    background: rgba(255, 255, 255, .3);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.c-perk-card:hover {
    background: rgba(255, 255, 255, .6);
    border-color: rgba(37, 99, 235, .15)
}

.c-perk-card .cpi {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: rgba(37, 99, 235, .1);
    border: 1px solid rgba(37, 99, 235, .12);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1rem;
    margin: 0 auto 14px;
}

.c-perk-card .cpt {
    font-weight: 700;
    font-size: .88rem;
    color: #fff;
    margin-bottom: 4px
}

.c-perk-card .cpd {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.6
}

.contact-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns:1fr;
    max-width: 740px;
    margin: 0 auto
}

.form-box {
    background: rgba(15, 23, 42, .65);
    border: 1px solid rgba(37, 99, 235, .15);
    border-radius: var(--r-xl);
    padding: 44px;
    backdrop-filter: blur(32px) saturate(1.3);
    -webkit-backdrop-filter: blur(32px) saturate(1.3);
    -webkit-box-shadow: 0 24px 80px rgba(0, 0, 0, .25), 0 0 80px rgba(37, 99, 235, .06);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .25), 0 0 80px rgba(37, 99, 235, .06);
    position: relative;
}

.form-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--r-xl);
    background: -o-linear-gradient(315deg, rgba(37, 99, 235, .2), transparent 40%, transparent 60%, rgba(139, 92, 246, .12));
    background: linear-gradient(135deg, rgba(37, 99, 235, .2), transparent 40%, transparent 60%, rgba(139, 92, 246, .12));
    z-index: -1;
    pointer-events: none;
}

.form-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-xl);
    background: rgba(12, 18, 32, .75);
    z-index: -1;
}

.form-header {
    text-align: center;
    margin-bottom: 28px
}

.form-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px
}

.form-header p {
    font-size: .88rem;
    color: var(--text-muted)
}

.f-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 14px 1fr;
    grid-template-columns:1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.f-group {
    margin-bottom: 14px
}

.f-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 6px
}

.f-label i {
    font-size: .75rem;
    opacity: .6
}

.f-label .req {
    color: var(--red)
}

.f-input, .f-area {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: .88rem;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    outline: none;
}

.f-input::-webkit-input-placeholder, .f-area::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .3)
}

.f-input::-moz-placeholder, .f-area::-moz-placeholder {
    color: rgba(255, 255, 255, .3)
}

.f-input:-ms-input-placeholder, .f-area:-ms-input-placeholder {
    color: rgba(255, 255, 255, .3)
}

.f-input::-ms-input-placeholder, .f-area::-ms-input-placeholder {
    color: rgba(255, 255, 255, .3)
}

.f-input::placeholder, .f-area::placeholder {
    color: rgba(255, 255, 255, .3)
}

.f-input:focus, .f-area:focus {
    border-color: var(--accent);
    background: rgba(37, 99, 235, .05);
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12)
}

.f-area {
    resize: vertical;
    min-height: 100px
}

.f-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .65);
    margin: 22px 0 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.f-section i {
    font-size: .85rem;
    color: var(--accent);
    opacity: .7
}

.f-checks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px
}

.f-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-size: .86rem;
    color: rgba(255, 255, 255, .45);
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
    padding: 4px 0
}

.f-check:hover {
    color: rgba(255, 255, 255, .8)
}

.f-check input[type="checkbox"] {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    position: relative;
}

.f-check input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent)
}

.f-check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: translate(-50%, -55%) rotate(45deg);
    -ms-transform: translate(-50%, -55%) rotate(45deg);
    transform: translate(-50%, -55%) rotate(45deg)
}

.f-consent {
    font-size: .76rem;
    color: rgba(255, 255, 255, .5);
    margin: 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 9px
}

.f-consent input[type="checkbox"] {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .3);
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.f-consent input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent)
}

.f-consent input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: translate(-50%, -55%) rotate(45deg);
    -ms-transform: translate(-50%, -55%) rotate(45deg);
    transform: translate(-50%, -55%) rotate(45deg)
}

/* ── Form icon cards ── */
.f-cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    margin-bottom: 14px
}

.f-card {
    cursor: pointer;
    position: relative
}

.f-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.f-card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 22px 16px;
    border-radius: var(--r-lg);
    border: 1.5px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    text-align: center;
    position: relative;
}

.f-card-inner::after {
    content: 'Vybrať';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: .6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 2px 7px;
    border-radius: var(--r-full);
    border: 1px solid rgba(255, 255, 255, .1);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.f-card:hover .f-card-inner {
    border-color: rgba(37, 99, 235, .3);
    background: rgba(255, 255, 255, .08);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15)
}

.f-card:hover .f-card-inner::after {
    color: var(--accent-light);
    border-color: rgba(37, 99, 235, .3)
}

.f-card input:checked ~ .f-card-inner {
    border-color: var(--accent);
    background: rgba(37, 99, 235, .12);
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .15), 0 8px 24px rgba(37, 99, 235, .12);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15), 0 8px 24px rgba(37, 99, 235, .12)
}

.f-card input:checked ~ .f-card-inner::after {
    content: '✓';
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    padding: 2px 8px
}

.f-card-ico {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 2px
}

.f-card-ico.blue {
    background: rgba(37, 99, 235, .1);
    color: var(--accent-light)
}

.f-card-ico.green {
    background: rgba(16, 185, 129, .1);
    color: var(--green)
}

.f-card-ico.purple {
    background: rgba(139, 92, 246, .1);
    color: #a78bfa
}

.f-card-ico.orange {
    background: rgba(245, 158, 11, .1);
    color: var(--orange)
}

.f-card-inner .fc-name {
    font-size: .88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9)
}

.f-card-inner .fc-desc {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5;
    margin-top: 2px
}

.f-card-inner .fc-price {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 500
}

/* ── Contact highlight links ── */
.contact-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: var(--r-full);
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .18);
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.contact-link:hover {
    background: rgba(37, 99, 235, .15);
    border-color: rgba(37, 99, 235, .35);
    -webkit-box-shadow: 0 4px 20px rgba(37, 99, 235, .15);
    box-shadow: 0 4px 20px rgba(37, 99, 235, .15);
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px)
}

.contact-link i {
    font-size: 1.1rem
}

.contact-link-lg {
    font-size: 1.5rem;
    font-weight: 800;
    padding: 14px 28px;
    letter-spacing: -.02em;
    gap: 12px;
    background: rgba(37, 99, 235, .1);
    border: 1.5px solid rgba(37, 99, 235, .25);
    -webkit-box-shadow: 0 4px 30px rgba(37, 99, 235, .1);
    box-shadow: 0 4px 30px rgba(37, 99, 235, .1)
}

.contact-link-lg:hover {
    background: rgba(37, 99, 235, .18);
    border-color: rgba(37, 99, 235, .4);
    -webkit-box-shadow: 0 6px 35px rgba(37, 99, 235, .2);
    box-shadow: 0 6px 35px rgba(37, 99, 235, .2)
}

.contact-link-lg i {
    font-size: 1.4rem;
    color: var(--accent)
}

/* ── Cookie bar ── */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(6, 9, 15, .95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--border-glass);
    padding: 18px 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .4s cubic-bezier(.25, .8, .25, 1);
    transition: -webkit-transform .4s cubic-bezier(.25, .8, .25, 1);
    -o-transition: transform .4s cubic-bezier(.25, .8, .25, 1);
    transition: transform .4s cubic-bezier(.25, .8, .25, 1);
    transition: transform .4s cubic-bezier(.25, .8, .25, 1), -webkit-transform .4s cubic-bezier(.25, .8, .25, 1);
}

.cookie-bar.show {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.cookie-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px
}

.cookie-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.cookie-text i {
    font-size: 1.4rem;
    color: var(--orange);
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.cookie-text p {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.6
}

.cookie-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}


/* ── Login backdrop ── */
.wcd-login-backdrop {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--bg-dark, #06090f);
    padding: 40px 20px;
    position: relative
}

.wcd-login-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    background: -o-radial-gradient(50% 0%, ellipse 60% 50%, rgba(37, 99, 235, .06), transparent 70%),
    -o-radial-gradient(70% 100%, ellipse 40% 40%, rgba(139, 92, 246, .04), transparent 60%);
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(37, 99, 235, .06), transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 100%, rgba(139, 92, 246, .04), transparent 60%);
    pointer-events: none
}

/* ── Login card ── */
.wcd-login-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, .3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    padding: 48px 40px;
    color: #f1f5f9;
    position: relative;
    z-index: 1
}

/* ── Logo ── */
.wcd-login-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 32px
}

.wcd-login-logo-icon {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, .1);
    border: 1px solid rgba(37, 99, 235, .15);
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 22px;
    color: #22a7e6
}

.wcd-login-logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: #f1f5f9
}

.wcd-login-logo-dot {
    color: #22a7e6
}

/* ── Title & subtitle ── */
.wcd-login-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #f1f5f9;
    letter-spacing: -.3px
}

.wcd-login-subtitle {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    margin: 0 0 28px
}

/* ── Error ── */
.wcd-login-error {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .2);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px
}

.wcd-login-error-icon {
    font-size: 16px;
    color: #ef4444;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

/* ── Form fields ── */
.wcd-login-field {
    margin-bottom: 20px
}

.wcd-login-field label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8
}

.wcd-login-field label i {
    font-size: 15px;
    color: rgba(148, 163, 184, .6)
}

.wcd-login-field input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    font-size: 14px;
    color: #f1f5f9;
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.wcd-notice-box {
    color: #fff
}

.wcd-login-field input::-webkit-input-placeholder {
    color: rgba(148, 163, 184, .4)
}

.wcd-login-field input::-moz-placeholder {
    color: rgba(148, 163, 184, .4)
}

.wcd-login-field input:-ms-input-placeholder {
    color: rgba(148, 163, 184, .4)
}

.wcd-login-field input::-ms-input-placeholder {
    color: rgba(148, 163, 184, .4)
}

.wcd-login-field input::placeholder {
    color: rgba(148, 163, 184, .4)
}

.wcd-login-field input::-webkit-input-placeholder {
    color: rgba(148, 163, 184, .4)
}

.wcd-login-field input::-moz-placeholder {
    color: rgba(148, 163, 184, .4)
}

.wcd-login-field input:focus {
    outline: none;
    border-color: #22a7e6;
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
    background: rgba(255, 255, 255, .07)
}

/* ── Submit button ── */
.wcd-login-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #22a7e6;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-transition: all .3s cubic-bezier(.25, .8, .25, 1);
    -o-transition: all .3s cubic-bezier(.25, .8, .25, 1);
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    -webkit-box-shadow: 0 4px 24px rgba(37, 99, 235, .3);
    box-shadow: 0 4px 24px rgba(37, 99, 235, .3);
    margin-top: 8px
}

.wcd-login-btn:hover {
    background: #22a7e6;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 32px rgba(37, 99, 235, .4);
    box-shadow: 0 8px 32px rgba(37, 99, 235, .4)
}

.wcd-login-btn i {
    font-size: 18px;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s
}

.wcd-login-btn:hover i {
    -webkit-transform: translateX(2px);
    -ms-transform: translateX(2px);
    transform: translateX(2px)
}

/* ── Help link ── */
.wcd-login-help {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin: 24px 0 0
}

.wcd-login-help a {
    color: #22a7e6;
    font-weight: 600;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

.wcd-login-help a:hover {
    color: #7dd3fc
}

/* ── Login responsive ── */
@media (max-width: 480px) {
    .wcd-login-card {
        padding: 36px 24px;
        border-radius: 14px
    }

    .wcd-login-title {
        font-size: 20px
    }
}

/* ── Footer ── */
.footer {
    padding: 60px 0 28px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, .6)
}

.footer-logo img {
    height: 22px
}

.footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

.footer-links a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
    font-weight: 600;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

.footer-links a:hover {
    color: var(--accent-light)
}

.footer-copy {
    font-size: .75rem;
    color: rgba(255, 255, 255, .15)
}


.d1 {
    -webkit-transition-delay: .08s;
    -o-transition-delay: .08s;
    transition-delay: .08s
}

.d2 {
    -webkit-transition-delay: .16s;
    -o-transition-delay: .16s;
    transition-delay: .16s
}

.d3 {
    -webkit-transition-delay: .24s;
    -o-transition-delay: .24s;
    transition-delay: .24s
}

.d4 {
    -webkit-transition-delay: .32s;
    -o-transition-delay: .32s;
    transition-delay: .32s
}

@media (prefers-reduced-motion: reduce) {
    .ao {
        opacity: 1 !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        -webkit-transition: none !important;
        -o-transition: none !important;
        transition: none !important
    }
}

/* ── Responsive ── */
@media (max-width: 1080px) {
    .hero .wrap {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr;
        text-align: center
    }

    .hero-sub {
        margin: 0 auto 36px
    }

    .hero-btns {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .hero-proof {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .hero-visual {
        max-width: 500px;
        margin: 48px auto 0
    }

    .float-card {
        display: none
    }

    .prob-grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns:1fr 1fr
    }

    .sol-row {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .sol-row.flip .sol-info {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .sol-row.flip .sol-demo {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .price-cards {
        gap: 16px
    }

    .p-card.popular {
        -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
        transform: scale(1.03)
    }

    .cmp-table {
        font-size: .85rem
    }

    .cmp-table thead th, .cmp-table tbody td {
        padding: 14px 12px
    }

    .cmp-table tbody td:first-child {
        padding-left: 16px
    }

    .cmp-table thead th:first-child {
        padding-left: 16px;
        width: 180px
    }

    .contact-perks {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns:1fr 1fr
    }

    .contact-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .faq-layout {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .faq-left {
        text-align: center
    }

    .testim-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .cookie-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }

    .cookie-text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cookie-btns {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (max-width: 768px) {
    .header-nav, .header-right {
        display: none !important
    }

    .burger {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    /* ── Mobile header: opaque background, no blur for performance ── */
    .header.dark .header-bar {
        background: rgba(6, 9, 15, .97);
        backdrop-filter: none;
        -webkit-backdrop-filter: none
    }

    .header.light .header-bar {
        background: rgba(255, 255, 255, .97);
        backdrop-filter: none;
        -webkit-backdrop-filter: none
    }

    /* ── Mobile performance: hide ALL heavy decorative blur elements ── */
    .hero-glow,
    .hero-aurora,
    .hero-shape,
    .hero-particle,
    .hero-cross-1,
    .hero-grid,
    .hero-noise,
    .contact-glow-1,
    .contact-glow-2,
    .contact-glow-3,
    .contact-ring,
    .contact-particle,
    .sol-glow,
    .pricing-glow,
    .pricing-glow-2,
    .pricing-glow-3,
    .pricing-ring,
    .pricing-shape,
    .benefits-bg-orb,
    .final-cta-glow-1,
    .final-cta-glow-2 {
        display: none !important
    }

    .hero {
        padding: 130px 0 80px;
        min-height: auto;
        max-height: none
    }

    .prob-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .prob-item-num {
        font-size: 2rem
    }

    .price-cards {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr;
        gap: 16px;
        max-width: 420px;
        margin: 0 auto
    }

    .p-card.popular {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -webkit-box-shadow: 0 8px 40px rgba(37, 99, 235, .15);
        box-shadow: 0 8px 40px rgba(37, 99, 235, .15)
    }

    .p-card.popular:hover {
        -webkit-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        transform: translateY(-8px)
    }

    .cmp-table {
        font-size: .78rem
    }

    .cmp-table thead th, .cmp-table tbody td {
        padding: 12px 8px
    }

    .cmp-table thead th:first-child {
        width: 140px
    }

    .cmp-best {
        font-size: .72rem;
        padding: 2px 6px
    }

    .srv-item {
        -ms-grid-columns: auto 16px 1fr;
        grid-template-columns:auto 1fr;
        gap: 16px
    }

    .srv-item-price {
        grid-column: 1/-1;
        text-align: left;
        padding-top: 8px;
        border-top: 1px solid var(--border-glass)
    }

    .t-card {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin: 0
    }

    .f-cards {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .contact-perks {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns:1fr 1fr
    }

    .f-row {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .footer .wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }

    .sol-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 12px;
        border-radius: var(--r-md)
    }
}

@media (max-width: 480px) {
    .hero-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .btn-lg {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .form-box {
        padding: 22px
    }

    .prob-item {
        padding: 28px 20px
    }

    .contact-perks {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .p-card-head {
        padding: 28px 20px 20px
    }

    .p-card-body {
        padding: 20px
    }

    .p-card-foot {
        padding: 0 20px 24px
    }
}

/* ═══════════════════════════════════════════════════════
   NEW SECTIONS - Redesign additions
   ═══════════════════════════════════════════════════════ */

/* ── Hero micro-copy ── */
.hero-micro {
    font-size: .92rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .02em
}

/* ── Secondary CTA outline accent ── */
.btn-outline-accent {
    background: transparent;
    color: var(--accent-dark);
    border: 2px solid var(--accent);
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px)
}

/* On light sections */
.on-light .btn-outline-accent {
    color: var(--accent);
    border-color: var(--accent)
}

.on-light .btn-outline-accent:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent)
}

/* ── Trust Strip ── */
.trust-strip {
    background: #F8F9FA;
    padding: 32px 0
}

.trust-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.trust-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-dark)
}

.trust-item i {
    font-size: 1.4rem;
    color: var(--accent)
}

/* ── Omnichannel Section ── */
.omni {
    background: linear-gradient(170deg, #080c18 0%, #0d1525 30%, #111d33 60%, #0a1020 100%);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden
}

.omni::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 25% 20%, rgba(37, 99, 235, .07), transparent),
        radial-gradient(ellipse 500px 350px at 75% 70%, rgba(99, 140, 220, .06), transparent),
        radial-gradient(ellipse 800px 500px at 50% 50%, rgba(37, 99, 235, .04), transparent);
    pointer-events: none
}

.omni::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 300px at 15% 30%, rgba(120, 180, 255, .05), transparent),
        radial-gradient(circle 250px at 85% 25%, rgba(37, 99, 235, .04), transparent),
        radial-gradient(circle 200px at 50% 80%, rgba(140, 160, 220, .04), transparent);
    pointer-events: none;
    -webkit-animation: omni-frost-drift 12s ease-in-out infinite alternate;
    animation: omni-frost-drift 12s ease-in-out infinite alternate
}

@-webkit-keyframes omni-frost-drift {
    0% { opacity: .6; -webkit-transform: translateX(-8px); transform: translateX(-8px) }
    100% { opacity: 1; -webkit-transform: translateX(8px); transform: translateX(8px) }
}
@keyframes omni-frost-drift {
    0% { opacity: .6; transform: translateX(-8px) }
    100% { opacity: 1; transform: translateX(8px) }
}

/* ── Frosty background layer ── */
.omni-frost-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.omni-frost-orb {
    position: absolute;
    border-radius: 50%;
    -webkit-filter: blur(80px);
    filter: blur(80px);
    will-change: transform, opacity
}

.omni-frost-orb-1 {
    width: 450px;
    height: 350px;
    top: -80px;
    left: -100px;
    background: radial-gradient(circle, rgba(37, 99, 235, .1) 0%, rgba(30, 120, 200, .04) 60%, transparent 100%);
    -webkit-animation: frost-orb-1 10s ease-in-out infinite alternate;
    animation: frost-orb-1 10s ease-in-out infinite alternate
}

.omni-frost-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -60px;
    right: -80px;
    background: radial-gradient(circle, rgba(100, 150, 255, .08) 0%, rgba(37, 99, 235, .03) 60%, transparent 100%);
    -webkit-animation: frost-orb-2 14s ease-in-out infinite alternate;
    animation: frost-orb-2 14s ease-in-out infinite alternate
}

.omni-frost-orb-3 {
    width: 300px;
    height: 250px;
    top: 40%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(180, 210, 255, .06) 0%, transparent 70%);
    -webkit-animation: frost-orb-3 8s ease-in-out infinite alternate;
    animation: frost-orb-3 8s ease-in-out infinite alternate
}

@-webkit-keyframes frost-orb-1 {
    0% { -webkit-transform: translate(0, 0) scale(1); transform: translate(0, 0) scale(1); opacity: .7 }
    100% { -webkit-transform: translate(30px, 20px) scale(1.1); transform: translate(30px, 20px) scale(1.1); opacity: 1 }
}
@keyframes frost-orb-1 {
    0% { transform: translate(0, 0) scale(1); opacity: .7 }
    100% { transform: translate(30px, 20px) scale(1.1); opacity: 1 }
}
@-webkit-keyframes frost-orb-2 {
    0% { -webkit-transform: translate(0, 0) scale(1); transform: translate(0, 0) scale(1); opacity: .6 }
    100% { -webkit-transform: translate(-20px, -15px) scale(1.15); transform: translate(-20px, -15px) scale(1.15); opacity: .9 }
}
@keyframes frost-orb-2 {
    0% { transform: translate(0, 0) scale(1); opacity: .6 }
    100% { transform: translate(-20px, -15px) scale(1.15); opacity: .9 }
}
@-webkit-keyframes frost-orb-3 {
    0% { -webkit-transform: translateX(-50%) scale(1); transform: translateX(-50%) scale(1); opacity: .5 }
    100% { -webkit-transform: translateX(-50%) scale(1.2); transform: translateX(-50%) scale(1.2); opacity: .8 }
}
@keyframes frost-orb-3 {
    0% { transform: translateX(-50%) scale(1); opacity: .5 }
    100% { transform: translateX(-50%) scale(1.2); opacity: .8 }
}

.omni-frost-noise {
    position: absolute;
    inset: 0;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px
}

.omni-frost-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, rgba(8, 12, 24, .5) 100%);
}

.omni-inner {
    text-align: center;
    position: relative;
    z-index: 1
}

/* ── Frost edge lines ── */
.omni .wrap {
    position: relative
}
.omni .wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .15) 30%, rgba(180, 210, 255, .2) 50%, rgba(37, 99, 235, .15) 70%, transparent);
    pointer-events: none
}

.omni-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px
}

.omni-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #F9FAFB;
    margin-bottom: 16px
}

.omni-title span {
    background: -o-linear-gradient(315deg, var(--accent-light), var(--accent));
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.omni-sub {
    font-size: 1.1rem;
    color: rgba(249, 250, 251, .45);
    max-width: 520px;
    margin: 0 auto 0;
    line-height: 1.6
}

.omni-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .85);
    border: 1.5px solid rgba(255, 255, 255, .25);
    border-radius: var(--r-full);
    padding: 12px 28px;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s, border-color .18s, transform .12s
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
    transform: translateY(-1px)
}

.btn-outline-light i {
    font-size: 18px
}

/* ── Orbit container ── */
.omni-orbit {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 440px;
    margin: 48px auto 0
}

/* ── SVG connectors ── */
.omni-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none
}

/* ── Center hub ── */
.omni-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    z-index: 3
}

.omni-hub-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: -o-radial-gradient(circle, rgba(37, 99, 235, .1) 0%, transparent 70%);
    background: radial-gradient(circle, rgba(37, 99, 235, .1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, calc(-50% - 10px));
    -ms-transform: translate(-50%, calc(-50% - 10px));
    transform: translate(-50%, calc(-50% - 10px));
    -webkit-animation: omniGlow 4s ease-in-out infinite;
    animation: omniGlow 4s ease-in-out infinite;
    pointer-events: none
}

@-webkit-keyframes omniGlow {
    0%, 100% { opacity: .5; -webkit-transform: translate(-50%, calc(-50% - 10px)) scale(1); transform: translate(-50%, calc(-50% - 10px)) scale(1) }
    50% { opacity: 1; -webkit-transform: translate(-50%, calc(-50% - 10px)) scale(1.15); transform: translate(-50%, calc(-50% - 10px)) scale(1.15) }
}

@keyframes omniGlow {
    0%, 100% { opacity: .5; -webkit-transform: translate(-50%, calc(-50% - 10px)) scale(1); transform: translate(-50%, calc(-50% - 10px)) scale(1) }
    50% { opacity: 1; -webkit-transform: translate(-50%, calc(-50% - 10px)) scale(1.15); transform: translate(-50%, calc(-50% - 10px)) scale(1.15) }
}

.omni-hub-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, .15);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, calc(-50% - 10px));
    -ms-transform: translate(-50%, calc(-50% - 10px));
    transform: translate(-50%, calc(-50% - 10px));
    -webkit-animation: omniPulse 3s ease-in-out infinite;
    animation: omniPulse 3s ease-in-out infinite
}

@-webkit-keyframes omniPulse {
    0%, 100% { opacity: .3; -webkit-transform: translate(-50%, calc(-50% - 10px)) scale(1); transform: translate(-50%, calc(-50% - 10px)) scale(1) }
    50% { opacity: .7; -webkit-transform: translate(-50%, calc(-50% - 10px)) scale(1.08); transform: translate(-50%, calc(-50% - 10px)) scale(1.08) }
}

@keyframes omniPulse {
    0%, 100% { opacity: .3; -webkit-transform: translate(-50%, calc(-50% - 10px)) scale(1); transform: translate(-50%, calc(-50% - 10px)) scale(1) }
    50% { opacity: .7; -webkit-transform: translate(-50%, calc(-50% - 10px)) scale(1.08); transform: translate(-50%, calc(-50% - 10px)) scale(1.08) }
}

.omni-hub-core {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: -o-linear-gradient(305deg, rgba(37, 99, 235, .15), rgba(37, 99, 235, .08));
    background: linear-gradient(145deg, rgba(37, 99, 235, .15), rgba(37, 99, 235, .08));
    border: 1px solid rgba(37, 99, 235, .25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    -webkit-box-shadow:
            0 0 30px rgba(37, 99, 235, .1),
            0 0 60px rgba(37, 99, 235, .05);
    box-shadow:
            0 0 30px rgba(37, 99, 235, .1),
            0 0 60px rgba(37, 99, 235, .05);
    position: relative;
    z-index: 2
}

.omni-hub-logo {
    width: 46px;
    height: 46px;
}

.omni-hub-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(249, 250, 251, .5);
    position: relative;
    z-index: 2
}

/* ── Channel nodes ── */
.omni-node {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    z-index: 4;
    -webkit-transition: -webkit-transform .3s cubic-bezier(.4, 0, .2, 1);
    transition: -webkit-transform .3s cubic-bezier(.4, 0, .2, 1);
    -o-transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), -webkit-transform .3s cubic-bezier(.4, 0, .2, 1)
}

.omni-node:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.omni-node-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .08);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
}

.omni-node:hover .omni-node-icon {
    border-color: rgba(255, 255, 255, .15);
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.omni-node-icon svg {
    width: 24px;
    height: 24px
}

.omni-node-name {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(249, 250, 251, .6);
    letter-spacing: .02em
}

/* Node positions: arranged around center (350, 220) */
.omni-node-1 { left: calc(108/700 * 100% - 28px); top: calc(88/440 * 100% - 28px) }
.omni-node-2 { left: calc(108/700 * 100% - 28px); top: calc(352/440 * 100% - 28px) }
.omni-node-3 { left: calc(592/700 * 100% - 28px); top: calc(88/440 * 100% - 28px) }
.omni-node-4 { left: calc(592/700 * 100% - 28px); top: calc(352/440 * 100% - 28px) }
.omni-node-5 { left: calc(350/700 * 100% - 28px); top: calc(420/440 * 100% - 40px) }

.omni-node-icon {
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    backdrop-filter: blur(16px) saturate(1.4);
}
/* Channel brand colors */
[data-channel="facebook"] .omni-node-icon {
    background: rgba(24, 119, 242, .2);
    color: #1877F2
}
[data-channel="instagram"] .omni-node-icon {
    background: -o-linear-gradient(315deg, rgba(131, 58, 180, .2), rgba(253, 29, 29, .15));
    background: linear-gradient(135deg, rgba(131, 58, 180, .2), rgba(253, 29, 29, .15));
    color: #E4405F
}
[data-channel="whatsapp"] .omni-node-icon {
    background: rgba(37, 211, 102, .2);
    color: #25D366
}
[data-channel="email"] .omni-node-icon {
    background: rgba(37, 99, 235, .2);
    color: var(--accent)
}
[data-channel="google"] .omni-node-icon {
    background: rgba(66, 133, 244, .2);
    color: #4285F4
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .omni-frost-orb {
        display: none
    }

    .omni {
        padding: 70px 0 60px
    }

    .omni-cta-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px
    }

    .omni-cta-btns .btn,
    .omni-cta-btns .btn-outline-light {
        justify-content: center;
        width: 100%
    }

    .omni-orbit {
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        margin-top: 40px
    }

    .omni-connectors {
        display: none
    }

    .omni-hub {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .omni-hub-glow,
    .omni-hub-ring {
        display: none
    }

    .omni-hub-core {
        width: 72px;
        height: 72px;
        border-radius: 20px
    }

    .omni-hub-logo {
        width: 38px;
        height: 38px
    }

    .omni-node {
        position: relative;
        top: auto !important;
        left: auto !important;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 14px;
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 14px
    }

    .omni-node:hover {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        background: rgba(255, 255, 255, .07)
    }

    .omni-node-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 12px;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .omni-node-name {
        font-size: .88rem;
        color: rgba(249, 250, 251, .7)
    }
}

@media (max-width: 480px) {
    .omni-node {
        max-width: 100%;
        padding: 12px 16px
    }

    .omni-node-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 10px
    }

    .omni-node-icon svg {
        width: 20px;
        height: 20px
    }
}

/* ── Problem section on-light override ── */
.problems.on-light {
    background: var(--bg-white);
    padding: 100px 0 110px
}

.problems.on-light::before {
    background: -o-radial-gradient(ellipse, rgba(239, 68, 68, .04), transparent);
    background: radial-gradient(ellipse, rgba(239, 68, 68, .04), transparent)
}

.problems.on-light .sec-head {
    margin-bottom: 56px
}

.problems.on-light .sec-head h2 {
    color: var(--text-dark)
}

.problems.on-light .sec-head p {
    color: var(--text-dark-sub)
}

.problems.on-light .sec-tag {
    color: #D97706;
    background: rgba(217, 119, 6, 0.07);
    border: 1px solid rgba(217, 119, 6, 0.12);
}

/* 3-column grid for 3 stat cards */
.problems.on-light .prob-grid {
    -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto
}

.problems.on-light .prob-item {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 44px 28px;
    text-align: center
}

.problems.on-light .prob-item::before {
    background: -o-linear-gradient(315deg, var(--red), var(--accent));
    background: linear-gradient(135deg, var(--red), var(--accent))
}

.problems.on-light .prob-item::after {
    background: #fff;
    -webkit-transition: background .4s;
    -o-transition: background .4s;
    transition: background .4s
}

.problems.on-light .prob-item:hover {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: var(--shadow-lg);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, .2)
}

.problems.on-light .prob-item:hover::after {
    background: #fafbfc
}

.problems.on-light .prob-item-ico {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    font-size: 1.4rem
}

.problems.on-light .prob-item-ico.red {
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .12);
    color: var(--red)
}

.problems.on-light .prob-item-ico.orange {
    background: rgba(245, 158, 11, .08);
    border: 1px solid rgba(245, 158, 11, .12);
    color: var(--orange)
}

.problems.on-light .prob-item-ico.blue {
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .12);
    color: var(--accent)
}

.problems.on-light .prob-item-num {
    font-size: 3rem;
    background: -o-linear-gradient(315deg, var(--text-dark), var(--accent));
    background: linear-gradient(135deg, var(--text-dark), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px
}

.problems.on-light .prob-item h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px
}

.problems.on-light .prob-item p {
    color: var(--text-dark-sub);
    font-size: .95rem;
    line-height: 1.7
}

.prob-bottom {
    text-align: center;
    padding-top: 52px;
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto
}

.prob-bottom em {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6
}

.on-light .prob-bottom em {
    color: var(--text-dark-sub);
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(239, 68, 68, .04)), to(transparent));
    background: -o-linear-gradient(left, transparent, rgba(239, 68, 68, .04), transparent);
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, .04), transparent);
    padding: 12px 28px;
    border-radius: var(--r-lg);
    display: inline-block
}

/* ── Benefits section ── */
.benefits {
    background: #F8F9FA;
    padding: 100px 0
}

.benefits .sec-head h2 {
    color: var(--text-white)
}

/* ── Benefits dark (problem→solution flow) ── */
.benefits-dark {
    background: #0b1120;
    padding: 40px 0 100px;
    position: relative;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.benefits-bg-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    background-size: 180px;
}

/* ── Color mesh orbs ── */
.benefits-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.benefits-orb-1 {
    width: 650px;
    height: 500px;
    top: -80px;
    left: -10%;
    background: radial-gradient(ellipse, rgba(37, 99, 235, .18), transparent 70%);
    animation: bOrbFloat1 16s ease-in-out infinite alternate;
}

.benefits-orb-2 {
    width: 550px;
    height: 450px;
    bottom: -60px;
    right: -5%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, .15), transparent 70%);
    animation: bOrbFloat2 20s ease-in-out infinite alternate;
}

.benefits-orb-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(52, 211, 153, .1), transparent 70%);
    animation: bOrbFloat3 14s ease-in-out infinite alternate;
}

@keyframes bOrbFloat1 {
    0%   { opacity: .5; transform: scale(1) translateY(0); }
    100% { opacity: .9; transform: scale(1.15) translateY(-30px); }
}
@keyframes bOrbFloat2 {
    0%   { opacity: .4; transform: scale(1) translateX(0); }
    100% { opacity: .8; transform: scale(1.2) translateX(-40px); }
}
@keyframes bOrbFloat3 {
    0%   { opacity: .3; transform: translateX(-50%) scale(1); }
    100% { opacity: .6; transform: translateX(-45%) scale(1.25); }
}

.benefits-dark .sec-head {
    text-align: center;
    position: relative;
    z-index: 2;
}

.benefits-dark-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: #F9FAFB;
}

.benefits-dark-title span {
    background: linear-gradient(135deg, #34d399, #38bdf8, #a78bfa);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.benefits-dark .benefits-grid {
    position: relative;
    z-index: 2;
}

/* ── Glass cards (high specificity to override base .benefit-card) ── */
.benefits-dark .benefit-card.benefit-card-dark {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 0;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, .25),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    transition: all .4s cubic-bezier(.25, .8, .25, 1);
    overflow: hidden;
}

.benefits-dark .benefit-card.benefit-card-dark:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    background: linear-gradient(160deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
    border-color: rgba(255, 255, 255, .15);
    box-shadow:
        0 16px 56px rgba(0, 0, 0, .35),
        inset 0 1px 0 rgba(255, 255, 255, .12);
}

/* per-card glow blob */
.bcd-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .5;
    pointer-events: none;
    transition: opacity .4s;
}

.benefits-dark .benefit-card-dark:hover .bcd-glow {
    opacity: .85;
}

.bcd-blue .bcd-glow  { background: rgba(37, 99, 235, .4); }
.bcd-green .bcd-glow  { background: rgba(52, 211, 153, .35); }
.bcd-purple .bcd-glow { background: rgba(167, 139, 250, .35); }

/* top accent border */
.benefits-dark .benefit-card.bcd-blue  { border-top: 2px solid rgba(37, 99, 235, .5); border-left: 1px solid rgba(255,255,255,.1); }
.benefits-dark .benefit-card.bcd-green { border-top: 2px solid rgba(52, 211, 153, .5); border-left: 1px solid rgba(255,255,255,.1); }
.benefits-dark .benefit-card.bcd-purple { border-top: 2px solid rgba(167, 139, 250, .5); border-left: 1px solid rgba(255,255,255,.1); }

.benefits-dark .benefit-card.bcd-blue:hover  { border-color: rgba(37, 99, 235, .4); border-top-color: rgba(37, 99, 235, .7); }
.benefits-dark .benefit-card.bcd-green:hover { border-color: rgba(52, 211, 153, .4); border-top-color: rgba(52, 211, 153, .7); }
.benefits-dark .benefit-card.bcd-purple:hover { border-color: rgba(167, 139, 250, .4); border-top-color: rgba(167, 139, 250, .7); }

.bcd-content {
    position: relative;
    z-index: 2;
    padding: 36px 32px 32px;
}

/* big stat number */
.bcd-stat {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 16px;
}

.bcd-blue .bcd-stat {
    background: linear-gradient(135deg, #38bdf8, #22a7e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bcd-green .bcd-stat {
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bcd-purple .bcd-stat {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-dark .benefit-card-dark h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefits-dark .benefit-card-dark p {
    font-size: .95rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* small tag pill */
.bcd-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    padding: 5px 14px;
}

.bcd-blue .bcd-tag {
    color: #7dd3fc;
    background: rgba(37, 99, 235, .12);
    border: 1px solid rgba(37, 99, 235, .2);
}
.bcd-green .bcd-tag {
    color: #6ee7b7;
    background: rgba(52, 211, 153, .12);
    border: 1px solid rgba(52, 211, 153, .2);
}
.bcd-purple .bcd-tag {
    color: #c4b5fd;
    background: rgba(167, 139, 250, .12);
    border: 1px solid rgba(167, 139, 250, .2);
}

.benefits-proof-dark {
    color: #64748b;
}

.benefits-dark .benefits-cta .btn {
    box-shadow: 0 4px 30px rgba(37, 99, 235, .35);
}

@media (max-width: 768px) {
    .bcd-stat {
        font-size: 2.2rem;
    }
    .bcd-content {
        padding: 28px 24px 24px;
    }
}

.benefits-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 28px 1fr 28px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px
}

.benefit-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 40px 32px;
    -webkit-transition: -webkit-transform .3s, -webkit-box-shadow .3s;
    transition: -webkit-transform .3s, -webkit-box-shadow .3s;
    -o-transition: transform .3s, box-shadow .3s;
    transition: transform .3s, box-shadow .3s;
    transition: transform .3s, box-shadow .3s, -webkit-transform .3s, -webkit-box-shadow .3s
}

.benefit-card:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08)
}

.benefit-card-ico {
    width: 56px;
    height: 56px;
    border-radius: var(--r-lg);
    background: var(--accent-glow2);
    border: 1px solid rgba(37, 99, 235, .15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 24px
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-dark-sub);
    line-height: 1.7
}

.benefits-cta {
    text-align: center;
    margin-top: 48px
}

/* ── How It Works ── */
.how-it-works {
    background: var(--bg-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.how-it-works .sec-head h2 {
    color: var(--text-dark)
}

.steps-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px
}

.step-item {
    text-align: center;
    padding: 32px 20px
}

.step-num {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .1);
    border: 2px solid var(--accent);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 20px
}

.step-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px
}

.step-item p {
    font-size: 1rem;
    color: var(--text-dark-sub);
    line-height: 1.65
}

/* ── Pricing light theme overrides ── */
.pricing.on-light {
    background: #F8F9FA;
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.pricing.on-light .sec-head h2 {
    color: var(--text-dark)
}

.pricing.on-light .sec-head p {
    color: var(--text-dark-sub)
}

.pricing.on-light .sec-tag {
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .15);
    color: var(--accent)
}

.p-card-light {
    background: #fff !important;
    border: 1px solid var(--border-light) !important
}

.p-card-light::before {
    display: none !important
}

.p-card-light .p-card-head h3 {
    color: var(--text-dark)
}

.p-card-light .p-card-desc {
    color: var(--text-dark-sub)
}

.p-card-light .p-card-price .amount {
    color: var(--text-dark)
}

.p-card-light .p-card-price .period {
    color: var(--text-dark-sub)
}

.p-card-light .p-card-unlimited {
    background: rgba(37, 99, 235, .06);
    border-color: rgba(37, 99, 235, .12);
    color: var(--accent)
}

.p-card-light .p-card-body li {
    color: var(--text-dark-sub)
}

.p-card-light .p-card-body li i {
    color: var(--accent)
}

.p-card-light.popular {
    border-color: var(--accent) !important;
    -webkit-box-shadow: 0 0 0 1px var(--accent), 0 8px 40px rgba(37, 99, 235, .12) !important;
    box-shadow: 0 0 0 1px var(--accent), 0 8px 40px rgba(37, 99, 235, .12) !important
}

.p-card-light.popular .p-card-badge {
    background: var(--accent);
    color: #fff
}

.p-card-ai-note {
    font-size: .88rem;
    color: var(--text-muted);
    font-style: italic;
    padding-left: 28px;
    list-style: none !important
}

.p-card-ai-note::before {
    display: none
}

.p-card-ai-highlight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin: 20px 8px;
    margin-bottom: 0;
    background: rgba(16, 185, 129, .08);
    border: 1px solid rgba(16, 185, 129, .2);
    border-radius: var(--r-sm);
    font-size: .92rem;
    font-weight: 700;
    color: var(--green)
}

.pricing.on-light .price-note {
    background: rgba(0, 0, 0, .03);
    border: 1px solid var(--border-light);
    color: var(--text-dark-sub)
}

.pricing.on-light .price-note i {
    color: var(--accent)
}

/* ── Testimonials light background ── */
.testim.on-light {
    background: var(--bg-light)
}

.testim.on-light .testim-header-text h2,
.testim.on-light .testim-header h2 {
    color: var(--text-dark)
}

.testim.on-light .testim-header-text p,
.testim.on-light .testim-header p {
    color: var(--text-dark-sub)
}

.testim.on-light .sec-tag {
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .15);
    color: var(--accent)
}

.testim.on-light .testim-rating {
    background: #fff;
    border-color: var(--border-light)
}

.testim.on-light .testim-rating .tr-stars {
    color: #f59e0b
}

.testim.on-light .testim-rating .tr-text {
    color: var(--text-dark)
}

.testim.on-light .t-card {
    background: #fff;
    border: 1px solid var(--border-light)
}

.testim.on-light .t-card .t-stars {
    color: #f59e0b
}

.testim.on-light .t-card .t-quote-icon {
    color: rgba(37, 99, 235, .12)
}

.testim.on-light .t-card .t-text {
    color: var(--text-dark-sub)
}

.testim.on-light .t-card .t-name {
    color: var(--text-dark)
}

.testim.on-light .t-card .t-role {
    color: var(--text-dark-sub)
}

.testim.on-light .testim-btn {
    background: #fff;
    border-color: var(--border-light);
    color: var(--text-dark)
}

.testim.on-light .testim-dot {
    background: rgba(0, 0, 0, .1)
}

.testim.on-light .testim-dot.active {
    background: var(--accent)
}

/* ── Security & GDPR ── */
.security {
    background: #FFFFFF;
    padding: 80px 0
}

.security .sec-head {
    text-align: center;
    margin-bottom: 48px
}

.security .sec-head h2 {
    color: var(--text-dark)
}

.security-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto
}

.security-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #F8F9FA;
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg)
}

.security-ico {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--r-md);
    background: var(--accent-glow2);
    border: 1px solid rgba(37, 99, 235, .12);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent)
}

.security-item p {
    font-size: 1rem;
    color: var(--text-dark-sub);
    line-height: 1.65;
    margin: 0
}

/* ── FAQ light background override ── */
.faq.on-light {
    background: #F8F9FA
}

.faq.on-light .faq-left h2 {
    color: var(--text-dark)
}

.faq.on-light .faq-left p {
    color: var(--text-dark-sub)
}

.faq.on-light .sec-tag {
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .15);
    color: var(--accent)
}

.faq.on-light .faq-item {
    background: #fff;
    border-color: var(--border-light)
}

.faq.on-light .faq-q {
    color: var(--text-dark)
}

.faq.on-light .faq-q .ic {
    color: var(--text-dark-sub)
}

.faq.on-light .faq-a-body {
    color: var(--text-dark-sub)
}

.faq.on-light .faq-item.open {
    border-color: rgba(37, 99, 235, .3);
    background: #fff
}

/* ── Kontakt ── */
.kontakt {
    background: var(--bg-white);
    padding: 80px 0
}

.kontakt-layout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.2fr 60px .8fr;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
}

.kontakt-left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0
}

.kontakt-left h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 12px 0 8px
}

.kontakt-left p {
    color: var(--text-dark-sub);
    font-size: 1rem;
    line-height: 1.6
}

.kontakt-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0
}

.kontakt-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    border-radius: var(--r-xl);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    text-decoration: none;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.kontakt-card:hover {
    background: rgba(37, 99, 235, .06);
    border-color: rgba(37, 99, 235, .3);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px)
}

.kontakt-card-ico {
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: var(--r-lg);
    background: rgba(37, 99, 235, .1);
    color: var(--accent);
    font-size: 1.25rem;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.kontakt-card-info h3 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 4px
}

.kontakt-card-info span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark)
}

.kontakt-form {
    margin-top: 28px
}

.form-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14.5px;
    font-family: Inter, system-ui, sans-serif;
    color: #0f172a;
    background: #fff;
    -webkit-transition: border-color .2s, box-shadow .2s;
    -o-transition: border-color .2s, box-shadow .2s;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #94a3b8
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #94a3b8
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
    color: #94a3b8
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22a7e6;
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
}

.form-group textarea {
    resize: vertical;
    min-height: 100px
}

.btn.btn-primary-dark {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: Inter, system-ui, sans-serif;
    cursor: pointer;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.btn.btn-primary-dark:hover {
    background: #1e293b;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.kf-status {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500
}

.kf-status.success { color: #16a34a }
.kf-status.error { color: #dc2626 }

.kontakt-right {
    padding-top: 80px
}

.kontakt-card-static {
    cursor: default
}

@media (max-width: 768px) {
    .kontakt-layout {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 40px
    }

    .form-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }

    .kontakt-right {
        padding-top: 0
    }
}

/* ── Final CTA ── */
.final-cta {
    background: -webkit-gradient(linear, left top, right bottom, from(#DBEAFE), color-stop(50%, #E0F2FE), to(#F0F9FF));
    background: -o-linear-gradient(top left, #DBEAFE 0%, #E0F2FE 50%, #F0F9FF 100%);
    background: linear-gradient(135deg, #DBEAFE 0%, #E0F2FE 50%, #F0F9FF 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center
}

.final-cta-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(37, 99, 235, .08);
    border-radius: 50%;
    -webkit-filter: blur(120px);
    filter: blur(120px);
    top: -200px;
    left: -100px;
    pointer-events: none
}

.final-cta-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, .06);
    border-radius: 50%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    bottom: -200px;
    right: -100px;
    pointer-events: none
}

.final-cta-inner {
    position: relative;
    z-index: 1
}

.final-cta-inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 36px;
    line-height: 1.25;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.final-cta-micro {
    margin-top: 20px;
    font-size: .92rem;
    color: var(--text-dark-sub);
    font-weight: 500;
    letter-spacing: .02em
}

.final-cta-alt {
    margin-top: 12px;
    font-size: 14.5px;
    color: #475569
}

.final-cta-alt a {
    color: #22a7e6;
    font-weight: 600;
    text-decoration: underline;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
    text-underline-offset: 3px
}

.final-cta-alt a:hover {
    color: #0284C7
}

/* ── Footer redesigned ── */
.footer {
    padding: 60px 0 28px;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, .06)
}

.footer .wrap {
    display: block
}

.footer-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.footer-brand {
    max-width: 300px
}

.footer-logo img {
    height: 22px;
    margin-bottom: 14px
}

.footer-desc {
    font-size: .92rem;
    color: var(--text-dark-sub);
    line-height: 1.65
}

.footer-platforms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.footer-platforms-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500
}

.footer-platform {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 500
}

.footer-col h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px
}

.footer-col ul a,
.footer-col ul li a {
    font-size: .92rem;
    color: var(--text-muted);
    font-weight: 500;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
    text-decoration: none
}

.footer-col ul a:hover,
.footer-col ul li a:hover {
    color: var(--accent-dark)
}

.footer-legal-info {
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    text-align: center;
}

.footer-legal-info p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0
}

.fli-block p + p {
    margin-top: 2px
}

.fli-block a {
    color: var(--accent-dark);
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

.fli-block a:hover {
    color: var(--accent-darker)
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom .footer-copy {
    font-size: .82rem;
    color: var(--text-muted)
}

/* ── Comparison light theme overrides ── */
.comparison.on-light {
    background: #F8F9FA
}

.comparison.on-light .sec-head h2 {
    color: var(--text-dark)
}

.comparison.on-light .sec-head p {
    color: var(--text-dark-sub)
}

.comparison.on-light .sec-tag {
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .15);
    color: var(--accent)
}

/* ── Responsive additions ── */
@media (max-width: 1080px) {
    .benefits-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        max-width: 520px;

        margin-left: auto;
        margin-right: auto
    }

    .steps-grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-top {
        -ms-grid-columns: 1fr 32px 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none
    }

    .fli-grid {
        -ms-grid-columns: 1fr 16px 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }
}

@media (max-width: 768px) {
    .trust-items {
        gap: 20px
    }

    .trust-item {
        font-size: .82rem
    }

    .problems.on-light .prob-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        max-width: 400px
    }

    .benefits-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }

    .steps-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }

    .security-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }

    .final-cta-inner h2 {
        font-size: 1.6rem
    }

    .footer-top {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-brand {
        grid-column: auto
    }

    .fli-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .trust-items {
        gap: 14px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .trust-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 7px);
        flex: 0 0 calc(50% - 7px);
        font-size: .78rem
    }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 24px;
    background: #fff;
    border-top: 1px solid var(--border-light);
    -webkit-box-shadow: 0 -4px 30px rgba(0, 0, 0, .08);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .08);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.cookie-banner-inner {
    max-width: 1220px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px
}

.cookie-banner-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    color: var(--text-dark-sub);
    font-size: .88rem;
    line-height: 1.5
}

.cookie-banner-text i {
    font-size: 1.4rem;
    color: var(--accent);
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.cookie-banner-text a {
    color: var(--accent-dark);
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(37, 99, 235, .3);
    text-decoration-color: rgba(37, 99, 235, .3);
    text-underline-offset: 2px
}

.cookie-banner-text a:hover {
    color: var(--accent-darker)
}

.cookie-banner-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.btn-cookie {
    padding: 10px 24px;
    font-size: .84rem
}

.btn-outline-cookie {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .84rem;
    padding: 10px 24px;
    border-radius: var(--r-full);
    border: 1px solid var(--border-light);
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    white-space: nowrap;
    font-family: inherit;
    background: transparent;
    color: var(--text-dark-sub)
}

.btn-outline-cookie:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    background: rgba(37, 99, 235, .04)
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }

    .cookie-banner-text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cookie-banner-btns {
        width: 100%
    }

    .cookie-banner-btns .btn-cookie,
    .cookie-banner-btns .btn-outline-cookie {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }
}

.ob-shell {
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    background: #0a0e1a;
}

.ob-shell::before {
    content: '';
    position: fixed;
    inset: 0;
    background: -o-radial-gradient(70% 20%, ellipse 80% 60%, rgba(37, 99, 235, .06), transparent 60%), -o-radial-gradient(20% 80%, ellipse 60% 50%, rgba(139, 92, 246, .04), transparent 50%);
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(37, 99, 235, .06), transparent 60%), radial-gradient(ellipse 60% 50% at 20% 80%, rgba(139, 92, 246, .04), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.ob-sidebar {
    position: absolute;
    z-index: 2;
    width: 300px;
    min-height: 100vh;
    padding: 40px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: rgba(255, 255, 255, .2);
    border-right: 1px solid rgba(255, 255, 255, .6);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.ob-stepper {
    margin-top: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.ob-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    padding-bottom: 36px;
    cursor: default;
}

.ob-step:last-child {
    padding-bottom: 0;
}

.ob-step-line {
    position: absolute;
    left: 15px;
    top: 32px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, .6);
    -webkit-transition: background .4s;
    -o-transition: background .4s;
    transition: background .4s;
}

.ob-step:last-child .ob-step-line {
    display: none;
}

.ob-step.done .ob-step-line {
    background: rgba(16, 185, 129, .3);
}

.ob-step.active .ob-step-line {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(37, 99, 235, .4)), to(rgba(255, 255, 255, .6)));
    background: -o-linear-gradient(top, rgba(37, 99, 235, .4), rgba(255, 255, 255, .6));
    background: linear-gradient(180deg, rgba(37, 99, 235, .4), rgba(255, 255, 255, .6));
}

.ob-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: .75rem;
    font-weight: 700;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
    position: relative;
    z-index: 1;
}

.ob-step.pending .ob-step-dot {
    background: rgba(255, 255, 255, .04);
    border: 1.5px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .25);
}

.ob-step.active .ob-step-dot {
    background: var(--accent);
    border: 2px solid var(--accent-light);
    color: #fff;
    -webkit-box-shadow: 0 0 0 4px rgba(37, 99, 235, .15), 0 4px 12px rgba(37, 99, 235, .3);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .15), 0 4px 12px rgba(37, 99, 235, .3);
}

.ob-step.done .ob-step-dot {
    background: rgba(16, 185, 129, .15);
    border: 1.5px solid rgba(16, 185, 129, .3);
    color: var(--green);
}

.ob-step-text {
    padding-top: 5px;
}

.ob-step-label {
    font-size: 1rem;
    font-weight: 700;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.ob-step.pending .ob-step-label {
    color: rgba(255, 255, 255, .25);
}

.ob-step.active .ob-step-label {
    color: #fff;
}

.ob-step.done .ob-step-label {
    color: rgba(255, 255, 255, .5);
}

.ob-step-hint {
    font-size: .74rem;
    color: rgba(255, 255, 255, .2);
    margin-top: 2px;
}

.ob-step.active .ob-step-hint {
    color: rgba(37, 99, 235, .5);
}

.ob-step.done {
    cursor: pointer;
}

.ob-step.done:hover .ob-step-label {
    color: rgba(255, 255, 255, .7);
}

.ob-step.done:hover .ob-step-dot {
    border-color: rgba(16, 185, 129, .5);
    background: rgba(16, 185, 129, .25);
}

a.ob-step-link {
    text-decoration: none;
    color: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.ob-sidebar-footer {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.ob-help-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
}

.ob-help-link:hover {
    color: rgba(255, 255, 255, .6);
}

.ob-help-link svg {
    width: 16px;
    height: 16px;
    opacity: .5;
}

.ob-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.ob-container {
    width: 100%;
    max-width: 560px;
    -webkit-animation: stepIn .5s cubic-bezier(.16, 1, .3, 1);
    animation: stepIn .5s cubic-bezier(.16, 1, .3, 1);
}

@-webkit-keyframes stepIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(24px);
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes stepIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(24px);
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.ob-header {
    text-align: center;
    margin-bottom: 28px;
}

.ob-emoji {
    font-size: 40px;
    margin-bottom: 14px;
    display: block;
}

.ob-title {
    color: white;
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.ob-title em {
    font-style: normal;
    background: -o-linear-gradient(315deg, var(--accent-light), #7dd3fc);
    background: linear-gradient(135deg, var(--accent-light), #7dd3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ob-subtitle {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 440px;
    margin: 0 auto;
}

.ob-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-xl);
    padding: 32px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, .25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .25);
}

.f-group {
    margin-bottom: 16px;
}

.f-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.f-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: .88rem;
    color: #fff;
    background: rgba(255, 255, 255, .05);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.f-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .25);
}

.f-input::-moz-placeholder {
    color: rgba(255, 255, 255, .25);
}

.f-input:-ms-input-placeholder {
    color: rgba(255, 255, 255, .25);
}

.f-input::-ms-input-placeholder {
    color: rgba(255, 255, 255, .25);
}

.f-input::placeholder {
    color: rgba(255, 255, 255, .25);
}

.f-input:focus {
    border-color: var(--accent);
    background: rgba(37, 99, 235, .04);
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.f-input.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, .04);
    -webkit-box-shadow: 0 0 0 3px rgba(239, 68, 68, .1);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .1);
    -webkit-animation: shakeInput .4s ease-in-out;
    animation: shakeInput .4s ease-in-out;
}

@-webkit-keyframes shakeInput {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px)
    }
    40% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px)
    }
    60% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px)
    }
    80% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px)
    }
}

@keyframes shakeInput {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px)
    }
    40% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px)
    }
    60% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px)
    }
    80% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px)
    }
}

.f-error-msg {
    font-size: .74rem;
    color: #ef4444;
    margin-top: 6px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.f-error-msg.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: stepIn .25s ease-out;
    animation: stepIn .25s ease-out;
}

.url-hero {
    position: relative;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: -o-linear-gradient(315deg, rgba(37, 99, 235, .04), rgba(139, 92, 246, .03));
    background: linear-gradient(135deg, rgba(37, 99, 235, .04), rgba(139, 92, 246, .03));
    border: 2px solid rgba(37, 99, 235, .15);
    border-radius: var(--r-xl);
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}

.url-hero.empty {
    -webkit-animation: urlPulse 2.5s ease-in-out infinite;
    animation: urlPulse 2.5s ease-in-out infinite;
}

@-webkit-keyframes urlPulse {
    0%, 100% {
        border-color: rgba(37, 99, 235, .15);
        -webkit-box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0)
    }
    50% {
        border-color: rgba(37, 99, 235, .35);
        -webkit-box-shadow: 0 0 24px 0 rgba(37, 99, 235, .06);
        box-shadow: 0 0 24px 0 rgba(37, 99, 235, .06)
    }
}

@keyframes urlPulse {
    0%, 100% {
        border-color: rgba(37, 99, 235, .15);
        -webkit-box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0)
    }
    50% {
        border-color: rgba(37, 99, 235, .35);
        -webkit-box-shadow: 0 0 24px 0 rgba(37, 99, 235, .06);
        box-shadow: 0 0 24px 0 rgba(37, 99, 235, .06)
    }
}

.url-hero.filled {
    border-color: rgba(16, 185, 129, .3);
    background: -o-linear-gradient(315deg, rgba(16, 185, 129, .04), rgba(16, 185, 129, .02));
    background: linear-gradient(135deg, rgba(16, 185, 129, .04), rgba(16, 185, 129, .02));
    -webkit-animation: none;
    animation: none;
}

.url-hero.has-error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, .03);
    -webkit-animation: none;
    animation: none;
}

.url-hero-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    color: rgba(37, 99, 235, .65);
    margin-bottom: 10px;
}

.url-hero.filled .url-hero-label {
    color: rgba(16, 185, 129, .7);
}

.url-hero.has-error .url-hero-label {
    color: #ef4444;
}

.url-hero-label svg {
    width: 18px;
    height: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.url-hero-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, .2);
    border: 1.5px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-lg);
    outline: none;
    font-family: inherit;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.url-hero-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .2);
    font-weight: 400;
}

.url-hero-input::-moz-placeholder {
    color: rgba(255, 255, 255, .2);
    font-weight: 400;
}

.url-hero-input:-ms-input-placeholder {
    color: rgba(255, 255, 255, .2);
    font-weight: 400;
}

.url-hero-input::-ms-input-placeholder {
    color: rgba(255, 255, 255, .2);
    font-weight: 400;
}

.url-hero-input::placeholder {
    color: rgba(255, 255, 255, .2);
    font-weight: 400;
}

.url-hero-input:focus {
    border-color: var(--accent);
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.url-hero-note {
    font-size: .7rem;
    color: rgba(255, 255, 255, .2);
    margin-top: 8px;
}

.reg-rest {
    -webkit-transition: opacity .4s, -webkit-filter .4s;
    transition: opacity .4s, -webkit-filter .4s;
    -o-transition: opacity .4s, filter .4s;
    transition: opacity .4s, filter .4s;
    transition: opacity .4s, filter .4s, -webkit-filter .4s;
}

.reg-rest.locked {
    opacity: .25;
    -webkit-filter: blur(1px);
    filter: blur(1px);
    pointer-events: none;
    position: relative;
}

.reg-lock-msg {
    display: none;
    text-align: center;
    padding: 12px 0 6px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--accent-light);
}

.reg-rest.locked ~ .reg-lock-msg {
    display: block;
}

.gdpr-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0 6px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.gdpr-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gdpr-box {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1.5px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .04);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 1px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.gdpr-check input:checked ~ .gdpr-box {
    background: var(--accent);
    border-color: var(--accent);
}

.gdpr-box svg {
    width: 12px;
    height: 12px;
    color: #fff;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.gdpr-check input:checked ~ .gdpr-box svg {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.gdpr-box.error {
    border-color: #ef4444;
    -webkit-animation: shakeInput .4s ease-in-out;
    animation: shakeInput .4s ease-in-out;
}

.gdpr-text {
    font-size: .76rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.55;
}

.gdpr-text a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-google {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px;
    background: rgba(255, 255, 255, .05);
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-full);
    color: #fff;
    font-family: inherit;
    font-size: .86rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.btn-google:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
}

.btn-google svg {
    width: 18px;
    height: 18px;
}

.ob-divider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
    color: rgba(255, 255, 255, .18);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ob-divider::before, .ob-divider::after {
    content: '';
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .6);
}

.ob-trust {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ob-trust-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    color: rgba(255, 255, 255, .35);
    font-weight: 500;
}

.ob-trust-item i {
    color: var(--green);
    font-size: .68rem;
    font-style: normal;
}

.email-verify-wrap {
    text-align: center;
}

.email-verify-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: -o-linear-gradient(315deg, rgba(37, 99, 235, .08), rgba(139, 92, 246, .08));
    background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(139, 92, 246, .08));
    border: 2px solid rgba(37, 99, 235, .15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    -webkit-animation: floatIcon 3s ease-in-out infinite;
    animation: floatIcon 3s ease-in-out infinite;
}

@-webkit-keyframes floatIcon {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px)
    }
}

@keyframes floatIcon {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px)
    }
}

.email-display {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37, 99, 235, .06);
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: var(--r-full);
    font-size: .88rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.otp-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.otp-input {
    width: 52px;
    height: 60px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    background: rgba(255, 255, 255, .05);
    border: 2px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    outline: none;
    font-family: 'JetBrains Mono', monospace;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.otp-input:focus {
    border-color: var(--accent);
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.otp-input.filled {
    border-color: rgba(37, 99, 235, .3);
    background: rgba(37, 99, 235, .06);
}

.resend-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 16px;
}

.resend-link {
    background: none;
    border: none;
    color: var(--accent-light);
    font-family: inherit;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.resend-link:disabled {
    color: rgba(255, 255, 255, .2);
    cursor: default;
}

.path-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.path-option {
    position: relative;
    cursor: pointer;
}

.path-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.path-inner {
    background: rgba(255, 255, 255, .3);
    border: 1.5px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-xl);
    padding: 24px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.path-option:hover .path-inner {
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
}

.path-option input:checked ~ .path-inner {
    border-color: var(--accent);
    background: rgba(37, 99, 235, .05);
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.path-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.path-icon.trial {
    background: rgba(16, 185, 129, .1);
}

.path-icon.pay {
    background: rgba(37, 99, 235, .1);
}

.path-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.path-name {
    color: white;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.path-desc {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.path-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.path-tag.green {
    background: rgba(16, 185, 129, .1);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, .15);
}

.path-tag.blue {
    background: rgba(37, 99, 235, .1);
    color: var(--accent-light);
    border: 1px solid rgba(37, 99, 235, .15);
}

.pricing-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.pricing-option {
    position: relative;
    cursor: pointer;
}

.pricing-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pricing-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .3);
    border: 1.5px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-lg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.pricing-option:hover .pricing-inner {
    border-color: rgba(255, 255, 255, .15);
}

.pricing-option input:checked ~ .pricing-inner {
    border-color: var(--accent);
    background: rgba(37, 99, 235, .05);
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .08);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .08);
}

.pricing-option input[value="biznis"]:checked ~ .pricing-inner {
    border-color: rgba(139, 92, 246, .4);
    background: rgba(139, 92, 246, .05);
    -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, .08);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .08);
}

.pricing-ico {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.2rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.pricing-ico.blue {
    background: rgba(37, 99, 235, .08);
}

.pricing-ico.green {
    background: rgba(16, 185, 129, .08);
}

.pricing-ico.purple {
    background: rgba(139, 92, 246, .08);
}

.pricing-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.pricing-info .pi-name {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 2px;
    color: white;
}

.pricing-info .pi-feat {
    font-size: .75rem;
    color: var(--text-muted);
}

.pricing-price {
    text-align: right;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.pricing-price .pp-amount {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
}

.pricing-price .pp-period {
    font-size: .7rem;
    color: var(--text-muted);
}

.pricing-price .pp-custom {
    font-size: .76rem;
    font-weight: 700;
    color: rgba(139, 92, 246, .7);
    line-height: 1.3;
}

.pricing-popular {
    position: absolute;
    top: -1px;
    right: 18px;
    padding: 3px 10px;
    background: -o-linear-gradient(315deg, var(--accent), #22a7e6);
    background: linear-gradient(135deg, var(--accent), #22a7e6);
    border-radius: 0 0 6px 6px;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
}

.biznis-24h {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(139, 92, 246, .04);
    border: 1px solid rgba(139, 92, 246, .1);
    border-radius: var(--r-lg);
    margin-bottom: 20px;
}

.biznis-24h-icon {
    font-size: 1.3rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.biznis-24h-text {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5;
}

.biznis-24h-text strong {
    color: rgba(139, 92, 246, .8);
}

.biznis-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(139, 92, 246, .08);
    border: 1px solid rgba(139, 92, 246, .15);
    border-radius: var(--r-full);
    font-size: .72rem;
    font-weight: 700;
    color: rgba(139, 92, 246, .8);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 20px;
}

.widget-preview {
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 18px;
}

.wp-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, .3);
}

.wp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.wp-dot:nth-child(1) {
    background: var(--red)
}

.wp-dot:nth-child(2) {
    background: var(--orange)
}

.wp-dot:nth-child(3) {
    background: var(--green)
}

.wp-url {
    margin-left: 8px;
    font-size: .72rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.wp-body {
    height: 140px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 16px;
}

.wp-lines {
    position: absolute;
    top: 18px;
    left: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
}

.wp-line {
    height: 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .04);
}

.wp-bubble {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: -o-linear-gradient(315deg, var(--accent), #22a7e6);
    background: linear-gradient(135deg, var(--accent), #22a7e6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 4px 16px rgba(37, 99, 235, .35);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .35);
    -webkit-animation: pulse 2.5s ease-in-out infinite;
    animation: pulse 2.5s ease-in-out infinite;
}

.wp-bubble svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

@-webkit-keyframes pulse {
    0%, 100% {
        -webkit-box-shadow: 0 4px 16px rgba(37, 99, 235, .35);
        box-shadow: 0 4px 16px rgba(37, 99, 235, .35)
    }
    50% {
        -webkit-box-shadow: 0 4px 24px rgba(37, 99, 235, .55);
        box-shadow: 0 4px 24px rgba(37, 99, 235, .55)
    }
}

@keyframes pulse {
    0%, 100% {
        -webkit-box-shadow: 0 4px 16px rgba(37, 99, 235, .35);
        box-shadow: 0 4px 16px rgba(37, 99, 235, .35)
    }
    50% {
        -webkit-box-shadow: 0 4px 24px rgba(37, 99, 235, .55);
        box-shadow: 0 4px 24px rgba(37, 99, 235, .55)
    }
}

.platform-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, .3);
    border-radius: var(--r-full);
    padding: 3px;
}

.platform-tab {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 9px 10px;
    border-radius: var(--r-full);
    border: none;
    background: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    text-align: center;
}

.platform-tab:hover {
    color: #fff;
}

.platform-tab.active {
    background: rgba(37, 99, 235, .1);
    color: var(--accent-light);
}

.snippet-box {
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--r-md);
    padding: 16px;
    position: relative;
    margin-bottom: 12px;
}

.snippet-box--compact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

.snippet-box--compact .snippet-code {
    max-height: 140px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .15) transparent;
}

.snippet-box--compact .snippet-code::-webkit-scrollbar {
    width: 5px;
}

.snippet-box--compact .snippet-code::-webkit-scrollbar-track {
    background: transparent;
}

.snippet-box--compact .snippet-code::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .15);
    border-radius: 3px;
}

.snippet-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: .76rem;
    color: var(--accent-light);
    line-height: 1.7;
    word-break: break-all;
    white-space: pre-wrap;
}

.snippet-copy {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 5px 14px;
    background: var(--accent);
    border: none;
    border-radius: var(--r-full);
    color: #fff;
    font-family: inherit;
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
}

.snippet-copy--big {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    font-size: .85rem;
    border-radius: var(--r-md);
    background: var(--accent);
    -webkit-transition: background .2s, -webkit-transform .1s;
    transition: background .2s, -webkit-transform .1s;
    -o-transition: background .2s, transform .1s;
    transition: background .2s, transform .1s;
    transition: background .2s, transform .1s, -webkit-transform .1s;
}

.snippet-copy--big:hover {
    background: #0284c7;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.snippet-copy--big:active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.snippet-copy.copied {
    background: var(--green);
}

.verify-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, .3);
    border: 1.5px dashed rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    color: var(--text-muted);
    font-family: inherit;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.verify-btn:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    border-style: solid;
}

.verify-btn.success {
    border-color: var(--green);
    color: var(--green);
    background: rgba(16, 185, 129, .05);
    border-style: solid;
    pointer-events: none;
}

.verify-result {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: .8rem;
    line-height: 1.5;
}

.verify-result.verify-ok {
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .2);
    color: #6ee7b7;
}

.verify-result.verify-fail {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .2);
    color: #fca5a5;
}

/* ── Mini Preview ── */
.wg-top {
    margin-bottom: 18px;
}

.wg-mini-preview {
    margin-bottom: 16px;
}

.wg-mp-site {
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .6);
    background: #1a1a2e;
}

.wg-mp-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, .3);
}

.wg-mp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}

.wg-mp-url {
    margin-left: 8px;
    font-size: .68rem;
    color: rgba(255, 255, 255, .3);
    font-family: 'JetBrains Mono', monospace;
}

.wg-mp-body {
    height: 120px;
    position: relative;
    background: -o-linear-gradient(315deg, #f1f5f9, #e2e8f0);
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 16px;
}

.wg-mp-lines {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
}

.wg-mp-ln {
    height: 6px;
    background: rgba(0, 0, 0, .06);
    border-radius: 3px;
}

.wg-mp-bubble {
    position: absolute;
    bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    background: #1B82F2;
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
    cursor: default;
    -webkit-transition: background .2s, right .3s, left .3s;
    -o-transition: background .2s, right .3s, left .3s;
    transition: background .2s, right .3s, left .3s;
}

.wg-mp-bubble svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wg-mp-bubble-text {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-width: 160px;
}

.wg-mp-bubble.is-icon {
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wg-mp-bubble.is-icon .wg-mp-bubble-text {
    display: none;
}

/* ── Customize toggle ── */
.wg-customize-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    gap: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-top: 1px solid rgba(255, 255, 255, .6);
    margin-bottom: 0;
}

.wg-customize-cb {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.wg-customize-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.wg-customize-icon {
    font-size: 1.1rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wg-customize-title {
    font-size: .85rem;
    font-weight: 600;
    color: #f1f5f9;
}

.wg-customize-desc {
    font-size: .72rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 1px;
}

.wg-toggle-track {
    width: 40px;
    height: 22px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .1);
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s;
}

.wg-toggle-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
}

.wg-customize-cb:checked ~ .wg-toggle-track {
    background: var(--accent);
}

.wg-customize-cb:checked ~ .wg-toggle-track .wg-toggle-thumb {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* ── Customization panel ── */
.wg-customize-panel {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .35s ease;
    -o-transition: max-height .35s ease;
    transition: max-height .35s ease;
    opacity: 0;
}

.wg-customize-panel.open {
    opacity: 1;
    max-height: 1200px;
}

/* ── Sections ── */
.wg-section {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.wg-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 4px;
}

.wg-section-title {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 10px;
}

.wg-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wg-field {
    min-width: 0;
}

.wg-label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 5px;
}

.wg-input,
.wg-select {
    width: 100%;
    padding: 8px 10px;
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-sm);
    color: #f1f5f9;
    font-size: .8rem;
    font-family: inherit;
    outline: none;
    -webkit-transition: border-color .2s;
    -o-transition: border-color .2s;
    transition: border-color .2s;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wg-input:focus,
.wg-select:focus {
    border-color: var(--accent);
}

.wg-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2394a3b8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

/* ── Color swatches + picker ── */
.wg-color-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wg-swatches {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wg-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    -webkit-transition: transform .15s, border-color .15s, box-shadow .15s;
    -o-transition: transform .15s, border-color .15s, box-shadow .15s;
    transition: transform .15s, border-color .15s, box-shadow .15s;
    padding: 0;
    outline: none;
}

.wg-swatch:hover {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.wg-swatch.active {
    border-color: #fff;
    -webkit-box-shadow: 0 0 0 2px rgba(37, 99, 235, .5);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, .5);
}

.wg-swatch--brand::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fbbf24;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

.wg-color-custom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.wg-color-picker-btn {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .85);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
    -webkit-transition: transform .15s, box-shadow .15s;
    -o-transition: transform .15s, box-shadow .15s;
    transition: transform .15s, box-shadow .15s;
    overflow: hidden;
}

.wg-color-picker-btn:hover {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .22);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .22);
}

.wg-color-picker-btn i {
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
    pointer-events: none;
}

.wg-color-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    border: 0;
    padding: 0;
    background: transparent;
}

.wg-color-input::-webkit-color-swatch-wrapper { padding: 0; }
.wg-color-input::-webkit-color-swatch { border: none; }
.wg-color-input::-moz-color-swatch { border: none; }

.wg-color-hex {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
}

.wg-color-hex-input {
    font-family: 'JetBrains Mono', 'Menlo', monospace;
    font-size: .78rem;
    width: 88px;
    padding: 8px 10px;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: .5px;
    outline: none;
    -webkit-transition: border-color .15s, box-shadow .15s;
    -o-transition: border-color .15s, box-shadow .15s;
    transition: border-color .15s, box-shadow .15s;
}

.wg-color-hex-input:focus {
    border-color: #1B82F2;
    -webkit-box-shadow: 0 0 0 3px rgba(27, 130, 242, .15);
    box-shadow: 0 0 0 3px rgba(27, 130, 242, .15);
}

.wg-color-hint {
    margin: 8px 0 0;
    font-size: .74rem;
    color: rgba(15, 23, 42, .55);
}

.wg-color-hint code {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(15, 23, 42, .06);
}

/* ── Range slider ── */
.wg-range-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.wg-range {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, .1);
    border-radius: 2px;
    outline: none;
}

.wg-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, .3);
}

.wg-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, .3);
}

.wg-range-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    color: rgba(255, 255, 255, .4);
    min-width: 32px;
    text-align: right;
}

/* ── Button group ── */
.wg-btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
}

.wg-btn-opt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 8px 8px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-sm);
    background: rgba(0, 0, 0, .2);
    color: rgba(255, 255, 255, .45);
    font-size: .76rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}

.wg-btn-opt:hover {
    color: #fff;
}

.wg-btn-opt.active {
    background: rgba(37, 99, 235, .1);
    border-color: rgba(37, 99, 235, .25);
    color: var(--accent-light);
}

/* ── Checkboxes ── */
.wg-checks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.wg-check-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    cursor: pointer;
    white-space: nowrap;
}

.wg-check {
    width: 15px;
    height: 15px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* ── Platform guide text ── */
.platform-guide {
    padding: 10px 14px;
    background: rgba(37, 99, 235, .04);
    border: 1px solid rgba(37, 99, 235, .08);
    border-radius: var(--r-sm);
    margin-bottom: 12px;
    font-size: .76rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .5);
    display: none;
}

.platform-guide.visible {
    display: block;
}

.platform-guide strong {
    color: var(--accent-light);
}

/* ── Live preview ── */
.wg-live-preview {
    margin-bottom: 20px;
}

.wg-live-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 10px;
}

.wg-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    -webkit-animation: livePulse 2s ease-in-out infinite;
    animation: livePulse 2s ease-in-out infinite;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@-webkit-keyframes livePulse {
    0%, 100% {
        opacity: 1;
        -webkit-box-shadow: 0 0 0 0 rgba(16, 185, 129, .4);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .4);
    }
    50% {
        opacity: .7;
        -webkit-box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        -webkit-box-shadow: 0 0 0 0 rgba(16, 185, 129, .4);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .4);
    }
    50% {
        opacity: .7;
        -webkit-box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

.wg-live-frame-wrap {
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #f1f5f9;
}

.wg-live-frame {
    width: 100%;
    height: 320px;
    border: none;
    display: block;
}

/* ── Guides text link at bottom ── */
.wg-guides-link-wrap {
    margin-top: 16px;
    text-align: center;
}

.wg-guides-text-link {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
}

.wg-guides-text-link:hover {
    color: rgba(255, 255, 255, .6);
}

.wg-guides-inline {
    margin-top: 14px;
    text-align: left;
}

.wg-guides-inline .wg-guide-item {
    padding: 8px 0;
    font-size: .76rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .4);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.wg-guides-inline .wg-guide-item:last-child {
    border-bottom: none;
}

.wg-guides-inline .wg-guide-item strong {
    color: rgba(255, 255, 255, .65);
}

/* ── Responsive ── */
@media (max-width: 520px) {
    .wg-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .wg-checks {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wg-color-custom {
        margin-left: 0;
    }

    .wg-live-frame {
        height: 240px;
    }
}

.ai-explainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px;
}

.ai-explainer-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    padding: 18px 16px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: var(--r-lg);
}

.ai-explainer-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 1.4rem;
    position: relative;
}

.ai-explainer-icon.s1 {
    background: -o-linear-gradient(315deg, rgba(37, 99, 235, .12), rgba(37, 99, 235, .04));
    background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(37, 99, 235, .04));
    border: 1px solid rgba(37, 99, 235, .15);
}

.ai-explainer-icon.s2 {
    background: -o-linear-gradient(315deg, rgba(139, 92, 246, .12), rgba(139, 92, 246, .04));
    background: linear-gradient(135deg, rgba(139, 92, 246, .12), rgba(139, 92, 246, .04));
    border: 1px solid rgba(139, 92, 246, .15);
}

.ai-explainer-icon.s3 {
    background: -o-linear-gradient(315deg, rgba(16, 185, 129, .12), rgba(16, 185, 129, .04));
    background: linear-gradient(135deg, rgba(16, 185, 129, .12), rgba(16, 185, 129, .04));
    border: 1px solid rgba(16, 185, 129, .15);
}

.ai-explainer-icon .n {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: .55rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ai-explainer-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.ai-explainer-text .t {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.ai-explainer-text .d {
    font-size: .76rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.ai-connector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 6px 0;
}

.ai-connector svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, .12);
}

.ai-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.ai-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, .3);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--r-lg);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.ai-card:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .1);
}

.ai-card-ico {
    width: 42px;
    height: 42px;
    border-radius: var(--r-md);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.15rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.ai-card-ico.blue {
    background: rgba(37, 99, 235, .08);
}

.ai-card-ico.orange {
    background: rgba(245, 158, 11, .08);
}

.ai-card-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.ai-card-info .aci-t {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: white;
}

.ai-card-info .aci-d {
    font-size: .74rem;
    color: var(--text-muted);
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ai-card-action {
    padding: 7px 16px;
    background: var(--accent);
    border: none;
    border-radius: var(--r-full);
    color: #fff;
    font-family: inherit;
    font-size: .76rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.ai-card-action:hover {
    background: #22a7e6;
}

.ai-card-action.running {
    background: rgba(37, 99, 235, .1);
    color: var(--accent-light);
    pointer-events: none;
}

.ai-card-action.done {
    background: rgba(16, 185, 129, .1);
    color: var(--green);
    pointer-events: none;
}

.ai-skip-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(245, 158, 11, .04);
    border: 1px solid rgba(245, 158, 11, .1);
    border-radius: var(--r-lg);
    margin-top: 18px;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    text-decoration: none;
}

.ai-skip-banner:hover {
    background: rgba(245, 158, 11, .08);
    border-color: rgba(245, 158, 11, .2);
}

.ai-skip-banner .asb-t {
    font-size: .82rem;
    font-weight: 700;
    color: rgba(245, 158, 11, .85);
    margin-bottom: 2px;
}

.ai-skip-banner .asb-d {
    font-size: .72rem;
    color: rgba(255, 255, 255, .3);
    line-height: 1.4;
}

.success-screen {
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(16, 185, 129, .08);
    border: 2px solid rgba(16, 185, 129, .18);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    -webkit-animation: successPop .5s cubic-bezier(.68, -.55, .265, 1.55);
    animation: successPop .5s cubic-bezier(.68, -.55, .265, 1.55);
}

@-webkit-keyframes successPop {
    from {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes successPop {
    from {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.btn-white {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-full);
    color: var(--text-muted);
    font-family: inherit;
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    margin-top: 10px;
    text-decoration: none;
}

.btn-white:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.ob-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 16px;
}

.btn-back {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: none;
    border: 1.5px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-full);
    color: var(--text-muted);
    font-family: inherit;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    text-decoration: none;
}

.btn-back:hover {
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}

.btn-skip {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .2);
    font-family: inherit;
    font-size: .78rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    text-decoration: none;
}

.btn-skip:hover {
    color: var(--text-muted);
}

.btn-next {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 11px 24px;
    background: var(--accent);
    border: none;
    border-radius: var(--r-full);
    color: #fff;
    font-family: inherit;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 12px rgba(37, 99, 235, .25);
    box-shadow: 0 2px 12px rgba(37, 99, 235, .25);
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btn-next:hover {
    background: #22a7e6;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.confetti-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 200;
}

.confetti {
    position: absolute;
    border-radius: 2px;
    -webkit-animation: confettiFall 3s ease-out forwards;
    animation: confettiFall 3s ease-out forwards;
}

@-webkit-keyframes confettiFall {
    0% {
        -webkit-transform: translateY(-100px) rotate(0deg);
        transform: translateY(-100px) rotate(0deg);
        opacity: 1
    }
    100% {
        -webkit-transform: translateY(100vh) rotate(720deg);
        transform: translateY(100vh) rotate(720deg);
        opacity: 0
    }
}

@keyframes confettiFall {
    0% {
        -webkit-transform: translateY(-100px) rotate(0deg);
        transform: translateY(-100px) rotate(0deg);
        opacity: 1
    }
    100% {
        -webkit-transform: translateY(100vh) rotate(720deg);
        transform: translateY(100vh) rotate(720deg);
        opacity: 0
    }
}

.ob-mobile-stepper {
    display: none;
}

@media (max-width: 900px) {
    .ob-sidebar {
        display: none;
    }

    .ob-mobile-stepper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(10, 14, 26, .92);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, .6);
        padding: 12px 20px;
        gap: 6px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mob-step {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: 3px;
        border-radius: 2px;
        background: rgba(255, 255, 255, .6);
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
        position: relative;
    }

    .mob-step.done {
        background: var(--green);
    }

    .mob-step.active {
        background: var(--accent);
        -webkit-box-shadow: 0 0 8px rgba(37, 99, 235, .3);
        box-shadow: 0 0 8px rgba(37, 99, 235, .3);
    }

    .mob-step-label {
        position: absolute;
        top: 10px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: .6rem;
        font-weight: 700;
        white-space: nowrap;
        color: rgba(255, 255, 255, .2);
    }

    .mob-step.active .mob-step-label {
        color: var(--accent-light);
    }

    .mob-step.done .mob-step-label {
        color: rgba(16, 185, 129, .5);
    }

    .ob-main {
        padding: 70px 16px 32px;
    }

    .ob-card {
        padding: 24px 18px;
    }

    .ob-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 400px) {
    .mob-step-label {
        display: none;
    }

    .ob-main {
        padding: 56px 14px 24px;
    }

    .ob-card {
        padding: 20px 16px;
    }

    .otp-input {
        width: 44px;
        height: 52px;
        font-size: 1.2rem;
    }
}

/* ═══════════════════════════════════════
   Onboarding - Extra Components
   ═══════════════════════════════════════ */

.ob-error-banner {
    background: rgba(239, 68, 68, .12);
    border: 1px solid rgba(239, 68, 68, .25);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: .85rem;
    margin-bottom: 16px;
    text-align: center;
}

.ob-success-banner {
    background: rgba(16, 185, 129, .12);
    border: 1px solid rgba(16, 185, 129, .25);
    color: #6ee7b7;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: .85rem;
    margin-bottom: 16px;
    text-align: center;
}

.btn-accent[disabled] {
    opacity: .5;
    cursor: not-allowed;
}

.ob-card .btn,
.ob-card .btn-accent,
.ob-card .btn-next,
.ob-container > .btn,
.ob-container > .btn-accent,
.ob-container > .btn-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.success-screen {
    text-align: center;
}

.success-screen .btn,
.success-screen .btn-accent,
.success-screen .btn-white {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.email-verify-wrap {
    text-align: center;
}

.resend-row {
    text-align: center;
}

/* Password strength meter */
.pw-meter {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.pw-meter.visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.pw-meter-bar {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, .1);
    border-radius: 2px;
    overflow: hidden;
}

.pw-meter-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    -webkit-transition: width .3s, background .3s;
    -o-transition: width .3s, background .3s;
    transition: width .3s, background .3s;
}

.pw-meter-label {
    font-size: .7rem;
    font-weight: 600;
    white-space: nowrap;
    min-width: 60px;
    text-align: right;
}

.pw-meter.str-1 .pw-meter-fill {
    width: 20%;
    background: #ef4444;
}

.pw-meter.str-1 .pw-meter-label {
    color: #fca5a5;
}

.pw-meter.str-2 .pw-meter-fill {
    width: 40%;
    background: #f97316;
}

.pw-meter.str-2 .pw-meter-label {
    color: #fdba74;
}

.pw-meter.str-3 .pw-meter-fill {
    width: 60%;
    background: #eab308;
}

.pw-meter.str-3 .pw-meter-label {
    color: #fde047;
}

.pw-meter.str-4 .pw-meter-fill {
    width: 80%;
    background: #22c55e;
}

.pw-meter.str-4 .pw-meter-label {
    color: #86efac;
}

.pw-meter.str-5 .pw-meter-fill {
    width: 100%;
    background: #10b981;
}

.pw-meter.str-5 .pw-meter-label {
    color: #6ee7b7;
}

.pw-reqs {
    display: none;
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}

.pw-reqs.visible {
    display: block;
}

.pw-reqs li {
    padding: 2px 0;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
}

.pw-reqs li.pass {
    color: #6ee7b7;
}

.pw-reqs li.pass .pw-req-icon {
    color: #10b981;
}

.pw-req-icon {
    display: inline-block;
    width: 14px;
    font-size: .65rem;
}

/* Detailed feature checkboxes */
.wg-checks--detailed .wg-check-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 2px;
    -webkit-transition: background .15s;
    -o-transition: background .15s;
    transition: background .15s;
}

.wg-checks--detailed .wg-check-label:hover {
    background: rgba(255, 255, 255, .04);
}

.wg-checks--detailed .wg-check {
    margin-top: 3px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wg-check-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.wg-check-name {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    line-height: 1.3;
}

.wg-check-desc {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.45;
}

/* ── AI Mode Selector ── */
.ai-mode-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.ai-mode-option {
    position: relative;
    cursor: pointer;
}

.ai-mode-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ai-mode-inner {
    position: relative;
    background: rgba(255, 255, 255, .3);
    border: 1.5px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 20px 22px;
    -webkit-transition: all .3s cubic-bezier(.16, 1, .3, 1);
    -o-transition: all .3s cubic-bezier(.16, 1, .3, 1);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.ai-mode-option:hover .ai-mode-inner {
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
}

.ai-mode-option:first-child input:checked ~ .ai-mode-inner {
    border-color: rgba(37, 99, 235, .5);
    background: rgba(37, 99, 235, .06);
    -webkit-box-shadow: 0 0 20px rgba(37, 99, 235, .08), 0 0 60px rgba(37, 99, 235, .04), inset 0 1px 0 rgba(37, 99, 235, .1);
    box-shadow: 0 0 20px rgba(37, 99, 235, .08), 0 0 60px rgba(37, 99, 235, .04), inset 0 1px 0 rgba(37, 99, 235, .1);
}

.ai-mode-option:nth-child(2) input:checked ~ .ai-mode-inner {
    border-color: rgba(139, 92, 246, .5);
    background: rgba(139, 92, 246, .06);
    -webkit-box-shadow: 0 0 20px rgba(139, 92, 246, .08), 0 0 60px rgba(139, 92, 246, .04), inset 0 1px 0 rgba(139, 92, 246, .1);
    box-shadow: 0 0 20px rgba(139, 92, 246, .08), 0 0 60px rgba(139, 92, 246, .04), inset 0 1px 0 rgba(139, 92, 246, .1);
}

.ai-mode-option:nth-child(3) input:checked ~ .ai-mode-inner {
    border-color: rgba(148, 163, 184, .4);
    background: rgba(148, 163, 184, .06);
    -webkit-box-shadow: 0 0 20px rgba(148, 163, 184, .06), inset 0 1px 0 rgba(148, 163, 184, .08);
    box-shadow: 0 0 20px rgba(148, 163, 184, .06), inset 0 1px 0 rgba(148, 163, 184, .08);
}

.ai-mode-badge {
    position: absolute;
    top: -9px;
    right: 18px;
    padding: 2px 12px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #22a7e6;
    background: -o-linear-gradient(315deg, rgba(37, 99, 235, .15), rgba(37, 99, 235, .1));
    background: linear-gradient(135deg, rgba(37, 99, 235, .15), rgba(37, 99, 235, .1));
    border: 1px solid rgba(37, 99, 235, .25);
    border-radius: 20px;
    -webkit-animation: ai-badge-pulse 3s ease-in-out infinite;
    animation: ai-badge-pulse 3s ease-in-out infinite;
}

@-webkit-keyframes ai-badge-pulse {
    0%, 100% {
        -webkit-box-shadow: 0 0 0 0 rgba(37, 99, 235, .3);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, .3);
    }
    50% {
        -webkit-box-shadow: 0 0 12px 3px rgba(37, 99, 235, .15);
        box-shadow: 0 0 12px 3px rgba(37, 99, 235, .15);
    }
}

@keyframes ai-badge-pulse {
    0%, 100% {
        -webkit-box-shadow: 0 0 0 0 rgba(37, 99, 235, .3);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, .3);
    }
    50% {
        -webkit-box-shadow: 0 0 12px 3px rgba(37, 99, 235, .15);
        box-shadow: 0 0 12px 3px rgba(37, 99, 235, .15);
    }
}

.ai-mode-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.ai-mode-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: -webkit-transform .3s cubic-bezier(.16, 1, .3, 1);
    transition: -webkit-transform .3s cubic-bezier(.16, 1, .3, 1);
    -o-transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), -webkit-transform .3s cubic-bezier(.16, 1, .3, 1);
}

.ai-mode-option:hover .ai-mode-icon {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}

.ai-mode-icon.blue {
    background: -o-linear-gradient(315deg, rgba(37, 99, 235, .2), rgba(37, 99, 235, .08));
    background: linear-gradient(135deg, rgba(37, 99, 235, .2), rgba(37, 99, 235, .08));
    color: #22a7e6;
    -webkit-box-shadow: 0 0 16px rgba(37, 99, 235, .1);
    box-shadow: 0 0 16px rgba(37, 99, 235, .1);
}

.ai-mode-icon.purple {
    background: -o-linear-gradient(315deg, rgba(139, 92, 246, .2), rgba(109, 40, 217, .08));
    background: linear-gradient(135deg, rgba(139, 92, 246, .2), rgba(109, 40, 217, .08));
    color: #a78bfa;
    -webkit-box-shadow: 0 0 16px rgba(139, 92, 246, .1);
    box-shadow: 0 0 16px rgba(139, 92, 246, .1);
}

.ai-mode-icon.gray {
    background: -o-linear-gradient(315deg, rgba(148, 163, 184, .15), rgba(100, 116, 139, .08));
    background: linear-gradient(135deg, rgba(148, 163, 184, .15), rgba(100, 116, 139, .08));
    color: #94a3b8;
    -webkit-box-shadow: 0 0 16px rgba(148, 163, 184, .06);
    box-shadow: 0 0 16px rgba(148, 163, 184, .06);
}

.ai-mode-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.ai-mode-name {
    color: white;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.ai-mode-desc {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.4;
}

.ai-mode-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: all .3s cubic-bezier(.16, 1, .3, 1);
    -o-transition: all .3s cubic-bezier(.16, 1, .3, 1);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.ai-mode-radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .3s cubic-bezier(.34, 1.56, .64, 1);
    transition: -webkit-transform .3s cubic-bezier(.34, 1.56, .64, 1);
    -o-transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), -webkit-transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.ai-mode-option:first-child input:checked ~ .ai-mode-inner .ai-mode-radio {
    border-color: #22a7e6;
    -webkit-box-shadow: 0 0 8px rgba(37, 99, 235, .3);
    box-shadow: 0 0 8px rgba(37, 99, 235, .3);
}

.ai-mode-option:first-child input:checked ~ .ai-mode-inner .ai-mode-radio-dot {
    background: #22a7e6;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 6px rgba(37, 99, 235, .5);
    box-shadow: 0 0 6px rgba(37, 99, 235, .5);
}

.ai-mode-option:nth-child(2) input:checked ~ .ai-mode-inner .ai-mode-radio {
    border-color: #8b5cf6;
    -webkit-box-shadow: 0 0 8px rgba(139, 92, 246, .3);
    box-shadow: 0 0 8px rgba(139, 92, 246, .3);
}

.ai-mode-option:nth-child(2) input:checked ~ .ai-mode-inner .ai-mode-radio-dot {
    background: #8b5cf6;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 6px rgba(139, 92, 246, .5);
    box-shadow: 0 0 6px rgba(139, 92, 246, .5);
}

.ai-mode-option:nth-child(3) input:checked ~ .ai-mode-inner .ai-mode-radio {
    border-color: #94a3b8;
    -webkit-box-shadow: 0 0 8px rgba(148, 163, 184, .2);
    box-shadow: 0 0 8px rgba(148, 163, 184, .2);
}

.ai-mode-option:nth-child(3) input:checked ~ .ai-mode-inner .ai-mode-radio-dot {
    background: #94a3b8;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 6px rgba(148, 163, 184, .3);
    box-shadow: 0 0 6px rgba(148, 163, 184, .3);
}

/* ── AI Training Section ── */
.ai-training-section {
    -webkit-transition: opacity .3s, max-height .4s ease;
    -o-transition: opacity .3s, max-height .4s ease;
    transition: opacity .3s, max-height .4s ease;
}

.ai-training-section.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

.ai-train-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.ai-train-header-icon {
    font-size: 1.1rem;
}

.ai-train-header-text {
    font-size: .88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
}

.ai-train-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .3);
    border: 1px solid rgba(255, 255, 255, .6);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    margin-bottom: 8px;
}

.ai-train-card:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .1);
}

.ai-train-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.ai-train-card-icon.blue {
    background: -o-linear-gradient(315deg, rgba(37, 99, 235, .18), rgba(37, 99, 235, .06));
    background: linear-gradient(135deg, rgba(37, 99, 235, .18), rgba(37, 99, 235, .06));
    color: #22a7e6;
    -webkit-box-shadow: 0 0 12px rgba(37, 99, 235, .08);
    box-shadow: 0 0 12px rgba(37, 99, 235, .08);
}

.ai-train-card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.ai-train-card-title {
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 6px;
}

.ai-train-url-input {
    width: 100%;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
    outline: none;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ai-train-url-input:focus {
    border-color: rgba(37, 99, 235, .4);
    background: rgba(255, 255, 255, .08);
    -webkit-box-shadow: 0 0 12px rgba(37, 99, 235, .06);
    box-shadow: 0 0 12px rgba(37, 99, 235, .06);
}

.ai-train-action-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: none;
    background: -o-linear-gradient(315deg, #22a7e6, #22a7e6);
    background: linear-gradient(135deg, #22a7e6, #22a7e6);
    color: white;
    font-size: .8rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-shadow: 0 2px 12px rgba(37, 99, 235, .2);
    box-shadow: 0 2px 12px rgba(37, 99, 235, .2);
}

.ai-train-action-btn:hover {
    background: -o-linear-gradient(315deg, #7dd3fc, #22a7e6);
    background: linear-gradient(135deg, #7dd3fc, #22a7e6);
    -webkit-box-shadow: 0 4px 20px rgba(37, 99, 235, .3);
    box-shadow: 0 4px 20px rgba(37, 99, 235, .3);
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.ai-train-action-btn.running {
    background: rgba(37, 99, 235, .12);
    color: #7dd3fc;
    -webkit-box-shadow: none;
    box-shadow: none;
    pointer-events: none;
}

.ai-train-action-btn.done {
    background: rgba(16, 185, 129, .12);
    color: #6ee7b7;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Status */
.ai-train-status {
    padding: 0;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.ai-train-status.visible {
    padding: 10px 14px;
    max-height: 80px;
    margin-bottom: 8px;
}

.ai-train-status.success {
    background: rgba(16, 185, 129, .08);
    border-radius: 10px;
    color: #6ee7b7;
    font-size: .78rem;
}

.ai-train-status.error {
    background: rgba(239, 68, 68, .08);
    border-radius: 10px;
    color: #fca5a5;
    font-size: .78rem;
}

.ai-train-status.loading {
    background: rgba(37, 99, 235, .06);
    border-radius: 10px;
    color: #7dd3fc;
    font-size: .78rem;
}

/* Dropzone */
.ai-train-dropzone {
    border: 2px dashed rgba(255, 255, 255, .1);
    border-radius: 16px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    margin-bottom: 8px;
}

.ai-train-dropzone:hover,
.ai-train-dropzone.dragover {
    border-color: rgba(37, 99, 235, .4);
    background: rgba(37, 99, 235, .03);
    -webkit-box-shadow: 0 0 24px rgba(37, 99, 235, .06);
    box-shadow: 0 0 24px rgba(37, 99, 235, .06);
}

.ai-train-dropzone.dragover {
    border-style: solid;
    background: rgba(37, 99, 235, .06);
}

.ai-train-dropzone-inner {
    padding: 28px 20px;
    text-align: center;
}

.ai-train-dropzone-icon {
    color: rgba(255, 255, 255, .25);
    margin-bottom: 10px;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
}

.ai-train-dropzone:hover .ai-train-dropzone-icon {
    color: rgba(37, 99, 235, .5);
}

.ai-train-dropzone-title {
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 4px;
}

.ai-train-dropzone-sub {
    font-size: .76rem;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 14px;
}

.ai-train-dropzone-formats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.ai-train-format-pill {
    padding: 3px 10px;
    font-size: .65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    letter-spacing: .03em;
}

.ai-train-dropzone-limit {
    font-size: .68rem;
    color: rgba(255, 255, 255, .2);
}

/* Files */
.ai-train-files {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
}

.ai-train-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .3);
    border-radius: 10px;
    font-size: .78rem;
    -webkit-animation: ai-file-in .3s ease;
    animation: ai-file-in .3s ease;
}

@-webkit-keyframes ai-file-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes ai-file-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.ai-train-file-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: rgba(37, 99, 235, .5);
}

.ai-train-file-name {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: rgba(255, 255, 255, .7);
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ai-train-file-size {
    color: rgba(255, 255, 255, .3);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: .72rem;
}

.ai-train-file-del {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .2);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ai-train-file-del:hover {
    background: rgba(239, 68, 68, .1);
    color: #fca5a5;
}

/* ── Warning Banner ── */
.ai-warn-banner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: -o-linear-gradient(315deg, rgba(245, 158, 11, .06), rgba(251, 191, 36, .03));
    background: linear-gradient(135deg, rgba(245, 158, 11, .06), rgba(251, 191, 36, .03));
    border: 1px solid rgba(245, 158, 11, .12);
    border-radius: 14px;
    margin-top: 18px;
    overflow: hidden;
    -webkit-transition: border-color .3s;
    -o-transition: border-color .3s;
    transition: border-color .3s;
}

.ai-warn-banner:hover {
    border-color: rgba(245, 158, 11, .22);
}

.ai-warn-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#f59e0b), color-stop(#d97706), to(#b45309));
    background: -o-linear-gradient(top, #f59e0b, #d97706, #b45309);
    background: linear-gradient(180deg, #f59e0b, #d97706, #b45309);
    border-radius: 3px 0 0 3px;
}

.ai-warn-icon {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-left: 4px;
}

.ai-warn-icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: -o-radial-gradient(circle, rgba(245, 158, 11, .18), transparent 70%);
    background: radial-gradient(circle, rgba(245, 158, 11, .18), transparent 70%);
    -webkit-animation: ai-warn-pulse 3s ease-in-out infinite;
    animation: ai-warn-pulse 3s ease-in-out infinite;
}

@-webkit-keyframes ai-warn-pulse {
    0%, 100% {
        opacity: .6;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
}

@keyframes ai-warn-pulse {
    0%, 100% {
        opacity: .6;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
}

.ai-warn-icon-emoji {
    position: relative;
    font-size: 1.25rem;
    z-index: 1;
    -webkit-filter: drop-shadow(0 0 6px rgba(245, 158, 11, .4));
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, .4));
}

.ai-warn-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.ai-warn-title {
    font-size: .85rem;
    font-weight: 700;
    color: rgba(251, 191, 36, .95);
    margin-bottom: 5px;
    line-height: 1.35;
}

.ai-warn-desc {
    font-size: .76rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.55;
    margin-bottom: 8px;
}

.ai-warn-cta {
    display: inline-block;
    font-size: .76rem;
    font-weight: 600;
    color: #f59e0b;
    text-decoration: none;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
}

.ai-warn-cta:hover {
    color: #fbbf24;
}

/* ── Skip Button ── */
.ai-skip-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 20px;
    margin-top: 14px;
    background: rgba(255, 255, 255, .2);
    border: 1px dashed rgba(255, 255, 255, .1);
    border-radius: 14px;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ai-skip-btn:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .2);
}

.ai-skip-btn:hover .ai-skip-btn-arrow {
    color: rgba(255, 255, 255, .5);
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
}

.ai-skip-btn-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.ai-skip-btn-title {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 3px;
}

.ai-skip-btn-sub {
    font-size: .72rem;
    color: rgba(255, 255, 255, .25);
    line-height: 1.45;
}

.ai-skip-btn-arrow {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: .9rem;
    color: rgba(255, 255, 255, .15);
    -webkit-transition: color .3s, -webkit-transform .3s;
    transition: color .3s, -webkit-transform .3s;
    -o-transition: color .3s, transform .3s;
    transition: color .3s, transform .3s;
    transition: color .3s, transform .3s, -webkit-transform .3s;
}

@media (max-width: 480px) {
    .ai-mode-inner {
        padding: 16px;
    }

    .ai-mode-icon {
        width: 42px;
        height: 42px;
    }

    .ai-mode-icon svg {
        width: 18px;
        height: 18px;
    }

    .ai-mode-name {
        font-size: .88rem;
    }

    .ai-train-dropzone-inner {
        padding: 20px 14px;
    }

    .ai-train-card {
        padding: 14px;
    }
}

@-webkit-keyframes ai-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes ai-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.ai-spin {
    -webkit-animation: ai-spin .8s linear infinite;
    animation: ai-spin .8s linear infinite;
}

.login-shell {
    position: relative;
    min-height: 80vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0e1a;
    padding: 80px 20px 60px;
}

.login-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: -o-radial-gradient(70% 20%, ellipse 80% 60%, rgba(37, 99, 235, .06), transparent 60%),
    -o-radial-gradient(20% 80%, ellipse 60% 50%, rgba(139, 92, 246, .04), transparent 50%);
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(37, 99, 235, .06), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(139, 92, 246, .04), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.login-shell-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.login-shell-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 9, 15, .65);
    z-index: 0;
    pointer-events: none;
}

/* ── Container ── */
.login-center {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    -webkit-animation: loginIn .5s cubic-bezier(.16, 1, .3, 1);
    animation: loginIn .5s cubic-bezier(.16, 1, .3, 1);
}

@-webkit-keyframes loginIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(24px);
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes loginIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(24px);
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* ── Header text ── */
.login-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 14px;
}

.login-title {
    color: #fff;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.2;
    margin: 0 0 8px;
}

.login-title em {
    font-style: normal;
    background: -o-linear-gradient(315deg, #7dd3fc, #22a7e6);
    background: linear-gradient(135deg, #7dd3fc, #22a7e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    font-size: .95rem;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0;
}

/* ── Card ── */
.login-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 36px 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, .25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .25);
}

/* ── Error ── */
.login-error {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .2);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: .82rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.login-error i {
    font-size: 16px;
    color: #ef4444;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* ── Form fields ── */
.login-field {
    margin-bottom: 16px;
}

.login-field label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.login-field label i {
    font-size: 14px;
    opacity: .6;
}

.login-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    font-family: inherit;
    font-size: .88rem;
    color: #fff;
    background: rgba(255, 255, 255, .5);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.login-field input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .25);
}

.login-field input::-moz-placeholder {
    color: rgba(255, 255, 255, .25);
}

.login-field input:-ms-input-placeholder {
    color: rgba(255, 255, 255, .25);
}

.login-field input::-ms-input-placeholder {
    color: rgba(255, 255, 255, .25);
}

.login-field input::placeholder {
    color: rgba(255, 255, 255, .25);
}

.login-field input:focus {
    border-color: #22a7e6;
    background: rgba(37, 99, 235, .04);
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

/* ── Submit button ── */
.login-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-weight: 700;
    font-size: .92rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: -o-linear-gradient(315deg, #22a7e6, #22a7e6);
    background: linear-gradient(135deg, #22a7e6, #22a7e6);
    color: #fff;
    -webkit-box-shadow: 0 4px 20px rgba(37, 99, 235, .3);
    box-shadow: 0 4px 20px rgba(37, 99, 235, .3);
    -webkit-transition: all .3s cubic-bezier(.25, .8, .25, 1);
    -o-transition: all .3s cubic-bezier(.25, .8, .25, 1);
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    margin-top: 8px;
}

.login-btn:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 32px rgba(37, 99, 235, .4);
    box-shadow: 0 8px 32px rgba(37, 99, 235, .4);
}

.login-btn i {
    font-size: 18px;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
}

.login-btn:hover i {
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
}

/* ── Help text ── */
.login-help {
    text-align: center;
    font-size: .82rem;
    color: #94a3b8;
    margin: 24px 0 0;
}

.login-help a {
    color: #22a7e6;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
}

.login-help a:hover {
    color: #7dd3fc;
}

/* ── Trust badges ── */
.login-trust {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.login-trust-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    color: rgba(255, 255, 255, .35);
    font-weight: 500;
}

.login-trust-item i {
    color: #10b981;
    font-size: .68rem;
    font-style: normal;
}

/* ── Google button ── */
.login-google-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: .88rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.login-google-btn:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.login-google-btn svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* ── Divider ── */
.login-divider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
    color: rgba(255, 255, 255, .25);
    font-size: .78rem;
    font-weight: 500;
}

.login-divider::before,
.login-divider::after {
    content: '';
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .08);
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .login-shell {
        padding: 60px 16px 40px;
    }

    .login-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .login-title {
        font-size: 1.35rem;
    }
}

/* ================================================================
   DASHBOARD v2 - SPA Sidebar Layout + Glassmorphism
   ================================================================ */

/* ── Body ── */
.wcd-body {
    margin: 0;
    padding: 0;
    background: #060910;
    color: var(--text-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* ── Dashboard Shell ── */
.wcd-dashboard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
}

/* ── Sidebar ── */
.wcd-sidebar {
    width: 280px;
    min-width: 280px;
    background: rgba(10, 14, 24, .85);
    backdrop-filter: blur(30px) saturate(1.5);
    -webkit-backdrop-filter: blur(30px) saturate(1.5);
    border-right: 1px solid rgba(255, 255, 255, .6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    -webkit-transition: -webkit-transform .3s cubic-bezier(.4, 0, .2, 1);
    transition: -webkit-transform .3s cubic-bezier(.4, 0, .2, 1);
    -o-transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), -webkit-transform .3s cubic-bezier(.4, 0, .2, 1);
}

.wcd-sidebar-header {
    padding: 24px 20px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.wcd-sidebar-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.wcd-sidebar-logo img {
    height: 32px !important;
    width: auto
}

.wcd-sidebar-logo svg {
    color: #3b82f6;
}

.wcd-sidebar-close {
    display: none;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
}

.wcd-sidebar-nav {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 8px 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}

.wcd-nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: .875rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    text-align: left;
    width: 100%;
    font-family: inherit;
}

.wcd-nav-item i {
    font-size: 1.15rem;
    width: 22px;
    text-align: center;
}

.wcd-nav-item:hover {
    background: rgba(255, 255, 255, .05);
    color: var(--text-dark);
}

.wcd-nav-item.active {
    background: rgba(59, 130, 246, .12);
    color: #60a5fa;
}

.wcd-nav-item.active i {
    color: #3b82f6;
}

/* ── Sidebar Footer ── */
.wcd-sidebar-footer {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, .6);
}

.wcd-sidebar-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.wcd-sidebar-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: -o-linear-gradient(315deg, #3b82f6, #8b5cf6);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-sidebar-user-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
}

.wcd-sidebar-user-name {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.wcd-sidebar-user-email {
    font-size: .72rem;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.wcd-logout-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    color: #94a3b8;
    font-size: .8rem;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    width: 100%;
}

.wcd-logout-btn:hover {
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
}

/* ── Mobile Header ── */
.wcd-mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    height: 56px;
    background: rgba(10, 14, 24, .9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
}

.wcd-hamburger {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 4px;
}

.wcd-mobile-title {
    font-weight: 600;
    font-size: .95rem;
    color: var(--text-dark);
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.wcd-mobile-logo {
    display: none;
    margin-left: auto
}

.wcd-mobile-logo img {
    height: 28px;
    width: 28px
}

.wcd-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 99;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.wcd-sidebar-overlay.visible {
    display: block;
    opacity: 1;
}

/* ── Content Area ── */
.wcd-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 280px;
    padding: 40px 48px;
    max-width: 1200px;
    min-height: 100vh;
}

/* ── Sections (show/hide) ── */
.wcd-section {
    display: none;
}

.wcd-section.active {
    display: block;
    -webkit-animation: wcdFadeIn .25s ease;
    animation: wcdFadeIn .25s ease;
}

@-webkit-keyframes wcdFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes wcdFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* ── Section Headers ── */
.wcd-section-header {
    margin-bottom: 28px;
}

.wcd-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 6px;
}

.wcd-section-subtitle {
    font-size: .9rem;
    color: #475569;
    margin: 0;
}

/* ── Cards ── */
.wcd-card {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 14px;
    margin-bottom: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, .04), 0 4px 16px rgba(15, 23, 42, .03);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04), 0 4px 16px rgba(15, 23, 42, .03);
}

.wcd-card-highlight {
    border-color: rgba(59, 130, 246, .25);
    background: -o-linear-gradient(315deg, rgba(59, 130, 246, .08), rgba(37, 99, 235, .05));
    background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(37, 99, 235, .05));
    -webkit-box-shadow: 0 2px 8px rgba(59, 130, 246, .08);
    box-shadow: 0 2px 8px rgba(59, 130, 246, .08);
}

.wcd-card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.wcd-card-header h3 {
    margin: 0;
    font-size: .95rem;
    font-weight: 600;
    color: #0F172A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.wcd-card-header h3 i {
    color: #3b82f6;
}

.wcd-card-body {
    padding: 20px;
}

/* ── Badges ── */
.wcd-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.badge-green {
    background: rgba(16, 185, 129, .12);
    color: #059669;
}

.badge-blue {
    background: rgba(59, 130, 246, .12);
    color: #22a7e6;
}

.badge-amber {
    background: rgba(245, 158, 11, .12);
    color: #d97706;
}

.badge-gray {
    background: rgba(100, 116, 139, .10);
    color: #475569;
}

.badge-lg {
    padding: 5px 14px;
    font-size: .78rem;
}

/* ── Stats Grid ── */
.wcd-stats-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.wcd-stats-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.wcd-stat-card {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 14px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 14px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}

.wcd-stat-card:hover {
    border-color: rgba(15, 23, 42, .10);
    -webkit-box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
    box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.wcd-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.15rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-stat-icon.icon-blue {
    background: rgba(37, 99, 235, .12);
    color: #22a7e6;
}

.wcd-stat-icon.icon-purple {
    background: rgba(14, 165, 233, .12);
    color: #0EA5E9;
}

.wcd-stat-icon.icon-green {
    background: rgba(16, 185, 129, .12);
    color: #10B981;
}

.wcd-stat-icon.icon-amber {
    background: rgba(245, 158, 11, .12);
    color: #D97706;
}

.wcd-stat-content {
    min-width: 0;
}

.wcd-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
}

.wcd-stat-label {
    font-size: .82rem;
    color: #475569;
    margin-top: 2px;
}

.wcd-stat-sub {
    font-size: .72rem;
    color: #475569;
    margin-top: 1px;
}

/* ── Inbox CTA ── */
.wcd-inbox-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: -o-linear-gradient(315deg, rgba(59, 130, 246, .12), rgba(139, 92, 246, .08));
    background: linear-gradient(135deg, rgba(59, 130, 246, .12), rgba(139, 92, 246, .08));
    border: 1px solid rgba(59, 130, 246, .2);
    border-radius: 14px;
    margin-bottom: 24px;
    text-decoration: none;
    color: var(--text-dark);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.wcd-inbox-cta:hover {
    border-color: rgba(59, 130, 246, .4);
    background: -o-linear-gradient(315deg, rgba(59, 130, 246, .18), rgba(139, 92, 246, .12));
    background: linear-gradient(135deg, rgba(59, 130, 246, .18), rgba(139, 92, 246, .12));
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.wcd-inbox-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: -o-linear-gradient(315deg, #3b82f6, #22a7e6);
    background: linear-gradient(135deg, #3b82f6, #22a7e6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #fff;
}

.wcd-inbox-cta-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.wcd-inbox-cta-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.wcd-inbox-cta-sub {
    display: block;
    font-size: .82rem;
    color: var(--text-dark-sub);
    margin-top: 2px;
}

.wcd-inbox-cta-arrow {
    color: #475569;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* ── Alerts ── */
.wcd-alert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.wcd-alert-warning {
    background: rgba(245, 158, 11, .08);
    border: 1px solid rgba(245, 158, 11, .2);
}

.wcd-alert-icon {
    font-size: 1.3rem;
    color: #d97706;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-alert-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.wcd-alert-body strong {
    color: #92400e;
    display: block;
    font-size: .9rem;
}

.wcd-alert-body p {
    margin: 4px 0 0;
    font-size: .82rem;
    color: #475569;
}

.wcd-alert-action {
    background: rgba(245, 158, 11, .15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, .25);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

.wcd-alert-action:hover {
    background: rgba(245, 158, 11, .25);
}

/* ── Info Row ── */
.wcd-info-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.wcd-info-card {
    background: rgba(255, 255, 255, .3);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 12px;
    padding: 16px 18px;
}

.wcd-info-card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: #475569;
    margin-bottom: 8px;
}

.wcd-info-card-sub {
    font-size: .72rem;
    color: #475569;
    margin-top: 6px;
}

.wcd-info-card-action {
    margin-left: auto;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #475569;
    border-radius: 6px;
    padding: 4px 6px;
    cursor: pointer;
    font-size: .85rem;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    line-height: 1;
}

.wcd-info-card-action:hover {
    color: #60a5fa;
    border-color: rgba(59, 130, 246, .3);
    background: rgba(59, 130, 246, .1);
}

.wcd-info-card-value {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

/* ── Buttons ── */
.wcd-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: .875rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    text-decoration: none;
    line-height: 1.4;
}

.wcd-btn-primary {
    background: -o-linear-gradient(315deg, #22a7e6, #1D4ED8);
    background: linear-gradient(135deg, #22a7e6, #1D4ED8);
    color: #fff !important;
    -webkit-box-shadow: 0 2px 12px rgba(37, 99, 235, .28);
    box-shadow: 0 2px 12px rgba(37, 99, 235, .28);
}

.wcd-btn-primary:hover {
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.wcd-btn-secondary {
    background: rgba(255, 255, 255, .7);
    color: #1e293b;
    border: 1px solid rgba(15, 23, 42, .10);
}

.wcd-btn-secondary:hover {
    background: rgba(255, 255, 255, .9);
    border-color: rgba(15, 23, 42, .15);
}

.wcd-btn-ghost {
    background: transparent;
    color: #475569;
    padding: 6px 12px;
}

.wcd-btn-ghost:hover {
    background: rgba(15, 23, 42, .04);
    color: #0F172A;
}

.wcd-btn-sm {
    padding: 6px 12px;
    font-size: .78rem;
}

.wcd-btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

/* ── Form Elements ── */
.wcd-form-group {
    margin-bottom: 20px;
}

.wcd-form-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.wcd-input,
.wcd-textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .85);
    border: 1.5px solid rgba(15, 23, 42, .10);
    border-radius: 10px;
    color: #0F172A;
    font-size: .875rem;
    font-family: inherit;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wcd-input:focus,
.wcd-textarea:focus {
    outline: none;
    border-color: #22a7e6;
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
    background: #fff;
}

.wcd-textarea {
    resize: vertical;
    min-height: 80px;
}

.wcd-form-hint {
    font-size: .75rem;
    color: #475569;
    margin-top: 6px;
}

/* ── Table ── */
.wcd-table-container {
    overflow-x: auto;
}

.wcd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}

.wcd-table th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    font-size: .75rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .03em;
    border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.wcd-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    color: #94a3b8;
}

.wcd-table tr:hover td {
    background: rgba(255, 255, 255, .2);
}

/* ── Chart ── */
.wcd-chart-container {
    position: relative;
    height: 300px;
}

/* ── Accordion ── */
.wcd-accordion-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: #475569;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    -webkit-transition: color .15s ease;
    -o-transition: color .15s ease;
    transition: color .15s ease;
}

.wcd-accordion-toggle:hover {
    color: #0F172A;
}

.wcd-accordion-toggle-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.wcd-accordion-arrow {
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    -o-transition: transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
}

.wcd-accordion-toggle.open .wcd-accordion-arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.wcd-accordion-body {
    border-top: 1px solid rgba(15, 23, 42, .06);
}

/* ── Toast Notification ── */
.wcd-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(16, 185, 129, .15);
    border: 1px solid rgba(16, 185, 129, .25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    color: #34d399;
    font-size: .875rem;
    font-weight: 600;
    z-index: 1000;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    -o-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.wcd-toast.show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.wcd-toast.toast-error {
    background: rgba(239, 68, 68, .15);
    border-color: rgba(239, 68, 68, .25);
    color: #f87171;
}

.wcd-toast-icon {
    font-size: 1.1rem;
}

/* ── Widget Split Layout ── */
.wcd-widget-split {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 380px;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.wcd-widget-settings {
    min-width: 0;
}

.wcd-widget-preview-wrap {
    min-width: 0;
}

.wcd-widget-preview-sticky {
    position: sticky;
    top: 40px;
}

/* ── Inbox Hero ── */
.wcd-inbox-hero {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 14px;
    -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, .03);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .03);
}

.wcd-inbox-hero-icon {
    margin-bottom: 20px;
    color: #3b82f6;
}

.wcd-inbox-hero-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 12px;
}

.wcd-inbox-hero-desc {
    font-size: .9rem;
    color: #475569;
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.wcd-inbox-tips {
    margin-top: 24px;
}

.wcd-inbox-tip {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: #475569;
    background: rgba(255, 255, 255, .5);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, .05);
}

/* ── Billing ── */
.wcd-billing-package {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

.wcd-billing-package-badge {
    margin-bottom: 8px;
}

.wcd-billing-package-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.wcd-billing-trial-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #b45309;
    margin: 6px 0 0;
}

/* Usage Bar */
.wcd-usage-bar-wrap {
    margin-bottom: 16px;
}

.wcd-usage-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: .85rem;
    color: #475569;
    margin-bottom: 8px;
}

.wcd-usage-bar {
    height: 8px;
    background: rgba(15, 23, 42, .06);
    border-radius: 4px;
    overflow: hidden;
}

.wcd-usage-bar-fill {
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#3b82f6), to(#60a5fa));
    background: -o-linear-gradient(left, #3b82f6, #60a5fa);
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 4px;
    -webkit-transition: width .5s ease;
    -o-transition: width .5s ease;
    transition: width .5s ease;
}

.wcd-usage-bar-fill.warn {
    background: -webkit-gradient(linear, left top, right top, from(#f59e0b), to(#ef4444));
    background: -o-linear-gradient(left, #f59e0b, #ef4444);
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

/* Upsell */
.wcd-upsell-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(139, 92, 246, .06);
    border: 1px solid rgba(139, 92, 246, .15);
    border-radius: 12px;
    margin-top: 16px;
}

.wcd-upsell-icon {
    font-size: 1.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-upsell-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.wcd-upsell-text strong {
    color: #0F172A;
    font-size: .9rem;
}

.wcd-upsell-text p {
    margin: 4px 0 0;
    font-size: .8rem;
    color: #475569;
}

/* ── Mini Stats ── */
.wcd-mini-stats {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.wcd-mini-stat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
}

.wcd-mini-stat-label {
    display: block;
    font-size: .78rem;
    color: #475569;
    margin-top: 4px;
}

/* ── Empty States ── */
.wcd-empty-state {
    text-align: center;
    padding: 48px 24px;
    color: #475569;
}

.wcd-empty-state.wcd-empty-sm {
    padding: 24px;
}

.wcd-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.wcd-empty-state h3 {
    color: #94a3b8;
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.wcd-empty-state p {
    margin: 0;
    font-size: .875rem;
}

/* ── Loading ── */
.wcd-loading-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255, 255, 255, .08);
    border-top-color: #3b82f6;
    border-radius: 50%;
    -webkit-animation: wcdSpin .6s linear infinite;
    animation: wcdSpin .6s linear infinite;
    margin: 0 auto 12px;
}

@-webkit-keyframes wcdSpin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes wcdSpin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.wcd-loading-text {
    color: #475569;
    font-size: .85rem;
}

.wcd-success-text {
    color: #34d399;
    font-size: .85rem;
}

.wcd-error-text {
    color: #ef4444;
    font-size: .85rem;
}

.wcd-invoices-loading {
    text-align: center;
    padding: 32px;
    color: #475569;
    font-size: .85rem;
}

/* ── Notice Box ── */
.wcd-notice-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(245, 158, 11, .08);
    border: 1px solid rgba(245, 158, 11, .2);
    border-radius: 12px;
    color: #fbbf24;
    font-size: .9rem;
}

/* ── Existing onboarding widget styles used in dashboard ── */
.wcd-section .wg-section {
    margin-bottom: 24px;
}

.wcd-section .wg-section-title {
    font-size: .78rem;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(37, 99, 235, .2);
}

.wcd-section .wg-field {
    margin-bottom: 14px;
}

.wcd-section .wg-label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.wcd-section .wg-color-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wcd-section .wg-swatches {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wcd-section .wg-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

.wcd-section .wg-swatch:hover {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
    -webkit-box-shadow: 0 2px 8px rgba(15, 23, 42, .12);
    box-shadow: 0 2px 8px rgba(15, 23, 42, .12);
}

.wcd-section .wg-swatch.active {
    border-color: #fff;
    -webkit-box-shadow: 0 0 0 2px rgba(37, 99, 235, .55);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, .55);
}

.wcd-section .wg-color-custom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.wcd-section .wg-color-hex {
    font-size: .78rem;
    color: #475569;
    font-family: monospace;
}

.wcd-section .wg-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 14px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.wcd-section .wg-btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
}

.wcd-section .wg-btn-opt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 8px 12px;
    border: 1.5px solid rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .6);
    color: #475569;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

.wcd-section .wg-btn-opt.active {
    background: rgba(59, 130, 246, .12);
    border-color: rgba(59, 130, 246, .35);
    color: #0369a1;
}

.wcd-section .wg-select,
.wcd-section .wg-input {
    width: 100%;
    padding: 9px 12px;
    background: rgba(255, 255, 255, .85);
    border: 1.5px solid rgba(15, 23, 42, .10);
    border-radius: 8px;
    color: #0F172A;
    font-size: .85rem;
    font-family: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wcd-section .wg-select:focus,
.wcd-section .wg-input:focus {
    outline: none;
    border-color: #22a7e6;
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
    background: #fff;
}

.wcd-section .wg-range-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.wcd-section .wg-range {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-appearance: none;
    height: 4px;
    background: rgba(255, 255, 255, 5);
    border-radius: 2px;
}

.wcd-section .wg-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
}

.wcd-section .wg-range-val {
    font-size: .78rem;
    color: #475569;
    min-width: 36px;
}

.wcd-section .wg-checks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.wcd-section .wg-check-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(15, 23, 42, .05);
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

.wcd-section .wg-check-label:hover {
    background: rgba(255, 255, 255, .8);
    border-color: rgba(15, 23, 42, .08);
}

.wcd-section .wg-check {
    margin-top: 2px;
    accent-color: #3b82f6;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-section .wg-check-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.wcd-section .wg-check-desc {
    font-size: .75rem;
    color: #475569;
    display: block;
    white-space: break-spaces;
    margin-top: 2px;
}

/* Widget mini preview in dashboard */
.wcd-section .wg-mini-preview {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
    box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.wcd-section .wg-mp-site {
    position: relative;
}

.wcd-section .wg-mp-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(15, 23, 42, .03);
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.wcd-section .wg-mp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 23, 42, .12);
}

.wcd-section .wg-mp-url {
    font-size: .72rem;
    color: #475569;
    margin-left: 8px;
}

.wcd-section .wg-mp-body {
    position: relative;
    min-height: 200px;
    padding: 20px;
}

.wcd-section .wg-mp-lines {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.wcd-section .wg-mp-ln {
    height: 8px;
    background: rgba(15, 23, 42, .06);
    border-radius: 4px;
}

.wcd-section .wg-mp-bubble {
    position: absolute;
    bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 24px;
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    cursor: default;
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.wcd-section .wg-mp-bubble.is-icon .wg-mp-bubble-text {
    display: none;
}

.wcd-section .wg-mp-bubble.is-icon {
    padding: 12px;
    border-radius: 50%;
}

/* Platform tabs in dashboard */
.wcd-section .platform-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.wcd-section .platform-tab {
    padding: 6px 14px;
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 8px;
    color: #475569;
    font-size: .78rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

.wcd-section .platform-tab.active {
    background: rgba(59, 130, 246, .1);
    border-color: rgba(59, 130, 246, .25);
    color: #22a7e6;
}

.wcd-section .snippet-box {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 10px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.wcd-section .snippet-code {
    display: block;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: .75rem;
    color: #334155;
    white-space: pre-wrap;
    word-break: break-all;
    line-height: 1.6;
    max-height: 200px;
    overflow-y: auto;
}

.wcd-section .snippet-copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .25);
    border-radius: 8px;
    color: #22a7e6;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

.wcd-section .snippet-copy:hover {
    background: rgba(59, 130, 246, .2);
}

/* Drag-over state for dropzone in dashboard */
.wcd-section .ai-train-dropzone.drag-over {
    border-color: rgba(59, 130, 246, .5);
    background: rgba(59, 130, 246, .06);
}

/* ── AI mode grid in dashboard ── */
.wcd-section .ai-mode-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.wcd-section .ai-mode-option {
    display: block;
    cursor: pointer;
}

.wcd-section .ai-mode-option input[type="radio"] {
    display: none;
}

.wcd-section .ai-mode-inner {
    border: 1.5px solid rgba(15, 23, 42, .08);
    border-radius: 12px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .65);
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    position: relative;
    -webkit-box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
    box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
}

.wcd-section .ai-mode-option:hover .ai-mode-inner {
    background: rgba(255, 255, 255, .85);
    border-color: rgba(15, 23, 42, .12);
}

.wcd-section .ai-mode-option input:checked + .ai-mode-inner {
    border-color: rgba(59, 130, 246, .35);
    background: rgba(59, 130, 246, .06);
    -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, .08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .08);
}

.wcd-section .ai-mode-badge {
    position: absolute;
    top: -8px;
    right: 14px;
    background: -o-linear-gradient(315deg, #3b82f6, #22a7e6);
    background: linear-gradient(135deg, #3b82f6, #22a7e6);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.wcd-section .ai-mode-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
}

.wcd-section .ai-mode-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-section .ai-mode-icon.blue {
    background: rgba(59, 130, 246, .12);
    color: #22a7e6;
}

.wcd-section .ai-mode-icon.purple {
    background: rgba(139, 92, 246, .12);
    color: #7c3aed;
}

.wcd-section .ai-mode-icon.gray {
    background: rgba(100, 116, 139, .10);
    color: #475569;
}

.wcd-section .ai-mode-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.wcd-section .ai-mode-name {
    font-size: .9rem;
    font-weight: 600;
    color: #0F172A;
}

.wcd-section .ai-mode-desc {
    font-size: .78rem;
    color: #475569;
    margin-top: 2px;
}

.wcd-section .ai-mode-radio {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(15, 23, 42, .15);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-section .ai-mode-radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    -webkit-transition: background .15s ease;
    -o-transition: background .15s ease;
    transition: background .15s ease;
}

.wcd-section .ai-mode-option input:checked + .ai-mode-inner .ai-mode-radio {
    border-color: #3b82f6;
}

.wcd-section .ai-mode-option input:checked + .ai-mode-inner .ai-mode-radio-dot {
    background: #3b82f6;
}

/* AI train cards in dashboard */
.wcd-section .ai-train-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 10px;
    margin-bottom: 12px;
    -webkit-box-shadow: 0 1px 2px rgba(15, 23, 42, .02);
    box-shadow: 0 1px 2px rgba(15, 23, 42, .02);
}

.wcd-section .ai-train-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-section .ai-train-card-icon.blue {
    background: rgba(59, 130, 246, .12);
    color: #22a7e6;
}

.wcd-section .ai-train-card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.wcd-section .ai-train-card-title {
    font-size: .82rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.wcd-section .ai-train-url-input {
    width: 100%;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: .85rem;
    font-family: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wcd-section .ai-train-url-input {
    padding: 10px 14px;
    background: rgba(255, 255, 255, .85);
    border: 1.5px solid rgba(15, 23, 42, .10);
    border-radius: 8px;
    color: #0F172A;
    font-size: .85rem;
    font-family: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wcd-section .ai-train-url-input:focus {
    outline: none;
    border-color: #22a7e6;
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
    background: #fff;
}

.wcd-section .ai-train-action-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .25);
    border-radius: 10px;
    color: #22a7e6;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-section .ai-train-action-btn:hover {
    background: rgba(59, 130, 246, .2);
    color: #1d4ed8;
}

.wcd-section .ai-train-action-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.wcd-section .ai-train-status {
    min-height: 20px;
    margin-bottom: 8px;
    font-size: .82rem;
    color: #475569;
}

/* Dropzone in dashboard */
.wcd-section .ai-train-dropzone {
    border: 2px dashed rgba(15, 23, 42, .12);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    margin-bottom: 12px;
    background: rgba(248, 250, 252, .6);
}

.wcd-section .ai-train-dropzone:hover {
    border-color: rgba(37, 99, 235, .4);
    background: rgba(37, 99, 235, .04);
}

.wcd-section .ai-train-dropzone.dragover {
    border-color: #22a7e6;
    background: rgba(37, 99, 235, .06);
}

.wcd-section .ai-train-dropzone-inner {
}

.wcd-section .ai-train-dropzone-icon {
    color: #3b82f6;
    margin-bottom: 12px;
}

.wcd-section .ai-train-dropzone-title {
    font-size: .9rem;
    font-weight: 600;
    color: #1e293b;
}

.wcd-section .ai-train-dropzone-sub {
    font-size: .78rem;
    color: #475569;
    margin-top: 4px;
}

.wcd-section .ai-train-dropzone-formats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 12px;
}

.wcd-section .ai-train-format-pill {
    padding: 3px 10px;
    background: rgba(59, 130, 246, .06);
    border: 1px solid rgba(59, 130, 246, .12);
    border-radius: 6px;
    font-size: .68rem;
    font-weight: 600;
    color: #22a7e6;
    text-transform: uppercase;
}

.wcd-section .ai-train-dropzone-limit {
    font-size: .72rem;
    color: #475569;
    margin-top: 8px;
}

/* Files list in dashboard */
.wcd-section .ai-train-files {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
}

.wcd-section .ai-train-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 8px;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

.wcd-section .ai-train-file:hover {
    background: rgba(255, 255, 255, .85);
}

.wcd-section .ai-train-file-icon {
    color: #3b82f6;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-section .ai-train-file-name {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: .82rem;
    color: #0F172A;
    min-width: 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wcd-section .ai-train-file-size {
    font-size: .72rem;
    color: #475569;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-section .ai-train-file-del {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-section .ai-train-file-del:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, .1);
}

.ai-train-file-badge {
    font-size: 11px;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, .1);
    padding: 2px 8px;
    border-radius: 6px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* KB mini dashboard: per-source list */
.wcd-kb-sources {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wcd-kb-source {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 10px;
    transition: all .15s ease;
}

.wcd-kb-source:hover {
    background: rgba(255, 255, 255, .85);
    border-color: rgba(15, 23, 42, .12);
}

.wcd-kb-source-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.wcd-kb-source-icon.blue {
    background: rgba(59, 130, 246, .12);
    color: #3b82f6;
}

.wcd-kb-source-icon.purple {
    background: rgba(139, 92, 246, .12);
    color: #8b5cf6;
}

.wcd-kb-source-body {
    flex: 1;
    min-width: 0;
}

.wcd-kb-source-name {
    font-size: .9rem;
    font-weight: 600;
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wcd-kb-source-meta {
    margin-top: 2px;
    font-size: .75rem;
    color: #64748b;
}

.wcd-kb-source-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, .1);
    background: rgba(255, 255, 255, .85);
    color: #475569;
    font-size: .78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s ease;
    flex-shrink: 0;
}

.wcd-kb-source-view:hover:not(:disabled) {
    background: #fff;
    color: #0f172a;
    border-color: rgba(59, 130, 246, .35);
}

.wcd-kb-source-view:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.wcd-kb-source-view i {
    font-size: 14px;
}

.wcd-kb-source-del {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all .15s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wcd-kb-source-del:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, .1);
}

.wcd-kb-sources-empty {
    padding: 14px;
    border-radius: 10px;
    background: rgba(15, 23, 42, .03);
    color: #64748b;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* KB viewer modal body */
.wcd-kb-viewer-meta {
    margin: -6px 0 14px;
    font-size: .78rem;
    color: #64748b;
}

.wcd-kb-viewer-body {
    margin: 0;
    max-height: 60vh;
    overflow-y: auto;
    background: rgba(15, 23, 42, .04);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 12px;
    padding: 16px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    line-height: 1.55;
    color: #475569;
    white-space: pre-wrap;
    word-break: break-word;
}

@media (max-width: 640px) {
    .wcd-kb-source {
        flex-wrap: wrap;
    }
    .wcd-kb-source-body {
        flex: 1 1 100%;
        order: 2;
    }
    .wcd-kb-source-icon {
        order: 1;
    }
    .wcd-kb-source-view,
    .wcd-kb-source-del {
        order: 3;
    }
}

/* Alert Danger */
.wcd-alert-danger {
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .2);
}

.wcd-alert-danger .wcd-alert-icon {
    color: #f87171;
}

.wcd-alert-danger .wcd-alert-body strong {
    color: #f87171;
}

/* Small button variant */
.wcd-btn-sm {
    padding: 8px 16px;
    font-size: .8rem;
    border-radius: 8px;
    white-space: nowrap;
}

/* ── Training Status ── */
.wcd-training-status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 10px;
    margin-bottom: 16px;
    -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, .03);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .03);
}

.wcd-training-status-icon {
    font-size: 1.1rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-training-status-icon.trained {
    color: #059669;
}

.wcd-training-status-icon.not-trained {
    color: #475569;
}

.wcd-training-status-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.wcd-training-status-text strong {
    display: block;
    font-size: .85rem;
    color: #0F172A;
}

.wcd-training-status-text span {
    font-size: .75rem;
    color: #475569;
}

.wcd-training-limit-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: .72rem;
    font-weight: 600;
}

.wcd-training-limit-badge.available {
    background: rgba(16, 185, 129, .12);
    color: #059669;
}

.wcd-training-limit-badge.exhausted {
    background: rgba(239, 68, 68, .12);
    color: #dc2626;
}

/* ── Training Stats Strip ── */
.wcd-training-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.wcd-training-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .03);
}

.wcd-training-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.wcd-training-stat-icon.blue {
    background: rgba(59, 130, 246, .1);
    color: #3b82f6;
}

.wcd-training-stat-icon.purple {
    background: rgba(139, 92, 246, .1);
    color: #8b5cf6;
}

.wcd-training-stat-icon.green {
    background: rgba(16, 185, 129, .1);
    color: #059669;
}

.wcd-training-stat-icon.gray {
    background: rgba(100, 116, 139, .1);
    color: #64748b;
}

.wcd-training-stat-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.wcd-training-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.wcd-training-stat-label {
    font-size: .7rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 600px) {
    .wcd-training-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Widget re-copy notice ── */
.wcd-widget-notice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(245, 158, 11, .08);
    border: 1px solid rgba(245, 158, 11, .2);
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: .82rem;
    color: #92400e;
}

.wcd-widget-notice i {
    color: #d97706;
    font-size: 1.1rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* ── Inbox info cards (legacy) ── */
.wcd-inbox-features {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.wcd-inbox-feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 10px;
}

.wcd-inbox-feature-icon {
    font-size: 1.1rem;
    color: #60a5fa;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.wcd-inbox-feature-text strong {
    display: block;
    font-size: .82rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.wcd-inbox-feature-text span {
    font-size: .75rem;
    color: #475569;
}

/* ══════════════════════════════════════════════════════════════
   INBOX REDESIGN - Conversations Dashboard
   ══════════════════════════════════════════════════════════════ */

/* Section header with actions row */
.wcd-section-header-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wcd-section-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* 4-col stats grid */
.wcd-stats-grid-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
}

/* Clickable stat cards */
.wcd-stat-card-clickable {
    cursor: pointer;
    -webkit-transition: border-color .2s ease, -webkit-box-shadow .2s ease;
    transition: border-color .2s ease, -webkit-box-shadow .2s ease;
    -o-transition: border-color .2s ease, box-shadow .2s ease;
    transition: border-color .2s ease, box-shadow .2s ease;
    transition: border-color .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease;
}

.wcd-stat-card-clickable:hover {
    border-color: rgba(59, 130, 246, .35);
    -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, .08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .08);
}

.wcd-stat-card-clickable.active {
    border-color: rgba(59, 130, 246, .5);
    -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
}

/* Mini stats 5-col variant */
.wcd-mini-stats-5 {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
}

/* Card header flex variant */
.wcd-card-header-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

/* Filter buttons */
.wcd-inbox-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 3px;
}

.wcd-filter-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border: none;
    background: transparent;
    color: #475569;
    font-size: .8rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    font-family: inherit;
}

.wcd-filter-btn:hover {
    background: rgba(255, 255, 255, .08);
    color: #94a3b8;
}

.wcd-filter-btn.active {
    background: rgba(59, 130, 246, .15);
    color: #60a5fa;
}

/* Card body flush (no padding) */
.wcd-card-body-flush {
    padding: 0;
}

/* Conversations list */
.wcd-conversations-list {
    min-height: 100px;
}

/* Single conversation row */
.wcd-conv-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    -webkit-transition: background .15s ease;
    -o-transition: background .15s ease;
    transition: background .15s ease;
}

.wcd-conv-row:last-child {
    border-bottom: none;
}

.wcd-conv-row:hover {
    background: rgba(59, 130, 246, .04);
}

/* Avatar */
.wcd-conv-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
    background: -o-linear-gradient(315deg, #3b82f6, #22a7e6);
    background: linear-gradient(135deg, #3b82f6, #22a7e6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wcd-conv-avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.wcd-conv-avatar-initial {
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
}

/* Conversation content */
.wcd-conv-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.wcd-conv-header-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.wcd-conv-name {
    font-weight: 600;
    font-size: .88rem;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.wcd-conv-time {
    font-size: .72rem;
    color: #475569;
    white-space: nowrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-conv-message {
    font-size: .82rem;
    color: #94a3b8;
    line-height: 1.5;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 6px;
}

.wcd-conv-message em {
    color: #475569;
    font-style: italic;
}

/* Meta row with badges */
.wcd-conv-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wcd-conv-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.wcd-conv-badge-blue {
    background: rgba(59, 130, 246, .12);
    color: #60a5fa;
}

.wcd-conv-badge-amber {
    background: rgba(245, 158, 11, .12);
    color: #fbbf24;
}

.wcd-conv-badge-green {
    background: rgba(16, 185, 129, .12);
    color: #34d399;
}

.wcd-conv-meta-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
    font-size: .72rem;
    color: #475569;
}

.wcd-conv-label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: .68rem;
    font-weight: 500;
    background: rgba(139, 92, 246, .1);
    color: #a78bfa;
}

/* Open in WebChat button */
.wcd-conv-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #475569;
    text-decoration: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 4px;
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

.wcd-conv-open:hover {
    background: rgba(59, 130, 246, .12);
    color: #60a5fa;
}

/* Loading spinner */
.wcd-conv-loading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    padding: 32px;
    color: #475569;
    font-size: .85rem;
}

.wcd-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(59, 130, 246, .2);
    border-top-color: #3b82f6;
    border-radius: 50%;
    -webkit-animation: wcd-spin-anim .7s linear infinite;
    animation: wcd-spin-anim .7s linear infinite;
}

/* Pagination */
.wcd-conv-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

/* Tips grid */
.wcd-inbox-tips-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wcd-inbox-tip-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
}

.wcd-inbox-tip-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(59, 130, 246, .1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 1.1rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-inbox-tip-item strong {
    display: block;
    font-size: .82rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.wcd-inbox-tip-item span {
    font-size: .75rem;
    color: #475569;
    line-height: 1.5;
}

/* Refresh spin animation */
.wcd-btn .wcd-refreshing {
    -webkit-animation: wcd-spin-anim .7s linear infinite;
    animation: wcd-spin-anim .7s linear infinite;
    display: inline-block;
}

/* ══════════════════════════════════════════════════════════════
   OVERVIEW TOPBAR - Welcome greeting + SSO button
   ══════════════════════════════════════════════════════════════ */

.wcd-overview-topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px 28px;
    background: -o-linear-gradient(315deg, rgba(59, 130, 246, .08) 0%, rgba(139, 92, 246, .06) 50%, rgba(16, 185, 129, .04) 100%);
    background: linear-gradient(135deg, rgba(59, 130, 246, .08) 0%, rgba(139, 92, 246, .06) 50%, rgba(16, 185, 129, .04) 100%);
    border: 1px solid rgba(59, 130, 246, .15);
    border-radius: 16px;
}

.wcd-overview-greeting {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.wcd-overview-greeting-sub {
    font-size: .85rem;
    color: #475569;
    margin: 4px 0 0;
}

.wcd-overview-topbar-left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.wcd-overview-topbar-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* SSO Button - beautiful gradient CTA */
.wcd-topbar-sso-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #0e172a;
    color: #fff !important;
    font-size: .85rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-box-shadow: 0 4px 14px rgba(59, 130, 246, .25);
    box-shadow: 0 4px 14px rgba(59, 130, 246, .25);
    white-space: nowrap;
}

.wcd-topbar-sso-btn:hover {
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    -webkit-box-shadow: 0 6px 20px rgba(59, 130, 246, .35);
    box-shadow: 0 6px 20px rgba(59, 130, 246, .35);
    color: #fff;
}

.wcd-topbar-sso-arrow {
    opacity: .6;
    font-size: .9rem;
}

/* ══════════════════════════════════════════════════════════════
   STATUS STRIP - Compact inline status indicators
   ══════════════════════════════════════════════════════════════ */

.wcd-status-strip {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
    padding: 14px 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    margin-bottom: 24px;
}

.wcd-status-strip-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 6px 12px;
    border-radius: 10px;
    -webkit-transition: background .15s ease;
    -o-transition: background .15s ease;
    transition: background .15s ease;
}

.wcd-status-strip-clickable {
    cursor: pointer;
}

.wcd-status-strip-clickable:hover {
    background: rgba(255, 255, 255, .06);
}

.wcd-status-strip-clickable.active {
    background: rgba(59, 130, 246, .08);
}

.wcd-status-strip-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wcd-dot-blue {
    background: #3b82f6;
    -webkit-box-shadow: 0 0 8px rgba(59, 130, 246, .4);
    box-shadow: 0 0 8px rgba(59, 130, 246, .4);
}

.wcd-dot-amber {
    background: #f59e0b;
    -webkit-box-shadow: 0 0 8px rgba(245, 158, 11, .4);
    box-shadow: 0 0 8px rgba(245, 158, 11, .4);
}

.wcd-dot-green {
    background: #10b981;
    -webkit-box-shadow: 0 0 8px rgba(16, 185, 129, .4);
    box-shadow: 0 0 8px rgba(16, 185, 129, .4);
}

.wcd-dot-purple {
    background: #8b5cf6;
    -webkit-box-shadow: 0 0 8px rgba(139, 92, 246, .4);
    box-shadow: 0 0 8px rgba(139, 92, 246, .4);
}

.wcd-status-strip-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.wcd-status-strip-label {
    font-size: .75rem;
    color: #475569;
}

.wcd-status-strip-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .08);
    margin: 0 4px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .wcd-widget-split {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .wcd-widget-preview-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .wcd-sidebar {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .wcd-sidebar.open {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .wcd-sidebar-close {
        display: block;
    }

    .wcd-mobile-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .wcd-mobile-logo {
        display: block;
    }

    .wcd-content {
        margin-left: 0;
        padding: 72px 16px 32px;
    }

    .wcd-stats-grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wcd-info-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wcd-inbox-cta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .wcd-inbox-cta-arrow {
        display: none;
    }

    .wcd-billing-package {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .wcd-inbox-features {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .wcd-section .wg-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .wcd-mini-stats {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wcd-stats-grid-4 {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }

    .wcd-mini-stats-5 {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }

    .wcd-inbox-tips-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .wcd-section-header-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .wcd-card-header-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .wcd-inbox-filters {
        width: 100%;
    }

    .wcd-filter-btn {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .wcd-conv-row {
        padding: 12px 16px;
    }

    .wcd-overview-topbar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .wcd-overview-topbar-right {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .wcd-topbar-sso-btn span {
        display: none;
    }

    .wcd-topbar-sso-btn {
        padding: 10px 14px;
    }

    .wcd-status-strip {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 16px;
    }

    .wcd-status-strip-sep {
        display: none;
    }

    .wcd-status-strip-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 4px);
        flex: 0 0 calc(50% - 4px);
    }
}

@media (max-width: 480px) {
    .wcd-content {
        padding: 68px 12px 24px;
    }

    .wcd-section-title {
        font-size: 1.25rem;
    }

    .wcd-status-strip-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 4px);
        flex: 0 0 calc(50% - 4px);
    }
}

/* Spin animation for loading states */
@-webkit-keyframes wcd-spin-anim {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes wcd-spin-anim {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.wcd-spin {
    -webkit-animation: wcd-spin-anim .8s linear infinite;
    animation: wcd-spin-anim .8s linear infinite;
    display: inline-block;
}

/* Train button enhanced states */
.wcd-section .ai-train-action-btn.running {
    background: rgba(59, 130, 246, .08);
    color: #60a5fa;
    pointer-events: none;
    cursor: not-allowed;
}

.wcd-section .ai-train-action-btn.done {
    background: rgba(34, 197, 94, .12);
    color: #4ade80;
    pointer-events: none;
}

/* ================================================================
   REDESIGN OVERLAY - Glassmorphism, Micro-interactions, UX
   Applied on top of original styles. Brand: #22a7e6
   ================================================================ */

/* ── Enhanced header glass effect ── */
.header.light .header-bar {
    background: rgba(255, 255, 255, .65);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    backdrop-filter: blur(40px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, .45);
    -webkit-box-shadow: 0 2px 30px rgba(0, 0, 0, .05), 0 0 0 1px rgba(0, 0, 0, .03);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .05), 0 0 0 1px rgba(0, 0, 0, .03);
}

.header.dark .header-bar {
    background: rgba(6, 9, 15, .65);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    backdrop-filter: blur(40px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, .08);
    -webkit-box-shadow: 0 2px 30px rgba(0, 0, 0, .2), 0 0 0 1px rgba(255, 255, 255, .04);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .2), 0 0 0 1px rgba(255, 255, 255, .04);
}

/* ── Button micro-interactions (no gradients) ── */
.btn {
    -webkit-transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.btn:active {
    -webkit-transform: scale(0.96);
    -ms-transform: scale(0.96);
    transform: scale(0.96);
    -webkit-transition-duration: 80ms;
    -o-transition-duration: 80ms;
    transition-duration: 80ms;
}

.btn:focus-visible {
    outline: none;
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25), 0 0 0 1px #22a7e6;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25), 0 0 0 1px #22a7e6;
}

.btn-accent {
    background: #22a7e6;
    -webkit-box-shadow: 0 2px 20px rgba(37, 99, 235, .25);
    box-shadow: 0 2px 20px rgba(37, 99, 235, .25);
}

.btn-accent:hover {
    background: #22A7E6;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 30px rgba(37, 99, 235, .30);
    box-shadow: 0 8px 30px rgba(37, 99, 235, .30);
}

.btn-accent i {
    color: white !important;
}

/* ── Glassmorphism cards ── */
.prob-item {
    background: rgba(255, 255, 255, .75);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .6);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .03), inset 0 1px 0 rgba(255, 255, 255, .5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .03), inset 0 1px 0 rgba(255, 255, 255, .5);
    -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.prob-item:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .7);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .88);
}

.prob-item-ico {
    -webkit-transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.prob-item:hover .prob-item-ico {
    -webkit-transform: scale(1.1) rotate(-5deg);
    -ms-transform: scale(1.1) rotate(-5deg);
    transform: scale(1.1) rotate(-5deg);
}

.benefit-card {
    background: rgba(255, 255, 255, .65);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .55);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .03), inset 0 1px 0 rgba(255, 255, 255, .5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .03), inset 0 1px 0 rgba(255, 255, 255, .5);
    -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 36px rgba(0, 0, 0, .05);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .05);
    background: rgba(255, 255, 255, .80);
}

.benefit-card-ico {
    -webkit-transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-card-ico {
    -webkit-transform: scale(1.1) rotate(-5deg);
    -ms-transform: scale(1.1) rotate(-5deg);
    transform: scale(1.1) rotate(-5deg);
}

.step-item {
    background: rgba(255, 255, 255, .55);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .5);
    -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 36px rgba(0, 0, 0, .04);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .04);
    background: rgba(255, 255, 255, .75);
}

.step-num {
    -webkit-transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-item:hover .step-num {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.p-card {
    background: rgba(255, 255, 255, .70);
    -webkit-backdrop-filter: blur(30px) saturate(1.4);
    backdrop-filter: blur(30px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, .6);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .03), inset 0 1px 0 rgba(255, 255, 255, .5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .03), inset 0 1px 0 rgba(255, 255, 255, .5);
    -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.p-card:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, .06);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .06);
}

.p-card-icon {
    -webkit-transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.p-card:hover .p-card-icon {
    -webkit-transform: scale(1.1) rotate(-5deg);
    -ms-transform: scale(1.1) rotate(-5deg);
    transform: scale(1.1) rotate(-5deg);
}

.srv-item {
    background: rgba(255, 255, 255, .65);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    backdrop-filter: blur(24px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .55);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .03), inset 0 1px 0 rgba(255, 255, 255, .5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .03), inset 0 1px 0 rgba(255, 255, 255, .5);
    -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-item:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 36px rgba(0, 0, 0, .05);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .05);
    background: rgba(255, 255, 255, .80);
}

.srv-item-ico {
    -webkit-transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.srv-item:hover .srv-item-ico {
    -webkit-transform: scale(1.1) rotate(-5deg);
    -ms-transform: scale(1.1) rotate(-5deg);
    transform: scale(1.1) rotate(-5deg);
}

.t-card {
    background: rgba(255, 255, 255, .65);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .55);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .03), inset 0 1px 0 rgba(255, 255, 255, .5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .03), inset 0 1px 0 rgba(255, 255, 255, .5);
    -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.t-card:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 36px rgba(0, 0, 0, .05);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .05);
}

.faq-item {
    background: rgba(255, 255, 255, .65);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .55);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
    -webkit-transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
}

.faq-item.active {
    border-color: rgba(37, 99, 235, .15);
    -webkit-box-shadow: 0 4px 16px rgba(37, 99, 235, .06);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .06);
}

.faq-q:hover {
    color: #22a7e6;
}

.security-item {
    background: rgba(255, 255, 255, .60);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .55);
    -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.security-item:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 36px rgba(0, 0, 0, .04);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .04);
}

.security-ico {
    -webkit-transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.security-item:hover .security-ico {
    -webkit-transform: scale(1.1) rotate(-5deg);
    -ms-transform: scale(1.1) rotate(-5deg);
    transform: scale(1.1) rotate(-5deg);
}

.kontakt-card {
    background: rgba(255, 255, 255, .65);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .55);
    -webkit-transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.kontakt-card:hover {
    -webkit-transform: translateX(6px);
    -ms-transform: translateX(6px);
    transform: translateX(6px);
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
    background: rgba(255, 255, 255, .80);
}

.kontakt-card-ico {
    -webkit-transition: -webkit-transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: -webkit-transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.kontakt-card:hover .kontakt-card-ico {
    -webkit-transform: scale(1.08) rotate(-5deg);
    -ms-transform: scale(1.08) rotate(-5deg);
    transform: scale(1.08) rotate(-5deg);
}


.sol-demo-box {
    background: rgba(255, 255, 255, .65);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, .5);
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, .05), inset 0 1px 0 rgba(255, 255, 255, .5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .05), inset 0 1px 0 rgba(255, 255, 255, .5);
    -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.sol-demo-box:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, .07);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .07);
}

/* ── Hero pill micro-interaction ── */
.hero-pill {
    -webkit-transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-pill:hover {
    background: rgba(37, 99, 235, .14);
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

/* ── Float card spring hover ── */
.float-card {
    -webkit-transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.float-card:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

/* ── Channel icons spring ── */
.ch-ico {
    -webkit-transition: -webkit-transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: -webkit-transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ch-ico:hover {
    -webkit-transform: scale(1.12) rotate(-5deg);
    -ms-transform: scale(1.12) rotate(-5deg);
    transform: scale(1.12) rotate(-5deg);
}

/* ── Mobile nav enhanced ── */
.mobile-nav {
    background: rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: blur(40px) saturate(1.5);
    backdrop-filter: blur(40px) saturate(1.5);
}

.mnav-links a:hover, .mnav-links a:active {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px);
}

.mnav-close:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mnav-contact a:hover {
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

/* ── Cookie banner glass ── */
.cookie-bar, .cookie-banner {
    background: rgba(15, 23, 42, .90);
    -webkit-backdrop-filter: blur(28px);
    backdrop-filter: blur(28px);
}

/* ── Form inputs frosted ── */
.f-input, .f-area {
    background: rgba(255, 255, 255, .55);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    -webkit-transition: all 160ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 160ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 160ms cubic-bezier(0.4, 0, 0.2, 1);
}

.f-input:hover, .f-area:hover {
    border-color: rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, .70);
}

.f-input:focus, .f-area:focus {
    border-color: #22a7e6;
    background: rgba(255, 255, 255, .85);
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, .10);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .10);
}

/* ── Focus-visible global ── */
:focus-visible {
    outline: 2px solid #22a7e6;
    outline-offset: 2px;
}

.btn:focus-visible, .f-input:focus-visible, .f-area:focus-visible {
    outline: none;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
        -o-transition-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── Tablet breakpoint for grids ── */
@media (max-width: 1024px) {
    .prob-grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }

    .price-cards {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .security-grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }

    .srv-list {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-perks {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        -ms-grid-columns: 1fr 32px 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@-webkit-keyframes whFadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(28px);
        transform: translateY(28px)
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes whFadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(28px);
        transform: translateY(28px)
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes whScaleIn {
    from {
        opacity: 0;
        -webkit-transform: scale(.88) translateY(34px);
        transform: scale(.88) translateY(34px)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0)
    }
}

@keyframes whScaleIn {
    from {
        opacity: 0;
        -webkit-transform: scale(.88) translateY(34px);
        transform: scale(.88) translateY(34px)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0)
    }
}

@-webkit-keyframes whPopIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(14px) scale(.92);
        transform: translateY(14px) scale(.92)
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1)
    }
}

@keyframes whPopIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(14px) scale(.92);
        transform: translateY(14px) scale(.92)
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1)
    }
}

@-webkit-keyframes whGlassFadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes whGlassFadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes whFloat1 {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

@keyframes whFloat1 {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

@-webkit-keyframes whFloat2 {
    0%, 100% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg)
    }
    50% {
        -webkit-transform: translateY(-7px) rotate(1.5deg);
        transform: translateY(-7px) rotate(1.5deg)
    }
}

@keyframes whFloat2 {
    0%, 100% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg)
    }
    50% {
        -webkit-transform: translateY(-7px) rotate(1.5deg);
        transform: translateY(-7px) rotate(1.5deg)
    }
}

@-webkit-keyframes whFloat3 {
    0%, 100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    33% {
        -webkit-transform: translate(5px, -7px);
        transform: translate(5px, -7px)
    }
    66% {
        -webkit-transform: translate(-4px, 5px);
        transform: translate(-4px, 5px)
    }
}

@keyframes whFloat3 {
    0%, 100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    33% {
        -webkit-transform: translate(5px, -7px);
        transform: translate(5px, -7px)
    }
    66% {
        -webkit-transform: translate(-4px, 5px);
        transform: translate(-4px, 5px)
    }
}

@-webkit-keyframes whOrbMove1 {
    0%, 100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1)
    }
    33% {
        -webkit-transform: translate(40px, -28px) scale(1.06);
        transform: translate(40px, -28px) scale(1.06)
    }
    66% {
        -webkit-transform: translate(-22px, 20px) scale(.94);
        transform: translate(-22px, 20px) scale(.94)
    }
}

@keyframes whOrbMove1 {
    0%, 100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1)
    }
    33% {
        -webkit-transform: translate(40px, -28px) scale(1.06);
        transform: translate(40px, -28px) scale(1.06)
    }
    66% {
        -webkit-transform: translate(-22px, 20px) scale(.94);
        transform: translate(-22px, 20px) scale(.94)
    }
}

@-webkit-keyframes whOrbMove2 {
    0%, 100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    50% {
        -webkit-transform: translate(-35px, 28px) scale(1.08);
        transform: translate(-35px, 28px) scale(1.08)
    }
}

@keyframes whOrbMove2 {
    0%, 100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    50% {
        -webkit-transform: translate(-35px, 28px) scale(1.08);
        transform: translate(-35px, 28px) scale(1.08)
    }
}

@-webkit-keyframes whOrbMove3 {
    0%, 100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    25% {
        -webkit-transform: translate(18px, 22px);
        transform: translate(18px, 22px)
    }
    75% {
        -webkit-transform: translate(-20px, -14px);
        transform: translate(-20px, -14px)
    }
}

@keyframes whOrbMove3 {
    0%, 100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    25% {
        -webkit-transform: translate(18px, 22px);
        transform: translate(18px, 22px)
    }
    75% {
        -webkit-transform: translate(-20px, -14px);
        transform: translate(-20px, -14px)
    }
}

@-webkit-keyframes whDotPulse {
    0%, 60%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: .3
    }
    30% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
        opacity: 1
    }
}

@keyframes whDotPulse {
    0%, 60%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: .3
    }
    30% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
        opacity: 1
    }
}

@-webkit-keyframes whRingPulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .4
    }
    100% {
        -webkit-transform: scale(2.4);
        transform: scale(2.4);
        opacity: 0
    }
}

@keyframes whRingPulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .4
    }
    100% {
        -webkit-transform: scale(2.4);
        transform: scale(2.4);
        opacity: 0
    }
}

@-webkit-keyframes whSpin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes whSpin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes whMorphBlob {
    0%, 100% {
        border-radius: 42% 58% 62% 38%/45% 55% 45% 55%
    }
    25% {
        border-radius: 55% 45% 38% 62%/52% 48% 52% 48%
    }
    50% {
        border-radius: 38% 62% 55% 45%/58% 42% 58% 42%
    }
    75% {
        border-radius: 62% 38% 45% 55%/42% 58% 42% 58%
    }
}

@keyframes whMorphBlob {
    0%, 100% {
        border-radius: 42% 58% 62% 38%/45% 55% 45% 55%
    }
    25% {
        border-radius: 55% 45% 38% 62%/52% 48% 52% 48%
    }
    50% {
        border-radius: 38% 62% 55% 45%/58% 42% 58% 42%
    }
    75% {
        border-radius: 62% 38% 45% 55%/42% 58% 42% 58%
    }
}

@-webkit-keyframes whWaveDrift {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

@keyframes whWaveDrift {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

@-webkit-keyframes whGradShift {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes whGradShift {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-webkit-keyframes whFloatPill {
    0%, 100% {
        -webkit-transform: translateY(0) rotate(-2deg);
        transform: translateY(0) rotate(-2deg)
    }
    50% {
        -webkit-transform: translateY(-14px) rotate(2deg);
        transform: translateY(-14px) rotate(2deg)
    }
}

@keyframes whFloatPill {
    0%, 100% {
        -webkit-transform: translateY(0) rotate(-2deg);
        transform: translateY(0) rotate(-2deg)
    }
    50% {
        -webkit-transform: translateY(-14px) rotate(2deg);
        transform: translateY(-14px) rotate(2deg)
    }
}

@-webkit-keyframes whFloatPill2 {
    0%, 100% {
        -webkit-transform: translateY(0) rotate(1deg);
        transform: translateY(0) rotate(1deg)
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(-1.5deg);
        transform: translateY(-10px) rotate(-1.5deg)
    }
}

@keyframes whFloatPill2 {
    0%, 100% {
        -webkit-transform: translateY(0) rotate(1deg);
        transform: translateY(0) rotate(1deg)
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(-1.5deg);
        transform: translateY(-10px) rotate(-1.5deg)
    }
}

@-webkit-keyframes whBorderGlow {
    0%, 100% {
        opacity: .5
    }
    50% {
        opacity: 1
    }
}

@keyframes whBorderGlow {
    0%, 100% {
        opacity: .5
    }
    50% {
        opacity: 1
    }
}

@-webkit-keyframes whBarFill {
    to {
        width: 72%
    }
}

@keyframes whBarFill {
    to {
        width: 72%
    }
}

@-webkit-keyframes whAuroraShift {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
    50% {
        -webkit-transform: rotate(3deg) scale(1.05);
        transform: rotate(3deg) scale(1.05)
    }
    100% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
}

@keyframes whAuroraShift {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
    50% {
        -webkit-transform: rotate(3deg) scale(1.05);
        transform: rotate(3deg) scale(1.05)
    }
    100% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
}

@-webkit-keyframes whRayRotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes whRayRotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.wh-hero {
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #eef3ff
}

.wh-hero *, .wh-hero *::before, .wh-hero *::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.wh-hero {
    --wh-brand: #22a7e6;
    --wh-brand-hover: #22A7E6;
    --wh-brand-active: #0E93D2;
    --wh-dark: #0F172A;
    --wh-text-primary: #0F172A;
    --wh-text-secondary: #1E293B;
    --wh-text-tertiary: #475569;
    --wh-text-muted: #475569;
    --wh-green: #22C55E;
    --wh-green-dark: #16A34A;
    --wh-violet: #A78BFA;
    --wh-rose: #FB7185;
    --wh-amber: #F59E0B;
}

.wh-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.wh-bg-base {
    position: absolute;
    inset: 0;
    background: -o-linear-gradient(295deg, #dde8fd 0%, #e8eeff 15%, #f2f0ff 32%, #fff5f7 50%, #eef6ff 68%, #e4edff 85%, #dce6fc 100%);
    background: linear-gradient(155deg, #dde8fd 0%, #e8eeff 15%, #f2f0ff 32%, #fff5f7 50%, #eef6ff 68%, #e4edff 85%, #dce6fc 100%)
}

.wh-bg-aurora {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: .7
}

.wh-aurora {
    position: absolute;
    border-radius: 50%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    will-change: transform
}

.wh-aurora-1 {
    width: 1000px;
    height: 300px;
    top: -60px;
    left: -10%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(37, 99, 235, 0.18)), color-stop(rgba(167, 139, 250, 0.12)), to(transparent));
    background: -o-linear-gradient(left, rgba(37, 99, 235, 0.18), rgba(167, 139, 250, 0.12), transparent);
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(167, 139, 250, 0.12), transparent);
    -webkit-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    transform: rotate(-8deg);
    -webkit-animation: whAuroraShift 18s ease-in-out infinite;
    animation: whAuroraShift 18s ease-in-out infinite
}

.wh-aurora-2 {
    width: 800px;
    height: 250px;
    bottom: 5%;
    right: -5%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(251, 113, 133, 0.1)), to(rgba(37, 99, 235, 0.14)));
    background: -o-linear-gradient(left, transparent, rgba(251, 113, 133, 0.1), rgba(37, 99, 235, 0.14));
    background: linear-gradient(90deg, transparent, rgba(251, 113, 133, 0.1), rgba(37, 99, 235, 0.14));
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
    animation: whAuroraShift 22s ease-in-out infinite reverse
}

.wh-aurora-3 {
    width: 600px;
    height: 200px;
    top: 40%;
    left: 15%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(34, 197, 94, 0.06)), color-stop(rgba(37, 99, 235, 0.1)), to(rgba(167, 139, 250, 0.06)));
    background: -o-linear-gradient(left, rgba(34, 197, 94, 0.06), rgba(37, 99, 235, 0.1), rgba(167, 139, 250, 0.06));
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.06), rgba(37, 99, 235, 0.1), rgba(167, 139, 250, 0.06));
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    -webkit-animation: whAuroraShift 20s ease-in-out infinite;
    animation: whAuroraShift 20s ease-in-out infinite
}

.wh-bg-mesh {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden
}

.wh-mesh {
    position: absolute;
    border-radius: 50%;
    will-change: transform
}

.wh-mesh-1 {
    width: 850px;
    height: 850px;
    top: -280px;
    right: -180px;
    background: -o-radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 60%);
    background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 60%);
    -webkit-filter: blur(85px);
    filter: blur(85px);
    -webkit-animation: whOrbMove1 20s ease-in-out infinite;
    animation: whOrbMove1 20s ease-in-out infinite
}

.wh-mesh-2 {
    width: 650px;
    height: 650px;
    bottom: -220px;
    left: -120px;
    background: -o-radial-gradient(circle, rgba(167, 139, 250, 0.18) 0%, transparent 60%);
    background: radial-gradient(circle, rgba(167, 139, 250, 0.18) 0%, transparent 60%);
    -webkit-filter: blur(85px);
    filter: blur(85px);
    -webkit-animation: whOrbMove2 26s ease-in-out infinite;
    animation: whOrbMove2 26s ease-in-out infinite
}

.wh-mesh-3 {
    width: 550px;
    height: 550px;
    top: 38%;
    left: 22%;
    background: -o-radial-gradient(circle, rgba(251, 113, 133, 0.11) 0%, transparent 55%);
    background: radial-gradient(circle, rgba(251, 113, 133, 0.11) 0%, transparent 55%);
    -webkit-filter: blur(100px);
    filter: blur(100px);
    -webkit-animation: whOrbMove3 22s ease-in-out infinite;
    animation: whOrbMove3 22s ease-in-out infinite
}

.wh-mesh-4 {
    width: 480px;
    height: 480px;
    top: 5%;
    left: 52%;
    background: -o-radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 55%);
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 55%);
    -webkit-filter: blur(80px);
    filter: blur(80px);
    animation: whOrbMove2 18s ease-in-out infinite reverse
}

.wh-mesh-5 {
    width: 400px;
    height: 400px;
    bottom: 8%;
    right: 22%;
    background: -o-radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 55%);
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 55%);
    -webkit-filter: blur(70px);
    filter: blur(70px);
    animation: whOrbMove1 24s ease-in-out infinite reverse
}

.wh-bg-rays {
    position: absolute;
    z-index: 2;
    width: 900px;
    height: 900px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: .06;
    background: repeating-conic-gradient(rgba(37, 99, 235, 0.4) 0deg 2deg, transparent 2deg 15deg);
    border-radius: 50%;
    -webkit-animation: whRayRotate 120s linear infinite;
    animation: whRayRotate 120s linear infinite;
    mask-image: radial-gradient(circle, black 10%, transparent 60%);
    -webkit-mask-image: radial-gradient(circle, black 10%, transparent 60%)
}

.wh-bg-waves {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    opacity: .65;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 15%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 15%, transparent 65%)
}

.wh-bg-waves svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    -webkit-animation: whWaveDrift 50s linear infinite;
    animation: whWaveDrift 50s linear infinite
}

.wh-bg-hex {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: .45;
    mask-image: radial-gradient(ellipse 80% 70% at 55% 45%, black 10%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 55% 45%, black 10%, transparent 60%)
}

.wh-bg-dots {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image: -o-radial-gradient(circle, rgba(37, 99, 235, 0.12) 1.2px, transparent 1.2px);
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.12) 1.2px, transparent 1.2px);
    background-size: 18px 18px;
    mask-image: radial-gradient(ellipse 65% 60% at 38% 55%, black 5%, transparent 55%);
    -webkit-mask-image: radial-gradient(ellipse 65% 60% at 38% 55%, black 5%, transparent 55%)
}

.wh-bg-diag {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: .2;
    background: -o-repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(37, 99, 235, 0.04) 40px, rgba(37, 99, 235, 0.04) 41px);
    background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(37, 99, 235, 0.04) 40px, rgba(37, 99, 235, 0.04) 41px);
    mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, black 10%, transparent 55%);
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, black 10%, transparent 55%)
}

.wh-bg-pill {
    position: absolute;
    z-index: 4;
    border-radius: 999px;
    pointer-events: none;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px)
}

.wh-bg-pill-1 {
    width: 100px;
    height: 36px;
    top: 15%;
    left: 12%;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.09);
    -webkit-animation: whFloatPill 14s ease-in-out infinite;
    animation: whFloatPill 14s ease-in-out infinite
}

.wh-bg-pill-2 {
    width: 75px;
    height: 30px;
    bottom: 20%;
    right: 9%;
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.08);
    -webkit-animation: whFloatPill2 12s ease-in-out infinite;
    animation: whFloatPill2 12s ease-in-out infinite
}

.wh-bg-pill-3 {
    width: 60px;
    height: 26px;
    top: 70%;
    left: 5%;
    background: rgba(251, 113, 133, 0.04);
    border: 1px solid rgba(251, 113, 133, 0.06);
    animation: whFloatPill 16s ease-in-out infinite reverse
}

.wh-bg-pill-4 {
    width: 85px;
    height: 32px;
    top: 7%;
    right: 28%;
    background: rgba(34, 197, 94, 0.04);
    border: 1px solid rgba(34, 197, 94, 0.06);
    animation: whFloatPill2 18s ease-in-out infinite reverse
}

.wh-bg-pill-5 {
    width: 50px;
    height: 22px;
    top: 50%;
    left: 30%;
    background: rgba(245, 158, 11, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.06);
    -webkit-animation: whFloatPill 20s ease-in-out infinite;
    animation: whFloatPill 20s ease-in-out infinite
}

.wh-bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none
}

.wh-bg-circle-1 {
    width: 500px;
    height: 500px;
    top: -120px;
    right: -60px;
    border: 1.5px solid rgba(37, 99, 235, 0.08);
    -webkit-animation: whFloat1 20s ease-in-out infinite;
    animation: whFloat1 20s ease-in-out infinite
}

.wh-bg-circle-2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: 8%;
    border: 1.5px solid rgba(167, 139, 250, 0.06);
    -webkit-animation: whFloat2 24s ease-in-out infinite;
    animation: whFloat2 24s ease-in-out infinite
}

.wh-bg-circle-3 {
    width: 200px;
    height: 200px;
    top: 35%;
    left: -40px;
    border: 1.5px solid rgba(251, 113, 133, 0.06);
    -webkit-animation: whFloat3 16s ease-in-out infinite;
    animation: whFloat3 16s ease-in-out infinite
}

.wh-deco {
    position: absolute;
    z-index: 4;
    pointer-events: none
}

.wh-deco-ring-1 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.1);
    top: 22%;
    right: 9%;
    -webkit-animation: whFloat1 10s ease-in-out infinite;
    animation: whFloat1 10s ease-in-out infinite
}

.wh-deco-ring-2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(251, 113, 133, 0.08);
    top: 60%;
    left: 33%;
    -webkit-animation: whFloat3 11s ease-in-out infinite;
    animation: whFloat3 11s ease-in-out infinite
}

.wh-deco-plus {
    top: 11%;
    left: 26%;
    opacity: .2;
    width: 22px;
    height: 22px;
    -webkit-animation: whSpin 35s linear infinite;
    animation: whSpin 35s linear infinite
}

.wh-deco-plus::before, .wh-deco-plus::after {
    content: '';
    position: absolute;
    background: var(--wh-brand);
    border-radius: 2px
}

.wh-deco-plus::before {
    width: 22px;
    height: 3px;
    top: 9.5px;
    left: 0
}

.wh-deco-plus::after {
    width: 3px;
    height: 22px;
    top: 0;
    left: 9.5px
}

.wh-deco-diamond {
    bottom: 26%;
    right: 5%;
    width: 16px;
    height: 16px;
    background: rgba(167, 139, 250, 0.12);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 3px;
    -webkit-animation: whFloat1 9s ease-in-out infinite;
    animation: whFloat1 9s ease-in-out infinite
}

.wh-deco-tri {
    top: 78%;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 15px solid rgba(34, 197, 94, 0.1);
    -webkit-animation: whFloat2 13s ease-in-out infinite;
    animation: whFloat2 13s ease-in-out infinite
}

.wh-deco-c1 {
    top: 6%;
    right: 38%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(251, 113, 133, 0.18);
    -webkit-animation: whFloat3 8s ease-in-out infinite;
    animation: whFloat3 8s ease-in-out infinite
}

.wh-deco-c2 {
    bottom: 36%;
    right: 13%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    -webkit-animation: whFloat1 11s ease-in-out infinite;
    animation: whFloat1 11s ease-in-out infinite
}

.wh-deco-sq {
    top: 44%;
    left: 2.5%;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    border: 2px solid rgba(245, 158, 11, 0.12);
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
    -webkit-animation: whFloat2 10s ease-in-out infinite;
    animation: whFloat2 10s ease-in-out infinite
}

.wh-deco-hex {
    width: 42px;
    height: 48px;
    top: 13%;
    left: 5%;
    opacity: .12;
    -webkit-animation: whFloat3 12s ease-in-out infinite;
    animation: whFloat3 12s ease-in-out infinite
}

.wh-deco-hex svg {
    width: 100%;
    height: 100%
}

.wh-deco-x {
    top: 85%;
    left: 25%;
    width: 16px;
    height: 16px;
    opacity: .12;
    animation: whSpin 40s linear infinite reverse
}

.wh-deco-x::before, .wh-deco-x::after {
    content: '';
    position: absolute;
    background: var(--wh-violet);
    border-radius: 1px
}

.wh-deco-x::before {
    width: 16px;
    height: 2.5px;
    top: 6.75px;
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.wh-deco-x::after {
    width: 16px;
    height: 2.5px;
    top: 6.75px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.wh-bg-grain {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    mix-blend-mode: multiply
}

.wh-bg-grain canvas {
    width: 100%;
    height: 100%
}

.wh-bg-vig {
    position: absolute;
    inset: 0;
    z-index: 7;
    pointer-events: none;
    background: -o-radial-gradient(50% 48%, ellipse 82% 78%, transparent 40%, rgba(222, 232, 253, 0.6) 100%);
    background: radial-gradient(ellipse 82% 78% at 50% 48%, transparent 40%, rgba(222, 232, 253, 0.6) 100%)
}

.wh-inner {
    position: relative;
    z-index: 10;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:1fr clamp(36px, 5.5vw, 88px) 1.1fr;
    grid-template-columns:1fr 1.1fr;
    gap: clamp(36px, 5.5vw, 88px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1340px;
    margin: 0 auto;
    width: 100%;
    padding: 0 clamp(16px, 4vw, 60px)
}

.wh-content {
    opacity: 0;
    -webkit-animation: whFadeUp .6s cubic-bezier(.16, .84, .44, 1) .1s forwards;
    animation: whFadeUp .6s cubic-bezier(.16, .84, .44, 1) .1s forwards
}

.wh-pill {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 999px;
    padding: 6px 16px 6px 7px;
    margin-bottom: 30px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--wh-text-tertiary);
    -webkit-box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.5) inset
}

.wh-pill-ic {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: -o-linear-gradient(315deg, var(--wh-brand), #7DD3FC);
    background: linear-gradient(135deg, var(--wh-brand), #7DD3FC);
    display: -ms-grid;
    display: grid;
    place-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #fff;
    font-size: 13px
}

.wh-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.035em;
    color: var(--wh-dark);
    margin-bottom: 22px;
}

.wh-hero h1 em {
    font-style: normal;
    position: relative;
    display: inline-block;
}

.wh-hero h1 em::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 4px;
    height: 14px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(37, 99, 235, 0.28)), to(rgba(37, 99, 235, 0.12)));
    background: -o-linear-gradient(left, rgba(37, 99, 235, 0.28), rgba(37, 99, 235, 0.12));
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.28), rgba(37, 99, 235, 0.12));
    border-radius: 4px;
    z-index: -1
}

.wh-hook {
    font-size: clamp(1rem, 1.35vw, 1.13rem);
    font-weight: 600;
    color: var(--wh-text-secondary);
    line-height: 1.55;
    margin-bottom: 14px
}

.wh-desc {
    font-size: .93rem;
    line-height: 1.78;
    color: var(--wh-text-muted);
    margin-bottom: 36px;
    max-width: 470px
}

.wh-cta-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.wh-btn-primary {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    background: #1B2540;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 28px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: visible;
    -webkit-transition: background .18s, -webkit-box-shadow .18s, -webkit-transform .12s;
    transition: background .18s, -webkit-box-shadow .18s, -webkit-transform .12s;
    -o-transition: background .18s, box-shadow .18s, transform .12s;
    transition: background .18s, box-shadow .18s, transform .12s;
    transition: background .18s, box-shadow .18s, transform .12s, -webkit-box-shadow .18s, -webkit-transform .12s
}

.wh-btn-primary::after {
    content: '';
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: -6px;
    height: 60%;
    background: -o-linear-gradient(315deg, var(--wh-brand), var(--wh-violet), var(--wh-rose));
    background: linear-gradient(135deg, var(--wh-brand), var(--wh-violet), var(--wh-rose));
    border-radius: 12px;
    -webkit-filter: blur(16px);
    filter: blur(16px);
    opacity: .45;
    z-index: -1;
    -webkit-transition: opacity .25s, -webkit-filter .25s;
    transition: opacity .25s, -webkit-filter .25s;
    -o-transition: opacity .25s, filter .25s;
    transition: opacity .25s, filter .25s;
    transition: opacity .25s, filter .25s, -webkit-filter .25s
}

.wh-btn-primary:hover {
    background: #263354;
    -webkit-box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px)
}

.wh-btn-primary:hover::after {
    opacity: .65;
    -webkit-filter: blur(20px);
    filter: blur(20px)
}

.wh-btn-primary:active {
    background: #0F172A;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.wh-btn-primary i {
    font-size: 16px;
    -webkit-transition: -webkit-transform .2s cubic-bezier(.34, 1.56, .64, 1);
    transition: -webkit-transform .2s cubic-bezier(.34, 1.56, .64, 1);
    -o-transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
    transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
    transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), -webkit-transform .2s cubic-bezier(.34, 1.56, .64, 1)
}

.wh-btn-primary:hover i {
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px)
}

.wh-btn-secondary {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--wh-text-secondary);
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 14px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: background .18s, border-color .18s, -webkit-transform .12s;
    transition: background .18s, border-color .18s, -webkit-transform .12s;
    -o-transition: background .18s, border-color .18s, transform .12s;
    transition: background .18s, border-color .18s, transform .12s;
    transition: background .18s, border-color .18s, transform .12s, -webkit-transform .12s
}

.wh-btn-secondary:hover {
    background: #fff;
    border-color: #CBD5E1;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px)
}

.wh-btn-secondary i {
    font-size: 20px;
    color: var(--wh-brand)
}

.wh-trust-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    opacity: 0;
    -webkit-animation: whFadeUp .5s ease .7s forwards;
    animation: whFadeUp .5s ease .7s forwards
}

.wh-trust-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: .76rem;
    font-weight: 500;
    color: var(--wh-text-muted)
}

.wh-trust-item i {
    font-size: 15px;
    color: var(--wh-green)
}

.wh-social-proof {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    opacity: 0;
    -webkit-animation: whFadeUp .6s cubic-bezier(.16, .84, .44, 1) .85s forwards;
    animation: whFadeUp .6s cubic-bezier(.16, .84, .44, 1) .85s forwards
}

.wh-avatars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.wh-avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.85);
    margin-left: -9px;
    display: block;
    -webkit-box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08)
}

.wh-avatars span:first-child {
    margin-left: 0
}

.wh-av1 {
    background: -o-linear-gradient(315deg, #22a7e6, #22a7e6);
    background: linear-gradient(135deg, #22a7e6, #22a7e6)
}

.wh-av2 {
    background: -o-linear-gradient(315deg, #A78BFA, #8B5CF6);
    background: linear-gradient(135deg, #A78BFA, #8B5CF6)
}

.wh-av3 {
    background: -o-linear-gradient(315deg, #FB7185, #E11D48);
    background: linear-gradient(135deg, #FB7185, #E11D48)
}

.wh-av4 {
    background: -o-linear-gradient(315deg, #34D399, #059669);
    background: linear-gradient(135deg, #34D399, #059669)
}

.wh-av5 {
    background: -o-linear-gradient(315deg, #FBBF24, #D97706);
    background: linear-gradient(135deg, #FBBF24, #D97706)
}

.wh-sp-text {
    font-size: .8rem;
    color: var(--wh-text-muted);
    line-height: 1.35
}

.wh-sp-text strong {
    color: var(--wh-text-secondary);
    font-weight: 700
}

.wh-mini-features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-top: 18px;
    opacity: 0;
    -webkit-animation: whFadeUp .6s cubic-bezier(.16, .84, .44, 1) .95s forwards;
    animation: whFadeUp .6s cubic-bezier(.16, .84, .44, 1) .95s forwards
}

.wh-mini-feat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--wh-text-tertiary)
}

.wh-mini-feat i {
    font-size: 16px
}

.wh-mf-brand i {
    color: var(--wh-brand)
}

.wh-mf-green i {
    color: var(--wh-green)
}

.wh-mf-violet i {
    color: var(--wh-violet)
}

.wh-visual {
    position: relative;
    opacity: 0;
    -webkit-animation: whScaleIn .85s cubic-bezier(.16, .84, .44, 1) .25s forwards;
    animation: whScaleIn .85s cubic-bezier(.16, .84, .44, 1) .25s forwards
}

.wh-vis-wrap {
    position: relative;
    max-width: 520px;
    margin: 0 auto
}

.wh-vis-bg-shape {
    position: absolute;
    inset: -35px;
    z-index: 0;
    background: -o-linear-gradient(305deg, rgba(37, 99, 235, 0.15), rgba(167, 139, 250, 0.1), rgba(251, 113, 133, 0.07));
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.15), rgba(167, 139, 250, 0.1), rgba(251, 113, 133, 0.07));
    -webkit-animation: whMorphBlob 16s ease-in-out infinite;
    animation: whMorphBlob 16s ease-in-out infinite;
    -webkit-filter: blur(45px);
    filter: blur(45px)
}

.wh-vis-accent {
    position: absolute;
    width: 65%;
    height: 60%;
    bottom: -18%;
    right: -12%;
    z-index: 0;
    background: -o-linear-gradient(315deg, rgba(167, 139, 250, 0.1), rgba(37, 99, 235, 0.06));
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(37, 99, 235, 0.06));
    border-radius: 50%;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    -webkit-animation: whOrbMove3 14s ease-in-out infinite;
    animation: whOrbMove3 14s ease-in-out infinite
}

.wh-img-blob {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 0.85;
    -webkit-clip-path: url(#whBlobClip);
    clip-path: url(#whBlobClip);
    overflow: hidden
}

.wh-img-blob img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

.wh-blob-ring {
    position: absolute;
    inset: -10px;
    z-index: 0;
    opacity: .3
}

.wh-blob-ring svg {
    width: 100%;
    height: 100%
}

.wh-vis-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 2
}

.wh-vis-dot-1 {
    width: 12px;
    height: 12px;
    top: 6%;
    left: -5%;
    background: var(--wh-brand);
    opacity: .18;
    -webkit-animation: whFloat1 7s ease-in-out infinite;
    animation: whFloat1 7s ease-in-out infinite
}

.wh-vis-dot-2 {
    width: 8px;
    height: 8px;
    top: 28%;
    right: -7%;
    background: var(--wh-violet);
    opacity: .22;
    -webkit-animation: whFloat3 9s ease-in-out infinite;
    animation: whFloat3 9s ease-in-out infinite
}

.wh-vis-dot-3 {
    width: 10px;
    height: 10px;
    bottom: 13%;
    left: -6%;
    background: var(--wh-rose);
    opacity: .18;
    -webkit-animation: whFloat2 8s ease-in-out infinite;
    animation: whFloat2 8s ease-in-out infinite
}

.wh-vis-dot-4 {
    width: 6px;
    height: 6px;
    bottom: 38%;
    right: -4%;
    background: var(--wh-green);
    opacity: .18;
    -webkit-animation: whFloat1 10s ease-in-out infinite;
    animation: whFloat1 10s ease-in-out infinite
}

.wh-glass {
    position: absolute;
    z-index: 12;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.02), 0 4px 12px rgba(15, 23, 42, 0.04), 0 16px 48px rgba(15, 23, 42, 0.06);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.02), 0 4px 12px rgba(15, 23, 42, 0.04), 0 16px 48px rgba(15, 23, 42, 0.06);
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s
}

.wh-glass:hover {
    -webkit-box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.03), 0 8px 20px rgba(15, 23, 42, 0.06), 0 24px 56px rgba(15, 23, 42, 0.08);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.03), 0 8px 20px rgba(15, 23, 42, 0.06), 0 24px 56px rgba(15, 23, 42, 0.08)
}

.wh-chat-fl {
    bottom: 2%;
    left: -14%;
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    -webkit-box-shadow: 0 4px 24px rgba(15, 23, 42, 0.1), 0 1px 3px rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.1), 0 1px 3px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
    -webkit-animation: whGlassFadeIn .6s ease 1s forwards;
    animation: whGlassFadeIn .6s ease 1s forwards
}

.wh-chat-fl::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: -o-linear-gradient(315deg, rgba(37, 99, 235, 0.12), rgba(167, 139, 250, 0.06), rgba(255, 255, 255, 0));
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(167, 139, 250, 0.06), rgba(255, 255, 255, 0));
    z-index: -1
}

.wh-ch-head {
    background: -o-linear-gradient(315deg, var(--wh-brand), #22a7e6);
    background: linear-gradient(135deg, var(--wh-brand), #22a7e6);
    padding: 14px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

.wh-ch-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: -ms-grid;
    display: grid;
    place-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #fff;
    font-size: 15px
}

.wh-ch-name {
    font-weight: 700;
    font-size: .78rem;
    color: #fff;
    letter-spacing: .01em
}

.wh-ch-status {
    font-size: .62rem;
    color: rgba(255, 255, 255, .78);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    margin-top: 1px
}

.wh-ch-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #86EFAC;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.wh-ch-dot::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: #86EFAC;
    -webkit-animation: whRingPulse 2.5s ease-out infinite;
    animation: whRingPulse 2.5s ease-out infinite
}

.wh-ch-body {
    padding: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    background: #FAFBFC;
    min-height: 90px
}

.wh-msg {
    max-width: 86%;
    padding: 9px 13px;
    font-size: .74rem;
    line-height: 1.5;
    border-radius: 14px;
    opacity: 0;
    -webkit-animation: whPopIn .35s cubic-bezier(.16, .84, .44, 1) forwards;
    animation: whPopIn .35s cubic-bezier(.16, .84, .44, 1) forwards
}

.wh-msg-b {
    background: #fff;
    color: var(--wh-text-secondary);
    -ms-flex-item-align: start;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06)
}

.wh-msg-u {
    background: var(--wh-brand);
    color: #fff;
    -ms-flex-item-align: end;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    -webkit-box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25)
}

.wh-m1 {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s
}

.wh-m2 {
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s
}

.wh-td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    padding: 10px 14px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    opacity: 0;
    -webkit-animation: whPopIn .3s ease 2.8s forwards;
    animation: whPopIn .3s ease 2.8s forwards
}

.wh-td.wh-hid {
    display: none
}

.wh-td span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--wh-brand)
}

.wh-td span:nth-child(1) {
    -webkit-animation: whDotPulse 1.2s ease infinite 0s;
    animation: whDotPulse 1.2s ease infinite 0s
}

.wh-td span:nth-child(2) {
    -webkit-animation: whDotPulse 1.2s ease infinite .15s;
    animation: whDotPulse 1.2s ease infinite .15s
}

.wh-td span:nth-child(3) {
    -webkit-animation: whDotPulse 1.2s ease infinite .3s;
    animation: whDotPulse 1.2s ease infinite .3s
}

.wh-ch-foot {
    padding: 10px 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: #fff
}

.wh-ch-finp {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 32px;
    border-radius: 8px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 0 10px;
    font-size: .68rem;
    color: #94a3b8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.wh-ch-send {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--wh-brand);
    display: -ms-grid;
    display: grid;
    place-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #fff;
    font-size: 14px
}

.wh-fl-stat {
    top: -6%;
    right: -6%;
    border-radius: 16px;
    padding: 14px 18px;
    opacity: 0;
    -webkit-animation: whGlassFadeIn .5s ease 1.4s forwards;
    animation: whGlassFadeIn .5s ease 1.4s forwards
}

.wh-fl-stat-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px
}

.wh-fl-stat-ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: -o-linear-gradient(315deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.04));
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.04));
    display: -ms-grid;
    display: grid;
    place-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: var(--wh-green-dark);
    font-size: 18px
}

.wh-fl-stat-lb {
    font-size: .64rem;
    font-weight: 600;
    color: var(--wh-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em
}

.wh-fl-stat-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--wh-green-dark)
}

.wh-fl-stat-bar {
    height: 4px;
    border-radius: 2px;
    background: rgba(34, 197, 94, 0.12);
    overflow: hidden;
    margin-top: 4px
}

.wh-fl-stat-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    background: -webkit-gradient(linear, left top, right top, from(var(--wh-green)), to(#34D399));
    background: -o-linear-gradient(left, var(--wh-green), #34D399);
    background: linear-gradient(90deg, var(--wh-green), #34D399);
    -webkit-animation: whBarFill 1.5s cubic-bezier(.16, .84, .44, 1) 2s forwards;
    animation: whBarFill 1.5s cubic-bezier(.16, .84, .44, 1) 2s forwards
}

.wh-fl-ch {
    bottom: 22%;
    left: -18%;
    border-radius: 999px;
    padding: 8px 16px 8px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    opacity: 0;
    -webkit-animation: whGlassFadeIn .5s ease 1.7s forwards;
    animation: whGlassFadeIn .5s ease 1.7s forwards
}

.wh-ci {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 14px
}

.wh-ci-w {
    background: rgba(37, 99, 235, 0.1);
    color: var(--wh-brand)
}

.wh-ci-m {
    background: rgba(167, 139, 250, 0.1);
    color: #7c3aed
}

.wh-ci-g {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a
}

.wh-ci-i {
    background: rgba(251, 113, 133, 0.1);
    color: #e11d48
}

.wh-ci-e {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706
}

.wh-ci-label {
    font-size: .7rem;
    font-weight: 600;
    color: var(--wh-text-muted);
    margin-left: 2px;
    white-space: nowrap
}

.wh-fl-time {
    top: 44%;
    right: -10%;
    border-radius: 14px;
    padding: 10px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    -webkit-animation: whGlassFadeIn .5s ease 1.55s forwards;
    animation: whGlassFadeIn .5s ease 1.55s forwards
}

.wh-fl-time-ic {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: -o-linear-gradient(315deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.04));
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.04));
    display: -ms-grid;
    display: grid;
    place-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: var(--wh-amber);
    font-size: 17px
}

.wh-fl-time-detail {
    line-height: 1.3
}

.wh-fl-time-lb {
    font-size: .6rem;
    font-weight: 600;
    color: var(--wh-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em
}

.wh-fl-time-val {
    font-size: .95rem;
    font-weight: 800;
    color: #d97706
}

.wh-fl-ai {
    top: 76%;
    right: 2%;
    border-radius: 999px;
    padding: 8px 16px 8px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    -webkit-animation: whGlassFadeIn .5s ease 1.85s forwards;
    animation: whGlassFadeIn .5s ease 1.85s forwards
}

.wh-fl-ai-ic {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: -o-linear-gradient(315deg, var(--wh-brand), #7DD3FC);
    background: linear-gradient(135deg, var(--wh-brand), #7DD3FC);
    display: -ms-grid;
    display: grid;
    place-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #fff;
    font-size: 14px
}

.wh-fl-ai-tx {
    font-size: .72rem;
    font-weight: 600;
    color: var(--wh-text-secondary)
}

.wh-fl-ai-tx strong {
    color: var(--wh-brand-active)
}

@media (max-width: 1100px) {
    .wh-inner {
        -ms-grid-columns:1fr;
        grid-template-columns:1fr;
        text-align: center;
        gap: 48px;
        padding-top: 56px
    }

    .wh-content {
        max-width: 580px;
        margin: 0 auto
    }

    .wh-desc {
        margin-left: auto;
        margin-right: auto
    }

    .wh-cta-btns {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .wh-trust-bar {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .wh-social-proof {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .wh-visual {
        max-width: 420px;
        margin: 0 auto
    }

    .wh-fl-time {
        display: none
    }

    .wh-fl-stat {
        right: -3%;
        top: -4%
    }

    .wh-fl-ch {
        left: -5%
    }

    .wh-fl-ai {
        right: 0
    }

    .wh-chat-fl {
        left: -6%;
        width: 250px
    }
}

@media (max-width: 768px) {
    .wh-inner {
        padding: 44px 20px 40px;
        gap: 40px
    }

    .wh-visual {
        max-width: 340px
    }

    .wh-vis-wrap {
        padding: 20px 8px 36px
    }

    .wh-chat-fl {
        left: -2%;
        width: 220px;
        bottom: -10px
    }

    .wh-fl-stat {
        right: -1%;
        top: -3%;
        padding: 11px 14px
    }

    .wh-fl-ch {
        left: 0;
        bottom: 18%
    }

    .wh-fl-ai {
        display: none
    }

    .wh-deco-ring-1, .wh-deco-ring-2, .wh-bg-circle-1, .wh-bg-circle-2, .wh-bg-circle-3 {
        display: none
    }

    .wh-bg-pill {
        display: none
    }

    .wh-bg-aurora, .wh-bg-mesh {
        display: none
    }

    .wh-aurora, .wh-mesh {
        display: none
    }

    .wh-bg-grain {
        display: none
    }

    .wh-vis-bg-shape {
        -webkit-animation: none;
        animation: none
    }

    .wh-vis-accent {
        -webkit-animation: none;
        animation: none
    }

    .wh-trust-bar {
        gap: 14px
    }
}

@media (max-width: 520px) {
    .wh-inner {
        padding: 36px 16px 32px;
        gap: 36px
    }

    .wh-hero h1 {
        font-size: 1.75rem;
        line-height: 1.18;
        letter-spacing: -.025em
    }

    .wh-hook {
        font-size: .95rem
    }

    .wh-desc {
        font-size: .85rem;
        margin-bottom: 24px
    }

    .wh-cta-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 10px
    }

    .wh-btn-primary {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: .88rem
    }

    .wh-btn-secondary {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: .84rem
    }

    .wh-trust-bar {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 10px
    }

    .wh-trust-item {
        font-size: .7rem
    }

    .wh-visual {
        max-width: 260px;
        margin-bottom: 20px;
        display:none !important;
    }

    .wh-vis-wrap {
        overflow: visible;
        padding: 24px 10px 40px
    }

    .wh-fl-ch {
        display: none
    }

    .wh-chat-fl {
        width: 170px;
        left: -6px;
        bottom: -16px;
        border-radius: 12px
    }

    .wh-ch-body {
        padding: 8px
    }

    .wh-msg {
        font-size: .65rem;
        padding: 6px 9px;
        border-radius: 10px
    }

    .wh-ch-head {
        padding: 9px 11px
    }

    .wh-ch-av {
        width: 24px;
        height: 24px;
        border-radius: 6px;
        font-size: 12px
    }

    .wh-ch-name {
        font-size: .7rem
    }

    .wh-ch-status {
        font-size: .58rem
    }

    .wh-ch-foot {
        padding: 7px 10px
    }

    .wh-ch-finp {
        height: 28px;
        font-size: .6rem
    }

    .wh-ch-send {
        width: 28px;
        height: 28px;
        font-size: 12px
    }

    .wh-fl-stat {
        padding: 8px 10px;
        right: -6px;
        top: -10px;
        border-radius: 12px
    }

    .wh-fl-stat-ic {
        width: 28px;
        height: 28px;
        border-radius: 7px;
        font-size: 14px
    }

    .wh-fl-stat-val {
        font-size: .95rem
    }

    .wh-fl-stat-lb {
        font-size: .56rem
    }

    .wh-fl-stat-bar {
        display: none
    }

    .wh-deco {
        display: none
    }

    .wh-vis-dot {
        display: none
    }

    .wh-vis-bg-shape {
        inset: -20px
    }

    .wh-social-proof {
        gap: 10px
    }

    .wh-avatars span {
        width: 28px;
        height: 28px
    }
}

@media (max-width: 380px) {
    .wh-hero h1 {
        font-size: 1.5rem
    }

    .wh-chat-fl {
        width: 150px
    }

    .wh-fl-stat {
        padding: 6px 8px
    }

    .wh-fl-stat-ic {
        width: 24px;
        height: 24px;
        font-size: 12px
    }

    .wh-fl-stat-val {
        font-size: .85rem
    }
}

/* ══════════════════════════════════════════
   PHASE 4 - How It Works Section
   ══════════════════════════════════════════ */

/* ── How it works - dark timeline ── */
.how-it-works {
  position: relative;
  padding: 100px 0 90px;
  background: #0b1120;
  overflow: hidden;
}
.how-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.how-bg-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  background-size: 200px;
}
.how-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.how-bg-orb-1 {
  width: 500px; height: 500px;
  top: -100px; left: -120px;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
}
.how-bg-orb-2 {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(167,139,250,0.12), transparent 70%);
}

.how-it-works .sec-head h2,
.how-title {
  color: #f1f5f9;
}
.how-title span {
  background: linear-gradient(135deg, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-tag-glow {
  background: rgba(37,99,235,0.12) !important;
  color: #7dd3fc !important;
  border-color: rgba(37,99,235,0.25) !important;
}

/* Timeline layout */
.how-timeline {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.how-timeline-line {
  display: none; /* visible only on desktop via pseudo on cards */
}

/* Cards */
.how-card {
  position: relative;
  flex: 1;
  max-width: 320px;
}
.how-card-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22a7e6, #8B5CF6);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 20px rgba(37,99,235,0.4);
}
.how-card {
  display: flex;
  flex-direction: column;
}
.how-card-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 28px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: border-color .3s, transform .3s, box-shadow .3s;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how-card-inner:hover {
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.12);
}
.how-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(139,92,246,0.1));
  color: #7dd3fc;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.how-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}
.how-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 16px;
}
.how-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #7dd3fc;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 20px;
  padding: 4px 12px;
}

/* Connector dots between cards (desktop) */
.how-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%; right: -20px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(37,99,235,0.35);
  box-shadow: 0 0 8px rgba(37,99,235,0.3);
}

/* Bottom CTA area */
.how-bottom {
  text-align: center;
  margin-top: 48px;
}
.how-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22a7e6, #8B5CF6);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(37,99,235,0.3);
}
.how-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.4);
}
.how-micro {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .how-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .how-card {
    max-width: 100%;
    width: 100%;
  }
  .how-card:not(:last-child)::after {
    display: none;
  }
}

/* ══════════════════════════════════════════
   PHASE 5 - Omnichannel padding reduction
   ══════════════════════════════════════════ */

.omni {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* ══════════════════════════════════════════
   PHASE 6 - Problems warning tag + card borders
   ══════════════════════════════════════════ */

.sec-tag.sec-tag-warn {
  color: #D97706;
  background: rgba(217, 119, 6, 0.07);
  border-color: rgba(217, 119, 6, 0.12);
}

.prob-item:nth-child(1) { border-top: 3px solid #F59E0B; }
.prob-item:nth-child(2) { border-top: 3px solid #EF4444; }
.prob-item:nth-child(3) { border-top: 3px solid #22a7e6; }

/* ══════════════════════════════════════════
   PHASE 7 - Benefits accent border + proof line
   ══════════════════════════════════════════ */

.benefit-card {
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-left: 4px solid #22a7e6;
  background: rgba(255, 255, 255, 0.8);
}

.benefit-card-ico {
  background: rgba(37, 99, 235, 0.12);
}

.benefit-card-ico i {
  color: #22a7e6;
  font-size: 26px;
}

.benefits-cta {
  margin-top: 40px;
}

.benefits-proof {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ══════════════════════════════════════════
   PHASE 8 - Pricing toggle + dark card + upsell
   ══════════════════════════════════════════ */

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.toggle-label {
  font-size: 14.5px;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s;
}

.toggle-label.active {
  color: #0f172a;
}

.toggle-save {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: #e2e8f0;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  padding: 0;
}

.toggle-switch.active {
  background: #22a7e6;
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 0.25s;
}

.toggle-switch.active .toggle-knob {
  transform: translateX(24px);
}

/* BIZNIS dark premium card */
.p-card-dark {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.p-card-dark h3 { color: #fff; }
.p-card-dark .p-card-desc { color: #94a3b8; }
.p-card-dark .amount { color: #fff; }
.p-card-dark .period { color: #94a3b8; }
.p-card-dark .p-card-unlimited {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.15);
}
.p-card-dark .p-card-ai-highlight {
  background: rgba(167, 139, 250, 0.12);
  color: #a78bfa;
  border-color: rgba(167, 139, 250, 0.2);
}
.p-card-dark ul li { color: #cbd5e1; }
.p-card-dark ul li i.ph-check { color: #34d399; }
.p-card-dark .p-card-foot .btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
.p-card-dark .p-card-foot .btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Equal height pricing cards */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.p-card {
  display: flex;
  flex-direction: column;
}

.p-card-body {
  flex: 1;
}

.p-card-foot {
  margin-top: auto;
}

/* Plan upsell link */
.plan-upsell {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  color: #22a7e6;
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s;
}

.plan-upsell:hover {
  color: #0284C7;
}

@media (max-width: 768px) {
  .price-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .p-card.popular {
    order: -1;
  }
}

/* ══════════════════════════════════════════
   PHASE 14 - Section padding normalization
   ══════════════════════════════════════════ */

.how-it-works { padding: 80px 0; }
.omni { padding: 80px 0; }
.problems { padding: 80px 0; }
.benefits { padding: 80px 0; }
.benefits-dark { padding: 40px 0 80px; }
.pricing { padding: 90px 0; }
.testim { padding: 80px 0; }
.faq { padding: 80px 0; }
.kontakt { padding: 80px 0; }
.final-cta { padding: 70px 0; }

@media (max-width: 768px) {
  .how-it-works,
  .omni,
  .problems,
  .benefits,
  .pricing,
  .testim,
  .faq,
  .kontakt,
  .final-cta {
    padding: 56px 0;
  }
  .benefits-dark {
    padding: 24px 0 56px;
  }
}

/* ══════════════════════════════════════════
   PHASE 15 - Mobile-specific fixes
   ══════════════════════════════════════════ */

/* MOB-2: Minimum tap targets */
@media (max-width: 768px) {
  .faq-q {
    min-height: 48px;
    padding: 14px 16px;
  }

  .header-nav a,
  .mnav-links a.ml {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .kontakt-card {
    min-height: 56px;
    padding: 16px;
  }

  .wh-trust-item {
    padding: 4px 0;
  }

  .btn,
  .wh-btn-primary,
  .wh-btn-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* MOB-3: Mobile hero layout */
@media (max-width: 768px) {
  .wh-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .wh-content { order: 1; }

  .wh-visual {
    order: 2;
    display: flex;
    justify-content: center;
  }

  .wh-hero {
    padding: 100px 0 40px;
    min-height: auto;
  }

  .wh-pill {
    margin: 0 auto 16px;
  }

  .wh-cta-btns {
    flex-direction: column;
    gap: 12px;
  }

  .wh-cta-btns a {
    width: 100%;
    justify-content: center;
  }

  .wh-trust-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .wh-chat-fl {
    width: 300px;
  }
}

/* ══════════════════════════════════════════
   PHASE 16 - "Lost customers" dark editorial
   ══════════════════════════════════════════ */

.lost {
    padding: 110px 0 20px;
    position: relative;
    overflow: visible;
    background: #0b1120;
}

/* ── Layered background ── */
.lost-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lost-bg-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    background-size: 180px;
}

.lost-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.lost-glow-1 {
    width: 600px;
    height: 400px;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(239, 68, 68, .1), transparent 70%);
    animation: lostGlow1 14s ease-in-out infinite alternate;
}

.lost-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, .06), transparent 70%);
    animation: lostGlow2 18s ease-in-out infinite alternate;
}

@keyframes lostGlow1 {
    0%   { opacity: .6; transform: translateX(-50%) scale(1); }
    100% { opacity: 1; transform: translateX(-45%) scale(1.15); }
}

@keyframes lostGlow2 {
    0%   { opacity: .5; transform: scale(1); }
    100% { opacity: .8; transform: scale(1.2) translateX(-30px); }
}

/* ── Header ── */
.lost-head {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
    z-index: 2;
}

.lost-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #F87171;
    margin-bottom: 20px;
}

.lost-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: #F9FAFB;
}

.lost-head h2 span {
    background: linear-gradient(135deg, #F87171, #FB923C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Stats row ── */
.lost-stats {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 2;
}

.lost-stat {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

/* ── Vertical divider ── */
.lost-stat-div {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(180deg, transparent, rgba(248, 113, 113, .25) 30%, rgba(248, 113, 113, .25) 70%, transparent);
    flex-shrink: 0;
}

/* ── Animated number ── */
.lost-stat-num {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(4rem, 7vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: 1;
    color: #fff;
    display: inline-block;
    transition: color .4s;
}

.lost-stat:hover .lost-stat-num {
    color: #F87171;
}

/* compound number (0-8) */
.lost-stat-compound {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.lost-stat-pre {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: clamp(4rem, 7vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: 1;
    color: #fff;
    transition: color .4s;
}

.lost-stat:hover .lost-stat-pre {
    color: #F87171;
}

/* unit suffix */
.lost-stat-unit {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .02em;
    margin-top: 4px;
    text-align: center;
}

/* label */
.lost-stat-label {
    font-size: .95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    line-height: 1.4;
    margin-top: 16px;
}

/* description */
.lost-stat-desc {
    font-size: .84rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.6;
    margin-top: 10px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

.lost-stat-desc strong {
    color: rgba(255, 255, 255, .6);
    font-weight: 700;
}

/* ── Comparison bar ── */
.lost-compare {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 540px;
    margin: 0 auto 48px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.lost-compare-side {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
}

.lost-compare-side i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.lost-compare-side span {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .7;
    margin-bottom: 2px;
}

.lost-compare-side strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
}

.lost-compare-bad {
    color: #FCA5A5;
}

.lost-compare-bad strong {
    color: #F87171;
}

.lost-compare-good {
    color: #86EFAC;
}

.lost-compare-good strong {
    color: #4ADE80;
}

.lost-compare-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, .2);
    font-size: .9rem;
    background: rgba(255, 255, 255, .03);
    border-left: 1px solid rgba(255, 255, 255, .06);
    border-right: 1px solid rgba(255, 255, 255, .06);
}

/* ── CTA ── */
.lost-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ── Counter animation ── */
.lost-stat-num {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s, transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lost-stat.vis .lost-stat-num {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .lost {
        padding: 64px 0;
    }

    .lost-head {
        margin-bottom: 48px;
    }

    .lost-stats {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 48px;
    }

    .lost-stat {
        padding: 0 20px;
    }

    .lost-stat-div {
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(248, 113, 113, .25), transparent);
        align-self: center;
    }

    .lost-stat-num,
    .lost-stat-pre {
        font-size: 4.5rem;
    }

    .lost-compare {
        flex-direction: column;
        max-width: 320px;
    }

    .lost-compare-divider {
        width: 100%;
        height: 40px;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, .06);
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .lost-compare-divider i {
        transform: rotate(90deg);
    }
}


/* ── Omni: more bottom padding for breathing room ── */
.omni {
    padding-bottom: 110px;
}

/* ── Lost section: now contains benefits too ── */
.lost {
    padding-bottom: 80px;
}

/* benefits-dark is now a wrapper div inside .lost, not a section */
.lost .benefits-dark {
    background: none;
    overflow: visible;
    padding: 0;
}

/* Spacing after exit waves protrude into light sections */
.lost + .pricing {
    padding-top: 110px;
}

.how-it-works + script + .testim,
.how-it-works + .testim {
    padding-top: 110px;
}

/* ── Section wave dividers (inline in dark sections) ── */
.sec-wave-enter,
.sec-wave-exit {
    position: absolute;
    left: 0;
    width: 100%;
    height: 72px;
    display: block;
    z-index: 3;
    pointer-events: none;
}

.sec-wave-enter {
    top: 0;
    transform: translateY(-99%);
}

.sec-wave-exit {
    bottom: 0;
    transform: translateY(99%);
}

/* Sections with waves need overflow visible */
.omni,
.lost,
.how-it-works {
    overflow: visible;
}

/* Clip frost orbs inside omni (since omni is now overflow:visible) */
.omni-frost-bg {
    overflow: hidden;
}

/* Merged lost+benefits: bridge spacing */
.lost-benefits-bridge {
    height: 60px;
}

@media (max-width: 768px) {
    .sec-wave-enter,
    .sec-wave-exit {
        height: 48px;
    }

    .lost-benefits-bridge {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .sec-wave-enter,
    .sec-wave-exit {
        height: 36px;
    }

    .lost-benefits-bridge {
        height: 28px;
    }
}

/* ══════════════════════════════════════════
   PHASE 17 - Header mobile redesign
   ══════════════════════════════════════════ */

/* Fix mobile-nav z-index above header */
.mobile-nav {
    z-index: 1100;
}

/* Better burger button - rounded pill style */
.burger {
    border-radius: var(--r-full);
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    border: 1.5px solid rgba(0, 0, 0, .1);
    background: rgba(0, 0, 0, .03);
}

.burger:hover {
    background: rgba(0, 0, 0, .07);
    border-color: rgba(0, 0, 0, .15);
}

.header.dark .burger {
    color: #fff;
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .08);
}

.header.dark .burger:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .25);
}

.header.light .burger {
    color: var(--text-dark);
    border-color: rgba(0, 0, 0, .1);
    background: rgba(0, 0, 0, .03);
}

.header.light .burger:hover {
    background: rgba(0, 0, 0, .07);
    border-color: rgba(0, 0, 0, .15);
}

/* Mobile nav logo - dark/light support */
.mnav-logo {
    display: flex;
    align-items: center;
}

.mnav-logo img {
    height: 26px;
}

/* Auth section in mobile nav */
.mnav-auth {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px;
}

.mnav-auth-link {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 14px 16px;
    border-radius: var(--r-md);
    transition: all .2s;
    text-decoration: none;
}

.mnav-auth-link:hover,
.mnav-auth-link:active {
    background: rgba(0, 0, 0, .04);
    transform: translateX(4px);
}

.mnav-auth-link i {
    font-size: 1.15rem;
    color: var(--accent);
    opacity: .65;
    width: 24px;
    text-align: center;
}

.mnav-auth-register {
    color: var(--accent);
    font-weight: 700;
}

.mnav-auth-register i {
    opacity: 1;
}

.mnav-auth-logout {
    color: var(--text-muted);
    font-size: .92rem;
}

.mnav-auth-logout:hover {
    color: var(--red);
}

/* ══════════════════════════════════════════
   PHASE 18 - Button border-radius consistency
   ══════════════════════════════════════════ */

/* Make all buttons consistently rounded (pill shape) */
.btn {
    border-radius: var(--r-full);
}

.btn.btn-ghost {
    border-radius: var(--r-full);
}

.mnav-cta .btn {
    border-radius: var(--r-full);
}

.mnav-close {
    border-radius: var(--r-full);
    width: 42px;
    height: 42px;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS - Google review buttons
   ═══════════════════════════════════════════ */
.testim-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap
}

.testim-actions .btn-outline {
    border-color: var(--border-light);
    color: var(--text-dark)
}

.testim-actions .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow2)
}

/* ═══════════════════════════════════════════
   FAQ - Contact block at bottom
   ═══════════════════════════════════════════ */
.faq-contact {
    margin-top: 48px
}

.faq-contact-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(37, 99, 235, .15);
    border-radius: var(--r-xl);
    flex-wrap: wrap
}

.faq-contact-ico {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0
}

.faq-contact-text {
    flex: 1;
    min-width: 200px
}

.faq-contact-text p {
    font-size: .95rem;
    color: var(--text-dark-sub);
    line-height: 1.6;
    margin: 0
}

.faq-contact .btn {
    flex-shrink: 0
}

@media (max-width: 640px) {
    .faq-contact-inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px
    }
    .faq-contact .btn { width: 100% }
}

/* ═══════════════════════════════════════════
   DARK BLOCK - Unified kontakt + CTA
   ═══════════════════════════════════════════ */
.dark-block {
    position: relative;
    padding: 120px 0;
    background: #06090f;
    overflow: hidden
}

.dark-block-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0
}

.dark-block .wrap {
    position: relative;
    z-index: 1
}

.dark-block-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.08) 50%, transparent);
    margin: 80px 0
}

.kontakt-v2-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: kontaktOrbFloat 8s ease-in-out infinite
}

.kontakt-v2-orb-1 {
    width: 500px; height: 500px;
    background: rgba(37, 99, 235, .12);
    top: -150px; left: -100px;
    animation-delay: 0s
}

.kontakt-v2-orb-2 {
    width: 400px; height: 400px;
    background: rgba(139, 92, 246, .08);
    bottom: -120px; right: -80px;
    animation-delay: -3s
}

.kontakt-v2-orb-3 {
    width: 300px; height: 300px;
    background: rgba(37, 99, 235, .06);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s
}

@keyframes kontaktOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1) }
    33% { transform: translate(30px, -20px) scale(1.05) }
    66% { transform: translate(-20px, 15px) scale(0.95) }
}

.kontakt-v2-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%)
}

.kontakt-v2-inner {
    text-align: center
}

.kontakt-v2-head {
    margin-bottom: 56px
}

.sec-tag-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-light);
    padding: 8px 18px;
    border-radius: var(--r-full);
    background: rgba(37, 99, 235, .1);
    border: 1px solid rgba(37, 99, 235, .2);
    margin-bottom: 20px
}

.kontakt-v2-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 16px
}

.kontakt-v2-head p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7
}

.kontakt-v2-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto
}

.kontakt-v2-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 28px 36px;
    border-radius: var(--r-xl);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
    transition: all .35s ease;
    overflow: hidden
}

.kontakt-v2-card-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: rgba(37, 99, 235, .12);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0;
    transition: opacity .4s ease
}

.kontakt-v2-card:hover .kontakt-v2-card-glow {
    opacity: 1
}

.kontakt-v2-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(37, 99, 235, .3);
    transform: translateY(-4px)
}

.kontakt-v2-card-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, .15), rgba(37, 99, 235, .05));
    color: var(--accent-light);
    font-size: 1.5rem;
    margin-bottom: 4px
}

.kontakt-v2-card h3 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.4);
    margin: 0
}

.kontakt-v2-card-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff
}

.kontakt-v2-card-hint {
    font-size: .82rem;
    color: rgba(255,255,255,.35);
    font-weight: 500
}

@media (max-width: 768px) {
    .dark-block { padding: 80px 0 }
    .dark-block-divider { margin: 56px 0 }
    .kontakt-v2-cards {
        grid-template-columns: 1fr;
        max-width: 400px
    }
}

/* ═══════════════════════════════════════════
   CTA V2 - Bold dark section with animations
   ═══════════════════════════════════════════ */
.cta-v2-inner {
    text-align: center
}

.cta-v2-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(37, 99, 235, .15) 0%, rgba(37, 99, 235, .05) 40%, transparent 70%);
    animation: ctaGlowPulse 4s ease-in-out infinite
}

@keyframes ctaGlowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1 }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: .7 }
}

/* Expanding rings */
.cta-v2-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, .1);
    transform: translate(-50%, -50%);
    animation: ctaRingExpand 6s ease-out infinite
}

.cta-v2-ring-1 {
    width: 300px; height: 300px;
    animation-delay: 0s
}
.cta-v2-ring-2 {
    width: 300px; height: 300px;
    animation-delay: -2s
}
.cta-v2-ring-3 {
    width: 300px; height: 300px;
    animation-delay: -4s
}

@keyframes ctaRingExpand {
    0% { width: 100px; height: 100px; opacity: .6; border-color: rgba(37, 99, 235, .2) }
    100% { width: 900px; height: 900px; opacity: 0; border-color: rgba(37, 99, 235, 0) }
}

/* Floating particles */
.cta-v2-particles {
    position: absolute;
    inset: 0
}

.cta-v2-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(37, 99, 235, .5);
    border-radius: 50%;
    animation: ctaParticleFloat 12s linear infinite
}

.cta-v2-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 14s }
.cta-v2-particles span:nth-child(2) { left: 20%; animation-delay: -2s; animation-duration: 11s }
.cta-v2-particles span:nth-child(3) { left: 30%; animation-delay: -4s; animation-duration: 16s }
.cta-v2-particles span:nth-child(4) { left: 40%; animation-delay: -1s; animation-duration: 13s }
.cta-v2-particles span:nth-child(5) { left: 55%; animation-delay: -5s; animation-duration: 15s }
.cta-v2-particles span:nth-child(6) { left: 65%; animation-delay: -3s; animation-duration: 12s }
.cta-v2-particles span:nth-child(7) { left: 75%; animation-delay: -7s; animation-duration: 14s }
.cta-v2-particles span:nth-child(8) { left: 85%; animation-delay: -2s; animation-duration: 16s }
.cta-v2-particles span:nth-child(9) { left: 15%; animation-delay: -6s; animation-duration: 13s; width: 3px; height: 3px }
.cta-v2-particles span:nth-child(10) { left: 50%; animation-delay: -8s; animation-duration: 11s; width: 3px; height: 3px }
.cta-v2-particles span:nth-child(11) { left: 92%; animation-delay: -4s; animation-duration: 15s; width: 2px; height: 2px }
.cta-v2-particles span:nth-child(12) { left: 5%; animation-delay: -9s; animation-duration: 17s; width: 2px; height: 2px }

@keyframes ctaParticleFloat {
    0% { bottom: -10px; opacity: 0 }
    10% { opacity: .8 }
    90% { opacity: .8 }
    100% { bottom: 110%; opacity: 0 }
}

.cta-v2-inner {
    max-width: 720px;
    margin: 0 auto
}

.cta-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-light);
    padding: 10px 22px;
    border-radius: var(--r-full);
    background: rgba(37, 99, 235, .1);
    border: 1px solid rgba(37, 99, 235, .2);
    margin-bottom: 32px
}

.cta-v2-inner h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 24px
}

.cta-v2-gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, #60a5fa 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cta-v2-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.cta-v2-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.btn-cta-primary {
    background: linear-gradient(135deg, #22a7e6 0%, #0284C7 100%);
    color: #fff;
    border-radius: var(--r-full);
    box-shadow: 0 4px 30px rgba(37, 99, 235, .4);
    font-weight: 700;
    transition: all .3s ease
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(37, 99, 235, .5)
}

.btn-cta-ghost {
    background: transparent;
    color: rgba(255,255,255,.8);
    border: 1.5px solid rgba(255,255,255,.15);
    border-radius: var(--r-full);
    font-weight: 600;
    transition: all .3s ease
}

.btn-cta-ghost:hover {
    border-color: rgba(255,255,255,.35);
    color: #fff;
    background: rgba(255,255,255,.05)
}

.cta-v2-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap
}

.cta-v2-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: rgba(255,255,255,.4);
    font-weight: 500
}

.cta-v2-trust-item i {
    color: var(--green);
    font-size: 1.1rem
}

@media (max-width: 768px) {
    .cta-v2-trust { flex-direction: column; align-items: center; gap: 12px }
}

/* ═══════════════════════════════════════════
   FOOTER V2 - Premium dark footer
   ═══════════════════════════════════════════ */
.footer-v2 {
    position: relative;
    padding: 80px 0 32px;
    background: var(--bg-light)
}

.footer-v2-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 48px
}

.footer-v2-brand {
    max-width: 320px
}

.footer-v2-logo img {
    height: 24px;
    margin-bottom: 18px
}

.footer-v2-desc {
    font-size: .92rem;
    color: rgba(255,255,255,.4);
    line-height: 1.7;
    margin-bottom: 20px
}

.footer-v2-platforms {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.footer-v2-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    padding: 5px 12px;
    border-radius: var(--r-full);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.45);
    font-weight: 500;
    border: 1px solid rgba(255,255,255,.06)
}

.footer-v2-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.footer-v2-col h4 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.3);
    margin-bottom: 18px
}

.footer-v2-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-v2-col ul a,
.footer-v2-col ul li a {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    transition: color .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.footer-v2-col ul a:hover,
.footer-v2-col ul li a:hover {
    color: var(--accent-light)
}

.footer-v2-cta {
    margin-top: 20px
}

.btn-sm {
    padding: 10px 20px;
    font-size: .82rem
}

.footer-v2-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.08) 50%, transparent);
    margin: 0
}

.footer-v2-company {
    padding: 24px 0;
    text-align: center
}

.footer-v2-company-info p {
    font-size: .82rem;
    color: rgba(255,255,255,.25);
    margin: 0;
    line-height: 1.7
}

.footer-v2-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px
}

.footer-v2-copy {
    font-size: .82rem;
    color: rgba(255,255,255,.25)
}

.footer-v2-made {
    font-size: .82rem;
    color: rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    gap: 6px
}

.footer-v2-flag {
    font-size: 1rem
}

@media (max-width: 900px) {
    .footer-v2-top {
        grid-template-columns: 1fr;
        gap: 48px
    }
    .footer-v2-brand { max-width: 100% }
}

@media (max-width: 640px) {
    .footer-v2 { padding: 60px 0 24px }
    .footer-v2-links {
        grid-template-columns: 1fr;
        gap: 32px
    }
    .footer-v2-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }
}

/* ── Footer V2 Light theme ── */
.footer-v2-light {
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, .06)
}

.footer-v2-light .footer-v2-desc {
    color: var(--text-dark-sub)
}

.footer-v2-light .footer-v2-platform {
    background: rgba(0, 0, 0, .04);
    color: var(--text-muted);
    border-color: rgba(0, 0, 0, .06)
}

.footer-v2-light .footer-v2-col h4 {
    color: var(--text-dark)
}

.footer-v2-light .footer-v2-col ul a,
.footer-v2-light .footer-v2-col ul li a {
    color: var(--text-muted)
}

.footer-v2-light .footer-v2-col ul a:hover,
.footer-v2-light .footer-v2-col ul li a:hover {
    color: var(--accent-dark)
}

.footer-v2-light .footer-v2-divider {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .08) 50%, transparent)
}

.footer-v2-light .footer-v2-company-info p {
    color: var(--text-muted)
}

.footer-v2-light .footer-v2-copy,
.footer-v2-light .footer-v2-made {
    color: var(--text-muted)
}

/* ═══ Footer – Pre koho section ═══ */
.footer-prekoho {
    padding: 24px 0 8px;
}
.footer-prekoho-title {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.45);
    margin: 0 0 16px;
}
.footer-v2-light .footer-prekoho-title {
    color: var(--text-dark);
}
.footer-prekoho-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.footer-prekoho-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 8px 0;
    cursor: pointer;
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    font-family: inherit;
    text-align: left;
    gap: 8px;
}
.footer-prekoho-toggle span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-prekoho-toggle span i {
    font-size: 1.05rem;
    opacity: .7;
}
.footer-v2-light .footer-prekoho-toggle {
    color: var(--text-dark);
}
.footer-prekoho-toggle:hover {
    color: var(--accent-light);
}
.footer-v2-light .footer-prekoho-toggle:hover {
    color: var(--accent-dark);
}
.footer-prekoho-arrow {
    transition: transform .25s ease;
    font-size: .75rem;
    opacity: .5;
}
.footer-prekoho-toggle[aria-expanded="true"] .footer-prekoho-arrow {
    transform: rotate(180deg);
}
.footer-prekoho-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .3s ease;
    opacity: 0;
}
.footer-prekoho-list.is-open {
    max-height: 400px;
    opacity: 1;
}
.footer-prekoho-list li {
    padding: 0;
}
.footer-prekoho-list a {
    display: block;
    padding: 5px 0 5px 22px;
    font-size: .84rem;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
}
.footer-prekoho-list a:hover {
    color: var(--accent-light);
}
.footer-v2-light .footer-prekoho-list a {
    color: var(--text-muted);
}
.footer-v2-light .footer-prekoho-list a:hover {
    color: var(--accent-dark);
}

@media (max-width: 1024px) {
    .footer-prekoho-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .footer-prekoho-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .footer-prekoho-toggle {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,.06);
    }
}

@media (max-width: 500px) {
 .omni-cta-btns {
     display:none !important;
 }
}

/* ================================================================
   MOBILE HOMEPAGE PERFORMANCE
   - content-visibility on below-the-fold landing sections so the
     browser skips layout/paint until they scroll near the viewport
     (native lazy rendering — no JS, no layout shift thanks to the
     reserved intrinsic size).
   - Hide decorative SVGs, orbs, pills and floating glass cards that
     cost paint / extra compositor layers without adding value on
     small screens.  These are the heaviest paint jobs in the page.
   ================================================================ */
@media (max-width: 768px) {
    section.omni,
    section.lost,
    section.pricing,
    section.how-it-works,
    section.testim,
    section.faq,
    section.dark-block {
        content-visibility: auto;
        contain-intrinsic-size: 1px 900px;
    }

    /* Hero background decorations — remove the expensive layered
       aurora / mesh / rays / waves / hex / pills / circles stack. */
    .wh-bg-aurora,
    .wh-bg-mesh,
    .wh-bg-waves,
    .wh-bg-hex,
    .wh-bg-rays,
    .wh-bg-dots,
    .wh-bg-diag,
    .wh-bg-pill,
    .wh-bg-circle,
    .wh-deco {
        display: none !important;
    }

    /* Floating glassmorphism cards on the hero visual — each one is
       a separate backdrop-filter pass which destroys FPS on mid-tier
       phones.  The main chat card + hero image stay. */
    .wh-fl-stat,
    .wh-fl-ch,
    .wh-fl-time,
    .wh-fl-ai,
    .wh-vis-dot {
        display: none !important;
    }

    /* Omni + benefits + lost section decorative orbs — big blurred
       pseudo-elements that trigger large repaints on scroll. */
    .omni-frost-orb,
    .omni-frost-noise,
    .benefits-bg-orb,
    .lost-bg-orb,
    .how-bg-orb,
    .pricing-bg-orb,
    .testim-bg-orb,
    .faq-bg-orb,
    .cta-bg-orb {
        display: none !important;
    }
}