/* ─── Licosto Landing — dark premium theme ─── */

:root {
    --ll-bg: #060608;
    --ll-bg-elevated: #0e0e14;
    --ll-bg-card: rgba(18, 18, 28, 0.72);
    --ll-bg-glass: rgba(12, 12, 20, 0.55);
    --ll-border: rgba(255, 255, 255, 0.06);
    --ll-border-hover: rgba(255, 255, 255, 0.12);
    --ll-text: #f4f4f8;
    --ll-text-muted: rgba(244, 244, 248, 0.58);
    --ll-text-soft: rgba(244, 244, 248, 0.38);
    --ll-accent-blue: #4f8cff;
    --ll-accent-purple: #8b5cf6;
    --ll-accent-cyan: #22d3ee;
    --ll-gradient: linear-gradient(135deg, #4f8cff 0%, #8b5cf6 50%, #a855f7 100%);
    --ll-gradient-soft: linear-gradient(135deg, rgba(79, 140, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    --ll-shadow-glow: 0 0 60px rgba(79, 140, 255, 0.12);
    --ll-shadow-card: 0 24px 80px rgba(0, 0, 0, 0.45);
    --ll-radius-sm: 12px;
    --ll-radius-md: 20px;
    --ll-radius-lg: 28px;
    --ll-radius-xl: 36px;
    --ll-nav-height: 88px;
    --ll-font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --ll-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

.licosto-landing-body {
    margin: 0;
    padding: 0;
    font-family: var(--ll-font);
    background: var(--ll-bg);
    color: var(--ll-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.licosto-landing {
    position: relative;
    min-height: 100vh;
    background: var(--ll-bg);
}

.licosto-landing-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Orbes flotantes */
.licosto-landing__orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    animation: ll-float 18s ease-in-out infinite;
}

.licosto-landing__orb--1 {
    width: 520px;
    height: 520px;
    background: var(--ll-accent-blue);
    top: -120px;
    right: -80px;
}

.licosto-landing__orb--2 {
    width: 400px;
    height: 400px;
    background: var(--ll-accent-purple);
    bottom: 20%;
    left: -100px;
    animation-delay: -6s;
}

.licosto-landing__orb--3 {
    width: 300px;
    height: 300px;
    background: var(--ll-accent-cyan);
    top: 45%;
    right: 10%;
    animation-delay: -12s;
    opacity: 0.2;
}

@keyframes ll-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Gradiente texto */
.licosto-landing-gradient-text {
    background: var(--ll-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Botones */
.licosto-landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.35s var(--ll-ease), box-shadow 0.35s var(--ll-ease), background 0.35s var(--ll-ease), border-color 0.35s var(--ll-ease);
    white-space: nowrap;
}

.licosto-landing-btn:hover {
    transform: translateY(-2px);
}

.licosto-landing-btn--primary {
    background: var(--ll-gradient);
    color: #fff;
    box-shadow: 0 8px 32px rgba(79, 140, 255, 0.35);
}

.licosto-landing-btn--primary:hover {
    box-shadow: 0 12px 48px rgba(139, 92, 246, 0.45);
}

.licosto-landing-btn--outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--ll-border-hover);
    color: var(--ll-text);
    backdrop-filter: blur(12px);
}

.licosto-landing-btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 140, 255, 0.4);
}

.licosto-landing-btn--ghost {
    background: transparent;
    color: var(--ll-text-muted);
}

.licosto-landing-btn--ghost:hover {
    color: var(--ll-text);
}

.licosto-landing-btn--sm {
    padding: 0.5rem 1.125rem;
    font-size: 0.8125rem;
}

.licosto-landing-btn--lg {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
}

.licosto-landing-btn--block {
    width: 100%;
}

/* Nav — pill glass centrado */
.licosto-landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 1.25rem 0;
    pointer-events: none;
}

.licosto-landing [hidden] {
    display: none !important;
}

.licosto-landing-nav__outer {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    pointer-events: auto;
}

.licosto-landing-nav__bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    width: 100%;
    flex: 1;
    min-width: 0;
    padding: 0.4rem 0.45rem 0.4rem 0.65rem;
    background: rgba(14, 14, 22, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px) saturate(1.55);
    -webkit-backdrop-filter: blur(20px) saturate(1.55);
    transition: background 0.4s var(--ll-ease), border-color 0.4s var(--ll-ease), box-shadow 0.4s var(--ll-ease);
}

.licosto-landing-nav.is-scrolled .licosto-landing-nav__bar {
    background: rgba(10, 10, 18, 0.72);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.licosto-landing-nav__menu {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    min-width: 0;
}

.licosto-landing-nav__menu--left {
    justify-content: flex-end;
    padding-right: 0.75rem;
}

.licosto-landing-nav__menu--right {
    justify-content: flex-start;
    padding-left: 0.75rem;
}

.licosto-landing-nav__brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 0.35rem;
    text-decoration: none;
}

.licosto-landing-nav__logo {
    height: 28px;
    width: auto;
    display: block;
}

.licosto-landing-nav__link {
    padding: 0.45rem 0.85rem;
    color: var(--ll-text-muted);
    text-decoration: none;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 999px;
    white-space: nowrap;
    transition: color 0.25s, background 0.25s;
}

.licosto-landing-nav__link:hover {
    color: var(--ll-text);
    background: rgba(255, 255, 255, 0.06);
}

.licosto-landing-nav__toggle {
    display: none;
    flex-shrink: 0;
    background: rgba(14, 14, 22, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--ll-text);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 1.25rem;
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.licosto-landing-nav__mobile {
    display: none;
    position: absolute;
    top: calc(100% - 0.25rem);
    left: 1.25rem;
    right: 1.25rem;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(14, 14, 22, 0.88);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ll-radius-md);
    padding: 0.75rem;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 1001;
    pointer-events: auto;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.licosto-landing-nav__mobile.is-open {
    display: flex;
}

.licosto-landing-nav__mobile-link {
    padding: 0.75rem 1rem;
    color: var(--ll-text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--ll-radius-sm);
    transition: color 0.2s, background 0.2s;
}

.licosto-landing-nav__mobile-link:hover {
    color: var(--ll-text);
    background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 769px) {
    .licosto-landing-nav__mobile {
        display: none !important;
    }

    .licosto-landing-nav__toggle {
        display: none !important;
    }
}

/* Hero */
.licosto-landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--ll-nav-height) + 3rem) 0 4rem;
    overflow: hidden;
}

.licosto-landing-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.licosto-landing-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
}

.licosto-landing-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 6, 8, 0.55) 0%, rgba(6, 6, 8, 0.92) 65%, var(--ll-bg) 100%),
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(79, 140, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 55%);
}

.licosto-landing-hero__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.licosto-landing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--ll-border);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ll-text-muted);
    margin-bottom: 1.75rem;
    backdrop-filter: blur(12px);
}

.licosto-landing-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
    animation: ll-pulse 2s ease-in-out infinite;
}

@keyframes ll-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.licosto-landing-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem;
}

.licosto-landing-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    line-height: 1.65;
    color: var(--ll-text-muted);
    margin: 0 0 1.5rem;
    max-width: 620px;
}

.licosto-landing-hero__notice {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    max-width: 620px;
    margin: 0 0 2rem;
    padding: 1rem 1.25rem;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: var(--ll-radius-sm);
    backdrop-filter: blur(12px);
}

.licosto-landing-hero__notice i {
    flex-shrink: 0;
    font-size: 1.375rem;
    color: #fbbf24;
    margin-top: 0.125rem;
}

.licosto-landing-hero__notice p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ll-text-muted);
}

.licosto-landing-hero__notice strong {
    color: var(--ll-text);
    font-weight: 600;
}

.licosto-landing-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.licosto-landing-hero__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2rem;
    padding: 1.5rem 2rem;
    background: var(--ll-bg-card);
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    backdrop-filter: blur(20px);
    box-shadow: var(--ll-shadow-card);
}

.licosto-landing-hero__stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.licosto-landing-hero__stat-label {
    font-size: 0.8125rem;
    color: var(--ll-text-soft);
}

.licosto-landing-hero__stat-divider {
    width: 1px;
    height: 36px;
    background: var(--ll-border);
}

.licosto-landing-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--ll-text-soft);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    animation: ll-bounce 2.5s ease-in-out infinite;
}

@keyframes ll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Trust strip */
.licosto-landing-trust {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    border-bottom: 1px solid var(--ll-border);
}

.licosto-landing-trust__label {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--ll-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.25rem;
}

.licosto-landing-trust__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.licosto-landing-trust__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--ll-border);
    border-radius: 999px;
    font-size: 0.875rem;
    color: var(--ll-text-muted);
}

.licosto-landing-trust__pill i {
    color: var(--ll-accent-blue);
    font-size: 1.125rem;
}

/* Internal-use notice */
.licosto-landing-notice {
    position: relative;
    z-index: 1;
    padding: 0 0 3rem;
}

.licosto-landing-notice__inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: var(--ll-bg-card);
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: var(--ll-radius-md);
    box-shadow: var(--ll-shadow-card);
    backdrop-filter: blur(20px);
}

.licosto-landing-notice__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--ll-radius-sm);
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    font-size: 1.5rem;
}

.licosto-landing-notice__title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}

.licosto-landing-notice__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--ll-text-muted);
}

@media (max-width: 640px) {
    .licosto-landing-notice__inner {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Sections */
.licosto-landing-section {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
}

.licosto-landing-section--alt {
    background: linear-gradient(180deg, transparent 0%, rgba(14, 14, 20, 0.6) 50%, transparent 100%);
}

.licosto-landing-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.licosto-landing-section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ll-accent-blue);
    margin-bottom: 1rem;
}

.licosto-landing-section__title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.licosto-landing-section__desc {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ll-text-muted);
    margin: 0;
}

/* Modules grid */
.licosto-landing-modules {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.licosto-landing-module {
    padding: 1.75rem;
    background: var(--ll-bg-card);
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-md);
    backdrop-filter: blur(16px);
    transition: transform 0.4s var(--ll-ease), border-color 0.4s, box-shadow 0.4s;
}

.licosto-landing-module:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 140, 255, 0.25);
    box-shadow: var(--ll-shadow-glow);
}

.licosto-landing-module__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--ll-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
}

.licosto-landing-module__icon--blue {
    background: rgba(79, 140, 255, 0.12);
    color: var(--ll-accent-blue);
}

.licosto-landing-module__icon--purple {
    background: rgba(139, 92, 246, 0.12);
    color: var(--ll-accent-purple);
}

.licosto-landing-module__icon--cyan {
    background: rgba(34, 211, 238, 0.12);
    color: var(--ll-accent-cyan);
}

.licosto-landing-module__icon--violet {
    background: rgba(168, 85, 247, 0.12);
    color: #a855f7;
}

.licosto-landing-module__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.625rem;
}

.licosto-landing-module__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--ll-text-muted);
    margin: 0;
}

/* Features alternating */
.licosto-landing-features {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.licosto-landing-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.licosto-landing-feature--reverse {
    direction: rtl;
}

.licosto-landing-feature--reverse > * {
    direction: ltr;
}

.licosto-landing-feature__visual {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.licosto-landing-feature__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--ll-bg-card);
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-md);
    backdrop-filter: blur(20px);
    box-shadow: var(--ll-shadow-card);
    max-width: 320px;
}

.licosto-landing-feature__card i {
    font-size: 1.75rem;
    color: var(--ll-accent-blue);
    flex-shrink: 0;
}

.licosto-landing-feature__card strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.licosto-landing-feature__card span {
    font-size: 0.8125rem;
    color: var(--ll-text-muted);
}

.licosto-landing-feature__card--float-1 {
    position: relative;
    z-index: 2;
    animation: ll-float-card 6s ease-in-out infinite;
}

.licosto-landing-feature__card--float-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    z-index: 1;
    animation: ll-float-card 6s ease-in-out infinite reverse;
    animation-delay: -3s;
}

@keyframes ll-float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.licosto-landing-feature__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.licosto-landing-feature__content p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ll-text-muted);
    margin: 0 0 1.5rem;
}

.licosto-landing-feature__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.licosto-landing-feature__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--ll-text-muted);
}

.licosto-landing-feature__list i {
    color: var(--ll-accent-blue);
    font-size: 1.125rem;
}

/* KPI mockup */
.licosto-landing-kpis {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.licosto-landing-kpis__panel {
    padding: 2rem;
    background: var(--ll-bg-card);
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    backdrop-filter: blur(20px);
    box-shadow: var(--ll-shadow-card);
}

.licosto-landing-kpis__panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.licosto-landing-kpis__period {
    padding: 0.25rem 0.75rem;
    background: rgba(79, 140, 255, 0.12);
    color: var(--ll-accent-blue);
    border-radius: 999px;
    font-size: 0.75rem;
}

.licosto-landing-kpis__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.licosto-landing-kpis__item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-sm);
}

.licosto-landing-kpis__item--highlight {
    border-color: rgba(79, 140, 255, 0.3);
    background: var(--ll-gradient-soft);
}

.licosto-landing-kpis__label {
    display: block;
    font-size: 0.75rem;
    color: var(--ll-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.375rem;
}

.licosto-landing-kpis__value {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.licosto-landing-kpis__delta {
    font-size: 0.75rem;
    color: var(--ll-text-soft);
}

.licosto-landing-kpis__delta--up {
    color: #22c55e;
}

.licosto-landing-kpis__chart {
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
    height: 100px;
    padding-top: 1rem;
    border-top: 1px solid var(--ll-border);
}

.licosto-landing-kpis__bar {
    flex: 1;
    background: rgba(79, 140, 255, 0.2);
    border-radius: 6px 6px 0 0;
    transition: height 1s var(--ll-ease);
}

.licosto-landing-kpis__bar--active {
    background: var(--ll-gradient);
}

.licosto-landing-kpis__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.licosto-landing-kpis__card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--ll-bg-card);
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-md);
    transition: border-color 0.3s, transform 0.3s var(--ll-ease);
}

.licosto-landing-kpis__card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(6px);
}

.licosto-landing-kpis__card i {
    font-size: 1.5rem;
    color: var(--ll-accent-purple);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.licosto-landing-kpis__card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.375rem;
}

.licosto-landing-kpis__card p {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--ll-text-muted);
    margin: 0;
}

/* Pricing */
.licosto-landing-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.licosto-landing-plan {
    position: relative;
    padding: 2.25rem 2rem;
    background: var(--ll-bg-card);
    border: 1px solid var(--ll-border);
    border-radius: var(--ll-radius-lg);
    backdrop-filter: blur(16px);
    transition: transform 0.4s var(--ll-ease), box-shadow 0.4s;
}

.licosto-landing-plan:hover {
    transform: translateY(-4px);
}

.licosto-landing-plan--featured {
    border-color: rgba(79, 140, 255, 0.4);
    background: linear-gradient(180deg, rgba(79, 140, 255, 0.08) 0%, var(--ll-bg-card) 40%);
    box-shadow: 0 0 80px rgba(79, 140, 255, 0.15), var(--ll-shadow-card);
    transform: scale(1.03);
}

.licosto-landing-plan--featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.licosto-landing-plan__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--ll-gradient);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    white-space: nowrap;
}

.licosto-landing-plan__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.licosto-landing-plan__desc {
    font-size: 0.875rem;
    color: var(--ll-text-muted);
    line-height: 1.5;
    margin: 0 0 1.75rem;
    min-height: 2.625rem;
}

.licosto-landing-plan__price {
    margin-bottom: 1.75rem;
}

.licosto-landing-plan__currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--ll-text-muted);
}

.licosto-landing-plan__amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.licosto-landing-plan__period {
    font-size: 0.875rem;
    color: var(--ll-text-soft);
}

.licosto-landing-plan__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.licosto-landing-plan__features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--ll-text-muted);
}

.licosto-landing-plan__features i {
    color: var(--ll-accent-blue);
    font-size: 1rem;
    flex-shrink: 0;
}

/* CTA */
.licosto-landing-cta {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

.licosto-landing-cta__inner {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--ll-gradient-soft);
    border: 1px solid rgba(79, 140, 255, 0.2);
    border-radius: var(--ll-radius-xl);
    box-shadow: var(--ll-shadow-glow);
}

.licosto-landing-cta__inner h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0 0 1rem;
}

.licosto-landing-cta__inner p {
    font-size: 1.0625rem;
    color: var(--ll-text-muted);
    margin: 0 0 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.licosto-landing-cta__actions {
    display: flex;
    justify-content: center;
}

/* Footer */
.licosto-landing-footer {
    position: relative;
    z-index: 1;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--ll-border);
    background: var(--ll-bg-elevated);
}

.licosto-landing-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.licosto-landing-footer__logo {
    height: 28px;
    margin-bottom: 1rem;
}

.licosto-landing-footer__brand p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--ll-text-muted);
    margin: 0;
    max-width: 280px;
}

.licosto-landing-footer__col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ll-text);
    margin: 0 0 1.25rem;
}

.licosto-landing-footer__col a {
    display: block;
    font-size: 0.875rem;
    color: var(--ll-text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.licosto-landing-footer__col a:hover {
    color: var(--ll-accent-blue);
}

.licosto-landing-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ll-border);
    font-size: 0.8125rem;
    color: var(--ll-text-soft);
}

/* Reveal animations */
.licosto-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ll-ease), transform 0.8s var(--ll-ease);
}

.licosto-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .licosto-landing-modules {
        grid-template-columns: repeat(2, 1fr);
    }

    .licosto-landing-kpis {
        grid-template-columns: 1fr;
    }

    .licosto-landing-pricing {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .licosto-landing-plan--featured {
        transform: none;
    }

    .licosto-landing-plan--featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .licosto-landing-nav {
        padding: 0.75rem 1rem 0;
    }

    .licosto-landing-nav__outer {
        max-width: none;
        justify-content: space-between;
    }

    .licosto-landing-nav__bar {
        display: flex;
        flex: 1;
        justify-content: center;
        padding: 0.35rem 0.5rem;
        grid-template-columns: none;
    }

    .licosto-landing-nav__menu {
        display: none;
    }

    .licosto-landing-nav__brand {
        padding: 0;
    }

    .licosto-landing-nav__logo {
        height: 26px;
    }

    .licosto-landing-nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .licosto-landing-hero__stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .licosto-landing-hero__stat-divider {
        width: 100%;
        height: 1px;
    }

    .licosto-landing-feature,
    .licosto-landing-feature--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .licosto-landing-feature__visual {
        min-height: 200px;
    }

    .licosto-landing-modules {
        grid-template-columns: 1fr;
    }

    .licosto-landing-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .licosto-landing-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .licosto-landing-footer__grid {
        grid-template-columns: 1fr;
    }

    .licosto-landing-kpis__grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .licosto-landing__orb,
    .licosto-landing-hero__scroll,
    .licosto-landing-feature__card--float-1,
    .licosto-landing-feature__card--float-2,
    .licosto-landing-hero__badge-dot {
        animation: none;
    }

    .licosto-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* WhatsApp chat flotante */
.licosto-wa-chat {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    pointer-events: none;
}

.licosto-wa-chat__messages {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    pointer-events: auto;
}

.licosto-wa-chat__rotator {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    min-height: 3.25rem;
    min-width: 200px;
}

.licosto-wa-chat__rotator [data-wa-rotate] {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 260px;
    border-radius: 16px;
}

.licosto-wa-chat__bubble {
    position: relative;
    display: block;
    max-width: 240px;
    padding: 0.65rem 1rem;
    background: rgba(18, 18, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ll-text);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
    transition: opacity 0.45s var(--ll-ease), transform 0.45s var(--ll-ease), border-color 0.25s;
}

.licosto-wa-chat__bubble--pinned {
    border-radius: 16px 16px 4px 16px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.licosto-wa-chat__bubble--pinned::after {
    content: '';
    position: absolute;
    right: 14px;
    bottom: -6px;
    width: 12px;
    height: 12px;
    background: rgba(18, 18, 28, 0.92);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.licosto-wa-chat__rotator [data-wa-rotate] {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.94);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.38s var(--ll-ease), transform 0.38s var(--ll-ease), visibility 0.38s;
}

.licosto-wa-chat__rotator [data-wa-rotate].is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 1;
}

.licosto-wa-chat__rotator [data-wa-rotate].is-entering {
    animation: ll-wa-in 0.42s var(--ll-ease) forwards;
}

.licosto-wa-chat__rotator [data-wa-rotate].is-leaving {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.94);
    pointer-events: none;
    z-index: 0;
}

@keyframes ll-wa-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.licosto-wa-chat__bubble:hover {
    border-color: rgba(34, 197, 94, 0.45);
    color: #fff;
}

.licosto-wa-chat__btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 58px;
    height: 58px;
    padding: 0;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.45);
    transition: transform 0.3s var(--ll-ease), box-shadow 0.3s var(--ll-ease), width 0.35s var(--ll-ease), padding 0.35s var(--ll-ease), gap 0.35s var(--ll-ease);
    animation: ll-wa-pulse 2.5s ease-in-out infinite;
}

.licosto-wa-chat__btn i {
    font-size: 1.75rem;
}

.licosto-wa-chat__btn-label {
    display: none;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.licosto-wa-chat:hover .licosto-wa-chat__btn,
.licosto-wa-chat.is-paused .licosto-wa-chat__btn {
    width: auto;
    padding: 0 1.25rem 0 1rem;
    gap: 0.4rem;
    border-radius: 999px;
    animation: none;
}

.licosto-wa-chat:hover .licosto-wa-chat__btn-label,
.licosto-wa-chat.is-paused .licosto-wa-chat__btn-label {
    display: inline;
}

.licosto-wa-chat__btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 32px rgba(34, 197, 94, 0.55);
    color: #fff;
}

@keyframes ll-wa-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(34, 197, 94, 0.45); }
    50% { box-shadow: 0 6px 32px rgba(34, 197, 94, 0.65), 0 0 0 8px rgba(34, 197, 94, 0.12); }
}

@media (max-width: 480px) {
    .licosto-wa-chat {
        right: 1rem;
        bottom: 1rem;
    }

    .licosto-wa-chat__bubble {
        max-width: 200px;
        font-size: 0.75rem;
    }

    .licosto-wa-chat__btn {
        width: 54px;
        height: 54px;
    }
}
