/**
 * HRMS Landing Page — World-Class Premium Design
 * Inspired by Rippling · Deel · BambooHR · HiBob · Gusto
 * ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.hrms-lp {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ── CONTAINER ────────────────────────────────────────────────── */
.lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── SCROLL REVEAL ANIMATION ─────────────────────────────────── */
.lp-feature-row,
.lp-module-card,
.lp-step,
.lp-testi-card,
.lp-stat,
.lp-price-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.lp-feature-row.is-visible,
.lp-module-card.is-visible,
.lp-step.is-visible,
.lp-testi-card.is-visible,
.lp-stat.is-visible,
.lp-price-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.lp-module-card:nth-child(2) { transition-delay: .05s; }
.lp-module-card:nth-child(3) { transition-delay: .1s; }
.lp-module-card:nth-child(4) { transition-delay: .15s; }
.lp-module-card:nth-child(5) { transition-delay: .2s; }
.lp-module-card:nth-child(6) { transition-delay: .25s; }

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════════ */
.lp-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
}
.lp-navbar.is-scrolled {
    background: rgba(255,255,255,.95);
    border-bottom-color: #e2e8f0;
    box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

.lp-nav {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 12px;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.lp-brand img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
}
.lp-brand-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e3a8a;
    letter-spacing: -.03em;
}

.lp-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.lp-nav-link {
    font-size: .875rem;
    font-weight: 500;
    color: #475569;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .2s;
    white-space: nowrap;
}
.lp-nav-link:hover {
    color: #1e3a8a;
    background: #f1f5f9;
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    flex-shrink: 0;
}

/* Hamburger */
.lp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.lp-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #334155;
    border-radius: 2px;
    transition: all .3s;
}
.lp-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.is-active span:nth-child(2) { opacity: 0; }
.lp-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
    .lp-nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        padding: 16px 24px;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 12px 40px rgba(0,0,0,.1);
        gap: 4px;
    }
    .lp-nav-menu.is-open { display: flex; }
    .lp-nav-link { width: 100%; padding: 12px 16px; }
    .lp-nav-actions { display: none; }
    .lp-hamburger { display: flex; }
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 10px;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
    line-height: 1;
}
.lp-btn-sm { padding: 9px 18px; font-size: .875rem; }
.lp-btn-md { padding: 12px 26px; font-size: .9375rem; }
.lp-btn-lg { padding: 15px 32px; font-size: 1rem; }
.lp-btn-block { width: 100%; }

.lp-btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(37,99,235,.3);
}
.lp-btn-primary:hover {
    box-shadow: 0 6px 24px rgba(37,99,235,.4);
    transform: translateY(-2px);
}

.lp-btn-ghost {
    background: transparent;
    color: #475569;
    border: 1.5px solid #e2e8f0;
}
.lp-btn-ghost:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #1e293b;
}

.lp-btn-white {
    background: #fff;
    color: #1e3a8a;
    box-shadow: 0 2px 16px rgba(0,0,0,.12);
}
.lp-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

.lp-btn-outline-white {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.25);
}
.lp-btn-outline-white:hover {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.5);
}

.lp-btn-outline-dark {
    background: transparent;
    color: #1e293b;
    border: 1.5px solid #e2e8f0;
}
.lp-btn-outline-dark:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* ══════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════ */
.lp-hero {
    position: relative;
    background: linear-gradient(160deg, #0c1d4d 0%, #1e3a8a 30%, #2563eb 65%, #0ea5e9 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}

.lp-hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.lp-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .06;
    background: #fff;
}
.lp-hero-shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.lp-hero-shape-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.lp-hero-shape-3 { width: 200px; height: 200px; top: 50%; left: 40%; }

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.lp-hero-content { max-width: 540px; }

.lp-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
}
.lp-pill-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}

.lp-hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin-bottom: 22px;
}
.lp-hero-title-accent {
    display: block;
    background: linear-gradient(90deg, #93c5fd 0%, #c4b5fd 50%, #93c5fd 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    to { background-position: 200% center; }
}

.lp-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.lp-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.lp-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.lp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8125rem;
    color: rgba(255,255,255,.65);
}
.lp-hero-trust-item i {
    font-size: .9rem;
    color: rgba(255,255,255,.5);
}

/* ── Hero Dashboard Mockup ────────────────────────────────────── */
.lp-hero-visual {
    position: relative;
}

.lp-dashboard-mockup {
    background: #fff;
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.1),
        0 32px 80px rgba(0,0,0,.35),
        0 8px 24px rgba(0,0,0,.2);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.lp-hero-visual:hover .lp-dashboard-mockup {
    transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
}

.lp-mockup-topbar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-mockup-dots {
    display: flex;
    gap: 6px;
}
.lp-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.lp-mockup-url {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .65rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lp-mockup-body {
    display: flex;
    min-height: 280px;
}

/* Sidebar in mockup */
.lp-mockup-sidebar {
    width: 160px;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}
.lp-mockup-sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: .65rem;
    font-weight: 500;
    color: #64748b;
}
.lp-mockup-sidebar-item.active {
    background: #eff6ff;
    color: #1e3a8a;
    font-weight: 600;
}
.lp-mockup-sidebar-item i { font-size: .8rem; }

/* Main content in mockup */
.lp-mockup-main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-mockup-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.lp-mockup-kpi {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-mockup-kpi-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--kpi-color) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kpi-color);
    font-size: .85rem;
}
.lp-mockup-kpi-val {
    display: block;
    font-size: .9rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.03em;
}
.lp-mockup-kpi-label {
    display: block;
    font-size: .55rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Chart in mockup */
.lp-mockup-chart {
    flex: 1;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px;
}
.lp-mockup-chart-title {
    font-size: .65rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 12px;
}
.lp-mockup-bars {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 90px;
    padding-bottom: 18px;
}
.lp-mockup-bar {
    flex: 1;
    height: var(--bar-h);
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: grow-bar .8s ease-out both;
}
.lp-mockup-bar span {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .5rem;
    color: #94a3b8;
    font-weight: 500;
}
@keyframes grow-bar { from { height: 0; } }

/* Floating badges */
.lp-float-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    z-index: 10;
    animation: float-badge 3s ease-in-out infinite;
}
.lp-float-badge-1 {
    bottom: -16px;
    left: -24px;
    animation-delay: 0s;
}
.lp-float-badge-2 {
    top: 30%;
    right: -28px;
    animation-delay: 1.5s;
}
@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 991px) {
    .lp-hero { padding: 56px 0 72px; }
    .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .lp-hero-content { max-width: 100%; }
    .lp-dashboard-mockup { transform: none; }
    .lp-hero-visual:hover .lp-dashboard-mockup { transform: none; }
    .lp-float-badge { display: none; }
    .lp-mockup-sidebar { display: none; }
    .lp-mockup-kpi-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
    .lp-hero { padding: 40px 0 56px; }
    .lp-hero-title { font-size: 1.85rem; }
    .lp-hero-desc { font-size: 1rem; }
    .lp-mockup-kpi-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   LOGOS STRIP
   ══════════════════════════════════════════════════════════════════ */
.lp-logos-strip {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
}
.lp-logos-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}
.lp-logos-label {
    font-size: .7rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: .1em;
    white-space: nowrap;
    flex-shrink: 0;
}
.lp-logos-row {
    display: flex;
    align-items: center;
    gap: 32px;
    overflow: hidden;
    flex: 1;
}
.lp-logo-placeholder {
    font-size: .8125rem;
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: .02em;
    white-space: nowrap;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .lp-logos-inner { flex-direction: column; gap: 12px; }
    .lp-logos-row { gap: 20px; flex-wrap: wrap; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════════════════ */
.lp-stats {
    padding: 72px 0;
    background: #fff;
}
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.lp-stat { text-align: center; }
.lp-stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1e3a8a;
    letter-spacing: -.05em;
    line-height: 1;
}
.lp-stat-label {
    font-size: .9375rem;
    font-weight: 600;
    color: #334155;
    margin-top: 8px;
}
.lp-stat-sub {
    font-size: .8rem;
    color: #94a3b8;
    margin-top: 4px;
}
@media (max-width: 767px) {
    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .lp-stat-number { font-size: 2rem; }
}

/* ══════════════════════════════════════════════════════════════════
   SECTIONS — Common
   ══════════════════════════════════════════════════════════════════ */
.lp-section { padding: 96px 0; }
.lp-section-white { background: #fff; }
.lp-section-soft { background: #f8fafc; }
.lp-section-dark-gradient { background: linear-gradient(160deg, #0c1d4d 0%, #1e3a8a 50%, #1d4ed8 100%); }

.lp-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.lp-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #2563eb;
    background: #eff6ff;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.lp-tag-light {
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.12);
}

.lp-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 14px;
}
.lp-heading-white { color: #fff; }

.lp-subheading {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.7;
}
.lp-subheading-light { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════════════════
   FEATURE ROWS — Alternating layout
   ══════════════════════════════════════════════════════════════════ */
.lp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 96px;
}
.lp-feature-row:last-child { margin-bottom: 0; }

.lp-feature-row-reverse .lp-feature-text { order: 2; }
.lp-feature-row-reverse .lp-feature-visual { order: 1; }

.lp-feature-num {
    display: inline-block;
    font-size: .8rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 12px;
    letter-spacing: .08em;
}
.lp-feature-text h3 {
    font-size: 1.625rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.03em;
    margin-bottom: 14px;
}
.lp-feature-text p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}
.lp-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9375rem;
    color: #334155;
    font-weight: 500;
}
.lp-feature-list li i {
    width: 22px;
    height: 22px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
}

/* ── Feature Visual: Employee Cards ───────────────────────────── */
.lp-feature-card-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-mini-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: all .25s;
}
.lp-mini-profile:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    border-color: #c7d2fe;
    transform: translateX(6px);
}
.lp-mini-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.lp-mini-info { flex: 1; min-width: 0; }
.lp-mini-name {
    font-size: .9rem;
    font-weight: 700;
    color: #0f172a;
}
.lp-mini-role {
    font-size: .75rem;
    color: #94a3b8;
    margin-top: 2px;
}
.lp-mini-badge {
    font-size: .65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    flex-shrink: 0;
}
.lp-badge-active { background: #dcfce7; color: #16a34a; }
.lp-badge-away { background: #fef3c7; color: #d97706; }

/* ── Feature Visual: Payroll Mockup ───────────────────────────── */
.lp-payroll-mockup {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.lp-payroll-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}
.lp-payroll-title {
    font-size: .9375rem;
    font-weight: 700;
    color: #0f172a;
}
.lp-payroll-month {
    font-size: .8rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
}
.lp-payroll-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: .875rem;
    color: #475569;
    border-bottom: 1px solid #f8fafc;
}
.lp-payroll-amount { font-weight: 700; color: #0f172a; }
.lp-payroll-deduction .lp-payroll-amount { color: #ef4444; }
.lp-payroll-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 12px;
    margin-top: 8px;
    border-top: 2px solid #e2e8f0;
    font-size: .9375rem;
    font-weight: 700;
    color: #0f172a;
}
.lp-payroll-total-amount {
    font-size: 1.25rem;
    font-weight: 900;
    color: #16a34a;
}
.lp-payroll-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: #10b981;
    margin-top: 12px;
    justify-content: center;
    padding: 10px;
    background: #f0fdf4;
    border-radius: 8px;
}

/* ── Feature Visual: Attendance Mockup ────────────────────────── */
.lp-attendance-mockup {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.lp-attendance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: .9375rem;
    font-weight: 700;
    color: #0f172a;
}
.lp-attendance-date {
    font-size: .8rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
}
.lp-attendance-ring-row {
    display: flex;
    align-items: center;
    gap: 32px;
}
.lp-attendance-ring {
    width: 120px;
    height: 120px;
    position: relative;
    flex-shrink: 0;
}
.lp-attendance-ring svg {
    width: 100%;
    height: 100%;
}
.lp-ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lp-ring-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -.03em;
}
.lp-ring-label {
    font-size: .65rem;
    color: #94a3b8;
    font-weight: 600;
}
.lp-attendance-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-attend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    color: #64748b;
    font-weight: 500;
}
.lp-attend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.lp-attend-item strong {
    margin-left: auto;
    font-weight: 800;
    color: #0f172a;
    font-size: .9rem;
}

@media (max-width: 991px) {
    .lp-feature-row { grid-template-columns: 1fr; gap: 40px; }
    .lp-feature-row-reverse .lp-feature-text,
    .lp-feature-row-reverse .lp-feature-visual { order: unset; }
    .lp-feature-row { margin-bottom: 64px; }
}

/* ══════════════════════════════════════════════════════════════════
   MODULES GRID
   ══════════════════════════════════════════════════════════════════ */
.lp-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.lp-module-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
}
.lp-module-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    transform: translateY(-4px);
}

.lp-module-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

/* Module color classes (mapped from index) */
.lp-mod-color-0  { background: #dbeafe; color: #1e40af; }
.lp-mod-color-1  { background: #ede9fe; color: #5b21b6; }
.lp-mod-color-2  { background: #d1fae5; color: #065f46; }
.lp-mod-color-3  { background: #fef3c7; color: #92400e; }
.lp-mod-color-4  { background: #fee2e2; color: #991b1b; }
.lp-mod-color-5  { background: #cffafe; color: #155e75; }
.lp-mod-color-6  { background: #fce7f3; color: #9d174d; }
.lp-mod-color-7  { background: #ccfbf1; color: #115e59; }
.lp-mod-color-8  { background: #e0e7ff; color: #3730a3; }
.lp-mod-color-9  { background: #ffedd5; color: #9a3412; }
.lp-mod-color-10 { background: #e0f2fe; color: #075985; }
.lp-mod-color-11 { background: #ecfccb; color: #3f6212; }

.lp-module-title {
    font-size: .9375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.lp-module-desc {
    font-size: .8125rem;
    color: #64748b;
    line-height: 1.55;
}

@media (max-width: 991px) { .lp-modules-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .lp-modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp-modules-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════════ */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}
.lp-steps-line {
    position: absolute;
    top: 32px;
    left: calc(16.66% + 32px);
    right: calc(16.66% + 32px);
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    border-radius: 3px;
}

.lp-step { text-align: center; }
.lp-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(37,99,235,.3);
    position: relative;
    z-index: 2;
}
.lp-step-icon span {
    font-size: 1.375rem;
    font-weight: 900;
    color: #fff;
}
.lp-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.lp-step p {
    font-size: .9rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .lp-steps { grid-template-columns: 1fr; gap: 48px; }
    .lp-steps-line { display: none; }
}

/* ══════════════════════════════════════════════════════════════════
   INTEGRATIONS
   ══════════════════════════════════════════════════════════════════ */
.lp-integrations-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.lp-integrations-text h2 { margin-top: 12px; }

.lp-integrations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}
.lp-int-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: .8125rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}
.lp-int-item i { font-size: 1.1rem; }

.lp-int-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.lp-int-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    transition: all .2s;
}
.lp-int-card:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .lp-integrations-content { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 575px) {
    .lp-int-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════════ */
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.lp-price-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 28px 28px;
    position: relative;
    transition: all .3s;
}
.lp-price-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,.08);
    transform: translateY(-4px);
}

.lp-price-featured {
    border-color: #2563eb;
    box-shadow: 0 8px 32px rgba(37,99,235,.12);
}
.lp-price-featured:hover {
    box-shadow: 0 16px 48px rgba(37,99,235,.18);
}

.lp-price-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.lp-price-header { text-align: center; margin-bottom: 28px; }
.lp-price-name {
    font-size: .8125rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.lp-price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}
.lp-price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: #334155;
    margin-top: 8px;
}
.lp-price-value {
    font-size: 3.25rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -.06em;
    line-height: 1;
}
.lp-price-period {
    font-size: .875rem;
    color: #94a3b8;
    margin-top: 4px;
}
.lp-price-desc {
    font-size: .875rem;
    color: #64748b;
    margin-top: 12px;
    line-height: 1.5;
}

.lp-price-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.lp-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
    color: #475569;
}
.lp-price-features li i {
    font-size: 1rem;
    color: #10b981;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════ */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-testi-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all .3s;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.lp-testi-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    border-color: transparent;
    transform: translateY(-4px);
}

.lp-testi-stars { display: flex; gap: 3px; }
.lp-testi-stars i { color: #f59e0b; font-size: .9rem; }

.lp-testi-quote {
    font-size: .9375rem;
    color: #475569;
    line-height: 1.75;
    flex: 1;
    border: none;
    margin: 0;
    padding: 0;
    font-style: normal;
}
.lp-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
/* Testimonial avatar gradients */
.lp-testi-grad-0 { background: linear-gradient(135deg,#3b82f6,#8b5cf6); }
.lp-testi-grad-1 { background: linear-gradient(135deg,#ec4899,#f59e0b); }
.lp-testi-grad-2 { background: linear-gradient(135deg,#10b981,#06b6d4); }

.lp-testi-name {
    font-size: .875rem;
    font-weight: 700;
    color: #0f172a;
}
.lp-testi-role {
    font-size: .8rem;
    color: #94a3b8;
    margin-top: 2px;
}

@media (max-width: 991px) { .lp-testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .lp-testimonials-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════════ */
.lp-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all .2s;
}
.lp-faq-item:hover { border-color: #c7d2fe; }
.lp-faq-item.is-open { border-color: #a5b4fc; box-shadow: 0 4px 16px rgba(37,99,235,.06); }

.lp-faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: .9375rem;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .2s;
}
.lp-faq-question:hover { color: #2563eb; }
.lp-faq-question i {
    font-size: 1.1rem;
    color: #94a3b8;
    transition: all .3s;
    flex-shrink: 0;
}
.lp-faq-item.is-open .lp-faq-question {
    color: #2563eb;
}
.lp-faq-item.is-open .lp-faq-question i {
    transform: rotate(45deg);
    color: #2563eb;
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.lp-faq-item.is-open .lp-faq-answer {
    max-height: 200px;
}
.lp-faq-answer p {
    padding: 0 24px 20px;
    font-size: .9rem;
    color: #64748b;
    line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════════ */
.lp-cta-section {
    padding: 32px 0 96px;
}
.lp-cta-card {
    background: linear-gradient(135deg, #0c1d4d 0%, #1e3a8a 40%, #2563eb 80%, #0ea5e9 100%);
    border-radius: 24px;
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp-cta-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
    pointer-events: none;
}
.lp-cta-card h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.04em;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}
.lp-cta-card p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.78);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}
.lp-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .lp-cta-card { padding: 56px 24px; border-radius: 18px; }
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.lp-footer {
    background: #0f172a;
    padding: 72px 0 0;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}
.lp-footer-brand { max-width: 300px; }
.lp-footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}
.lp-footer-logo img {
    max-height: 36px;
    filter: brightness(0) invert(1) opacity(.85);
}
.lp-footer-brand p {
    font-size: .875rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}
.lp-footer-socials {
    display: flex;
    gap: 8px;
}
.lp-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1rem;
    transition: all .2s;
}
.lp-footer-socials a:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
}

.lp-footer h5 {
    font-size: .8125rem;
    font-weight: 700;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
}
.lp-footer ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-footer ul li a {
    font-size: .875rem;
    color: #94a3b8;
    transition: color .2s;
}
.lp-footer ul li a:hover { color: #93c5fd; }

.lp-footer-support {
    margin-top: 24px;
    padding: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
}
.lp-footer-support span {
    display: block;
    font-size: .8rem;
    color: #64748b;
    margin-bottom: 6px;
}
.lp-footer-support a {
    font-size: .875rem;
    font-weight: 600;
    color: #60a5fa;
    transition: color .2s;
}
.lp-footer-support a:hover { color: #93c5fd; }

.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 20px 0;
    text-align: center;
}
.lp-footer-bottom span {
    font-size: .8125rem;
    color: #475569;
}

@media (max-width: 991px) {
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 575px) {
    .lp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .lp-footer { padding: 48px 0 0; }
}

/* ══════════════════════════════════════════════════════════════════
   DARK MODE
   ══════════════════════════════════════════════════════════════════ */
body.hrms-lp.lp-dark {
    background: #0f172a;
    color: #e2e8f0;
}
.lp-dark .lp-navbar { background: rgba(15,23,42,.85); }
.lp-dark .lp-navbar.is-scrolled { background: rgba(15,23,42,.95); border-bottom-color: #1e293b; }
.lp-dark .lp-nav-link { color: #94a3b8; }
.lp-dark .lp-nav-link:hover { color: #e2e8f0; background: #1e293b; }
.lp-dark .lp-hamburger span { background: #e2e8f0; }
.lp-dark .lp-btn-ghost { border-color: #334155; color: #94a3b8; }
.lp-dark .lp-btn-ghost:hover { background: #1e293b; color: #e2e8f0; }

.lp-dark .lp-logos-strip { background: #0f172a; border-color: #1e293b; }
.lp-dark .lp-logo-placeholder { color: #334155; }
.lp-dark .lp-logos-label { color: #475569; }

.lp-dark .lp-stats { background: #0f172a; }
.lp-dark .lp-stat-number { color: #60a5fa; }
.lp-dark .lp-stat-label { color: #e2e8f0; }
.lp-dark .lp-stat-sub { color: #475569; }

.lp-dark .lp-section-white { background: #0f172a; }
.lp-dark .lp-section-soft { background: #0b1120; }

.lp-dark .lp-heading { color: #f1f5f9; }
.lp-dark .lp-subheading { color: #64748b; }
.lp-dark .lp-tag { background: rgba(37,99,235,.2); color: #60a5fa; }

.lp-dark .lp-feature-text h3 { color: #f1f5f9; }
.lp-dark .lp-feature-text p { color: #64748b; }
.lp-dark .lp-feature-list li { color: #cbd5e1; }

.lp-dark .lp-mini-profile { background: #1e293b; border-color: #334155; }
.lp-dark .lp-mini-profile:hover { border-color: #4f46e5; box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.lp-dark .lp-mini-name { color: #f1f5f9; }
.lp-dark .lp-mini-role { color: #64748b; }

.lp-dark .lp-payroll-mockup,
.lp-dark .lp-attendance-mockup { background: #1e293b; border-color: #334155; box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.lp-dark .lp-payroll-title,
.lp-dark .lp-attendance-header { color: #f1f5f9; }
.lp-dark .lp-payroll-row { color: #94a3b8; border-color: #1e293b; }
.lp-dark .lp-payroll-amount { color: #e2e8f0; }
.lp-dark .lp-payroll-total { border-color: #334155; color: #f1f5f9; }
.lp-dark .lp-payroll-header { border-color: #334155; }
.lp-dark .lp-payroll-month,
.lp-dark .lp-attendance-date { background: #334155; color: #94a3b8; }
.lp-dark .lp-payroll-status { background: rgba(16,185,129,.1); }
.lp-dark .lp-ring-num { color: #f1f5f9; }

.lp-dark .lp-module-card { background: #1e293b; border-color: #334155; }
.lp-dark .lp-module-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.3); border-color: #475569; }
.lp-dark .lp-module-title { color: #f1f5f9; }
.lp-dark .lp-module-desc { color: #64748b; }

.lp-dark .lp-step h3 { color: #f1f5f9; }
.lp-dark .lp-step p { color: #64748b; }

.lp-dark .lp-price-card { background: #1e293b; border-color: #334155; }
.lp-dark .lp-price-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.lp-dark .lp-price-featured { border-color: #3b82f6; }
.lp-dark .lp-price-name { color: #94a3b8; }
.lp-dark .lp-price-value { color: #f1f5f9; }
.lp-dark .lp-price-currency { color: #94a3b8; }
.lp-dark .lp-price-desc { color: #64748b; }
.lp-dark .lp-price-features li { color: #cbd5e1; }
.lp-dark .lp-btn-outline-dark { color: #e2e8f0; border-color: #475569; }
.lp-dark .lp-btn-outline-dark:hover { background: #334155; }

.lp-dark .lp-testi-card { background: #1e293b; border-color: #334155; }
.lp-dark .lp-testi-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.3); border-color: #475569; }
.lp-dark .lp-testi-quote { color: #94a3b8; }
.lp-dark .lp-testi-name { color: #f1f5f9; }

.lp-dark .lp-faq-item { background: #1e293b; border-color: #334155; }
.lp-dark .lp-faq-item:hover { border-color: #475569; }
.lp-dark .lp-faq-item.is-open { border-color: #3b82f6; }
.lp-dark .lp-faq-question { color: #f1f5f9; }
.lp-dark .lp-faq-answer p { color: #64748b; }

.lp-dark .lp-cta-section { padding-bottom: 64px; }

.lp-dark .lp-dashboard-mockup { background: #1e293b; }
.lp-dark .lp-mockup-topbar { background: #0f172a; border-color: #334155; }
.lp-dark .lp-mockup-url { background: #1e293b; border-color: #334155; color: #64748b; }
.lp-dark .lp-mockup-sidebar { background: #0f172a; border-color: #334155; }
.lp-dark .lp-mockup-sidebar-item { color: #64748b; }
.lp-dark .lp-mockup-sidebar-item.active { background: rgba(37,99,235,.15); color: #60a5fa; }
.lp-dark .lp-mockup-kpi { background: #0f172a; border-color: #334155; }
.lp-dark .lp-mockup-kpi-val { color: #f1f5f9; }
.lp-dark .lp-mockup-chart { background: #0f172a; border-color: #334155; }
.lp-dark .lp-mockup-chart-title { color: #94a3b8; }
.lp-dark .lp-float-badge { background: #1e293b; color: #e2e8f0; box-shadow: 0 8px 32px rgba(0,0,0,.4); }

.lp-dark .lp-nav-menu {
    background: #0f172a;
    border-color: #1e293b;
}
