.ls-wrap {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
    width: 100vw;
    max-width: 100vw;
    display: block;
    overflow-x: hidden;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 0 !important;
}

.ls-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px)
}

.ls-sec {
    padding: 5rem 0
}

/* ── Keyframes ── */
@keyframes ls-fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes ls-pulse-ring {
    0% {
        transform: scale(1);
        opacity: .7
    }

    100% {
        transform: scale(2.5);
        opacity: 0
    }
}

@keyframes ls-glow {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(0, 82, 224, .32)
    }

    50% {
        box-shadow: 0 4px 32px rgba(0, 82, 224, .55), 0 0 0 6px rgba(0, 82, 224, .12)
    }
}

@keyframes ls-shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(220%)
    }
}

@keyframes ls-scan {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(600%)
    }
}

@keyframes ls-float {

    0%,
    100% {
        transform: translateY(0)
    }

    45% {
        transform: translateY(-8px)
    }

    70% {
        transform: translateY(-4px)
    }
}

@keyframes ls-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

@keyframes ls-count {
    from {
        opacity: 0;
        transform: scale(.8) translateY(6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes ls-ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes ls-ping {
    0% {
        transform: scale(1);
        opacity: 1
    }

    75%,
    100% {
        transform: scale(2);
        opacity: 0
    }
}

@keyframes ls-mappin {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-6px) scale(1.08)
    }
}

/* ── Reveal ── */
.ls-rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1)
}

.ls-rv.ls-in {
    opacity: 1;
    transform: none
}

.ls-rv-l {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1)
}

.ls-rv-l.ls-in {
    opacity: 1;
    transform: none
}

.ls-rv-r {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1)
}

.ls-rv-r.ls-in {
    opacity: 1;
    transform: none
}

/* ── Buttons ── */
.ls-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .88rem;
    font-weight: 600;
    padding: .75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background .15s, transform .14s, box-shadow .2s;
    border: none;
    cursor: pointer;
    white-space: nowrap
}

.ls-btn svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ls-btn-orange {
    background: #0052e0;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 82, 224, .4), 0 0 0 1px rgba(0, 82, 224, .4);
    animation: ls-glow 3s 2s ease-in-out infinite
}

.ls-btn-orange:hover {
    background: #0040c0;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 82, 224, .55)
}

.ls-btn-orange svg {
    stroke: #fff
}

.ls-btn-orange.ls-lg {
    font-size: .92rem;
    padding: .85rem 1.7rem
}

.ls-btn-ghost-d {
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px)
}

.ls-btn-ghost-d:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .24);
    transform: translateY(-1px)
}

.ls-btn-ghost-d svg {
    stroke: currentColor
}

.ls-btn-ghost-l {
    background: transparent;
    color: #0052e0;
    border: 1.5px solid rgba(0, 82, 224, .35)
}

.ls-btn-ghost-l:hover {
    background: #fff7ed;
    transform: translateY(-1px)
}

.ls-btn-ghost-l svg {
    stroke: currentColor
}

/* ── Labels ── */
.ls-chip {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #0052e0;
    margin-bottom: .7rem
}

.ls-chip svg {
    width: 9px;
    height: 9px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ls-chip.ls-lt {
    color: rgba(147, 197, 253, .9)
}

.ls-h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.032em;
    color: #0f172a;
    margin-top: .5rem
}

.ls-h2.ls-wh {
    color: #fff
}

/* ══════════════════════════════
   1. HERO
══════════════════════════════ */
.ls-hero {
    background: #060d1a;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0
}

.ls-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 90% 80% at 55% 30%, #000 35%, transparent 100%);
    pointer-events: none
}

.ls-hero::after {
    content: '';
    position: absolute;
    top: -180px;
    right: -120px;
    width: min(750px, 80vw);
    height: min(750px, 80vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .18) 0%, rgba(0, 64, 192, .07) 45%, transparent 70%);
    pointer-events: none
}

.ls-hg2 {
    position: absolute;
    bottom: -180px;
    left: -80px;
    width: min(500px, 58vw);
    height: min(500px, 58vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, .08) 0%, transparent 65%);
    pointer-events: none
}

.ls-hg3 {
    position: absolute;
    top: 35%;
    right: 10%;
    width: min(260px, 30vw);
    height: min(260px, 30vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .06) 0%, transparent 65%);
    pointer-events: none
}

.ls-hero-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: .2
}

.ls-hero-scan::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, .8), transparent);
    animation: ls-scan 10s linear infinite
}

.ls-hero-body {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem clamp(16px, 4vw, 40px) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.ls-hero-left {
    padding-bottom: 5rem
}

.ls-hero-left>* {
    animation: ls-fadeUp .6s ease both
}

.ls-hero-left>*:nth-child(1) {
    animation-delay: .04s
}

.ls-hero-left>*:nth-child(2) {
    animation-delay: .12s
}

.ls-hero-left>*:nth-child(3) {
    animation-delay: .2s
}

.ls-hero-left>*:nth-child(4) {
    animation-delay: .28s
}

.ls-hero-left>*:nth-child(5) {
    animation-delay: .36s
}

.ls-crumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.ls-crumb a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .15s
}

.ls-crumb a:hover {
    color: rgba(255, 255, 255, .7)
}

.ls-crumb svg {
    width: 7px;
    height: 7px;
    stroke: rgba(255, 255, 255, .18);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0
}

.ls-svc-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 82, 224, .14);
    border: 1px solid rgba(0, 82, 224, .38);
    border-radius: 100px;
    padding: .32rem 1rem .32rem .45rem;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(147, 197, 253, .95);
    margin-bottom: .5rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 24px rgba(0, 82, 224, .12)
}

.ls-svc-badge-ico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0052e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(0, 82, 224, .55)
}

.ls-svc-badge-ico svg {
    width: 10px;
    height: 10px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5
}

.ls-hero-h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -.042em;
    color: #fff;
    margin-bottom: 1.1rem
}

.ls-hl {
    background: linear-gradient(135deg, #bfdbfe 0%, #60a5fa 45%, #0052e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ls-hl2 {
    background: linear-gradient(135deg, #bfdbfe 0%, #0052e0 50%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ls-hero-desc {
    font-size: .97rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .5);
    max-width: 44ch;
    margin-bottom: 2rem
}

.ls-hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem
}

.ls-proof-row {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap
}

.ls-proof-pill {
    display: flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 100px;
    padding: .28rem .8rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .45);
    transition: border-color .2s, background .2s
}

.ls-proof-pill:hover {
    border-color: rgba(0, 82, 224, .3);
    background: rgba(0, 82, 224, .09)
}

.ls-proof-pill strong {
    color: rgba(255, 255, 255, .85);
    font-weight: 700
}

.ls-pp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
    box-shadow: 0 0 6px #3b82f6
}

/* ── Hero Right: Google Map Pack Card ── */
.ls-hero-right {
    animation: ls-fadeUp .65s .18s ease both;
    position: relative;
    padding-bottom: 4rem
}

.ls-map-card {
    background: linear-gradient(145deg, #060d1a, #091428);
    border: 1px solid rgba(0, 82, 224, .2);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(0, 82, 224, .08)
}

.ls-map-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .03), transparent);
    animation: ls-shimmer 7s ease-in-out 2s infinite;
    pointer-events: none
}

/* Fake map area */
.ls-map-area {
    height: 160px;
    background: linear-gradient(135deg, #060d1a, #060a18);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.ls-map-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .04) 1px, transparent 1px);
    background-size: 28px 28px
}

.ls-map-road {
    position: absolute;
    background: rgba(255, 255, 255, .06);
    border-radius: 2px
}

.ls-map-road-h {
    height: 3px;
    left: 0;
    right: 0
}

.ls-map-road-v {
    width: 3px;
    top: 0;
    bottom: 0
}

.ls-map-road-h1 {
    top: 40%
}

.ls-map-road-h2 {
    top: 70%
}

.ls-map-road-v1 {
    left: 25%
}

.ls-map-road-v2 {
    left: 60%
}

.ls-map-road-v3 {
    left: 80%
}

/* Map pins */
.ls-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default
}

.ls-pin-ico {
    width: 32px;
    height: 32px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .4)
}

.ls-pin-ico svg {
    transform: rotate(45deg);
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ls-pin-stem {
    width: 2px;
    height: 6px;
    background: rgba(255, 255, 255, .3);
    margin-top: 1px
}

.ls-pin-you {
    top: 30%;
    left: 42%;
    animation: ls-mappin 3s ease-in-out infinite
}

.ls-pin-you .ls-pin-ico {
    background: #0052e0
}

.ls-pin-comp1 {
    top: 18%;
    left: 20%;
    opacity: .45
}

.ls-pin-comp1 .ls-pin-ico {
    background: #64748b
}

.ls-pin-comp2 {
    top: 55%;
    left: 65%;
    opacity: .35
}

.ls-pin-comp2 .ls-pin-ico {
    background: #64748b
}

.ls-pin-comp3 {
    top: 22%;
    left: 75%;
    opacity: .3
}

.ls-pin-comp3 .ls-pin-ico {
    background: #64748b
}

/* Ping around your pin */
.ls-pin-ping {
    position: absolute;
    top: 30%;
    left: 42%;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 82, 224, .3);
    animation: ls-ping 2s cubic-bezier(0, 0, .2, 1) infinite;
    transform: translate(-50%, -30%)
}

/* Local Pack results */
.ls-pack {
    padding: .75rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .32rem
}

.ls-pack-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .3rem
}

.ls-pack-lbl {
    font-family: "JetBrains Mono", monospace;
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: rgba(255, 255, 255, .25)
}

.ls-pack-badge {
    font-size: .6rem;
    font-weight: 700;
    background: rgba(0, 82, 224, .2);
    border: 1px solid rgba(0, 82, 224, .35);
    color: #93c5fd;
    border-radius: 100px;
    padding: .12rem .55rem
}

.ls-result {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: .6rem .75rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    transition: background .15s
}

.ls-result:hover {
    background: rgba(255, 255, 255, .07)
}

.ls-result.ls-r-you {
    background: rgba(0, 82, 224, .12);
    border-color: rgba(0, 82, 224, .3)
}

.ls-r-rank {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 800;
    flex-shrink: 0
}

.ls-result.ls-r-you .ls-r-rank {
    background: #0052e0;
    color: #fff
}

.ls-result:not(.ls-r-you) .ls-r-rank {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .35)
}

.ls-r-info {
    flex: 1
}

.ls-r-name {
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .78);
    margin-bottom: .1rem
}

.ls-result.ls-r-you .ls-r-name {
    color: #93c5fd
}

.ls-r-meta {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .62rem;
    color: rgba(255, 255, 255, .3)
}

.ls-r-stars {
    color: #2563eb;
    letter-spacing: 1px;
    font-size: .6rem
}

.ls-r-cat {
    color: rgba(255, 255, 255, .25)
}

.ls-r-right {
    text-align: right;
    flex-shrink: 0
}

.ls-r-open {
    font-size: .6rem;
    font-weight: 700;
    color: #4ade80
}

.ls-r-dist {
    font-size: .58rem;
    color: rgba(255, 255, 255, .22);
    margin-top: 2px
}

/* Pack footer */
.ls-pack-ft {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.ls-pf-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0052e0;
    animation: ls-blink 1.5s infinite
}

.ls-pf-txt {
    font-family: "JetBrains Mono", monospace;
    font-size: .6rem;
    color: rgba(147, 197, 253, .6)
}

.ls-pf-views {
    font-family: "JetBrains Mono", monospace;
    font-size: .6rem;
    color: rgba(255, 255, 255, .22)
}

.ls-float-pill {
    position: absolute;
    bottom: -2rem;
    left: .875rem;
    background: rgba(6, 13, 26, .96);
    border: 1px solid rgba(0, 82, 224, .2);
    border-radius: 14px;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    min-width: 245px;
    animation: ls-float 5.5s ease-in-out infinite;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .5), 0 0 0 1px rgba(0, 82, 224, .1);
    backdrop-filter: blur(16px);
    z-index: 2
}

.ls-fp-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 82, 224, .16);
    border: 1px solid rgba(0, 82, 224, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ls-fp-ico svg {
    width: 13px;
    height: 13px;
    stroke: #93c5fd;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ls-fp-t {
    font-size: .72rem;
    font-weight: 700;
    color: #fff
}

.ls-fp-s {
    font-size: .6rem;
    color: rgba(255, 255, 255, .38);
    margin-top: 1px
}

/* ══════════════════════════════
   TICKER
══════════════════════════════ */
.ls-ticker {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative
}

.ls-ticker::before,
.ls-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.ls-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent)
}

.ls-ticker::after {
    right: 0;
    background: linear-gradient(-90deg, #fff, transparent)
}

.ls-ttrack {
    display: flex;
    white-space: nowrap;
    animation: ls-ticker 32s linear infinite
}

.ls-ti {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: 0 2rem;
    font-size: .8rem;
    font-weight: 600;
    color: #64748b
}

.ls-ti svg {
    width: 12px;
    height: 12px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

.ls-tdot {
    padding: 0 .5rem;
    color: #e2e8f0
}

/* ══════════════════════════════
   STATS
══════════════════════════════ */
.ls-stats {
    background: linear-gradient(180deg, #f0f5ff, #fff);
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    position: relative
}

.ls-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0052e0, #3b82f6, #60a5fa, transparent)
}

.ls-sgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.ls-sitem {
    text-align: center;
    padding: 2.25rem 1.5rem;
    border-right: 1px solid #e2e8f0
}

.ls-sitem:last-child {
    border-right: none
}

.ls-sico {
    font-size: 1.6rem;
    margin-bottom: .875rem
}

.ls-sval {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -.06em;
    color: #0f172a;
    line-height: 1;
    margin-bottom: .4rem
}

.ls-sval b {
    font-size: 1.35rem;
    color: #0052e0
}

.ls-slbl {
    font-size: .78rem;
    color: #64748b;
    line-height: 1.55;
    max-width: 16ch;
    margin: 0 auto
}

/* ══════════════════════════════
   2. WHAT WE DO
══════════════════════════════ */
.ls-wwd-sec {
    background: #fff;
    border-bottom: 1px solid #e2e8f0
}

.ls-sh {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.75rem
}

.ls-wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem
}

.ls-wwd-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.65rem;
    position: relative;
    overflow: hidden;
    transition: border-color .22s, box-shadow .22s, transform .22s;
    cursor: default
}

.ls-wwd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0052e0, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.ls-wwd-card:hover {
    border-color: rgba(0, 82, 224, .22);
    box-shadow: 0 18px 48px rgba(0, 82, 224, .1);
    transform: translateY(-6px)
}

.ls-wwd-card:hover::before {
    transform: scaleX(1)
}

.ls-wwd-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem
}

.ls-wwd-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, box-shadow .2s
}

.ls-wwd-ico svg {
    width: 20px;
    height: 20px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s
}

.ls-wwd-card:hover .ls-wwd-ico {
    background: #0052e0;
    box-shadow: 0 6px 18px rgba(0, 82, 224, .4)
}

.ls-wwd-card:hover .ls-wwd-ico svg {
    stroke: #fff
}

.ls-wwd-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e2e8f0;
    letter-spacing: -.04em;
    line-height: 1;
    transition: color .2s
}

.ls-wwd-card:hover .ls-wwd-num {
    color: #e8f0ff
}

.ls-wwd-title {
    font-size: .97rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .38rem
}

.ls-wwd-desc {
    font-size: .82rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: .875rem
}

.ls-wwd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .32rem
}

.ls-wt {
    font-size: .62rem;
    font-weight: 600;
    color: #0052e0;
    background: #fff7ed;
    padding: .18rem .55rem;
    border-radius: 100px;
    transition: background .15s, color .15s
}

.ls-wwd-card:hover .ls-wt {
    background: #0052e0;
    color: #fff
}

/* ══════════════════════════════
   3. WHY IT MATTERS
══════════════════════════════ */
.ls-why-sec {
    background: #f0f5ff;
    border-top: 1px solid #dce8ff;
    border-bottom: 1px solid #dce8ff
}

.ls-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: stretch
}

.ls-why-copy {
    font-size: .88rem;
    color: #475569;
    line-height: 1.78;
    margin-bottom: 1.4rem
}

.ls-why-copy strong {
    color: #0f172a;
    font-weight: 700
}

.ls-why-checks {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.ls-wck {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .83rem;
    color: #475569;
    line-height: 1.55;
    padding: .5rem .65rem;
    border-radius: 10px;
    background: rgba(0, 82, 224, .05);
    border: 1px solid rgba(0, 82, 224, .12);
    transition: background .15s, border-color .15s
}

.ls-wck:hover {
    background: rgba(0, 82, 224, .1);
    border-color: rgba(0, 82, 224, .22)
}

.ls-wck-tick {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background .15s
}

.ls-wck-tick svg {
    width: 9px;
    height: 9px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ls-wck:hover .ls-wck-tick {
    background: #0052e0
}

.ls-wck:hover .ls-wck-tick svg {
    stroke: #fff
}

.ls-why-right {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.ls-wstat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .875rem
}

.ls-wstat {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1.4rem 1.5rem 1.65rem;
    transition: border-color .22s, box-shadow .22s, transform .2s;
    position: relative;
    overflow: hidden
}

.ls-wstat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0052e0, #60a5fa);
    opacity: .3;
    transition: opacity .2s, width .2s
}

.ls-wstat:hover {
    border-color: rgba(0, 82, 224, .22);
    box-shadow: 0 10px 32px rgba(0, 82, 224, .1);
    transform: translateY(-4px)
}

.ls-wstat:hover::before {
    opacity: 1;
    width: 5px
}

.ls-wstat-val {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .3rem
}

.ls-wstat:hover .ls-wstat-val {
    background: linear-gradient(135deg, #0052e0, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ls-wstat-title {
    font-size: .8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .2rem
}

.ls-wstat-sub {
    font-size: .71rem;
    color: #94a3b8;
    line-height: 1.4
}

.ls-wstat-wide {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.15rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: border-color .22s, box-shadow .22s, transform .2s
}

.ls-wstat-wide:hover {
    border-color: rgba(0, 82, 224, .22);
    box-shadow: 0 10px 32px rgba(0, 82, 224, .1);
    transform: translateY(-4px)
}

.ls-wstat-wide-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #0052e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 82, 224, .35)
}

.ls-wstat-wide-ico svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ls-wstat-wide-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    flex-shrink: 0
}

.ls-wstat-wide-title {
    font-size: .8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px
}

.ls-wstat-wide-sub {
    font-size: .71rem;
    color: #94a3b8;
    line-height: 1.35
}

.ls-quote-card {
    background: linear-gradient(145deg, #0040c0, #0040c0);
    border-radius: 16px;
    padding: 1.4rem;
    position: relative;
    overflow: hidden
}

.ls-quote-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 5rem;
    color: rgba(255, 255, 255, .1);
    font-family: serif;
    line-height: 1;
    pointer-events: none
}

.ls-qc-text {
    font-size: .82rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.72;
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    z-index: 1
}

.ls-qc-by {
    display: flex;
    align-items: center;
    gap: .7rem;
    position: relative;
    z-index: 1
}

.ls-qc-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 1.5px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.ls-qc-name {
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.ls-qc-role {
    font-size: .65rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 2px
}

.ls-qc-stars {
    font-size: .72rem;
    color: #60a5fa;
    margin-left: auto;
    letter-spacing: 1px
}

/* ══════════════════════════════
   4. GBP OPTIMISATION
══════════════════════════════ */
.ls-gbp-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.ls-gbp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start
}

.ls-gbp-visual {
    background: #fff7ed;
    border: 1.5px solid #dce8ff;
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden
}

.ls-gbp-visual::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .09), transparent 65%)
}

.ls-gv-head {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .45rem
}

.ls-gv-head::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0052e0;
    display: block;
    box-shadow: 0 0 8px rgba(0, 82, 224, .5)
}

.ls-gbp-profile {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: .875rem
}

.ls-gbp-ph {
    height: 72px;
    background: linear-gradient(135deg, #0052e0, #0040c0);
    position: relative
}

.ls-gbp-ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 20px 20px
}

.ls-gbp-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 2px solid #e2e8f0;
    position: absolute;
    bottom: -16px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem
}

.ls-gbp-info {
    padding: 1.25rem 1rem .875rem 1rem
}

.ls-gbp-name {
    font-size: .92rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .18rem
}

.ls-gbp-cat {
    font-size: .72rem;
    color: #64748b;
    margin-bottom: .5rem
}

.ls-gbp-stars-row {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .625rem
}

.ls-gbp-stars {
    color: #2563eb;
    font-size: .82rem;
    letter-spacing: 1px
}

.ls-gbp-rating {
    font-size: .78rem;
    font-weight: 700;
    color: #0f172a
}

.ls-gbp-reviews {
    font-size: .72rem;
    color: #64748b
}

.ls-gbp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem
}

.ls-gbp-chip {
    font-size: .62rem;
    font-weight: 600;
    padding: .16rem .5rem;
    border-radius: 100px
}

.ls-gbp-chip-ok {
    background: #dcfce7;
    color: #15803d
}

.ls-gbp-chip-w {
    background: #fff7ed;
    color: #0040c0
}

.ls-gbp-chip-b {
    background: #eff6ff;
    color: #1d4ed8
}

.ls-gbp-checks {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.ls-gbp-check {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem .6rem;
    border-radius: 8px;
    font-size: .78rem;
    color: #475569;
    background: #fff;
    border: 1px solid #f1f5f9
}

.ls-gbp-check-ico {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .58rem
}

.ls-gbp-check-ok .ls-gbp-check-ico {
    background: #dcfce7;
    color: #15803d
}

.ls-gbp-check-ok {
    border-color: rgba(22, 163, 74, .12)
}

.ls-gbp-check-fix .ls-gbp-check-ico {
    background: #fff7ed;
    color: #0052e0
}

.ls-gbp-check-fix {
    border-color: rgba(0, 82, 224, .15)
}

.ls-gbp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-top: 1rem
}

.ls-gvs {
    text-align: center;
    padding: .55rem .3rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #dce8ff
}

.ls-gvs-v {
    font-size: 1rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.03em;
    line-height: 1
}

.ls-gvs-l {
    font-size: .58rem;
    color: #94a3b8;
    margin-top: 3px
}

.ls-gbp-copy p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.3rem
}

.ls-gbp-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.ls-fl {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .83rem;
    color: #475569;
    line-height: 1.5;
    padding: .5rem .65rem;
    border-radius: 10px;
    background: rgba(0, 82, 224, .04);
    border: 1px solid rgba(0, 82, 224, .08);
    transition: background .15s, border-color .15s
}

.ls-fl:hover {
    background: rgba(0, 82, 224, .09);
    border-color: rgba(0, 82, 224, .16)
}

.ls-fl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0052e0;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 6px rgba(0, 82, 224, .4)
}

/* ══════════════════════════════
   5. CITATION BUILDING
══════════════════════════════ */
.ls-cit-sec {
    background: #f0f5ff;
    border-top: 1px solid #dce8ff;
    border-bottom: 1px solid #dce8ff
}

.ls-cit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center
}

.ls-cit-copy p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.3rem
}

.ls-cit-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.ls-dir-visual {
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.ls-dir-head {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #94a3b8;
    margin-bottom: .25rem;
    display: flex;
    align-items: center;
    gap: .45rem
}

.ls-dir-head::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0052e0;
    display: block;
    box-shadow: 0 0 8px rgba(0, 82, 224, .5)
}

.ls-dir {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    transition: border-color .2s, box-shadow .2s, transform .18s
}

.ls-dir:hover {
    border-color: rgba(0, 82, 224, .22);
    box-shadow: 0 6px 18px rgba(0, 82, 224, .08);
    transform: translateX(5px)
}

.ls-dir.ls-dir-live {
    border-color: rgba(22, 163, 74, .2);
    background: #f0fdf4
}

.ls-dir.ls-dir-missing {
    border-color: rgba(0, 82, 224, .2);
    background: #fff7ed
}

.ls-dir-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0
}

.ls-dir-name {
    font-size: .82rem;
    font-weight: 700;
    color: #0f172a;
    flex: 1
}

.ls-dir-nap {
    font-size: .68rem;
    color: #64748b;
    margin-top: .08rem
}

.ls-dir-status {
    font-size: .6rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 100px
}

.ls-dir-live .ls-dir-status {
    background: #dcfce7;
    color: #15803d
}

.ls-dir-missing .ls-dir-status {
    background: #fff7ed;
    color: #0052e0
}

.ls-dir-score {
    text-align: right;
    flex-shrink: 0
}

.ls-dir-da {
    font-size: .78rem;
    font-weight: 800;
    color: #64748b
}

.ls-dir-dal {
    font-size: .58rem;
    color: #94a3b8
}

.ls-dir-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-top: .875rem
}

.ls-ds {
    text-align: center;
    padding: .55rem .3rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #dce8ff
}

.ls-ds-v {
    font-size: 1rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.03em;
    line-height: 1
}

.ls-ds-l {
    font-size: .58rem;
    color: #94a3b8;
    margin-top: 3px
}

/* ══════════════════════════════
   6. PROCESS — dark
══════════════════════════════ */
.ls-proc-sec {
    background: #060d1a;
    position: relative;
    overflow: hidden
}

.ls-proc-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none
}

.ls-proc-sec::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: min(360px, 45vw);
    height: min(360px, 45vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .14) 0%, transparent 65%);
    pointer-events: none
}

.ls-proc-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.ls-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1
}

.ls-step {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: background .22s, border-color .22s, transform .2s;
    position: relative;
    overflow: hidden
}

.ls-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0052e0, #60a5fa);
    opacity: 0;
    transition: opacity .22s
}

.ls-step:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(0, 82, 224, .3);
    transform: translateY(-4px)
}

.ls-step:hover::before {
    opacity: 1
}

.ls-step.ls-active-step {
    background: rgba(0, 82, 224, .1);
    border-color: rgba(0, 82, 224, .35)
}

.ls-step.ls-active-step::before {
    opacity: 1
}

.ls-step-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(0, 82, 224, .2);
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: .875rem
}

.ls-step.ls-active-step .ls-step-num {
    color: rgba(0, 82, 224, .5)
}

.ls-step-title {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .45rem;
    line-height: 1.3
}

.ls-step-desc {
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.7;
    margin-bottom: .875rem
}

.ls-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .32rem
}

.ls-step-tag {
    font-size: .6rem;
    font-weight: 600;
    color: rgba(59, 130, 246, .7);
    background: rgba(0, 82, 224, .1);
    border: 1px solid rgba(0, 82, 224, .18);
    border-radius: 100px;
    padding: .13rem .52rem
}

.ls-timeline {
    display: flex;
    gap: 0;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    overflow: hidden
}

.ls-tl-item {
    flex: 1;
    padding: 1rem .75rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .06)
}

.ls-tl-item:last-child {
    border-right: none
}

.ls-tl-day {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.04em
}

.ls-tl-lbl {
    font-size: .58rem;
    color: rgba(255, 255, 255, .3);
    margin-top: .2rem;
    font-family: "JetBrains Mono", monospace
}

.ls-tl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0052e0;
    margin: .55rem auto 0;
    box-shadow: 0 0 0 2px rgba(0, 82, 224, .3)
}

/* ══════════════════════════════
   7. REVIEW MANAGEMENT
══════════════════════════════ */
.ls-reviews-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.ls-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start
}

.ls-reviews-copy p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.3rem
}

.ls-reviews-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.ls-rev-cards {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.ls-rev-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    transition: box-shadow .2s, transform .2s;
    cursor: default
}

.ls-rev-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    transform: translateY(-2px)
}

.ls-rev-top {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .6rem
}

.ls-rev-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.ls-rev-name {
    font-size: .82rem;
    font-weight: 700;
    color: #0f172a
}

.ls-rev-meta {
    font-size: .68rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: .35rem
}

.ls-rev-stars {
    color: #2563eb;
    font-size: .7rem;
    letter-spacing: .5px
}

.ls-rev-dot {
    color: #e2e8f0
}

.ls-rev-body {
    font-size: .78rem;
    color: #475569;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: .5rem
}

.ls-rev-platform {
    font-size: .62rem;
    font-weight: 600;
    color: #0052e0;
    background: #fff7ed;
    padding: .12rem .45rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: .28rem
}

.ls-rev-platform svg {
    width: 8px;
    height: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ls-reviews-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-top: .875rem
}

.ls-rstat {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: border-color .2s, transform .2s
}

.ls-rstat:hover {
    border-color: rgba(0, 82, 224, .2);
    transform: translateY(-2px)
}

.ls-rstat-v {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .2rem
}

.ls-rstat-l {
    font-size: .7rem;
    color: #64748b
}

/* ══════════════════════════════
   8. TOOLS
══════════════════════════════ */
.ls-tools-sec {
    background: #f0f5ff;
    border-top: 1px solid #dce8ff;
    border-bottom: 1px solid #dce8ff
}

.ls-sh2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    margin-bottom: 2.75rem
}

.ls-sh2 p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.72;
    margin-top: .65rem
}

.ls-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem
}

.ls-tool-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.4rem 1.2rem;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden
}

.ls-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0052e0, #60a5fa);
    opacity: 0;
    transition: opacity .2s
}

.ls-tool-card:hover {
    border-color: rgba(0, 82, 224, .25);
    box-shadow: 0 8px 24px rgba(0, 82, 224, .09);
    transform: translateY(-4px)
}

.ls-tool-card:hover::before {
    opacity: 1
}

.ls-tool-ico {
    font-size: 1.55rem;
    margin-bottom: .75rem
}

.ls-tool-card h4 {
    font-size: .88rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .3rem
}

.ls-tool-card p {
    font-size: .75rem;
    color: #475569;
    line-height: 1.6
}

.ls-tool-tag {
    display: inline-block;
    margin-top: .55rem;
    font-size: .6rem;
    font-weight: 700;
    color: #0052e0;
    background: #fff7ed;
    border-radius: 5px;
    padding: .13rem .48rem
}

/* ══════════════════════════════
   9. DELIVERABLES
══════════════════════════════ */
.ls-deliv-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.ls-deliv-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    margin-bottom: 2.5rem
}

.ls-deliv-head p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.72;
    margin-top: .65rem
}

.ls-deliv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem
}

.ls-dcard {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.65rem;
    position: relative;
    overflow: hidden;
    transition: border-color .22s, box-shadow .22s, transform .22s
}

.ls-dcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0052e0, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.ls-dcard:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 18px 48px rgba(0, 82, 224, .09);
    transform: translateY(-7px)
}

.ls-dcard:hover::before {
    transform: scaleX(1)
}

.ls-dcard-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .95rem;
    transition: background .2s, box-shadow .2s
}

.ls-dcard-ico svg {
    width: 19px;
    height: 19px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s
}

.ls-dcard:hover .ls-dcard-ico {
    background: #0052e0;
    box-shadow: 0 6px 18px rgba(0, 82, 224, .4)
}

.ls-dcard:hover .ls-dcard-ico svg {
    stroke: #fff
}

.ls-dcard h3 {
    font-size: .97rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .38rem
}

.ls-dcard p {
    font-size: .81rem;
    color: #475569;
    line-height: 1.68;
    margin-bottom: .85rem
}

.ls-dlist {
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.ls-dl {
    display: flex;
    align-items: flex-start;
    gap: .48rem;
    font-size: .75rem;
    color: #475569
}

.ls-dl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0052e0;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 5px rgba(0, 82, 224, .35)
}

/* ══════════════════════════════
   10. COMPARISON
══════════════════════════════ */
.ls-cmp-sec {
    background: #f0f5ff;
    border-top: 1px solid #dce8ff
}

.ls-cmpbox {
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04)
}

.ls-cmpscroll {
    overflow-x: auto
}

.ls-cmpt {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px
}

.ls-cmpt th {
    padding: .9rem 1.25rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #64748b;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    text-align: left
}

.ls-cmpt th.ls-thus {
    background: rgba(0, 82, 224, .07);
    color: #0040c0
}

.ls-cmpt td {
    padding: .9rem 1.25rem;
    font-size: .84rem;
    border-bottom: 1px solid #f1f5f9;
    text-align: left
}

.ls-cmpt tr:last-child td {
    border-bottom: none
}

.ls-cmpt tr:hover td {
    background: #f0f5ff
}

.ls-cmpt td:first-child {
    font-weight: 600;
    color: #0f172a
}

.ls-tdno {
    color: #94a3b8
}

.ls-tdmeh {
    color: #1d4ed8
}

.ls-tdyes {
    background: #fff7ed;
    color: #0040c0;
    font-weight: 700
}

.ls-tdyes,
.ls-cmpt th.ls-thus {
    border-left: 2px solid rgba(0, 82, 224, .2)
}

.ls-ix {
    color: #dc2626;
    font-weight: 800
}

.ls-io {
    color: #0040c0;
    font-weight: 800
}

.ls-im {
    color: #1d4ed8;
    font-weight: 800
}

/* ══════════════════════════════
   11. FAQ
══════════════════════════════ */
.ls-faq-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.ls-faq-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 5rem;
    align-items: start
}

.ls-faq-left .ls-h2 {
    margin: .65rem 0 .85rem
}

.ls-faq-left>p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.85rem
}

.ls-faq-cta {
    background: #fff7ed;
    border: 1.5px solid #dce8ff;
    border-radius: 16px;
    padding: 1.4rem 1.5rem
}

.ls-faq-cta h4 {
    font-size: .94rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .35rem
}

.ls-faq-cta p {
    font-size: .79rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 1rem
}

.ls-faq-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.ls-faq-item {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 13px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s
}

.ls-faq-item.ls-open {
    border-color: rgba(0, 82, 224, .25);
    box-shadow: 0 6px 24px rgba(0, 82, 224, .08)
}

.ls-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    user-select: none;
    transition: background .15s
}

.ls-faq-q:hover {
    background: #f0f5ff
}

.ls-faq-qt {
    font-size: .85rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.45
}

.ls-faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .25s
}

.ls-faq-icon svg {
    width: 9px;
    height: 9px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ls-faq-item.ls-open .ls-faq-icon {
    background: #0052e0;
    transform: rotate(45deg)
}

.ls-faq-item.ls-open .ls-faq-icon svg {
    stroke: #fff
}

.ls-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.22, 1, .36, 1)
}

.ls-faq-item.ls-open .ls-faq-a {
    max-height: 320px
}

.ls-faq-ai {
    padding: .15rem 1.2rem 1rem;
    font-size: .82rem;
    color: #475569;
    line-height: 1.75
}

.ls-faq-ai strong {
    color: #0f172a;
    font-weight: 700
}

/* ══════════════════════════════
   12. RESULTS + AUDIT CTA
══════════════════════════════ */
.ls-results-sec {
    background: #fff7ed;
    border-top: 1px solid #dce8ff
}

.ls-results-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.75rem;
    align-items: start
}

.ls-result-cards {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.ls-rcard {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.3rem 1.5rem;
    display: grid;
    grid-template-columns: 90px 2px 1fr;
    align-items: center;
    gap: 1.1rem;
    transition: box-shadow .22s, transform .2s, border-color .2s;
    position: relative;
    overflow: hidden
}

.ls-rcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0052e0, #60a5fa);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.ls-rcard:hover {
    box-shadow: 0 8px 28px rgba(0, 82, 224, .1);
    transform: translateY(-3px);
    border-color: rgba(0, 82, 224, .18)
}

.ls-rcard:hover::before {
    transform: scaleY(1)
}

.ls-rcard-num {
    font-size: 2rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    text-align: right
}

.ls-rcard:hover .ls-rcard-num {
    background: linear-gradient(135deg, #0052e0, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ls-rcard-div {
    width: 2px;
    height: 36px;
    background: #e8f0ff;
    border-radius: 2px;
    justify-self: center
}

.ls-rcard-title {
    font-size: .84rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .18rem;
    line-height: 1.42
}

.ls-rcard-sub {
    font-size: .73rem;
    color: #94a3b8;
    margin-bottom: .35rem
}

.ls-rcard-tag {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    font-size: .61rem;
    font-weight: 600;
    color: #0040c0;
    background: #e8f0ff;
    padding: .14rem .5rem;
    border-radius: 100px;
    transition: background .15s, color .15s
}

.ls-rcard:hover .ls-rcard-tag {
    background: #0052e0;
    color: #fff
}

.ls-rcard-tag svg {
    width: 7px;
    height: 7px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ls-audit-cta {
    background: linear-gradient(145deg, #060d1a 0%, #091428 100%);
    border-radius: 18px;
    padding: 1.75rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25)
}

.ls-audit-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 82, 224, .13) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none
}

.ls-audit-cta::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .22), transparent 65%);
    pointer-events: none
}

.ls-ac-in {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.ls-ac-ey {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: rgba(147, 197, 253, .65);
    display: flex;
    align-items: center;
    gap: .32rem
}

.ls-ac-ey svg {
    width: 8px;
    height: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ls-ac-ttl {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    letter-spacing: -.022em
}

.ls-ac-ttl span {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ls-ac-sub {
    font-size: .77rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.62
}

.ls-ac-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    background: #0052e0;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .86rem;
    font-weight: 600;
    padding: .78rem 1.1rem;
    border-radius: 9px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 82, 224, .38);
    transition: background .15s, transform .12s;
    border: none;
    cursor: pointer;
    animation: ls-glow 3s 1.5s ease-in-out infinite
}

.ls-ac-btn:hover {
    background: #0040c0;
    transform: translateY(-2px)
}

.ls-ac-btn svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ls-ac-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .62);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .8rem;
    font-weight: 500;
    padding: .7rem 1.1rem;
    border-radius: 9px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .09);
    transition: background .15s
}

.ls-ac-ph:hover {
    background: rgba(255, 255, 255, .1)
}

.ls-ac-ph svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ls-ac-trust {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.ls-ac-ti {
    display: flex;
    align-items: center;
    gap: .32rem;
    font-size: .66rem;
    color: rgba(255, 255, 255, .28)
}

.ls-ac-ti svg {
    width: 9px;
    height: 9px;
    stroke: rgba(147, 197, 253, .8);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

/* ── Responsive ── */
@media(max-width:1200px) {
    .ls-results-layout {
        grid-template-columns: 1fr 290px
    }

    .ls-container {
        padding: 16px;
    }

}

@media(max-width:1024px) {

    .ls-hero-body,
    .ls-gbp-grid,
    .ls-cit-grid,
    .ls-reviews-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .ls-container {
        padding: 16px;
    }

    .ls-hero-right {
        display: none
    }

    .ls-hero-left {
        padding-bottom: 4.5rem
    }

    .ls-sh {
        grid-template-columns: 1fr;
        gap: .85rem
    }

    .ls-sh2 {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .ls-why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .ls-faq-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .ls-results-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .ls-deliv-head {
        grid-template-columns: 1fr;
        gap: 1rem
    }
}

@media(max-width:900px) {
    .ls-wwd-grid {
        grid-template-columns: 1fr 1fr
    }

    .ls-tools-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ls-deliv-grid {
        grid-template-columns: 1fr
    }

    .ls-steps-grid {
        grid-template-columns: 1fr 1fr
    }

    .ls-sgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ls-sitem {
        border-bottom: 1px solid #e2e8f0
    }

    .ls-sitem:nth-child(odd) {
        border-right: 1px solid #e2e8f0
    }

    .ls-sitem:nth-child(even) {
        border-right: none
    }

}

@media(max-width:640px) {

    .ls-wwd-grid,
    .ls-steps-grid,
    .ls-tools-grid {
        grid-template-columns: 1fr
    }

    .ls-wstat-grid {
        grid-template-columns: 1fr
    }

    .ls-hero-btns {
        flex-direction: column
    }

    .ls-btn-ghost-l {
        width: 100%;
        justify-content: center
    }

    .ls-reviews-stat-row {
        grid-template-columns: 1fr 1fr
    }

}