:root {
    --ink: #17102B;
    --ink-2: #241A3D;
    --deep: #140B28;
    --purple: #880585;
    --purple-dark: #60025e;
    --lilac: #F4F0FE;
    --base: #FBFAFF;
    --lime: #C9F158;
    --berry: #FF5C7A;
    --muted: #6E6788;
    --radius: 16px;
    --font-body: 'Poppins', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--base);
    overflow-x: hidden
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: radial-gradient(rgba(124, 58, 237, .09) 1px, transparent 1px);
    background-size: 26px 26px
}

section {
    scroll-margin-top: 92px;
    position: relative
}

::selection {
    background: var(--purple);
    color: #fff
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    letter-spacing: -.02em
}

.mono {
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase
}

.text-muted-2 {
    color: var(--muted) !important
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--purple-dark);
    font-weight: 700
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--lime);
    display: inline-block
}

.eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(201, 241, 88, .25)
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 12px;
    padding: .8rem 1.5rem;
    transition: all .25s ease
}

.btn-berry {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(124, 58, 237, .55)
}

.btn-berry:hover {
    background: var(--purple-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -8px rgba(124, 58, 237, .6)
}

.btn-lime {
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 8px 24px -8px rgba(201, 241, 88, .5)
}

.btn-lime:hover {
    background: #b8e33e;
    color: var(--ink);
    transform: translateY(-3px)
}

.btn-ghost {
    border: 1.5px solid rgba(23, 16, 43, .18);
    color: var(--ink)
}

.btn-ghost:hover {
    border-color: var(--purple);
    color: var(--purple);
    transform: translateY(-3px)
}

.btn-ghost-light {
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: #fff
}

.btn-ghost-light:hover {
    border-color: var(--lime);
    color: var(--lime);
    transform: translateY(-3px)
}

.link-more {
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: gap .25s
}

.link-more:hover {
    gap: .75rem;
    color: var(--purple-dark)
}

/* ===== FIXED HEADER (topbar + navbar as one unit) ===== */
.site-header {
    z-index: 1040;
    transition: background .3s ease, box-shadow .3s ease
}

.site-header .topbar {
    max-height: 44px;
    overflow: hidden;
    transition: max-height .35s ease, opacity .3s ease
}

.site-header.is-scrolled {
    background: rgba(251, 250, 255, .94);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 24px -12px rgba(23, 16, 43, .18)
}

.site-header.is-scrolled .topbar {
    max-height: 0;
    opacity: 0
}

.topbar {
    background: var(--deep);
    color: #cfc8e6;
    font-size: .8rem;
    padding: .45rem 0
}

.topbar a {
    color: #cfc8e6;
    text-decoration: none
}

.topbar a:hover {
    color: var(--lime)
}

.navbar {
    padding: 1rem 0;
    transition: padding .3s ease
}

.site-header.is-scrolled .navbar {
    padding: .55rem 0
}

.navbar-brand img {
    height: 42px
}

.nav-link {
    font-weight: 500;
    color: var(--ink) !important;
    position: relative;
    margin: 0 .35rem
}

.nav-link::after {
    content: "";
    position: absolute;
    left: .5rem;
    right: .5rem;
    bottom: 2px;
    height: 2px;
    background: var(--purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1)
}

.dropdown-menu {
    border: 1px solid rgba(124, 58, 237, .15);
    border-radius: 14px;
    box-shadow: 0 20px 50px -20px rgba(23, 16, 43, .3);
    padding: .6rem;
    transform: translateY(14px);
    transition: transform .25s ease
}

.dropdown-item {
    border-radius: 9px;
    font-size: .9rem;
    padding: .55rem .9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem
}

.dropdown-item::after {
    content: "→";
    font-size: .75rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .2s ease, transform .2s ease;
    color: var(--purple);
    flex-shrink: 0
}

.dropdown-item:hover {
    background: var(--lilac);
    color: var(--purple-dark)
}

.dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(0)
}

.dropdown-item.active,
.dropdown-item.active::after {
    background: var(--lilac);
    color: var(--purple-dark);
    opacity: 1;
    transform: translateX(0)
}

/* hide default BS caret — we use hover-only dropdown */
.dropdown-toggle::after {
    display: none
}

@media(min-width:992px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        pointer-events: none;
        transform: translateY(14px);
        transition: opacity .2s ease, transform .2s ease
    }

    .dropdown:hover .dropdown-menu,
    .dropdown-menu:hover {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(6px)
    }
}

/* ===== Hero ===== */
.hero {
    padding: 8.5rem 0 5rem;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .16), transparent 65%);
    z-index: -1
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -160px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 241, 88, .18), transparent 65%);
    z-index: -1
}

.hero h1 {
    font-size: clamp(2.5rem, 5.4vw, 4.35rem);
    font-weight: 900;
    line-height: 1.06
}

.hl {
    position: relative;
    white-space: nowrap;
    z-index: 1
}

.hl::after {
    content: "";
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: 5%;
    height: 30%;
    background: var(--lime);
    z-index: -1;
    transform: skew(-9deg)
}

.hero .lead {
    font-weight: 300;
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 34rem
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem 1.6rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--muted)
}

.trust-row i {
    color: var(--purple);
    font-size: 1rem
}

.dash-wrap {
    position: relative
}

.dash-shape-1 {
    position: absolute;
    top: -34px;
    right: -20px;
    width: 130px;
    height: 130px;
    border: 2px dashed rgba(124, 58, 237, .4);
    border-radius: 24px;
    transform: rotate(12deg);
    animation: float 7s ease-in-out infinite
}

.dash-shape-2 {
    position: absolute;
    bottom: -28px;
    left: -30px;
    width: 90px;
    height: 90px;
    background: var(--lime);
    border-radius: 50%;
    opacity: .5;
    filter: blur(2px);
    animation: float 9s ease-in-out infinite reverse
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(12deg)
    }

    50% {
        transform: translateY(-16px) rotate(16deg)
    }
}

.dash-card {
    background: #fff;
    border: 1px solid rgba(23, 16, 43, .08);
    border-radius: 20px;
    box-shadow: 0 40px 90px -30px rgba(23, 16, 43, .35);
    padding: 1.4rem 1.5rem;
    position: relative;
    transform: rotate(-1.2deg);
    transition: transform .4s ease
}

.dash-card:hover {
    transform: rotate(0deg) translateY(-6px)
}

.dash-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-bottom: .9rem;
    border-bottom: 1px dashed rgba(23, 16, 43, .12)
}

.dash-head .dotc {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(23, 16, 43, .06)
}

.metric-row:last-of-type {
    border-bottom: 0
}

.metric-name {
    font-size: .85rem;
    font-weight: 600
}

.metric-sub {
    font-size: .72rem;
    color: var(--muted)
}

.badge-up {
    background: rgba(201, 241, 88, .35);
    color: #3f6600;
    font-weight: 700;
    border-radius: 8px;
    padding: .3rem .55rem;
    font-size: .75rem
}

.badge-down {
    background: rgba(255, 92, 122, .15);
    color: #c2174a;
    font-weight: 700;
    border-radius: 8px;
    padding: .3rem .55rem;
    font-size: .75rem
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 86px;
    margin-top: 1rem
}

.bar-chart .bar {
    flex: 1;
    background: linear-gradient(0deg, var(--purple), #a78bfa);
    border-radius: 6px 6px 2px 2px;
    transform-origin: bottom;
    animation: grow 1.1s cubic-bezier(.22, 1, .36, 1) both
}

.bar-chart .bar.lime {
    background: linear-gradient(0deg, #9ccf1f, var(--lime))
}

@keyframes grow {
    from {
        transform: scaleY(0)
    }

    to {
        transform: scaleY(1)
    }
}

.float-chip {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(23, 16, 43, .08);
    border-radius: 14px;
    box-shadow: 0 18px 40px -16px rgba(23, 16, 43, .35);
    padding: .7rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .55rem;
    animation: float 6s ease-in-out infinite
}

.float-chip.chip-a {
    top: -24px;
    left: -14px;
    animation-delay: .8s
}

.float-chip.chip-b {
    bottom: -22px;
    right: -8px
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
    animation: pulse 1.8s infinite
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 9px rgba(34, 197, 94, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0)
    }
}

/* Marquee */
.marquee {
    background: var(--deep);
    color: #fff;
    padding: 1.05rem 0;
    overflow: hidden;
    border-top: 3px solid var(--lime)
}

.marquee-track {
    display: flex;
    gap: 2.6rem;
    width: max-content;
    animation: scroll 26s linear infinite;
    white-space: nowrap
}

.marquee:hover .marquee-track {
    animation-play-state: paused
}

.marquee-track span {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 2.6rem
}

.marquee-track i {
    color: var(--lime);
    font-style: normal
}

@keyframes scroll {
    to {
        transform: translateX(-50%)
    }
}

/* Stats */
.stats {
    background: var(--deep);
    color: #fff;
    padding: 3.6rem 0 4rem;
    position: relative
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 22px 22px
}

.stat-num {
    font-family: var(--font-mono);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--lime);
    line-height: 1
}

.stat-label {
    font-size: .85rem;
    color: #b7aed4;
    margin-top: .5rem
}

.stat-divider {
    border-left: 1px dashed rgba(255, 255, 255, .18)
}

.stats .footnote {
    font-size: .72rem;
    color: #8d83ad
}

/* Problem */
.problem {
    padding: 6.5rem 0;
    background: var(--base)
}

.pain-card {
    background: #fff;
    border: 1px solid rgba(23, 16, 43, .08);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.pain-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--berry);
    opacity: 0;
    transition: opacity .3s
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -24px rgba(23, 16, 43, .28)
}

.pain-card:hover::before {
    opacity: 1
}

.pain-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 92, 122, .12);
    color: var(--berry);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem
}

.pain-card h5 {
    font-size: 1.02rem;
    font-weight: 700
}

.pain-card p {
    font-size: .88rem;
    color: var(--muted);
    margin: 0
}

.truth-box {
    background: var(--ink);
    color: #fff;
    border-radius: 20px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden
}

.truth-box::after {
    content: "“";
    position: absolute;
    right: 14px;
    top: -30px;
    font-size: 9rem;
    font-weight: 900;
    color: rgba(201, 241, 88, .14);
    font-family: Georgia, serif
}

.truth-box .mono {
    color: var(--lime)
}

/* Services tabs */
.services {
    padding: 6.5rem 0;
    background: var(--lilac);
    position: relative
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.svc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 1.2rem;
    border-radius: 14px;
    cursor: pointer;
    transition: all .25s ease;
    border: 1px solid transparent
}

.svc-item .num {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--purple);
    font-weight: 700
}

.svc-item .name {
    font-weight: 600;
    font-size: 1.02rem;
    flex: 1
}

.svc-item i {
    opacity: 0;
    transform: translateX(-6px);
    transition: all .25s;
    color: var(--purple)
}

.svc-item:hover {
    background: #fff
}

.svc-item.active {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 16px 36px -14px rgba(124, 58, 237, .6)
}

.svc-item.active .num {
    color: var(--lime)
}

.svc-item.active i {
    opacity: 1;
    transform: none;
    color: var(--lime)
}

.svc-panel {
    background: #fff;
    border: 1px solid rgba(23, 16, 43, .08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 70px -30px rgba(23, 16, 43, .3)
}

.svc-panel img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block
}

.svc-panel .body {
    padding: 1.8rem 2rem 2rem
}

.chip {
    display: inline-block;
    background: var(--lilac);
    color: var(--purple-dark);
    font-size: .76rem;
    font-weight: 600;
    padding: .38rem .8rem;
    border-radius: 99px;
    margin: .2rem .25rem .2rem 0;
    transition: all .2s
}

.chip:hover {
    background: var(--purple);
    color: #fff
}

.svc-stat {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 241, 88, .3);
    border: 1px dashed rgba(63, 102, 0, .35);
    border-radius: 10px;
    padding: .45rem .9rem;
    font-size: .8rem;
    font-weight: 600;
    color: #3f6600
}

/* ===== Bento: What you get ===== */
.whatyouget {
    padding: 6.5rem 0;
    background: var(--base)
}

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem
}

.b-tile {
    border-radius: 18px;
    padding: 1.6rem;
    background: #fff;
    border: 1px solid rgba(23, 16, 43, .08);
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.b-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -24px rgba(23, 16, 43, .3)
}

.b-tile .b-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--lilac);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem
}

.b-tile h5 {
    font-weight: 700;
    font-size: 1rem
}

.b-tile p {
    font-size: .85rem;
    margin: 0;
    opacity: .85
}

.b-lg {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--purple);
    color: #fff;
    border: 0
}

.b-lg .b-icon {
    background: rgba(255, 255, 255, .16);
    color: var(--lime)
}

.b-lg p {
    color: #e4d9fb
}

.b-wide {
    grid-column: span 2;
    background: var(--deep);
    color: #fff;
    border: 0
}

.b-wide .b-icon {
    background: rgba(201, 241, 88, .15);
    color: var(--lime)
}

.b-wide p {
    color: #b7aed4
}

.b-lime {
    background: var(--lime);
    border: 0
}

.b-lime .b-icon {
    background: rgba(23, 16, 43, .1);
    color: var(--ink)
}

.b-lilac {
    background: var(--lilac)
}

.pod-avatars {
    display: flex;
    margin-top: 1.4rem
}

.pod-avatars span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2.5px solid var(--purple);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    background: #fff;
    color: var(--purple-dark)
}

.pod-avatars span:first-child {
    margin-left: 0
}

.pod-avatars span.more {
    background: var(--lime);
    color: var(--ink)
}

@media(max-width:991px) {
    .bento {
        grid-template-columns: repeat(2, 1fr)
    }

    .b-lg {
        grid-row: auto
    }
}

@media(max-width:575px) {
    .bento {
        grid-template-columns: 1fr
    }

    .b-wide {
        grid-column: span 1
    }
}

/* Process */
.process {
    padding: 6.5rem 0;
    background: var(--base)
}

.step {
    position: relative;
    padding: 0 .5rem
}

.step .step-num {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 3.4rem;
    color: transparent;
    -webkit-text-stroke: 1.6px var(--purple);
    line-height: 1;
    transition: all .3s
}

.step:hover .step-num {
    color: var(--purple);
    -webkit-text-stroke: 0
}

.step h5 {
    font-weight: 700;
    margin: 1rem 0 .55rem
}

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

.step .tag {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    color: var(--purple);
    text-transform: uppercase
}

.process-line {
    position: absolute;
    top: 26px;
    left: 8%;
    right: 8%;
    border-top: 2px dashed rgba(124, 58, 237, .3)
}

/* Fit / Why us */
.fit {
    padding: 6.5rem 0;
    background: var(--deep);
    color: #fff;
    position: relative;
    overflow: hidden
}

.fit::before {
    content: "";
    position: absolute;
    top: -160px;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .3), transparent 65%)
}

.fit-card {
    border-radius: 18px;
    padding: 1.9rem;
    height: 100%
}

.fit-no {
    background: rgba(255, 255, 255, .05);
    border: 1px dashed rgba(255, 92, 122, .4)
}

.fit-yes {
    background: rgba(201, 241, 88, .08);
    border: 1px solid rgba(201, 241, 88, .4)
}

.fit-card li {
    display: flex;
    gap: .8rem;
    margin-bottom: .95rem;
    font-size: .92rem;
    line-height: 1.5
}

.fit-no li i {
    color: var(--berry)
}

.fit-yes li i {
    color: var(--lime)
}

.diff-row {
    display: flex;
    gap: 1.4rem;
    padding: 1.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .14);
    transition: all .3s
}

.diff-row:hover {
    padding-left: .8rem
}

.diff-row .idx {
    font-family: var(--font-mono);
    color: var(--lime);
    font-weight: 700
}

.diff-row h5 {
    font-weight: 700
}

.diff-row p {
    color: #b7aed4;
    font-size: .9rem;
    margin: 0
}

/* Where we work (compact strip) */
.where {
    padding: 4.5rem 0;
    background: var(--lilac)
}

.dist-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #fff;
    border: 1px solid rgba(124, 58, 237, .25);
    color: var(--purple-dark);
    font-size: .8rem;
    font-weight: 600;
    padding: .42rem .9rem;
    border-radius: 99px;
    margin: .22rem;
    transition: all .2s
}

.dist-chip:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-2px)
}

.beyond-card {
    background: #fff;
    border: 1px solid rgba(23, 16, 43, .08);
    border-radius: 18px;
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: all .3s;
    text-decoration: none;
    color: var(--ink);
    height: 100%
}

.beyond-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px -22px rgba(23, 16, 43, .3);
    border-color: var(--purple);
    color: var(--ink)
}

.beyond-card .flag {
    font-size: 1.9rem
}

.beyond-card .tag-live {
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .12em;
    background: rgba(201, 241, 88, .4);
    color: #3f6600;
    padding: .25rem .6rem;
    border-radius: 6px;
    text-transform: uppercase
}

/* Results */
.results {
    padding: 6.5rem 0;
    background: var(--base)
}

.case-card {
    background: var(--deep);
    color: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative
}

.case-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 20px 20px
}

.case-num {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--lime);
    line-height: 1.1
}

.case-label {
    font-size: .78rem;
    color: #b7aed4
}

.case-quote {
    font-weight: 300;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #e8e3f7
}

.case-img {
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    width: 100%
}

.testi-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid rgba(23, 16, 43, .08)
}

.stars {
    color: #f5b301;
    letter-spacing: 2px
}

/* FAQ */
.faq {
    padding: 6.5rem 0;
    background: var(--lilac)
}

.accordion-item {
    border: 1px solid rgba(23, 16, 43, .1) !important;
    border-radius: 14px !important;
    margin-bottom: .9rem;
    overflow: hidden;
    background: #fff
}

.accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 1.2rem 1.4rem;
    background: #fff;
    color: var(--ink);
    box-shadow: none !important
}

.accordion-button:not(.collapsed) {
    background: var(--lilac);
    color: var(--purple-dark)
}

.accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    width: auto;
    height: auto;
    transition: transform .3s
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(45deg)
}

.accordion-body {
    font-size: .92rem;
    color: var(--muted);
    padding: 1.2rem 1.4rem 1.4rem
}

/* CTA */
.cta {
    padding: 6.5rem 0;
    background: var(--purple);
    color: #fff;
    position: relative;
    overflow: hidden
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 24px 24px
}

.cta::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(201, 241, 88, .16)
}

.cta h2 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.12
}

.cta .slots {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255, 255, 255, .12);
    border: 1px dashed rgba(255, 255, 255, .4);
    border-radius: 99px;
    padding: .5rem 1.1rem;
    font-size: .82rem;
    font-weight: 500
}

/* Footer */
footer {
    background: var(--deep);
    color: #b7aed4;
    padding: 4.5rem 0 0;
    font-size: .9rem
}

footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem
}

footer a {
    color: #b7aed4;
    text-decoration: none;
    transition: all .2s;
    display: inline-block
}

footer a:hover {
    color: var(--lime);
    transform: translateX(3px)
}

.footer-logo {
    background: #fff;
    border-radius: 12px;
    padding: .5rem .9rem;
    display: inline-block
}

.footer-logo img {
    height: 34px
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .25s;
    margin-right: .5rem
}

.social-btn:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-4px)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 1.4rem 0;
    margin-top: 3.5rem;
    font-size: .8rem
}

/* Floating */
.wa-float,
.top-float {
    position: fixed;
    right: 22px;
    z-index: 1050;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .35);
    transition: all .25s
}

.wa-float {
    bottom: 22px;
    background: #25D366;
    color: #fff
}

.wa-float:hover {
    transform: translateY(-4px) scale(1.05);
    color: #fff
}

.top-float {
    bottom: 86px;
    background: var(--ink);
    color: #fff
}

.top-float:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-4px)
}

/* Reveal */
[x-data="reveal"] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1)
}

[x-data="reveal"].is-shown {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }

    [x-data="reveal"] {
        opacity: 1;
        transform: none
    }
}

@media (max-width:991px) {
    .hero {
        padding-top: 9.5rem
    }

    .dash-card {
        transform: none;
        margin-top: 3.2rem
    }

    .float-chip.chip-a {
        left: 0
    }

    .stat-divider {
        border-left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .18);
        padding-top: 1.4rem
    }
}