/* Landing page — e-permohonan.my */
:root {
    --lp-primary: #003366;
    --lp-primary-dark: #002244;
    --lp-primary-mid: #1a4d7c;
    --lp-primary-light: #e8f1f8;
    --lp-orange: #f26522;
    --lp-orange-dark: #d94e0f;
    --lp-orange-light: #fff4ed;
    --lp-bg: #f4f7fa;
    --lp-panel: #ffffff;
    --lp-text: #1e293b;
    --lp-muted: #64748b;
    --lp-border: #cbd5e1;
    --lp-success: #166534;
    --lp-shadow: 0 4px 24px rgba(15, 53, 88, 0.08);
    --lp-shadow-lg: 0 12px 40px rgba(15, 53, 88, 0.12);
    --lp-radius: 12px;
    --lp-font: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
    --lp-font-display: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    --lp-nav-h: 64px;
}

.lp-body {
    margin: 0;
    font-family: var(--lp-font);
    background: var(--lp-bg);
    color: var(--lp-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.lp-body * { box-sizing: border-box; }

/* ── Nav ── */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--lp-nav-h);
    display: flex;
    align-items: center;
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
}

.lp-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-color: var(--lp-border);
    box-shadow: 0 1px 12px rgba(15, 53, 88, 0.06);
}

.lp-nav__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    color: var(--lp-primary);
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: 1.12rem;
    letter-spacing: 0.02em;
    line-height: 1;
}

.lp-logo__mark {
    display: block;
    width: 1.15em;
    height: 1.15em;
    min-width: 1.15em;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 0.2em;
}

.lp-nav.is-scrolled .lp-logo { color: var(--lp-primary); }

.lp-nav__links a {
    display: none;
    align-items: center;
    gap: 1.75rem;
}

.lp-nav__links a {
    color: var(--lp-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.lp-nav__links a:hover { color: var(--lp-primary); }

.lp-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    background: var(--lp-orange);
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.lp-nav__cta:hover {
    background: var(--lp-orange-dark);
    transform: translateY(-1px);
}

.lp-nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.lp-nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--lp-primary);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.lp-nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.lp-nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp-mobile-menu {
    display: none;
    position: fixed;
    top: var(--lp-nav-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--lp-border);
    padding: 1rem 1.25rem 1.25rem;
    box-shadow: var(--lp-shadow);
    z-index: 99;
}

.lp-mobile-menu.is-open { display: block; }

.lp-mobile-menu a {
    display: block;
    padding: 0.65rem 0;
    color: var(--lp-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
}

.lp-mobile-menu .lp-nav__cta {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
    width: 100%;
}

@media (min-width: 768px) {
    .lp-nav__links { display: flex; }
    .lp-nav__toggle { display: none; }
}

/* ── Nav over hero ── */
.lp-nav--over-hero:not(.is-scrolled) {
    background: transparent;
    border-color: transparent;
}

.lp-nav--over-hero:not(.is-scrolled) .lp-logo {
    color: #fff;
}

.lp-nav--over-hero:not(.is-scrolled) .lp-nav__links a {
    color: rgba(255, 255, 255, 0.88);
}

.lp-nav--over-hero:not(.is-scrolled) .lp-nav__links a:hover {
    color: #fff;
}

.lp-nav--over-hero:not(.is-scrolled) .lp-nav__toggle span {
    background: #fff;
}

.lp-boot-loading {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-text-muted, #64748b);
    font-size: 1rem;
}

.lp-hero {
    position: relative;
    margin: 0;
    padding: 0;
    color: #fff;
    overflow: visible;
}

.lp-hero-slider {
    position: relative;
    min-height: clamp(520px, 88vh, 760px);
    overflow: hidden;
    background: var(--lp-primary-dark);
}

.lp-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s;
    z-index: 0;
}

.lp-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.lp-hero-slide__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.lp-hero-slide__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    transition: transform 8s ease-out;
    filter: brightness(var(--lp-slide-brightness, 1.15));
}

.lp-hero-slide.is-active .lp-hero-slide__bg-img {
    transform: scale(1);
    animation: lp-kenburns 8s ease-out forwards;
}

/* legacy: background-image pada __bg (fallback) */
.lp-hero-slide__bg[style*="background-image"] {
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 8s ease-out;
    filter: brightness(var(--lp-slide-brightness, 1.15));
}

.lp-hero-slide.is-active .lp-hero-slide__bg[style*="background-image"] {
    transform: scale(1);
    animation: lp-kenburns 8s ease-out forwards;
}

@keyframes lp-kenburns {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.lp-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0, 20, 45, var(--lp-overlay-opacity, 0.62)) 0%, rgba(0, 34, 68, calc(var(--lp-overlay-opacity, 0.62) * 0.85)) 45%, rgba(0, 51, 102, calc(var(--lp-overlay-opacity, 0.62) * 0.5)) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 45%, rgba(0, 0, 0, 0.28) 100%);
}

.lp-hero-slide__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: calc(var(--lp-nav-h) + 2rem) 1.25rem 5.5rem;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
    pointer-events: none;
}

.lp-hero-slide__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
}

.lp-hero-slide__content.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lp-hero-slider__ui {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.lp-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    display: none;
}

.lp-hero-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
}

.lp-hero-arrow--prev { left: 1rem; }
.lp-hero-arrow--next { right: 1rem; }

.lp-hero-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    pointer-events: auto;
}

.lp-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: width 0.25s, background 0.25s;
}

.lp-hero-dot.is-active {
    width: 28px;
    background: var(--lp-orange);
}

.lp-hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
}

.lp-hero-progress__bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--lp-orange), #ffb347);
    animation: lp-hero-timer 6.5s linear infinite;
}

@keyframes lp-hero-timer {
    from { width: 0; }
    to { width: 100%; }
}

.lp-hero-tech {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(90deg, var(--lp-primary-dark), var(--lp-primary), var(--lp-primary-dark));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.lp-hero-tech span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-hero__card-wrap {
    display: none;
}

.lp-stats-section {
    padding: 2.5rem 1.25rem 3rem;
    background: linear-gradient(180deg, var(--lp-bg) 0%, #ffffff 55%);
}

.lp-stats-section__inner {
    max-width: 1040px;
    margin: 0 auto;
}

.lp-platform-stats {
    background: var(--lp-panel);
    border-radius: 16px;
    border: 1px solid rgba(0, 51, 102, 0.07);
    box-shadow: 0 10px 40px rgba(0, 51, 102, 0.07);
    padding: 2rem 1.25rem 1.35rem;
    text-align: center;
}

.lp-platform-stats__head {
    max-width: 560px;
    margin: 0 auto 1.75rem;
}

.lp-platform-stats__lead {
    margin: 0.45rem 0 0;
    font-size: 0.88rem;
    color: var(--lp-muted);
    line-height: 1.5;
}

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

@media (min-width: 768px) {
    .lp-platform-stats {
        padding: 2.25rem 2rem 1.5rem;
    }
    .lp-platform-stats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.lp-platform-stat {
    padding: 1.15rem 0.85rem;
    position: relative;
}

.lp-platform-stat:nth-child(odd) {
    border-right: 1px solid #e8eef4;
}

.lp-platform-stat:nth-child(1),
.lp-platform-stat:nth-child(2) {
    border-bottom: 1px solid #e8eef4;
}

@media (min-width: 768px) {
    .lp-platform-stat {
        padding: 1.35rem 1rem;
    }
    .lp-platform-stat:nth-child(odd) {
        border-right: none;
    }
    .lp-platform-stat:nth-child(1),
    .lp-platform-stat:nth-child(2) {
        border-bottom: none;
    }
    .lp-platform-stat:not(:last-child) {
        border-right: 1px solid #e8eef4;
    }
}

.lp-platform-stat__value {
    font-family: var(--lp-font-display);
    font-size: clamp(1.55rem, 3.8vw, 2.1rem);
    font-weight: 800;
    color: var(--lp-primary);
    letter-spacing: -0.03em;
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
}

.lp-platform-stat__value.is-counting,
.lp-platform-stat__value span.is-counting {
    color: var(--lp-orange);
    transition: color 0.3s;
}

.lp-platform-stat__label {
    margin-top: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lp-muted);
    line-height: 1.35;
}

.lp-platform-stats__note {
    margin: 1.35rem 0 0;
    padding-top: 1.15rem;
    border-top: 1px solid #e8eef4;
    font-size: 0.72rem;
    color: var(--lp-muted);
    line-height: 1.45;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Legacy hero card wrap — hidden */
.lp-hero__card-wrap {
    display: none;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    margin-top: 1.25rem;
    margin-bottom: 0;
    background: rgba(0, 20, 45, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .lp-hero-arrow { display: flex; align-items: center; justify-content: center; }
}

.lp-hero__badge-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: lp-pulse 2s ease infinite;
}

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

.lp-hero h1 {
    margin: 0 0 1rem;
    font-family: var(--lp-font-display);
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.lp-hero h1 em {
    font-style: normal;
    color: var(--lp-orange);
}

.lp-hero__lead {
    margin: 0 0 1.75rem;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    opacity: 0.94;
    max-width: 560px;
    line-height: 1.7;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

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

.lp-hero__trust-logos {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    padding: 0.65rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    align-self: flex-start;
}

.lp-hero__trust-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 2px 4px;
}

.lp-hero__trust-slot.is-hidden {
    display: none;
}

.lp-hero__trust-logo {
    display: block;
    height: 38px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
    opacity: 0.94;
    transition: opacity 0.2s ease;
}

.lp-hero-slide__content.is-active .lp-hero__trust-logo {
    animation: lp-trust-pulse 4.5s ease-in-out infinite;
}

.lp-hero__trust-slot[data-trust-idx="0"] .lp-hero__trust-logo { animation-delay: 0s; }
.lp-hero__trust-slot[data-trust-idx="1"] .lp-hero__trust-logo { animation-delay: 1.5s; }
.lp-hero__trust-slot[data-trust-idx="2"] .lp-hero__trust-logo { animation-delay: 3s; }

@keyframes lp-trust-pulse {
    0%, 72%, 100% {
        transform: scale(1);
        opacity: 0.94;
    }
    36% {
        transform: scale(1.12);
        opacity: 1;
    }
}

.lp-hero__trust-logos:hover .lp-hero__trust-logo {
    opacity: 1;
}

/* Mobile: logo antara lead & butang CTA */
@media (max-width: 899px) {
    .lp-hero-slide__content {
        display: flex;
        flex-direction: column;
    }

    .lp-hero-slide__main {
        display: contents;
    }

    .lp-hero-slide__main h1 { order: 1; }
    .lp-hero-slide__main .lp-hero__lead { order: 2; }

    .lp-hero__trust-logos {
        order: 3;
        margin-top: -0.35rem;
        margin-bottom: 0.85rem;
        align-self: flex-start;
    }

    .lp-hero-slide__main .lp-hero__actions {
        order: 4;
        margin-bottom: 0.5rem;
    }

    .lp-hero__badge {
        order: 5;
        margin-top: 0.65rem;
    }
}

@media (min-width: 768px) {
    .lp-hero__trust-logos {
        gap: 1rem;
        padding: 0.75rem 1.15rem;
        margin-bottom: 1.75rem;
    }

    .lp-hero__trust-logo {
        height: 48px;
        max-width: 140px;
    }
}

@media (min-width: 900px) {
    .lp-hero-slide__content {
        display: grid;
        grid-template-columns: minmax(0, 58%) minmax(0, 1fr);
        grid-template-rows: 1fr auto;
        align-items: center;
        column-gap: 2rem;
        padding-bottom: 4.5rem;
    }

    .lp-hero-slide__main {
        grid-column: 1;
        grid-row: 1;
        max-width: none;
    }

    .lp-hero__badge {
        grid-column: 1;
        grid-row: 2;
    }

    .lp-hero__trust-logos {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        justify-self: end;
        margin-top: -0.5rem;
        margin-bottom: 0;
        max-width: min(100%, 460px);
    }
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.lp-btn:active { transform: scale(0.98); }

.lp-btn--primary {
    background: var(--lp-orange);
    color: #fff;
    box-shadow: 0 4px 20px rgba(242, 101, 34, 0.35);
}

.lp-btn--primary:hover {
    background: var(--lp-orange-dark);
    box-shadow: 0 6px 28px rgba(242, 101, 34, 0.45);
    transform: translateY(-2px);
}

.lp-btn--glow {
    box-shadow: 0 4px 24px rgba(242, 101, 34, 0.4);
}

.lp-btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.lp-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.lp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.8rem;
    opacity: 0.88;
}

.lp-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

@keyframes lp-slide-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-hero__card h3 {
    margin: 0 0 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lp-muted);
    font-weight: 700;
}

.lp-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    justify-items: center;
}

.lp-mini-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lp-orange);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.lp-mini-stat span {
    font-size: 0.75rem;
    color: var(--lp-muted);
    line-height: 1.35;
}

.lp-hero__card-note {
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--lp-border);
    font-size: 0.75rem;
    color: var(--lp-muted);
}

/* ── Sections ── */
.lp-section {
    padding: 4rem 1.25rem;
}

.lp-section--alt { background: #fff; }

.lp-container {
    max-width: 1140px;
    margin: 0 auto;
}

.lp-section__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.lp-section__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-orange);
    margin-bottom: 0.5rem;
}

.lp-section__head h2 {
    margin: 0 0 0.65rem;
    font-family: var(--lp-font-display);
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--lp-text);
}

.lp-section__head p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.95rem;
}

.lp-stats-bar {
    margin-top: 0;
    position: relative;
    z-index: 2;
    padding: 0 1.25rem;
}

.lp-stats-bar__inner {
    max-width: 1140px;
    margin: 0 auto;
    background: var(--lp-panel);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-lg);
    border: 1px solid var(--lp-border);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

@media (min-width: 768px) {
    .lp-stats-bar__inner { grid-template-columns: repeat(4, 1fr); }
}

.lp-stat-item {
    padding: 1.35rem 1rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 768px) {
    .lp-stat-item { border-bottom: none; border-right: 1px solid #f1f5f9; }
    .lp-stat-item:last-child { border-right: none; }
}

.lp-stat-item:nth-child(odd) { border-right: 1px solid #f1f5f9; }

@media (min-width: 768px) {
    .lp-stat-item:nth-child(odd) { border-right: none; }
}

.lp-stat-item__num {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--lp-orange);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.lp-stat-item__label {
    font-size: 0.75rem;
    color: var(--lp-muted);
    margin-top: 0.25rem;
    line-height: 1.35;
}

/* ── Steps ── */
.lp-steps {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 820px; margin: 0 auto; }
}

.lp-step {
    background: var(--lp-panel);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.5rem;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}

.lp-step:hover {
    box-shadow: var(--lp-shadow);
    transform: translateY(-3px);
}

.lp-step__num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--lp-primary-light);
    color: var(--lp-primary);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.lp-step h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
}

.lp-step p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--lp-muted);
    line-height: 1.55;
}

/* ── Benefits ── */
.lp-benefits {
    display: grid;
    gap: 1.15rem;
}

@media (min-width: 600px) {
    .lp-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .lp-benefits { grid-template-columns: repeat(3, 1fr); }
}

.lp-benefit {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem 1.35rem;
    border: 1px solid rgba(0, 51, 102, 0.07);
    box-shadow: 0 2px 14px rgba(0, 51, 102, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.lp-section--alt .lp-benefit {
    background: #fff;
}

.lp-benefit:hover {
    border-color: rgba(242, 101, 34, 0.22);
    box-shadow: 0 10px 28px rgba(0, 51, 102, 0.08);
    transform: translateY(-2px);
}

.lp-benefit__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(145deg, #eef4fa 0%, #f8fafc 100%);
    border: 1px solid rgba(0, 51, 102, 0.08);
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lp-benefit__icon svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
}

.lp-benefit:hover .lp-benefit__icon {
    background: linear-gradient(145deg, #fff4ed 0%, #eef4fa 100%);
    border-color: rgba(242, 101, 34, 0.2);
    color: var(--lp-orange-dark);
}

.lp-benefit h3 {
    margin: 0 0 0.45rem;
    font-family: var(--lp-font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--lp-text);
    letter-spacing: -0.01em;
}

.lp-benefit p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--lp-muted);
    line-height: 1.55;
}

/* ── Partners ── */
.lp-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.lp-partner {
    padding: 0.55rem 1rem;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lp-text);
    transition: border-color 0.2s, color 0.2s;
}

.lp-partner:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
}

.lp-partners-note {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.75rem;
    color: var(--lp-muted);
}

/* ── Reviews ── */
.lp-reviews-wrap {
    position: relative;
    overflow: hidden;
}

.lp-reviews {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lp-review {
    flex: 0 0 100%;
    background: var(--lp-panel);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.5rem;
    box-shadow: var(--lp-shadow);
}

@media (min-width: 700px) {
    .lp-review { flex: 0 0 calc(50% - 0.625rem); }
}

@media (min-width: 1000px) {
    .lp-review { flex: 0 0 calc(33.333% - 0.834rem); }
}

.lp-review__stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.lp-review__text {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--lp-text);
    line-height: 1.6;
    font-style: italic;
}

.lp-review__author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.lp-review__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lp-primary-light);
    color: var(--lp-primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-review__name {
    font-size: 0.85rem;
    font-weight: 700;
}

.lp-review__loc {
    font-size: 0.75rem;
    color: var(--lp-muted);
}

.lp-reviews-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.lp-reviews-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--lp-border);
    background: #fff;
    color: var(--lp-primary);
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s, border-color 0.2s;
}

.lp-reviews-nav button:hover {
    background: var(--lp-primary-light);
    border-color: var(--lp-primary);
}

/* ── FAQ ── */
.lp-faq { max-width: 720px; margin: 0 auto; }

.lp-faq-item {
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    margin-bottom: 0.65rem;
    background: #fff;
    overflow: hidden;
}

.lp-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lp-text);
    text-align: left;
    cursor: pointer;
}

.lp-faq-q::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--lp-primary);
    flex-shrink: 0;
    transition: transform 0.25s;
}

.lp-faq-item.is-open .lp-faq-q::after { transform: rotate(45deg); }

.lp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.lp-faq-a__inner {
    padding: 0 1.15rem 1rem;
    font-size: 0.875rem;
    color: var(--lp-muted);
    line-height: 1.6;
}

/* ── Footer ── */
.lp-footer {
    background: var(--lp-primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 2.5rem 1.25rem 1.5rem;
    font-size: 0.8rem;
}

.lp-footer__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lp-footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
}

.lp-footer__brand {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.lp-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.lp-footer a:hover { color: #fff; }

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

.lp-footer__bottom {
    max-width: 1140px;
    margin: 2rem auto 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 0.72rem;
    opacity: 0.7;
}

/* ── Reveal animation ── */
.lp-reveal,
.lp-reveal-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.lp-reveal-left {
    transform: translateX(-28px);
}

.lp-reveal-left.is-visible {
    transform: translateX(0);
}

.lp-reveal-right {
    transform: translateX(28px);
}

.lp-reveal-right.is-visible {
    transform: translateX(0);
}

.lp-reveal-delay-1 { transition-delay: 0.08s; }
.lp-reveal-delay-2 { transition-delay: 0.16s; }
.lp-reveal-delay-3 { transition-delay: 0.24s; }

.lp-hero-slide__content.is-active .lp-hero-slide__main h1 {
    animation: lp-hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lp-hero-slide__content.is-active .lp-hero-slide__main .lp-hero__lead {
    animation: lp-hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.lp-hero-slide__content.is-active .lp-hero-slide__main .lp-hero__actions {
    animation: lp-hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.lp-hero-slide__content.is-active .lp-hero__trust-logos {
    animation: lp-hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.lp-hero-slide__content.is-active .lp-hero__badge {
    animation: lp-hero-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

@keyframes lp-hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-stats-section.is-visible .lp-platform-stat {
    animation: lp-stat-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lp-stats-section.is-visible .lp-platform-stat:nth-child(1) { animation-delay: 0.05s; }
.lp-stats-section.is-visible .lp-platform-stat:nth-child(2) { animation-delay: 0.12s; }
.lp-stats-section.is-visible .lp-platform-stat:nth-child(3) { animation-delay: 0.19s; }
.lp-stats-section.is-visible .lp-platform-stat:nth-child(4) { animation-delay: 0.26s; }

@keyframes lp-stat-in {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-reveal,
    .lp-reveal-child,
    .lp-hero-slide__content.is-active .lp-hero-slide__main h1,
    .lp-hero-slide__content.is-active .lp-hero-slide__main .lp-hero__lead,
    .lp-hero-slide__content.is-active .lp-hero-slide__main .lp-hero__actions,
    .lp-hero-slide__content.is-active .lp-hero__trust-logos,
    .lp-hero-slide__content.is-active .lp-hero__badge,
    .lp-stats-section.is-visible .lp-platform-stat,
    .lp-hero-slide__content.is-active .lp-hero__trust-logo {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ── Split image section ── */
.lp-split {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .lp-split { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.lp-split__img {
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
    position: relative;
}

.lp-split__img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.lp-split__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--lp-orange);
}

.lp-split__content {
    display: flex;
    flex-direction: column;
}

.lp-split__content h2 {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lp-primary);
}

.lp-split__content p {
    margin: 0 0 1rem;
    color: var(--lp-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.lp-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-checklist li {
    padding: 0.45rem 0 0.45rem 1.75rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--lp-text);
}

.lp-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lp-orange);
    font-weight: 800;
}

.lp-split__cta {
    margin-top: 1.75rem;
    padding-top: 0.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.lp-split__cta .lp-btn--primary {
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(242, 101, 34, 0.35);
}

@media (max-width: 899px) {
    .lp-split__content {
        text-align: center;
        align-items: center;
    }

    .lp-split__content .lp-section__label,
    .lp-split__content h2,
    .lp-split__content p {
        text-align: center;
    }

    .lp-checklist {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }
}

/* ── Trust band with image ── */
.lp-trust-band {
    position: relative;
    padding: 4rem 1.25rem;
    color: #fff;
    overflow: hidden;
}

.lp-trust-band__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}

.lp-trust-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.92), rgba(242, 101, 34, 0.55));
}

.lp-trust-band__inner {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.lp-trust-band h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
}

.lp-trust-band p {
    margin: 0 auto 1.5rem;
    max-width: 560px;
    opacity: 0.92;
    font-size: 0.95rem;
}

.lp-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.lp-trust-pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* ── CTA band ── */
.lp-cta-band {
    background: linear-gradient(135deg, var(--lp-primary-dark), var(--lp-primary));
    color: #fff;
    padding: 3.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta-band h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
}

.lp-cta-band p {
    margin: 0 auto 1.5rem;
    max-width: 520px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.lp-cta-band__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.lp-cta-band__inner { position: relative; }

.lp-cta-band .lp-btn--primary {
    background: var(--lp-orange);
    color: #fff;
}

/* ── Loading ── */
.lp-loading {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--lp-muted);
    gap: 1rem;
}

.lp-loading__spin {
    width: 40px;
    height: 40px;
    border: 3px solid var(--lp-border);
    border-top-color: var(--lp-orange);
    border-radius: 50%;
    animation: lp-spin 0.8s linear infinite;
}

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