:root {
    --lh-ink: #07111f;
    --lh-ink-soft: #132337;
    --lh-muted: #5b6b7c;
    --lh-line: #d7e0ea;
    --lh-paper: #f3f7fb;
    --lh-white: #ffffff;
    --lh-cyan: #2ec4b6;
    --lh-cyan-deep: #1aa89b;
    --lh-blue: #3d8bfd;
    --lh-gradient: linear-gradient(145deg, #07111f 0%, #0d2744 48%, #164e7a 100%);
    --lh-radius: 14px;
    --lh-font: "Sora", "Segoe UI", sans-serif;
    --lh-display: "Fraunces", Georgia, serif;
    --lh-shadow: 0 24px 60px rgba(7, 17, 31, 0.18);
    --lh-pad-x: clamp(1rem, 4vw, 3rem);
    --lh-max: 1120px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

.lh-landing {
    margin: 0;
    font-family: var(--lh-font);
    color: #fff;
    line-height: 1.6;
    background: var(--lh-gradient);
    background-attachment: fixed;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
.lh-landing::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 80% 12%, rgba(46, 196, 182, 0.2), transparent 58%),
        radial-gradient(ellipse 55% 45% at 8% 70%, rgba(61, 139, 253, 0.16), transparent 55%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
main,
.lh-footer {
    position: relative;
    z-index: 1;
}

img, svg, video { max-width: 100%; height: auto; }

.lh-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #fff;
    padding: 0.5rem 1rem;
    z-index: 200;
}
.lh-skip:focus { left: 1rem; top: 1rem; }

/* —— Nav —— */
.lh-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    width: 100%;
    padding: 0 var(--lh-pad-x);
    padding-top: env(safe-area-inset-top);
    background: rgba(7, 17, 31, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* no backdrop-filter: it traps position:fixed descendants inside the bar */
}

.lh-nav-bar {
    width: min(var(--lh-max), 100%);
    margin: 0 auto;
    min-height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lh-logo {
    font-family: var(--lh-display);
    font-size: clamp(1.15rem, 3vw, 1.4rem);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    line-height: 1;
    flex-shrink: 0;
    z-index: 3;
}
.lh-logo span { color: var(--lh-cyan); }

.lh-nav-toggle {
    display: none;
    width: 2.6rem;
    height: 2.6rem;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 3;
    flex-shrink: 0;
}
.lh-nav-toggle span {
    display: block;
    width: 1.1rem;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.lh-nav-open .lh-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lh-nav-open .lh-nav-toggle span:nth-child(2) { opacity: 0; }
.lh-nav-open .lh-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lh-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    flex: 1 1 auto;
    min-width: 0;
}

.lh-nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem 1rem;
    flex-wrap: nowrap;
    min-width: 0;
}

.lh-nav-menu > a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    padding: 0.45rem 0;
    display: inline-flex;
    align-items: center;
}
.lh-nav-menu > a:hover { color: #fff; }

.lh-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: 0;
}

.lh-btn-nav {
    padding: 0.55rem 1rem;
    font-size: 0.84rem;
    line-height: 1;
}

.lh-nav-actions-inline {
    margin-left: 0;
}
.lh-nav-simple .lh-nav-bar {
    min-height: 4rem;
}
.lh-nav-simple .lh-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
}

.lh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.lh-btn:hover { transform: translateY(-1px); }
.lh-btn-lg { padding: 0.85rem 1.4rem; font-size: 0.95rem; }
.lh-btn-block { width: 100%; }

.lh-btn-primary {
    background: var(--lh-cyan);
    color: var(--lh-ink);
    box-shadow: 0 8px 24px rgba(46, 196, 182, 0.35);
}
.lh-btn-primary:hover { background: var(--lh-cyan-deep); color: #fff; }

.lh-btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.lh-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.lh-btn-ghost {
    background: rgba(255, 255, 255, 0.92);
    color: var(--lh-ink);
}
.lh-btn-ghost:hover { background: #fff; }

/* —— Hero (split: content | image) —— */
.lh-hero {
    position: relative;
    min-height: auto;
    padding: calc(5.25rem + env(safe-area-inset-top)) var(--lh-pad-x) clamp(1.5rem, 4vw, 2.5rem);
    background: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.lh-hero-atmosphere {
    display: none;
}

@keyframes lh-drift {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.05) translate(-1%, 1%); }
}

.lh-hero-inner {
    position: relative;
    z-index: 1;
    width: min(var(--lh-max), 100%);
    margin: 0 auto;
}

.lh-hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.lh-hero-copy {
    min-width: 0;
}

.lh-brand-mark {
    margin: 0 0 0.55rem;
    font-family: var(--lh-display);
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    word-break: break-word;
    animation: lh-rise 0.7s ease both;
}
.lh-brand-mark::after {
    content: "";
    display: inline-block;
    width: 0.42em;
    height: 0.42em;
    margin-left: 0.12em;
    border-radius: 50%;
    background: var(--lh-cyan);
    vertical-align: 0.15em;
    animation: lh-pulse 2.4s ease-out infinite;
}

.lh-hero-kicker {
    margin: 0 0 0.75rem;
    color: var(--lh-cyan);
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    animation: lh-rise 0.7s 0.05s ease both;
}

.lh-hero h1 {
    margin: 0 0 0.9rem;
    max-width: 16ch;
    font-size: clamp(1.35rem, 3.4vw, 2.15rem);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    animation: lh-rise 0.75s 0.08s ease both;
}

.lh-hero-lead {
    margin: 0 0 1.5rem;
    max-width: 34rem;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.78);
    animation: lh-rise 0.75s 0.14s ease both;
}

.lh-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
    animation: lh-rise 0.75s 0.2s ease both;
}

.lh-hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    animation: lh-rise 0.75s 0.26s ease both;
}
.lh-hero-mini-stat {
    min-width: 0;
    padding: 0.7rem 0.55rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.lh-hero-mini-stat strong {
    display: block;
    color: #fff;
    font-size: clamp(1rem, 2.4vw, 1.25rem);
}
.lh-hero-mini-stat span {
    display: block;
    margin-top: 0.15rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.25;
}

.lh-hero-media {
    min-width: 0;
    animation: lh-rise 0.9s 0.18s ease both;
}
.lh-hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 640px;
    margin-left: auto;
    border-radius: 22px;
    box-shadow: var(--lh-shadow);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.28));
}

/* —— Product visual bands (like hero image) —— */
.lh-visual-band {
    padding: clamp(1.75rem, 4vw, 2.75rem) var(--lh-pad-x);
    background: var(--lh-white);
}
.lh-visual-band-tint { background: var(--lh-paper); }
.lh-visual-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
}
.lh-visual-split.is-reverse .lh-visual-copy { order: 2; }
.lh-visual-split.is-reverse .lh-visual-media { order: 1; }
.lh-visual-kicker {
    margin: 0 0 0.45rem;
    color: var(--lh-cyan-deep);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.lh-visual-copy h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.lh-visual-copy > p {
    margin: 0 0 1rem;
    color: var(--lh-muted);
    font-size: 0.98rem;
    max-width: 34rem;
}
.lh-visual-points {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--lh-ink-soft);
    font-size: 0.92rem;
    display: grid;
    gap: 0.4rem;
}
.lh-visual-media {
    min-width: 0;
}
.lh-visual-frame {
    display: block;
    width: 100%;
    line-height: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(7, 17, 31, 0.14);
    background: #0a1626;
}
.lh-visual-frame svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}
.lh-visual-frame-hero {
    border-radius: 22px;
    box-shadow: var(--lh-shadow);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.28));
}
.lh-visual-media img,
.lh-hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(7, 17, 31, 0.14);
}
.lh-visual-media-wide {
    max-width: 860px;
    margin: 0 auto;
}
.lh-mb-visual {
    margin-bottom: 1.35rem;
}

/* legacy demo helpers */
.lh-hero-stage { width: 100%; max-width: 100%; }
.lh-product-plane {
    width: 100%;
    padding: clamp(0.9rem, 2.5vw, 1.35rem);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--lh-shadow);
}
.lh-mock-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}
.lh-mock-stat {
    padding: 0.75rem 0.5rem;
    border-radius: 12px;
    background: rgba(7, 17, 31, 0.35);
    text-align: center;
}
.lh-mock-stat strong { display: block; font-size: 1.25rem; color: #fff; }
.lh-mock-stat span { display: block; font-size: 0.68rem; color: rgba(255,255,255,.55); }
.lh-mock-chart {
    height: 90px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-top: 0.75rem;
    padding: 0.55rem;
    border-radius: 12px;
    background: rgba(7, 17, 31, 0.28);
}
.lh-mock-bar {
    flex: 1;
    height: var(--h, 50%);
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--lh-cyan), var(--lh-blue));
}

@keyframes lh-rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes lh-pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.45); }
    70% { box-shadow: 0 0 0 12px rgba(46, 196, 182, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}
@keyframes lh-grow {
    from { transform: scaleY(0.15); opacity: 0.4; }
    to { transform: scaleY(1); opacity: 1; }
}

/* —— Sections —— */
.lh-section {
    padding: clamp(1.75rem, 4vw, 2.75rem) var(--lh-pad-x);
}
.lh-section-tint { background: var(--lh-paper); }
.lh-section-inner {
    width: min(var(--lh-max), 100%);
    margin: 0 auto;
}

.lh-section-title {
    text-align: center;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}
.lh-section-title-left { text-align: left; }
.lh-section-title h2 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.45rem, 4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.lh-section-title p {
    margin: 0 auto;
    max-width: 38rem;
    color: var(--lh-muted);
    font-size: clamp(0.92rem, 2.2vw, 1.02rem);
}
.lh-section-title-left p { margin-left: 0; margin-right: 0; }

.lh-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: var(--lh-ink);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.lh-pill-soft {
    background: #e8f4ff;
    color: #1d4ed8;
    margin-bottom: 0.55rem;
}

.lh-modules,
.lh-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1.1rem);
}

.lh-module,
.lh-feature {
    min-width: 0;
    padding: 1.25rem;
    border-radius: var(--lh-radius);
    background: var(--lh-white);
    border: 1px solid var(--lh-line);
}
.lh-section:not(.lh-section-tint) .lh-feature {
    border: none;
    background: transparent;
    padding: 0.35rem 0.15rem;
}

.lh-module-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}
.lh-module-icon,
.lh-feature-icon {
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #e8f8f6, #dff0ff);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.lh-feature-icon { margin-bottom: 0.65rem; }
.lh-module h3,
.lh-feature h3 {
    margin: 0 0 0.4rem;
    font-size: 1.02rem;
    line-height: 1.3;
}
.lh-module p,
.lh-feature p {
    margin: 0;
    color: var(--lh-muted);
    font-size: 0.9rem;
}

.lh-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}
.lh-step { min-width: 0; }
.lh-step-num {
    display: inline-grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    margin-bottom: 0.75rem;
    border-radius: 999px;
    background: var(--lh-ink);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
}
.lh-step h3 { margin: 0 0 0.35rem; font-size: 0.98rem; }
.lh-step p { margin: 0; color: var(--lh-muted); font-size: 0.88rem; }

.lh-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    align-items: stretch;
}
.lh-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-width: 0;
    padding: 1.5rem 1.25rem;
    border-radius: var(--lh-radius);
    border: 1px solid var(--lh-line);
    background: var(--lh-white);
}
.lh-plan.is-featured {
    border-color: var(--lh-cyan);
    box-shadow: 0 16px 40px rgba(26, 168, 155, 0.14);
}
.lh-plan-badge {
    position: absolute;
    top: -0.65rem;
    right: 0.85rem;
    margin: 0;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: var(--lh-ink);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
}
.lh-plan-name { margin: 0; font-size: 1rem; }
.lh-plan-price {
    margin: 0;
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1;
}
.lh-plan-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lh-muted);
}
.lh-plan-quota {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lh-cyan-deep);
}
.lh-plan-desc { margin: 0; color: var(--lh-muted); font-size: 0.88rem; }
.lh-plan-list {
    margin: 0;
    padding-left: 1.05rem;
    color: var(--lh-muted);
    font-size: 0.86rem;
    display: grid;
    gap: 0.35rem;
}
.lh-plan-btn { margin-top: auto; width: 100%; }
.lh-plan .lh-btn-outline {
    color: var(--lh-ink);
    border-color: var(--lh-line);
}
.lh-plan .lh-btn-outline:hover {
    border-color: var(--lh-ink);
    background: var(--lh-paper);
}

.lh-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    align-items: stretch;
}
.lh-proof-grid,
.lh-testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}
.lh-cap {
    min-width: 0;
    height: 100%;
    padding: 1.15rem 1.2rem;
    border-radius: var(--lh-radius);
    background: var(--lh-white);
    border: 1px solid var(--lh-line);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.lh-cap h3 {
    margin: 0 0 0.7rem;
    font-size: 1rem;
    flex-shrink: 0;
}
.lh-cap ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--lh-muted);
    font-size: 0.88rem;
    display: grid;
    gap: 0.45rem;
    align-content: start;
    flex: 1 1 auto;
}
.lh-cap li {
    margin: 0;
    padding: 0;
    line-height: 1.45;
    list-style: disc;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.lh-cap-foot {
    display: inline-flex;
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid var(--lh-line);
    color: var(--lh-cyan-deep);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
}
.lh-cap-foot:hover { color: var(--lh-ink); }
.lh-proof {
    min-width: 0;
    padding: 1.5rem 1.45rem 1.55rem;
    border-radius: var(--lh-radius);
    background: var(--lh-white);
    border: 1px solid var(--lh-line);
    box-sizing: border-box;
}
.lh-proof h3 {
    margin: 0 0 0.7rem;
    font-size: 1.02rem;
    line-height: 1.35;
    padding-right: 0.15rem;
}
.lh-proof p {
    margin: 0;
    color: var(--lh-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.lh-quote {
    margin: 0;
    min-width: 0;
    padding: 1.35rem;
    border-radius: var(--lh-radius);
    background: var(--lh-paper);
    border-left: 3px solid var(--lh-cyan);
}
.lh-section-tint .lh-quote { background: var(--lh-white); }
.lh-quote > p {
    margin: 0 0 1.1rem;
    font-size: 0.95rem;
    color: var(--lh-ink-soft);
}
.lh-quote footer {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.lh-quote-avatar {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--lh-ink);
    color: var(--lh-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}
.lh-quote cite {
    font-style: normal;
    display: grid;
    min-width: 0;
}
.lh-quote cite strong { font-size: 0.9rem; }
.lh-quote cite span { font-size: 0.78rem; color: var(--lh-muted); }

.lh-faq-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(1.25rem, 3.5vw, 2.75rem);
    align-items: start;
}
.lh-faq-media {
    min-width: 0;
    position: sticky;
    top: 5.5rem;
}
.lh-faq-content {
    min-width: 0;
}
.lh-faq-content .lh-section-title {
    margin-bottom: 1rem;
}
.lh-faq-list {
    display: grid;
    gap: 0.6rem;
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
}
.lh-faq {
    border: 1px solid var(--lh-line);
    border-radius: 12px;
    background: var(--lh-white);
    padding: 0 1rem;
    text-align: left;
}
.lh-faq summary {
    cursor: pointer;
    list-style: none;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 1rem 2rem 1rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    text-align: left;
    color: inherit;
}
.lh-faq summary::-webkit-details-marker { display: none; }
.lh-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lh-muted);
    font-weight: 500;
    line-height: 1;
}
.lh-faq[open] summary::after { content: "–"; }
.lh-faq p {
    margin: 0 0 1rem;
    padding-right: 0.25rem;
    color: var(--lh-muted);
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.55;
}

.lh-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1rem, 3vw, 1.75rem);
    align-items: start;
}
.lh-contact-points {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--lh-muted);
    display: grid;
    gap: 0.4rem;
    font-size: 0.92rem;
}
.lh-contact-visual {
    margin-top: 1.25rem;
    min-width: 0;
    max-width: 100%;
}
.lh-contact-visual .lh-visual-frame {
    border-radius: 16px;
}
.lh-contact-panel {
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 18px;
    background: var(--lh-white);
    border: 1px solid var(--lh-line);
    min-width: 0;
}
.lh-section-tint .lh-contact-panel { background: var(--lh-white); }
.lh-contact-form { display: grid; gap: 0.8rem; }
.lh-form-row { display: grid; gap: 0.35rem; min-width: 0; }
.lh-form-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}
.lh-form-row label {
    font-size: 0.84rem;
    font-weight: 600;
}
.lh-input {
    width: 100%;
    max-width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--lh-line);
    border-radius: 10px;
    font: inherit;
    font-size: 1rem;
    background: #fff;
    color: var(--lh-ink);
}
.lh-input:focus {
    outline: 2px solid rgba(46, 196, 182, 0.45);
    border-color: var(--lh-cyan);
}
textarea.lh-input { resize: vertical; min-height: 120px; }

.lh-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.lh-alert {
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    font-size: 0.9rem;
}
.lh-alert-ok {
    background: #e7f8f4;
    color: #0f5c52;
    border: 1px solid #b6e8de;
}
.lh-alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.lh-legal-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}
.lh-legal-card {
    min-width: 0;
    padding: 1.25rem;
    border-radius: var(--lh-radius);
    border: 1px solid var(--lh-line);
    background: var(--lh-paper);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.lh-legal-card h3 { margin: 0; font-size: 1.1rem; }
.lh-legal-card p {
    margin: 0;
    color: var(--lh-muted);
    font-size: 0.9rem;
}
.lh-legal-card ul {
    margin: 0;
    padding-left: 1.05rem;
    color: var(--lh-muted);
    font-size: 0.86rem;
    display: grid;
    gap: 0.3rem;
}
.lh-legal-card .lh-btn { margin-top: auto; align-self: flex-start; }

.lh-legal-page {
    padding: calc(5.5rem + env(safe-area-inset-top)) var(--lh-pad-x) 2rem;
    background: var(--lh-paper);
    min-height: 70vh;
}
.lh-legal-wrap {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--lh-line);
}
.lh-legal-kicker {
    margin: 0 0 0.35rem;
    color: var(--lh-cyan-deep);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.lh-legal-wrap h1 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
}
.lh-legal-updated {
    margin: 0 0 1.25rem;
    color: var(--lh-muted);
    font-size: 0.85rem;
}
.lh-legal-body {
    color: var(--lh-ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}
.lh-legal-body h2 {
    margin: 1.35rem 0 0.45rem;
    font-size: 1.05rem;
    color: var(--lh-ink);
}
.lh-legal-body p { margin: 0 0 0.75rem; }
.lh-legal-body ul {
    margin: 0 0 0.85rem;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.35rem;
}
.lh-legal-body a { color: var(--lh-cyan-deep); }
.lh-legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--lh-line);
}
.lh-legal-actions .lh-btn-outline {
    color: var(--lh-ink);
    border-color: var(--lh-line);
}
.lh-footer-bottom a {
    display: inline;
    color: rgba(255, 255, 255, 0.75);
}

.lh-cta-band {
    margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
    width: min(var(--lh-max), calc(100% - (var(--lh-pad-x) * 2)));
    padding: clamp(1.5rem, 4vw, 2.25rem) var(--lh-pad-x);
    border-radius: clamp(14px, 3vw, 22px);
    background: var(--lh-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lh-cta-band::before {
    content: "";
    position: absolute;
    inset: auto -10% -40% 30%;
    height: 120%;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.25), transparent 60%);
    pointer-events: none;
}
.lh-cta-band h2,
.lh-cta-band p,
.lh-cta-band-actions { position: relative; z-index: 1; }
.lh-cta-band h2 {
    margin: 0 0 0.55rem;
    color: #fff;
    font-size: clamp(1.3rem, 3.5vw, 1.85rem);
}
.lh-cta-band p {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}
.lh-cta-band-actions {
    margin: 0;
    justify-content: center;
}

.lh-footer {
    background: var(--lh-ink);
    color: rgba(255, 255, 255, 0.68);
    padding: clamp(2rem, 5vw, 3rem) var(--lh-pad-x) 2rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
}
.lh-footer-grid {
    width: min(var(--lh-max), 100%);
    margin: 0 auto 1.5rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 1.25rem;
}
.lh-footer-brand {
    font-family: var(--lh-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.55rem;
}
.lh-footer strong {
    display: block;
    color: #fff;
    margin-bottom: 0.65rem;
}
.lh-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}
.lh-footer a:hover { color: #fff; }
.lh-footer-bottom {
    width: min(var(--lh-max), 100%);
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.84rem;
}

.lh-bg-light { background: var(--lh-paper); }

/* Demo leftovers */
.lh-demo-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.lh-demo-kpi {
    border: 1px solid var(--lh-line);
    border-radius: 12px;
    padding: 1rem;
    background: #fff;
    min-width: 0;
}
.lh-demo-kpi span {
    display: block;
    font-size: 0.8rem;
    color: var(--lh-muted);
    margin-bottom: 0.3rem;
}
.lh-demo-kpi strong { font-size: 1.15rem; word-break: break-word; }
.lh-demo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.lh-demo-card {
    border: 1px solid var(--lh-line);
    border-radius: 12px;
    background: #fff;
    padding: 1rem;
    overflow-x: auto;
    min-width: 0;
}
.lh-demo-note { margin: 0 0 0.75rem; font-size: 0.88rem; color: var(--lh-muted); }
.lh-demo-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.lh-demo-table th,
.lh-demo-table td {
    text-align: left;
    padding: 0.5rem 0.3rem;
    border-bottom: 1px solid var(--lh-line);
}
.lh-locked-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}
.lh-locked-item {
    border: 1px dashed #93c5fd;
    border-radius: 12px;
    padding: 1rem;
    background: #eff6ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.lh-locked-badge {
    background: #1d4ed8;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
    flex-shrink: 0;
}

/* —— Nav collapses before content grids —— */
@media (max-width: 1200px) {
    .lh-nav-toggle {
        display: inline-flex !important;
        position: relative;
        z-index: 3;
    }
    .lh-logo {
        position: relative;
        z-index: 3;
    }
    /* Expand header so absolute menu fills the screen (avoids body overflow clipping) */
    .lh-nav.is-open {
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        background: rgba(7, 17, 31, 0.98);
        border-bottom: none;
    }
    .lh-nav-links {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0;
        padding: calc(4.75rem + env(safe-area-inset-top)) max(var(--lh-pad-x), env(safe-area-inset-right)) 2rem max(var(--lh-pad-x), env(safe-area-inset-left));
        background: rgba(7, 17, 31, 0.98);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }
    .lh-nav-links.is-open {
        display: flex !important;
    }
    body.lh-nav-open {
        overflow: hidden;
    }
    .lh-nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        max-width: min(var(--lh-max), 100%);
        margin: 0 auto;
    }
    .lh-nav-menu > a {
        padding: 0.95rem 0.15rem;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        white-space: normal;
        color: #fff;
    }
    .lh-nav-actions {
        margin: 1.15rem auto 0;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: min(var(--lh-max), 100%);
        gap: 0.65rem;
    }
    .lh-nav-actions .lh-btn { width: 100%; }
}

/* —— Large tablet / small desktop —— */
@media (max-width: 1100px) {
    .lh-hero-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .lh-hero-media { order: -1; }
    .lh-hero-image {
        margin: 0 auto;
        max-width: min(100%, 520px);
    }
    .lh-hero h1 { max-width: none; }

    .lh-visual-split,
    .lh-visual-split.is-reverse {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .lh-visual-split.is-reverse .lh-visual-copy,
    .lh-visual-split.is-reverse .lh-visual-media {
        order: initial;
    }
    .lh-visual-media { order: -1; }
    .lh-visual-media img {
        max-width: min(100%, 560px);
        margin: 0 auto;
    }

    .lh-faq-split {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .lh-faq-media {
        position: static;
        order: -1;
        max-width: min(100%, 420px);
        margin: 0 auto;
    }
    .lh-faq-content .lh-section-title {
        text-align: center;
    }
    .lh-faq-content .lh-section-title p {
        margin-left: auto;
        margin-right: auto;
    }

    .lh-modules,
    .lh-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lh-plans,
    .lh-cap-grid,
    .lh-proof-grid,
    .lh-testimonials {
        grid-template-columns: 1fr;
    }
    .lh-cap-grid {
        align-items: stretch;
    }
    .lh-cap {
        height: auto;
    }
    .lh-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lh-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* —— Tablet —— */
@media (max-width: 960px) {
    .lh-modules,
    .lh-features,
    .lh-plans,
    .lh-cap-grid,
    .lh-proof-grid,
    .lh-testimonials,
    .lh-legal-cards,
    .lh-steps { grid-template-columns: 1fr; }

    .lh-contact-grid { grid-template-columns: 1fr; }
    .lh-footer-grid { grid-template-columns: 1fr 1fr; }
    .lh-demo-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lh-demo-grid,
    .lh-locked-list { grid-template-columns: 1fr; }

    .lh-hero {
        min-height: auto;
        align-items: center;
        padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    }
    .lh-hero-mini-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lh-cap,
    .lh-plan,
    .lh-module,
    .lh-quote {
        height: auto;
    }
    .lh-section:not(.lh-section-tint) .lh-feature {
        border: 1px solid var(--lh-line);
        background: var(--lh-white);
        padding: 1.15rem;
        border-radius: var(--lh-radius);
    }
    .lh-legal-page {
        padding-left: var(--lh-pad-x);
        padding-right: var(--lh-pad-x);
    }
    .lh-legal-wrap { padding: 1.15rem; }
    .lh-legal-actions .lh-btn { width: 100%; justify-content: center; }
}

/* —— Phone —— */
@media (max-width: 640px) {
    .lh-modules,
    .lh-features,
    .lh-steps,
    .lh-footer-grid,
    .lh-form-split,
    .lh-hero-mini-stats,
    .lh-demo-kpis { grid-template-columns: 1fr; }

    .lh-hero-cta,
    .lh-cta-band-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .lh-hero-cta .lh-btn,
    .lh-cta-band-actions .lh-btn,
    .lh-plan-btn,
    .lh-cap-foot {
        width: 100%;
        justify-content: center;
    }
    .lh-brand-mark {
        font-size: clamp(1.85rem, 9vw, 2.5rem);
    }
    .lh-cap ul {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    .lh-mock-stats { grid-template-columns: 1fr; }

    .lh-nav-simple .lh-nav-bar {
        flex-wrap: nowrap;
    }
    .lh-nav-actions-inline {
        margin-left: auto;
        flex-wrap: nowrap;
    }
    .lh-nav-actions-inline .lh-btn {
        flex: 0 0 auto;
    }
    .lh-nav-actions-inline .lh-btn-ghost { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .lh-hero-atmosphere,
    .lh-brand-mark::after,
    .lh-mock-bar,
    .lh-brand-mark,
    .lh-hero-kicker,
    .lh-hero h1,
    .lh-hero-lead,
    .lh-hero-cta,
    .lh-hero-mini-stats,
    .lh-hero-media,
    .lh-hero-float,
    .lh-svg-orb,
    .lh-svg-bar,
    .lh-svg-line,
    .lh-svg-area,
    .lh-svg-pulse-dot,
    .lh-svg-float-badge,
    .lh-svg-card,
    .lh-svg-flow-dot,
    .lh-svg-cal-hot,
    .lh-reveal { animation: none !important; transition: none !important; }
    .lh-reveal { opacity: 1; transform: none; }
}

/* —— Unified banner look for whole landing —— */
.lh-section,
.lh-visual-band,
.lh-section-tint,
.lh-visual-band-tint,
.lh-bg-light {
    background: transparent !important;
}

.lh-section-title h2,
.lh-visual-copy h2,
.lh-module h3,
.lh-feature h3,
.lh-step h3,
.lh-plan-name,
.lh-plan-price,
.lh-cap h3,
.lh-proof h3,
.lh-faq summary,
.lh-contact-copy h2,
.lh-legal-card h3 {
    color: #fff;
}

.lh-section-title p,
.lh-visual-copy > p,
.lh-module p,
.lh-feature p,
.lh-step p,
.lh-plan-desc,
.lh-plan-list,
.lh-cap ul,
.lh-proof p,
.lh-faq p,
.lh-contact-points,
.lh-visual-points,
.lh-quote cite span,
.lh-plan-price span {
    color: rgba(255, 255, 255, 0.72) !important;
}

.lh-visual-kicker,
.lh-plan-quota,
.lh-cap-foot {
    color: var(--lh-cyan) !important;
}

.lh-module,
.lh-feature,
.lh-plan,
.lh-cap,
.lh-proof,
.lh-quote,
.lh-faq,
.lh-contact-panel,
.lh-legal-card,
.lh-demo-kpi,
.lh-demo-card {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px);
    box-shadow: none;
}

.lh-section:not(.lh-section-tint) .lh-feature {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 1.15rem;
    border-radius: var(--lh-radius);
}

.lh-module-icon,
.lh-feature-icon {
    background: rgba(46, 196, 182, 0.16);
}

.lh-step-num {
    background: var(--lh-cyan);
    color: var(--lh-ink);
}

.lh-pill {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.lh-pill-soft {
    background: rgba(46, 196, 182, 0.18);
    color: var(--lh-cyan);
}

.lh-plan.is-featured {
    border-color: rgba(46, 196, 182, 0.55) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.lh-plan-badge {
    background: var(--lh-cyan);
    color: var(--lh-ink);
}
.lh-plan .lh-btn-outline,
.lh-legal-actions .lh-btn-outline {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}
.lh-plan .lh-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #fff !important;
}

.lh-quote {
    border-left-color: var(--lh-cyan);
}
.lh-quote > p { color: rgba(255, 255, 255, 0.9) !important; }
.lh-quote cite strong { color: #fff; }
.lh-quote-avatar {
    background: rgba(255, 255, 255, 0.1);
    color: var(--lh-cyan);
}

.lh-cap li { color: rgba(255, 255, 255, 0.78); }
.lh-cap-foot {
    border-top-color: rgba(255, 255, 255, 0.12);
}
.lh-cap-foot:hover { color: #fff !important; }

.lh-faq summary::after { color: rgba(255, 255, 255, 0.5); }

.lh-form-row label { color: rgba(255, 255, 255, 0.9); }
.lh-input {
    background: rgba(7, 17, 31, 0.45) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
}
.lh-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.lh-input:focus {
    border-color: var(--lh-cyan) !important;
    outline-color: rgba(46, 196, 182, 0.45);
}

.lh-cta-band {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}
.lh-cta-band::before {
    background: radial-gradient(circle, rgba(46, 196, 182, 0.28), transparent 60%);
}

.lh-footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.lh-footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.lh-alert-ok {
    background: rgba(46, 196, 182, 0.15);
    color: #b8f3ea;
    border-color: rgba(46, 196, 182, 0.35);
}
.lh-alert-danger {
    background: rgba(248, 113, 113, 0.15);
    color: #fecaca;
    border-color: rgba(248, 113, 113, 0.35);
}

.lh-visual-frame {
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 960px) {
    .lh-section:not(.lh-section-tint) .lh-feature {
        background: rgba(255, 255, 255, 0.07) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
    }
}

/* —— Scroll reveal —— */
.lh-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: calc(var(--reveal-delay, 0) * 70ms);
}
.lh-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

/* —— Hero / visual motion —— */
.lh-hero-float {
    animation: lh-float-y 5.5s ease-in-out infinite;
}
@keyframes lh-float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.lh-visual-alive .lh-svg-orb-a {
    animation: lh-orb 8s ease-in-out infinite alternate;
    transform-origin: center;
}
.lh-visual-alive .lh-svg-orb-b {
    animation: lh-orb 9.5s ease-in-out infinite alternate-reverse;
    transform-origin: center;
}
@keyframes lh-orb {
    from { transform: scale(1) translate(0, 0); opacity: 0.9; }
    to { transform: scale(1.12) translate(-6px, 8px); opacity: 1; }
}

.lh-visual-alive .lh-svg-bar {
    transform-box: fill-box;
    transform-origin: bottom center;
    animation: lh-bar-grow 1.1s ease both;
}
.lh-visual-alive .lh-svg-bar:nth-child(1) { animation-delay: 0.05s; }
.lh-visual-alive .lh-svg-bar:nth-child(2) { animation-delay: 0.12s; }
.lh-visual-alive .lh-svg-bar:nth-child(3) { animation-delay: 0.18s; }
.lh-visual-alive .lh-svg-bar:nth-child(4) { animation-delay: 0.24s; }
.lh-visual-alive .lh-svg-bar:nth-child(5) { animation-delay: 0.3s; }
.lh-visual-alive .lh-svg-bar:nth-child(6) { animation-delay: 0.36s; }
.lh-visual-alive .lh-svg-bar:nth-child(7) { animation-delay: 0.42s; }
@keyframes lh-bar-grow {
    from { transform: scaleY(0.15); opacity: 0.35; }
    to { transform: scaleY(1); opacity: 1; }
}

.lh-visual-alive .lh-svg-line {
    stroke-dasharray: 480;
    stroke-dashoffset: 480;
    animation: lh-draw 2.2s 0.35s ease forwards;
}
.lh-visual-alive .lh-svg-area {
    opacity: 0;
    animation: lh-fade-in 1.2s 0.8s ease forwards;
}
@keyframes lh-draw {
    to { stroke-dashoffset: 0; }
}
@keyframes lh-fade-in {
    to { opacity: 1; }
}

.lh-visual-alive .lh-svg-pulse-dot {
    animation: lh-dot-pulse 2s ease-out infinite;
}
@keyframes lh-dot-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.35; }
    100% { opacity: 1; }
}

.lh-visual-alive .lh-svg-float-badge {
    animation: lh-float-y 4.8s ease-in-out infinite;
}
.lh-visual-alive .lh-svg-float-badge.lh-svg-delay-2 {
    animation-delay: 0.6s;
}

.lh-visual-alive .lh-svg-card {
    opacity: 0;
    animation: lh-rise 0.7s ease forwards;
}
.lh-visual-alive .lh-svg-delay-1 { animation-delay: 0.15s; }
.lh-visual-alive .lh-svg-delay-2 { animation-delay: 0.28s; }
.lh-visual-alive .lh-svg-delay-3 { animation-delay: 0.4s; }

.lh-visual-alive .lh-svg-flow-dot {
    animation: lh-dot-pulse 2.4s ease-out infinite;
}
.lh-visual-alive .lh-svg-flow-dot:nth-of-type(2) { animation-delay: 0.3s; }
.lh-visual-alive .lh-svg-flow-dot:nth-of-type(3) { animation-delay: 0.6s; }
.lh-visual-alive .lh-svg-flow-dot:nth-of-type(4) { animation-delay: 0.9s; }

.lh-visual-alive .lh-svg-cal-hot {
    animation: lh-cal-glow 2.8s ease-in-out infinite;
}
@keyframes lh-cal-glow {
    0%, 100% { fill-opacity: 0.28; }
    50% { fill-opacity: 0.55; }
}

.lh-module:hover,
.lh-feature:hover,
.lh-plan:hover,
.lh-proof:hover,
.lh-quote:hover {
    transform: translateY(-4px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.lh-module,
.lh-feature,
.lh-plan,
.lh-proof,
.lh-quote {
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.lh-visual-frame.lh-visual-alive {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.lh-visual-media:hover .lh-visual-frame.lh-visual-alive:not(.lh-hero-float) {
    transform: translateY(-6px) scale(1.01);
}


