/* Landing home — mockup PENYESIA-style layout */
.landing-shell--home {
    --lh-green: #16a34a;
    --lh-green-dark: #15803d;
    --lh-green-deep: #14532d;
    --lh-green-soft: #dcfce7;
    --lh-green-bg: #f0fdf4;
    --lh-ink: #1a2e1a;
    --lh-muted: #64748b;
    --lh-line: #e2e8f0;
    --lh-white: #ffffff;
    --lh-container: min(1180px, calc(100vw - 2rem));
    --lh-radius: 20px;
    --lh-shadow: 0 16px 40px rgba(22, 163, 74, 0.08);
    --lh-shadow-card: 0 8px 24px rgba(15, 23, 42, 0.06);
    background: var(--lh-white);
    color: var(--lh-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.landing-shell--home .container {
    width: var(--lh-container);
    max-width: none;
    margin-inline: auto;
}

.landing-shell--home section[id] {
    scroll-margin-top: 5.5rem;
}

/* Reveal & motion */
.landing-shell--home {
    --lp-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --lp-ease-spring: cubic-bezier(0.34, 1.25, 0.64, 1);
    --lp-dur-reveal: 0.7s;
}

.landing-shell--home .lp-reveal,
.landing-shell--home .lp-reveal-left,
.landing-shell--home .lp-reveal-right,
.landing-shell--home .lp-reveal-scale,
.landing-shell--home .lp-reveal-fade {
    opacity: 0;
    transition:
        opacity var(--lp-dur-reveal) var(--lp-ease-out),
        transform var(--lp-dur-reveal) var(--lp-ease-out);
    transition-delay: var(--lp-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.landing-shell--home .lp-reveal {
    transform: translateY(28px);
}

.landing-shell--home .lp-reveal-left {
    transform: translateX(-32px);
}

.landing-shell--home .lp-reveal-right {
    transform: translateX(32px);
}

.landing-shell--home .lp-reveal-scale {
    transform: scale(0.94);
}

.landing-shell--home .lp-reveal-fade {
    transform: none;
}

.landing-shell--home .lp-reveal.is-visible,
.landing-shell--home .lp-reveal-left.is-visible,
.landing-shell--home .lp-reveal-right.is-visible,
.landing-shell--home .lp-reveal-scale.is-visible,
.landing-shell--home .lp-reveal-fade.is-visible {
    opacity: 1;
    transform: none;
}

.landing-shell--home .lp-stagger-group .lp-stagger-item {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.6s var(--lp-ease-out),
        transform 0.6s var(--lp-ease-out);
    transition-delay: calc(var(--lp-stagger-base, 0ms) + var(--lp-stagger-step, 70ms) * var(--lp-stagger-index, 0));
}

.landing-shell--home .lp-stagger-group.is-visible .lp-stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.landing-shell--home .lp-hero-seq {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s var(--lp-ease-out),
        transform 0.75s var(--lp-ease-out);
    transition-delay: var(--lp-reveal-delay, 0ms);
}

.landing-shell--home .lp-hero-seq.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes lp-nav-enter {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-hero-frame-in {
    from {
        opacity: 0;
        transform: scale(1.03);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lp-ambient-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(2%, -1.5%) scale(1.02); }
    66% { transform: translate(-1.5%, 1%) scale(0.98); }
}

@keyframes lp-badge-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.75; }
}

@keyframes lp-accent-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes lp-float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
    .landing-shell--home .lp-reveal,
    .landing-shell--home .lp-reveal-left,
    .landing-shell--home .lp-reveal-right,
    .landing-shell--home .lp-reveal-scale,
    .landing-shell--home .lp-reveal-fade,
    .landing-shell--home .lp-stagger-group .lp-stagger-item,
    .landing-shell--home .lp-hero-seq,
    .landing-shell--home .lp-home-stats__item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .lp-home-nav,
    .lp-home-hero__frame,
    .lp-home-products__ambient,
    .lp-home-products__badge-dot,
    .lp-home-why__accent,
    .lp-home-why__feature-icon {
        animation: none !important;
    }
}

/* —— Navbar —— */
.lp-home-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.65rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s, border-color 0.3s, padding 0.3s;
    animation: lp-nav-enter 0.65s var(--lp-ease-out) both;
}

.lp-home-nav.is-scrolled {
    border-bottom-color: var(--lh-line);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.lp-home-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--lh-ink);
}

.lp-home-nav__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.lp-home-nav__text strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.lp-home-nav__text small {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--lh-muted);
}

.lp-home-nav__links .nav-link {
    color: var(--lh-muted) !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.5rem 0.85rem !important;
    position: relative;
}

.lp-home-nav__links .nav-link.is-active {
    color: var(--lh-green-dark) !important;
}

.lp-home-nav__links .nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.1rem;
    height: 2px;
    background: var(--lh-green);
    border-radius: 999px;
}

.lp-home-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.75rem;
}

.lp-home-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    background: var(--lh-green);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.28);
    transition: transform 0.25s var(--lp-ease-out), background 0.25s, box-shadow 0.25s;
}

.lp-home-nav__cta i {
    transition: transform 0.25s var(--lp-ease-out);
}

.lp-home-nav__cta:hover i {
    transform: translateX(2px);
}

.lp-home-nav__cta:hover {
    background: var(--lh-green-dark);
    transform: translateY(-1px);
    color: #fff;
}

.lp-home-nav__admin {
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--lh-line);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--lh-ink);
    text-decoration: none;
}

@media (max-width: 991px) {
    .lp-home-nav__actions {
        margin: 0.75rem 0 0;
        width: 100%;
    }

    .lp-home-nav__cta,
    .lp-home-nav__admin {
        flex: 1;
        justify-content: center;
    }
}

/* —— Hero —— */
.lp-home-hero {
    padding: clamp(1rem, 3vw, 1.75rem) 0 clamp(1.25rem, 3vw, 2rem);
    background: var(--lh-white);
}

.lp-home-hero__fluid {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
}

.lp-home-hero__frame {
    position: relative;
    width: 100%;
    max-width: var(--lh-container);
    margin-inline: auto;
    min-height: clamp(420px, 48vw, 580px);
    border-radius: clamp(16px, 2vw, 24px);
    background-color: var(--lh-green-bg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(22, 163, 74, 0.1);
    animation: lp-hero-frame-in 1.1s var(--lp-ease-out) both;
    animation-delay: 0.08s;
}

.lp-home-hero__carousel,
.lp-home-hero__slide--static {
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

.lp-home-hero__carousel .carousel-inner,
.lp-home-hero__carousel .carousel-item {
    height: 100%;
    border-radius: inherit;
}

.lp-home-hero__slide {
    width: 100%;
    height: 100%;
    min-height: clamp(420px, 48vw, 580px);
    background-color: var(--lh-green-bg);
    background-image: var(--lp-hero-bg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.lp-home-hero__carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.lp-home-hero__carousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

.lp-home-hero__indicators {
    position: absolute;
    right: clamp(1rem, 2.5vw, 1.75rem);
    bottom: clamp(1rem, 2.5vw, 1.5rem);
    left: auto;
    z-index: 3;
    margin: 0;
    display: flex;
    gap: 0.45rem;
}

.lp-home-hero__indicators [data-bs-target] {
    width: 2.15rem;
    height: 0.28rem;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: width 0.3s var(--lp-ease-out), background 0.3s;
}

.lp-home-hero__indicators [data-bs-target].active {
    width: 2.75rem;
    background: var(--lh-green);
}

.lp-home-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.88) 38%,
        rgba(255, 255, 255, 0.45) 58%,
        rgba(255, 255, 255, 0.08) 78%,
        transparent 100%
    );
    pointer-events: none;
}

.lp-home-hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: clamp(420px, 48vw, 580px);
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.lp-home-hero__content {
    max-width: min(540px, 52%);
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.lp-home-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--lh-ink);
}

.lp-home-hero__accent {
    display: block;
    color: var(--lh-green);
}

@media (min-width: 768px) {
    .lp-home-hero__accent {
        display: inline;
    }
}

.lp-home-hero__lead {
    margin: 0 0 1.75rem;
    max-width: 48ch;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.75;
    color: var(--lh-muted);
}

.lp-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.lp-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 48px;
    padding: 0 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform 0.25s var(--lp-ease-out), box-shadow 0.25s, background 0.25s;
}

.lp-home-btn i {
    transition: transform 0.25s var(--lp-ease-out);
}

.lp-home-btn:hover i {
    transform: translateX(2px) scale(1.05);
}

.lp-home-btn--primary {
    background: var(--lh-green);
    color: #fff;
    box-shadow: 0 8px 22px rgba(22, 163, 74, 0.3);
}

.lp-home-btn--primary:hover {
    background: var(--lh-green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.lp-home-btn--outline {
    background: var(--lh-white);
    color: var(--lh-ink);
    border: 2px solid var(--lh-green);
}

.lp-home-btn--outline:hover {
    background: var(--lh-green-soft);
    color: var(--lh-green-dark);
}

.lp-home-trust {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
}

.lp-home-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lh-muted);
    min-width: 5.5rem;
}

.lp-home-trust__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--lh-green-soft);
    color: var(--lh-green);
    font-size: 1.1rem;
    transition: transform 0.3s var(--lp-ease-spring), background 0.3s;
}

.lp-home-trust__item:hover .lp-home-trust__icon {
    transform: translateY(-3px) scale(1.06);
    background: #bbf7d0;
}

/* —— Products —— */
.lp-home-products {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 4.5rem);
    background: #f8fafc;
    overflow: hidden;
}

.lp-home-products__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 45% 35% at 8% 12%, rgba(187, 247, 208, 0.45), transparent 60%),
        radial-gradient(ellipse 40% 30% at 92% 18%, rgba(191, 219, 254, 0.4), transparent 55%),
        radial-gradient(ellipse 35% 25% at 50% 100%, rgba(220, 252, 231, 0.35), transparent 60%);
    animation: lp-ambient-drift 18s ease-in-out infinite;
}

.lp-home-products__fluid {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
}

.lp-home-products__inner {
    width: 100%;
    max-width: var(--lh-container);
    margin-inline: auto;
}

.lp-home-products__head {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.lp-home-products__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(22, 163, 74, 0.15);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lh-green-dark);
    letter-spacing: 0.02em;
}

.lp-home-products__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lh-green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
    animation: lp-badge-pulse 2s ease-in-out infinite;
}

.lp-home-products__title {
    margin: 0;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--lh-ink);
}

.lp-home-products__title-accent {
    display: block;
    color: var(--lh-green);
}

.lp-home-products__lead {
    margin: 0.75rem auto 0;
    max-width: 40rem;
    color: var(--lh-muted);
    font-size: 0.95rem;
}

.lp-home-products__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.6vw, 1.25rem);
}

a.lp-home-product {
    text-decoration: none;
    color: inherit;
}

button.lp-home-product {
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    text-align: left;
    color: inherit;
    cursor: pointer;
}

.lp-home-product {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 18px;
    background: var(--lh-white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition:
        transform 0.35s var(--lp-ease-out),
        box-shadow 0.35s var(--lp-ease-out),
        border-color 0.35s;
}

.lp-home-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
    border-color: rgba(22, 163, 74, 0.18);
}

.lp-home-product__visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 9.5rem;
    margin: 0.65rem 0.65rem 0;
    border-radius: 14px;
    background: var(--lh-card-top, linear-gradient(160deg, #dcfce7, #f0fdf4));
    overflow: hidden;
}

.lp-home-product__visual.is-empty {
    align-items: center;
    background: var(--lh-card-top, #f0fdf4);
}

.lp-home-product__visual.has-image {
    margin: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    border-radius: 18px 18px 0 0;
    background-color: var(--lh-card-bg, #daf5e8);
    overflow: hidden;
}

.lp-home-product__visual.has-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s var(--lp-ease-out);
}

.lp-home-product:hover .lp-home-product__visual.has-image img {
    transform: scale(1.05);
}

/* pos.png & klinik.png punya margin putih di tepi — zoom agar bg kartu terlihat */
.lp-home-product--orange .lp-home-product__visual.has-image img {
    transform: scale(1.24);
}

.lp-home-product--purple .lp-home-product__visual.has-image img {
    transform: scale(1.16);
}

.lp-home-product--navy .lp-home-product__visual.has-image img {
    transform: scale(1.28);
}

.lp-home-product--orange:hover .lp-home-product__visual.has-image img {
    transform: scale(1.3);
}

.lp-home-product--purple:hover .lp-home-product__visual.has-image img {
    transform: scale(1.22);
}

.lp-home-product--navy:hover .lp-home-product__visual.has-image img {
    transform: scale(1.34);
}

.lp-home-product--green  { --lh-card-bg: #daf5e8; --lh-card-top: #daf5e8; }

.lp-home-product__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1.1rem 1.35rem;
}

.lp-home-product__name {
    margin: 0 0 0.45rem;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--lh-ink);
}

.lp-home-product__desc {
    margin: 0 0 1rem;
    font-size: 0.76rem;
    line-height: 1.6;
    color: var(--lh-muted);
}

.lp-home-product__features {
    list-style: none;
    margin: auto 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.lp-home-product__features li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.74rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--lh-ink);
}

.lp-home-product__check {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--lh-green);
    color: #fff;
    font-size: 0.62rem;
    line-height: 1;
}

.lp-home-product--blue   { --lh-card-bg: #e3f0fa; --lh-card-top: #e3f0fa; }
.lp-home-product--orange { --lh-card-bg: #e8f5e9; --lh-card-top: #e8f5e9; }
.lp-home-product--purple { --lh-card-bg: #f0e8fa; --lh-card-top: #f0e8fa; }
.lp-home-product--navy   { --lh-card-bg: #e9defb; --lh-card-top: #e9defb; }

/* —— Layanan / Why choose us —— */
.lp-home-why {
    padding: 0;
    background: linear-gradient(180deg, #eef9f9 0%, #f5fbfb 100%);
}

.lp-home-why__fluid {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
}

.lp-home-why__inner {
    display: grid;
    grid-template-columns: minmax(170px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(1.25rem, 2.8vw, 2rem);
    align-items: center;
    width: 100%;
    max-width: var(--lh-container);
    margin-inline: auto;
    padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.lp-home-why__head {
    text-align: left;
}

.lp-home-why__title {
    margin: 0;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.22;
    color: var(--lh-ink);
}

.lp-home-why__title span {
    display: block;
}

.lp-home-why__accent {
    display: block;
    width: 3.25rem;
    height: 4px;
    margin-top: 0.9rem;
    border-radius: 999px;
    background: var(--lh-green);
    transform: scaleX(0);
    transform-origin: left center;
}

.lp-home-why__head.is-visible .lp-home-why__accent {
    animation: lp-accent-grow 0.7s var(--lp-ease-out) forwards;
    animation-delay: 0.2s;
}

.lp-home-why__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
}

.lp-home-why__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0 clamp(0.65rem, 1.2vw, 1rem);
    text-align: left;
    border-left: 1px dashed rgba(148, 163, 184, 0.55);
}

.lp-home-why__feature:first-child {
    padding-left: 0;
    border-left: none;
}

.lp-home-why__feature-icon {
    flex-shrink: 0;
    width: clamp(2.65rem, 3.8vw, 3.1rem);
    height: clamp(2.65rem, 3.8vw, 3.1rem);
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #4ade80 0%, #16a34a 100%);
    color: #fff;
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    line-height: 1;
    box-shadow:
        0 8px 18px rgba(22, 163, 74, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.35s var(--lp-ease-spring), box-shadow 0.35s;
}

.lp-home-why__feature:hover .lp-home-why__feature-icon {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.28);
}

.lp-home-why__feature-icon img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.lp-home-why__feature-body {
    min-width: 0;
    padding-top: 0.15rem;
}

.lp-home-why__feature h3 {
    margin: 0 0 0.35rem;
    font-size: clamp(0.82rem, 1.1vw, 0.92rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--lh-ink);
}

.lp-home-why__feature p {
    margin: 0;
    font-size: clamp(0.68rem, 0.95vw, 0.76rem);
    line-height: 1.55;
    color: var(--lh-muted);
}

/* —— Tentang kami —— */
.lp-home-about {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 0;
    background: var(--lh-white);
}

.lp-home-about__fluid {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
}

.lp-home-about__inner {
    width: 100%;
    max-width: var(--lh-container);
    margin-inline: auto;
}

.lp-home-about__head {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.lp-home-about__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(240, 253, 244, 0.95);
    border: 1px solid rgba(22, 163, 74, 0.15);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lh-green-dark);
    letter-spacing: 0.02em;
}

.lp-home-about__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lh-green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.lp-home-about__title {
    margin: 0;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--lh-ink);
}

.lp-home-about__lead {
    margin: 0.75rem auto 0;
    max-width: 40rem;
    color: var(--lh-muted);
    font-size: 0.95rem;
}

.lp-home-about__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
}

.lp-home-about__brand-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.lp-home-about__brand-mark {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #4ade80 0%, #16a34a 100%);
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.22);
}

.lp-home-about__brand-name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lh-ink);
}

.lp-home-about__legal {
    margin: 0.15rem 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lh-muted);
}

.lp-home-about__desc {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--lh-ink);
}

.lp-home-about__tagline {
    margin: 0;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--lh-green);
    border-radius: 0 12px 12px 0;
    background: var(--lh-green-bg);
    font-size: 0.88rem;
    line-height: 1.65;
    font-weight: 600;
    color: var(--lh-green-deep);
}

.lp-home-about__vm {
    display: grid;
    gap: 1rem;
}

.lp-home-about__vm-card {
    padding: 1.15rem 1.2rem;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.lp-home-about__vm-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--lh-ink);
}

.lp-home-about__vm-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--lh-green-soft);
    color: var(--lh-green);
    font-size: 0.95rem;
}

.lp-home-about__vm-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--lh-muted);
}

.lp-home-about__mission {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.lp-home-about__mission li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--lh-muted);
}

.lp-home-about__mission-check {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.12rem;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--lh-green);
    color: #fff;
    font-size: 0.62rem;
    line-height: 1;
}

/* —— Partner kami —— */
.lp-home-partners {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0fdf4 100%);
}

.lp-home-partners__fluid {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
}

.lp-home-partners__inner {
    width: 100%;
    max-width: var(--lh-container);
    margin-inline: auto;
}

.lp-home-partners__head {
    text-align: center;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.lp-home-partners__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(22, 163, 74, 0.15);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lh-green-dark);
    letter-spacing: 0.02em;
}

.lp-home-partners__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lh-green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.lp-home-partners__title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--lh-ink);
}

.lp-home-partners__lead {
    margin: 0.75rem auto 0;
    max-width: 36rem;
    color: var(--lh-muted);
    font-size: 0.92rem;
}

.lp-home-partners__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.5vw, 1.15rem);
}

.lp-home-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-height: 9.5rem;
    padding: 1.25rem 1rem;
    text-align: center;
    border-radius: 18px;
    background: var(--lh-white);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.35s var(--lp-ease-out),
        box-shadow 0.35s var(--lp-ease-out),
        border-color 0.35s;
}

.lp-home-partner:hover {
    transform: translateY(-6px);
    border-color: rgba(22, 163, 74, 0.2);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.lp-home-partner__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #dcfce7 0%, #bbf7d0 100%);
    color: var(--lh-green-dark);
    font-size: 1.25rem;
    transition: transform 0.35s var(--lp-ease-spring);
}

.lp-home-partner:hover .lp-home-partner__icon {
    transform: scale(1.08);
}

.lp-home-partner__name {
    margin: 0;
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    font-weight: 700;
    line-height: 1.45;
    color: var(--lh-ink);
}

/* —— Stats —— */
.lp-home-stats {
    position: relative;
    margin-top: clamp(2rem, 4vw, 3rem);
    padding: clamp(2.25rem, 4vw, 3rem) 0;
    background: linear-gradient(90deg, var(--lh-green-deep) 0%, var(--lh-green-dark) 50%, var(--lh-green) 100%);
    color: #fff;
}

.lp-home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.lp-home-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.6s var(--lp-ease-out),
        transform 0.6s var(--lp-ease-out);
    transition-delay: var(--lp-reveal-delay, 0ms);
}

.lp-home-stats.is-visible .lp-home-stats__item {
    opacity: 1;
    transform: translateY(0);
}

.lp-home-stats__icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1rem;
    margin-bottom: 0.15rem;
    transition: transform 0.35s var(--lp-ease-spring);
}

.lp-home-stats__item:hover .lp-home-stats__icon {
    transform: scale(1.1) rotate(-4deg);
}

.lp-home-stats__item strong {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.1;
}

.lp-home-stats__item > span:last-child {
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    max-width: 14ch;
}

/* —— Footer beranda (tema hijau) —— */
.landing-shell--home .lp-footer--home {
    --lp-footer-bg: var(--lh-green-deep);
    --lp-footer-text: rgba(255, 255, 255, 0.85);
    --lp-footer-muted: rgba(255, 255, 255, 0.62);
    --lp-footer-line: rgba(255, 255, 255, 0.16);
    --lp-footer-link-hover: #bbf7d0;
    --lp-footer-panel-bg: rgba(0, 0, 0, 0.18);
    --lp-footer-panel-border: rgba(255, 255, 255, 0.2);
    --lp-footer-accent: #86efac;

    margin-top: 0;
    font-size: 0.84rem;
}

.landing-shell--home .lp-footer--home .lp-footer__brand {
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 800;
}

.landing-shell--home .lp-footer--home .lp-footer__links a:hover {
    color: #bbf7d0;
}

.landing-shell--home .lp-footer--home .lp-visitor-panel__metric--today {
    background: rgba(134, 239, 172, 0.18);
}

/* —— Responsive —— */
@media (max-width: 1100px) {
    .lp-home-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .lp-home-hero__frame {
        min-height: clamp(520px, 85vw, 640px);
    }

    .lp-home-hero__slide {
        min-height: clamp(520px, 85vw, 640px);
        background-position: center bottom;
    }

    .lp-home-hero__container {
        min-height: clamp(520px, 85vw, 640px);
    }

    .lp-home-hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.92) 45%,
            rgba(255, 255, 255, 0.55) 70%,
            rgba(255, 255, 255, 0.15) 100%
        );
    }

    .lp-home-hero__content {
        max-width: 100%;
    }

    .lp-home-why__inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .lp-home-why__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 0;
    }

    .lp-home-why__feature {
        border-left: none;
        padding: 0 0.75rem 0 0;
    }

    .lp-home-why__feature:nth-child(odd) {
        padding-right: 1rem;
        border-right: 1px dashed rgba(148, 163, 184, 0.55);
    }

    .lp-home-about__layout {
        grid-template-columns: 1fr;
    }

    .lp-home-partners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-home-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .lp-home-products__grid,
    .lp-home-stats__grid,
    .lp-home-partners__grid {
        grid-template-columns: 1fr;
    }

    .lp-home-why__features {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .lp-home-why__feature,
    .lp-home-why__feature:nth-child(odd) {
        padding: 0;
        border: none;
    }

    .lp-home-hero__actions {
        flex-direction: column;
    }

    .lp-home-btn {
        width: 100%;
        justify-content: center;
    }

    .lp-home-trust {
        justify-content: space-between;
    }

    .lp-home-nav__text small {
        display: none;
    }
}

.lp-coming-soon-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.lp-coming-soon-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lp-coming-soon-modal__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--lh-ink, #0f172a);
    line-height: 1.3;
}

.lp-coming-soon-modal__message {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--lh-muted, #64748b);
}

.lp-coming-soon-modal__dismiss {
    flex: 1;
    font-weight: 600;
}

.lp-coming-soon-modal__wa {
    flex: 1;
    font-weight: 700;
    color: #fff !important;
    background: #25d366 !important;
    border-color: #25d366 !important;
}

.lp-coming-soon-modal__wa:hover {
    color: #fff !important;
    background: #1ebe57 !important;
    border-color: #1ebe57 !important;
}

@media (prefers-reduced-motion: reduce) {
    .landing-shell--home .lp-reveal {
        opacity: 1;
        transform: none;
    }
}
