/* EFOTECH Landing — professional template */
:root {
    --lp-ink: #0c1f1c;
    --lp-muted: #5c6f6b;
    --lp-deep: #0f4c45;
    --lp-teal: #157a6e;
    --lp-teal-soft: #e6f4f1;
    --lp-gold: #c4922a;
    --lp-gold-soft: #faf3e3;
    --lp-line: #e2ebe8;
    --lp-surface: #ffffff;
    --lp-bg: #f6f9f8;
    --lp-bg-alt: #eef3f2;
    --lp-shadow-sm: 0 1px 2px rgba(12, 31, 28, 0.04);
    --lp-shadow: 0 20px 50px rgba(12, 31, 28, 0.08);
    --lp-shadow-lg: 0 32px 64px rgba(12, 31, 28, 0.12);
    --lp-radius: 16px;
    --lp-radius-lg: 24px;
    --lp-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --lp-ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --lp-duration: 0.75s;
    --lp-duration-fast: 0.4s;
    --lp-container: min(1120px, calc(100vw - 2.5rem));
    --lp-section-pad-y: clamp(4.75rem, 9vw, 7.25rem);
    --lp-section-pad-hero-bottom: clamp(3.5rem, 7vw, 5.5rem);
    --lp-stack-xl: clamp(3rem, 6vw, 4.5rem);
    --lp-stack-lg: clamp(2.25rem, 4.5vw, 3.25rem);
    --lp-stack-md: clamp(1.75rem, 3vw, 2.5rem);
    --lp-stack-sm: 1.35rem;
    --lp-grid-gap: clamp(1.25rem, 2.5vw, 1.85rem);
    --lp-hero-cards-gap: clamp(1.35rem, 2.8vw, 2.25rem);
    --lp-hero-cards-pad: clamp(1.5rem, 2.5vw, 2rem);
}

@keyframes lp-fade-up {
    from {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes lp-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lp-mesh-drift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33% { transform: translate(4%, -3%) scale(1.05); opacity: 0.7; }
    66% { transform: translate(-3%, 2%) scale(0.98); opacity: 0.55; }
}

@keyframes lp-hero-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.75; }
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

.landing-section[id] {
    scroll-margin-top: 6rem;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Manrope', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--lp-ink);
    background: var(--lp-bg);
    -webkit-font-smoothing: antialiased;
    animation: lp-fade-in 0.6s var(--lp-ease) both;
}

.landing-shell { min-height: 100vh; }

/* —— Navbar —— */
.landing-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid transparent;
    transition:
        background 0.45s var(--lp-ease),
        box-shadow 0.45s var(--lp-ease),
        border-color 0.45s var(--lp-ease),
        transform 0.45s var(--lp-ease);
}

.landing-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--lp-line);
    box-shadow: var(--lp-shadow-sm);
}

.landing-navbar .container,
.landing-section .container,
.lp-footer .container {
    width: var(--lp-container);
    max-width: none;
    margin-inline: auto;
}

.navbar-toggler {
    border-color: var(--lp-line);
    padding: 0.35rem 0.55rem;
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
    filter: none;
    opacity: 0.7;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--lp-ink) !important;
    text-decoration: none;
}

.brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--lp-deep), var(--lp-teal));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: none;
}

.nav-link {
    color: var(--lp-muted) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.3s var(--lp-ease), transform 0.3s var(--lp-ease);
}

.nav-link.is-active {
    color: var(--lp-deep) !important;
}

.nav-link:hover,
.nav-link:focus { color: var(--lp-deep) !important; }

.nav-link::after { display: none; }

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

.nav-action-button,
.nav-user-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 42px;
    border-radius: 10px;
    padding: 0 1rem;
    border: 1px solid var(--lp-line);
    background: var(--lp-surface);
    color: var(--lp-ink);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.nav-action-button.is-primary {
    background: var(--lp-deep);
    border-color: var(--lp-deep);
    color: #fff;
}

.nav-action-button:hover,
.nav-user-button:hover {
    border-color: var(--lp-teal);
    color: var(--lp-ink);
    transform: translateY(-1px);
}

.nav-action-button.is-primary:hover {
    background: var(--lp-teal);
    border-color: var(--lp-teal);
    color: #fff;
}

.nav-user-button::after { display: none; }

.nav-user-avatar {
    width: 1.75rem;
    height: 1.75rem;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--lp-teal-soft);
    color: var(--lp-deep);
    font-size: 0.75rem;
    font-weight: 800;
}

.nav-user-menu {
    min-width: 220px;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    padding: 0.5rem;
    box-shadow: var(--lp-shadow);
}

.nav-user-menu .dropdown-item {
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.nav-user-meta {
    padding: 0.5rem 0.75rem 0.75rem;
    border-bottom: 1px solid var(--lp-line);
    margin-bottom: 0.35rem;
}

.nav-user-meta span {
    color: var(--lp-muted);
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .navbar-collapse {
        margin-top: 0.75rem;
        padding: 1rem;
        border-radius: var(--lp-radius);
        background: var(--lp-surface);
        border: 1px solid var(--lp-line);
        box-shadow: var(--lp-shadow);
    }

    .nav-actions {
        margin-top: 0.75rem;
        margin-left: 0;
        width: 100%;
    }

    .nav-action-button,
    .nav-user-button { width: 100%; justify-content: center; }
}

/* —— Sections (halaman produk) —— */
.landing-section {
    padding-inline: clamp(1.25rem, 4vw, 2rem);
    padding-block: var(--lp-section-pad-y);
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.25s var(--lp-ease), color 0.25s var(--lp-ease), border-color 0.25s var(--lp-ease);
}

.lp-btn-sm {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
}

.lp-btn-primary {
    background: var(--lp-teal);
    color: #fff;
    border-color: var(--lp-teal);
}

.lp-btn-primary:hover {
    background: var(--lp-deep);
    border-color: var(--lp-deep);
    color: #fff;
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-teal);
    border-color: rgba(21, 122, 110, 0.35);
}

.lp-btn-outline:hover {
    background: var(--lp-teal-soft);
    color: var(--lp-deep);
}

@keyframes lp-product-float {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    33% {
        transform: translate3d(0, -12px, 0) rotate(-0.4deg);
    }
    66% {
        transform: translate3d(0, -6px, 0) rotate(0.35deg);
    }
}

@keyframes lp-product-float-alt {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(6px, -14px, 0) rotate(0.5deg);
    }
}

@keyframes lp-product-float-slow {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-5px, -10px, 0);
    }
}

@keyframes lp-product-orb-drift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.45;
    }
    50% {
        transform: translate(8%, -6%) scale(1.08);
        opacity: 0.7;
    }
}

@keyframes lp-device-shine {
    0%, 72%, 100% {
        transform: translateX(-130%) skewX(-14deg);
        opacity: 0;
    }
    78% {
        opacity: 0.35;
    }
    88% {
        transform: translateX(220%) skewX(-14deg);
        opacity: 0;
    }
}

/* Bingkai perangkat (detail produk + fitur) */
.lp-device-frame-shell {
    transform: perspective(900px)
        rotateX(var(--lp-tilt-x, 0deg))
        rotateY(var(--lp-tilt-y, 0deg))
        translateY(var(--lp-scroll-shift, 0px));
    transition: transform 0.35s var(--lp-ease-out);
    will-change: transform;
}

.lp-device-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
    border: 1px solid rgba(12, 31, 28, 0.08);
    background: #1f302d;
}

.lp-device-frame--default {
    animation: lp-product-float 7s ease-in-out infinite;
}

.lp-device-frame--slow {
    animation: lp-product-float-slow 9s ease-in-out infinite;
}

.lp-device-frame--alt {
    animation: lp-product-float-alt 8s ease-in-out infinite;
}

.lp-device-frame__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(180deg, #2a403c 0%, #1f302d 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.lp-device-frame__chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-device-frame__chrome span:nth-child(1) { background: #ff6b6b; opacity: 0.85; }
.lp-device-frame__chrome span:nth-child(2) { background: #ffd93d; opacity: 0.85; }
.lp-device-frame__chrome span:nth-child(3) { background: #6bcb77; opacity: 0.85; }

.lp-device-frame__screen {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 12rem;
    padding: 0.65rem;
    background: #f4f7f6;
}

.lp-device-frame__screen.is-empty {
    min-height: 14rem;
    background: linear-gradient(145deg, var(--lp-teal) 0%, var(--lp-deep) 100%);
}

.lp-device-frame__screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: contain;
}

.lp-device-frame__placeholder {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.lp-device-frame__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 60%
    );
    pointer-events: none;
    animation: lp-device-shine 6s ease-in-out infinite;
}

[data-scroll-float] {
    --lp-scroll-shift: 0px;
}

/* Halaman detail produk */
.lp-product-detail {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.lp-product-detail__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.lp-product-detail__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    animation: lp-product-orb-drift 14s ease-in-out infinite;
}

.lp-product-detail__orb--1 {
    width: min(320px, 45vw);
    height: min(320px, 45vw);
    top: -8%;
    left: -6%;
    background: rgba(21, 122, 110, 0.22);
}

.lp-product-detail__orb--2 {
    width: min(240px, 35vw);
    height: min(240px, 35vw);
    top: 20%;
    right: -4%;
    background: rgba(196, 146, 42, 0.14);
    animation-delay: -4s;
    animation-duration: 18s;
}

.lp-product-detail__orb--3 {
    width: min(180px, 28vw);
    height: min(180px, 28vw);
    bottom: 5%;
    left: 35%;
    background: rgba(21, 122, 110, 0.12);
    animation-delay: -7s;
    animation-duration: 16s;
}

.lp-product-detail .container {
    position: relative;
    z-index: 1;
}

.lp-product-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: start;
}

.lp-product-detail__media {
    position: relative;
    padding: clamp(0.5rem, 2vw, 1rem);
}

.lp-product-detail__media::before {
    content: '';
    position: absolute;
    inset: 8% 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 122, 110, 0.18) 0%, transparent 70%);
    z-index: -1;
    animation: lp-hero-glow 5s ease-in-out infinite;
    pointer-events: none;
}

.lp-product-detail__title {
    font-family: var(--lp-font-display, 'Fraunces', serif);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    color: var(--lp-ink);
}

.lp-product-detail__lead {
    font-size: 1.05rem;
    color: var(--lp-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lp-product-detail__body {
    font-size: 0.95rem;
    color: var(--lp-ink);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.lp-product-detail__body p {
    margin: 0 0 1rem;
}

.lp-product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 991px) {
    .lp-product-detail__layout {
        grid-template-columns: 1fr;
    }
}

.section-head--center {
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.section-head--center .section-copy {
    margin-left: auto;
    margin-right: auto;
}

/* Showcase fitur aplikasi (screenshot + teks) */
.lp-product-features {
    background: var(--lp-bg-alt, #f6f8f7);
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}

.lp-product-features__list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2.5rem;
}

.lp-product-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 2rem 2.75rem;
    align-items: center;
}

.lp-product-feature--image-left {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}

.lp-product-feature--image-left .lp-product-feature__copy {
    order: 2;
}

.lp-product-feature--image-left .lp-product-feature__media {
    order: 1;
}

.lp-product-feature__kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lp-teal);
    margin-bottom: 0.5rem;
}

.lp-product-feature__title {
    font-family: var(--lp-font-display, 'Fraunces', serif);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--lp-ink);
}

.lp-product-feature__desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--lp-muted);
    margin-bottom: 1rem;
}

.lp-product-feature__desc p {
    margin: 0 0 0.85rem;
}

.lp-product-feature__bullets {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.92rem;
    color: var(--lp-ink);
    line-height: 1.65;
}

.lp-product-feature__bullets li {
    margin-bottom: 0.45rem;
}

.lp-reveal.is-visible .lp-product-feature__bullets li {
    animation: lp-fade-up 0.55s var(--lp-ease) backwards;
}

.lp-reveal.is-visible .lp-product-feature__bullets li:nth-child(1) { animation-delay: 0.15s; }
.lp-reveal.is-visible .lp-product-feature__bullets li:nth-child(2) { animation-delay: 0.25s; }
.lp-reveal.is-visible .lp-product-feature__bullets li:nth-child(3) { animation-delay: 0.35s; }
.lp-reveal.is-visible .lp-product-feature__bullets li:nth-child(4) { animation-delay: 0.45s; }
.lp-reveal.is-visible .lp-product-feature__bullets li:nth-child(5) { animation-delay: 0.55s; }

.lp-product-feature__bullets li::marker {
    color: var(--lp-teal);
}

.lp-product-feature__media {
    margin: 0;
    padding: 0.35rem 0;
    position: relative;
}

.lp-product-feature__media::after {
    content: '';
    position: absolute;
    inset: 15% 10% -5%;
    border-radius: var(--lp-radius-lg);
    background: linear-gradient(180deg, rgba(21, 122, 110, 0.08), transparent);
    z-index: -1;
    filter: blur(12px);
    opacity: 0.8;
}

.lp-product-features {
    position: relative;
    overflow: hidden;
}

.lp-product-features::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 40%;
    top: 10%;
    right: -15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 122, 110, 0.06), transparent 70%);
    pointer-events: none;
    animation: lp-mesh-drift 20s ease-in-out infinite;
}

@media (max-width: 991px) {
    .lp-product-feature,
    .lp-product-feature--image-left {
        grid-template-columns: 1fr;
    }

    .lp-product-feature--image-left .lp-product-feature__copy,
    .lp-product-feature--image-left .lp-product-feature__media {
        order: unset;
    }

    .lp-product-features__list {
        gap: 3rem;
    }
}

.lp-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--lp-stack-md);
    font-size: 0.85rem;
    color: var(--lp-muted);
}

.lp-breadcrumb a {
    color: var(--lp-teal);
    text-decoration: none;
    font-weight: 600;
}

.lp-breadcrumb a:hover {
    text-decoration: underline;
}

.landing-navbar .dropdown-menu {
    border-radius: var(--lp-radius);
    border-color: var(--lp-line);
    padding: 0.35rem;
}

.landing-navbar .dropdown-item {
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 0.85rem;
}

.landing-navbar .dropdown-item.active,
.landing-navbar .dropdown-item:active {
    background: var(--lp-teal-soft);
    color: var(--lp-deep);
}


/* —— Sections —— */
.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: end;
    margin-bottom: var(--lp-stack-lg);
    max-width: 100%;
}

.landing-section .container > .section-head + * {
    margin-top: 0;
}

.section-kicker {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--lp-teal-soft);
    color: var(--lp-deep);
    margin-bottom: 1rem;
}

.section-title {
    margin: 0;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
}

.section-title em {
    font-style: italic;
    color: var(--lp-teal);
}

.section-copy {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}



/* Footer — kolom + panel statistik */
.lp-footer {
    --lp-footer-bg: #0a0a0a;
    --lp-footer-text: rgba(255, 255, 255, 0.82);
    --lp-footer-muted: rgba(255, 255, 255, 0.55);
    --lp-footer-line: rgba(255, 255, 255, 0.12);
    --lp-footer-link-hover: #7dd3c0;
    --lp-footer-panel-bg: rgba(255, 255, 255, 0.06);
    --lp-footer-panel-border: rgba(255, 255, 255, 0.14);
    --lp-footer-accent: #7dd3c0;

    padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2rem);
    background: var(--lp-footer-bg);
    margin-top: var(--lp-stack-md);
    color: var(--lp-footer-text);
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.lp-footer__grid--with-products {
    grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.9fr)) minmax(0, 1.2fr);
}

.lp-footer__col--stats {
    display: flex;
    justify-content: flex-end;
}

.lp-footer__brand {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.lp-footer__desc {
    margin: 0 0 0.65rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--lp-footer-muted);
    max-width: 28ch;
}

.lp-footer__legal {
    margin: 0;
    font-size: 0.8rem;
    color: var(--lp-footer-muted);
}

.lp-footer__heading {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-footer-muted);
}

.lp-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.lp-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.lp-footer__links a:hover {
    color: var(--lp-footer-link-hover);
    transform: translateX(2px);
}

.lp-footer__bar {
    margin-top: clamp(1.75rem, 3vw, 2.25rem);
    padding-top: 1.15rem;
    border-top: 1px solid var(--lp-footer-line);
    text-align: center;
}

.lp-footer__copy {
    color: var(--lp-footer-muted);
    font-size: 0.8rem;
}

/* Panel statistik + ilustrasi animasi */
.lp-visitor-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 15.5rem;
    padding: 1rem 1.05rem 1.1rem;
    border-radius: 1rem;
    background: var(--lp-footer-panel-bg);
    border: 1px solid var(--lp-footer-panel-border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
}

.lp-visitor-panel__visual {
    display: flex;
    justify-content: center;
    padding: 0.15rem 0 0.25rem;
}

.lp-visitor-panel__svg {
    width: 7.5rem;
    height: auto;
    color: var(--lp-footer-accent);
}

.lp-visitor-panel__ring {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    opacity: 0.35;
    transform-origin: 60px 38px;
}

.lp-visitor-panel__ring--1 {
    animation: lp-visitor-pulse 2.8s ease-in-out infinite;
}

.lp-visitor-panel__ring--2 {
    animation: lp-visitor-pulse 2.8s ease-in-out infinite 0.45s;
}

.lp-visitor-panel__core {
    fill: currentColor;
    opacity: 0.9;
    animation: lp-visitor-core 2s ease-in-out infinite;
}

.lp-visitor-panel__orbit {
    transform-origin: 60px 38px;
}

.lp-visitor-panel__orbit--a {
    animation: lp-visitor-spin 8s linear infinite;
}

.lp-visitor-panel__orbit--b {
    animation: lp-visitor-spin 11s linear infinite reverse;
}

.lp-visitor-panel__orbit--c {
    animation: lp-visitor-spin 9.5s linear infinite;
}

.lp-visitor-panel__people {
    opacity: 0.85;
}

.lp-visitor-panel__head {
    animation: lp-visitor-bob 2.4s ease-in-out infinite;
}

.lp-visitor-panel__head:nth-of-type(2) {
    animation-delay: 0.25s;
}

.lp-visitor-panel__head:nth-of-type(3) {
    animation-delay: 0.5s;
}

.lp-visitor-panel__title {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-footer-muted);
    text-align: center;
}

.lp-visitor-panel__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.lp-visitor-panel__metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.55rem 0.35rem;
    border-radius: 0.65rem;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.lp-visitor-panel__metric--today {
    background: rgba(125, 211, 192, 0.12);
}

.lp-visitor-panel__value {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.lp-visitor-panel__label {
    margin-top: 0.2rem;
    font-size: 0.65rem;
    line-height: 1.3;
    color: var(--lp-footer-muted);
}

@keyframes lp-visitor-pulse {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50% { transform: scale(1.06); opacity: 0.65; }
}

@keyframes lp-visitor-core {
    0%, 100% { opacity: 0.75; }
    50% { opacity: 1; }
}

@keyframes lp-visitor-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes lp-visitor-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* Reveal animations */
.lp-reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(4px);
    transition:
        opacity var(--lp-duration) var(--lp-ease),
        transform var(--lp-duration) var(--lp-ease),
        filter var(--lp-duration) var(--lp-ease);
    transition-delay: var(--lp-reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.lp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    will-change: auto;
}

.lp-reveal--scale {
    transform: translateY(16px) scale(0.94);
}

.lp-reveal--scale.is-visible {
    transform: translateY(0) scale(1);
}

.lp-reveal--from-left {
    transform: translateX(-36px) translateY(12px) scale(0.98);
}

.lp-reveal--from-right {
    transform: translateX(36px) translateY(12px) scale(0.98);
}

.lp-reveal--from-left.is-visible,
.lp-reveal--from-right.is-visible {
    transform: translateX(0) translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .lp-reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .lp-device-frame,
    .lp-device-frame__shine,
    .lp-product-detail__orb,
    .lp-visitor-panel__ring,
    .lp-visitor-panel__core,
    .lp-visitor-panel__orbit,
    .lp-visitor-panel__head {
        animation: none !important;
    }

    .lp-device-frame-shell {
        transform: none !important;
    }
}

@media (max-width: 992px) {
    .section-head {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lp-footer__grid,
    .lp-footer__grid--with-products {
        grid-template-columns: 1fr 1fr;
    }

    .lp-footer__col--brand,
    .lp-footer__col--stats {
        grid-column: 1 / -1;
    }

    .lp-footer__col--stats {
        justify-content: center;
    }

    .lp-visitor-panel {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --lp-section-pad-y: clamp(3.5rem, 11vw, 5rem);
    }

    .landing-navbar .container,
    .landing-section .container,
    .lp-footer .container {
        width: calc(100vw - 1.5rem);
    }

    .lp-footer__grid,
    .lp-footer__grid--with-products {
        grid-template-columns: 1fr;
    }

    .section-head {
        margin-bottom: var(--lp-stack-md);
    }
}
