/* POS Pro Landing — WeeToko · biru & putih elegan */

:root {
    --lp-blue: #1877F2;
    --lp-blue-dark: #0d5bbd;
    --lp-blue-light: #4599FF;
    --lp-blue-soft: #E7F3FF;
    --lp-blue-glow: rgba(24, 119, 242, 0.25);
    --lp-indigo: #6366f1;
    --lp-white: #ffffff;
    --lp-bg: #f0f7ff;
    --lp-bg-alt: #f8fafc;
    --lp-text: #0f172a;
    --lp-text-muted: #64748b;
    --lp-border: #dbeafe;
    --lp-success: #31A24C;
    --lp-radius: 14px;
    --lp-radius-lg: 20px;
    --lp-shadow: 0 8px 32px rgba(24, 119, 242, 0.08);
    --lp-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --lp-font: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    --lp-container: min(1120px, calc(100% - 40px));
    --lp-header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--lp-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--lp-text);
    background: var(--lp-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--lp-blue); text-decoration: none; }
a:hover { color: var(--lp-blue-dark); }

.lp-container {
    width: var(--lp-container);
    margin-inline: auto;
}

.lp-bg-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(24, 119, 242, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(99, 102, 241, 0.08), transparent),
        linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-white) 40%);
}

/* Header */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--lp-header-h);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(219, 234, 254, 0.8);
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lp-text);
    text-decoration: none;
}

.lp-brand strong { font-size: 1.05rem; display: block; line-height: 1.2; }
.lp-brand small { font-size: 11px; color: var(--lp-text-muted); font-weight: 500; }

.lp-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    background: var(--lp-white);
    font-size: 22px;
    color: var(--lp-text);
    cursor: pointer;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-nav a:not(.lp-btn) {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-text-muted);
    transition: color 0.15s, background 0.15s;
}

.lp-nav a:not(.lp-btn):hover { color: var(--lp-blue); background: var(--lp-blue-soft); }
.lp-nav-login { margin-left: 4px; }

.lp-nav .lp-btn-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-blue-dark) 100%);
    border-color: transparent;
    box-shadow: 0 4px 16px var(--lp-blue-glow);
}

.lp-nav .lp-btn-primary:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--lp-blue-light) 0%, var(--lp-blue) 100%);
    box-shadow: 0 6px 24px var(--lp-blue-glow);
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    text-decoration: none;
}

.lp-btn:hover { transform: translateY(-1px); }

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-blue-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px var(--lp-blue-glow);
}

.lp-btn-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-blue-light) 0%, var(--lp-blue) 100%);
    box-shadow: 0 6px 24px var(--lp-blue-glow);
}

.lp-btn-ghost {
    background: var(--lp-white);
    border-color: var(--lp-border);
    color: var(--lp-text);
}

.lp-btn-ghost:hover { border-color: var(--lp-blue); color: var(--lp-blue); }

.lp-btn-white { background: var(--lp-white); color: var(--lp-blue); }
.lp-btn-white:hover { color: var(--lp-blue-dark); }

.lp-btn-outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--lp-white);
}

.lp-btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); color: var(--lp-white); }

.lp-btn-sm { padding: 8px 14px; font-size: 13px; }
.lp-btn-lg { padding: 14px 24px; font-size: 15px; border-radius: 12px; }

/* Hero */
.lp-hero {
    padding: 48px 0 32px;
    overflow: hidden;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lp-hero-copy-slider {
    position: relative;
    min-height: 240px;
}

.lp-hero-copy-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
}

.lp-hero-copy-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lp-hero-title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.lp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--lp-blue-soft);
    color: var(--lp-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.lp-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

/* legacy h1 selector kept for specificity; title uses .lp-hero-title */

.lp-gradient-text {
    background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-indigo) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-hero-lead {
    margin: 0 0 24px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--lp-text-muted);
    max-width: 52ch;
}

.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.lp-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.lp-trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--lp-text-muted);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--lp-border);
}

.lp-trust-list .bi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--lp-blue-soft);
    color: var(--lp-blue);
    font-size: 14px;
    flex-shrink: 0;
}

.lp-hero-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.lp-hero-dots {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
}

.lp-hero-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: var(--lp-border);
    cursor: pointer;
    transition: width 0.25s, background 0.25s;
}

.lp-hero-dot.is-active {
    width: 28px;
    background: var(--lp-blue);
}

.lp-hero-progress {
    height: 3px;
    border-radius: 999px;
    background: var(--lp-blue-soft);
    overflow: hidden;
    max-width: 200px;
}

.lp-hero-progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--lp-blue), var(--lp-indigo));
    transition: width 0.1s linear;
}

.lp-hero-visual {
    position: relative;
}

.lp-hero-visual-slider {
    position: relative;
    min-height: 280px;
}

.lp-hero-visual-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96) translateY(8px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}

.lp-hero-visual-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.lp-hero-visual-glow {
    position: absolute;
    inset: 10% 5% 5%;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
    z-index: 0;
    transition: background 0.6s;
}

.lp-hero-accent-blue .lp-hero-visual-glow { background: radial-gradient(circle, #1877F2 0%, transparent 70%); }
.lp-hero-accent-green .lp-hero-visual-glow { background: radial-gradient(circle, #31A24C 0%, transparent 70%); }
.lp-hero-accent-purple .lp-hero-visual-glow { background: radial-gradient(circle, #6366f1 0%, transparent 70%); }
.lp-hero-accent-warm .lp-hero-visual-glow { background: radial-gradient(circle, #f59e0b 0%, transparent 70%); }
.lp-hero-accent-rose .lp-hero-visual-glow { background: radial-gradient(circle, #f43f5e 0%, transparent 70%); }
.lp-hero-accent-teal .lp-hero-visual-glow { background: radial-gradient(circle, #14b8a6 0%, transparent 70%); }
.lp-hero-accent-coral .lp-hero-visual-glow { background: radial-gradient(circle, #f97316 0%, transparent 70%); }

.lp-hero-accent-rose .lp-hero-float-badge .bi { color: #e11d48; }
.lp-hero-accent-teal .lp-hero-float-badge .bi { color: #0d9488; }
.lp-hero-accent-coral .lp-hero-float-badge .bi { color: #ea580c; }

.lp-hero-shot-frame {
    position: relative;
    z-index: 1;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
    border: 1px solid var(--lp-border);
    background: var(--lp-white);
}

.lp-hero-shot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.lp-hero-float-badge {
    position: absolute;
    z-index: 2;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0;
}

.lp-hero-accent-blue .lp-hero-float-badge .bi { color: var(--lp-blue); }
.lp-hero-accent-green .lp-hero-float-badge .bi { color: var(--lp-success); }
.lp-hero-accent-purple .lp-hero-float-badge .bi { color: var(--lp-indigo); }
.lp-hero-accent-warm .lp-hero-float-badge .bi { color: #d97706; }

.lp-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 1px solid var(--lp-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    color: var(--lp-blue);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lp-shadow);
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.lp-hero-arrow:hover {
    background: var(--lp-white);
    border-color: var(--lp-blue);
    transform: translateY(-50%) scale(1.05);
}

.lp-hero-arrow-prev { left: -12px; }
.lp-hero-arrow-next { right: -12px; }

.lp-hero-badge {
    position: absolute;
    top: -12px;
    right: -8px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--lp-white);
    box-shadow: var(--lp-shadow);
    border: 1px solid var(--lp-border);
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-success);
}

.lp-hero-badge .bi { font-size: 18px; }

/* Shared icon badge */
.lp-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--lp-blue-soft) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(24, 119, 242, 0.15);
    color: var(--lp-blue);
    font-size: 24px;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.08);
}

.lp-icon-badge-lg {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    font-size: 28px;
}

.lp-icon-badge-sm {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 17px;
}

.lp-icon-badge-step {
    background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-blue-dark) 100%);
    border: none;
    color: var(--lp-white);
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 14px var(--lp-blue-glow);
}

.lp-icon-badge-success {
    background: rgba(49, 162, 76, 0.12);
    border-color: rgba(49, 162, 76, 0.22);
    color: var(--lp-success);
    box-shadow: none;
}

/* Stats strip */
.lp-stats {
    padding: 28px 0;
    border-block: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.75);
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.lp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 16px;
    border-radius: var(--lp-radius);
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(24, 119, 242, 0.1);
}

.lp-stat .lp-icon-badge {
    width: 54px;
    height: 54px;
    font-size: 24px;
    border-radius: 14px;
}

.lp-stat-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    width: 100%;
}

.lp-stat-copy strong {
    font-size: 0.95rem;
    color: var(--lp-text);
    line-height: 1.3;
}

.lp-stat-copy span {
    font-size: 12px;
    color: var(--lp-text-muted);
    line-height: 1.45;
}

.lp-stat-highlight {
    background: linear-gradient(145deg, var(--lp-blue-soft) 0%, var(--lp-white) 100%);
    border-color: rgba(24, 119, 242, 0.28);
}

/* Marquee social proof */
.lp-marquee {
    overflow: hidden;
    border-block: 1px solid var(--lp-border);
    background: linear-gradient(90deg, var(--lp-blue-soft) 0%, var(--lp-white) 50%, var(--lp-blue-soft) 100%);
    padding: 12px 0;
}

.lp-marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: lp-marquee 40s linear infinite;
    white-space: nowrap;
}

.lp-marquee-track span {
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-blue-dark);
    letter-spacing: 0.01em;
}

@keyframes lp-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Sections */
.lp-section {
    padding: 72px 0;
}

.lp-section-head { margin-bottom: 40px; max-width: 640px; }
.lp-section-head-center { margin-inline: auto; text-align: center; max-width: 720px; }

.lp-section-tag {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-blue);
}

.lp-section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.lp-section-head h2 em { font-style: normal; color: var(--lp-blue); }

.lp-section-lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--lp-text-muted);
}

/* About */
.lp-about { background: var(--lp-bg-alt); }

.lp-highlight-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 26px;
    margin-bottom: 16px;
    border-radius: var(--lp-radius-lg);
    background: linear-gradient(135deg, var(--lp-blue-soft) 0%, var(--lp-white) 55%);
    border: 1px solid rgba(24, 119, 242, 0.22);
    box-shadow: var(--lp-shadow);
}

.lp-highlight-banner h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.lp-highlight-banner p {
    margin: 0;
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.65;
    max-width: 72ch;
}

.lp-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
    margin-bottom: 40px;
}

.lp-icon-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 20px;
    border-radius: var(--lp-radius);
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.lp-icon-card:hover {
    box-shadow: var(--lp-shadow);
    transform: translateY(-2px);
    border-color: rgba(24, 119, 242, 0.25);
}

.lp-icon-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.lp-about-grid .lp-icon-badge,
.lp-feature-card .lp-icon-badge {
    width: 48px;
    height: 48px;
    font-size: 22px;
    border-radius: 13px;
}

.lp-icon-card-head h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    padding-top: 2px;
}

.lp-icon-card h4 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.35;
}

.lp-icon-card p {
    margin: 0;
    font-size: 13px;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

.lp-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 32px;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
}

.lp-story-content h3 { margin: 0 0 16px; font-size: 1.25rem; }
.lp-story-content p { margin: 0 0 14px; color: var(--lp-text-muted); line-height: 1.65; }

.lp-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-weight: 600;
}

.lp-story-visual img {
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
}

/* Security section */
.lp-security {
    background: linear-gradient(180deg, var(--lp-white) 0%, var(--lp-bg) 100%);
}

.lp-security-hero {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.lp-security-badge-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lp-tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--lp-white);
    border: 1px solid rgba(24, 119, 242, 0.2);
    box-shadow: var(--lp-shadow);
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-blue-dark);
}

.lp-tech-pill .bi { color: var(--lp-blue); font-size: 16px; }

.lp-security-callout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 26px 28px;
    border-radius: var(--lp-radius-lg);
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, var(--lp-blue-dark) 100%);
    color: var(--lp-white);
    box-shadow: var(--lp-shadow-lg);
}

.lp-security-callout h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.lp-security-callout p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.65;
    opacity: 0.92;
}

.lp-security-callout .lp-icon-badge {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--lp-white);
    box-shadow: none;
}

.lp-inline-checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
}

.lp-inline-checks li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.lp-inline-checks .bi {
    color: #7dd3fc;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-security-glossary {
    margin-bottom: 20px;
    padding: 22px 24px;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
}

.lp-security-glossary-title {
    margin: 0 0 16px;
    font-size: 1rem;
}

.lp-glossary-grid {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 20px;
}

.lp-glossary-item dt {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-blue);
}

.lp-glossary-item dd {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--lp-text-muted);
}

.lp-security-tech {
    margin: 0;
    font-size: 13px;
    color: var(--lp-text-muted);
    line-height: 1.55;
}

.lp-security-plain {
    margin: 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--lp-blue-soft);
    font-size: 13px;
    line-height: 1.55;
    color: var(--lp-text);
}

.lp-security-plain strong {
    color: var(--lp-blue-dark);
}

.lp-security-card {
    gap: 10px;
}

.lp-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.lp-security-card h4 {
    margin: 0;
    font-size: 0.95rem;
}

/* Finance section */
.lp-finance {
    background: var(--lp-bg-alt);
}

.lp-finance-showcase {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 24px;
}

.lp-finance-demo {
    border-radius: var(--lp-radius-lg);
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
}

.lp-finance-demo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-blue-dark) 100%);
    color: var(--lp-white);
    font-size: 13px;
    font-weight: 600;
}

.lp-finance-demo-tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 11px;
    font-weight: 600;
}

.lp-finance-demo-rows {
    margin: 0;
    padding: 18px 20px;
}

.lp-finance-demo-rows > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--lp-border);
}

.lp-finance-demo-rows > div:last-child { border-bottom: none; }

.lp-finance-demo-rows dt {
    margin: 0;
    font-size: 14px;
    color: var(--lp-text-muted);
}

.lp-finance-demo-rows dd {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-finance-demo-rows .is-muted dd { color: var(--lp-text-muted); font-weight: 600; }

.lp-finance-demo-rows .is-accent {
    background: var(--lp-blue-soft);
    margin-inline: -20px;
    padding-inline: 20px;
    border-bottom: none;
}

.lp-finance-demo-rows .is-accent dd { color: var(--lp-blue); }

.lp-finance-demo-rows .is-total dd {
    font-size: 1.15rem;
    color: var(--lp-success);
}

.lp-finance-demo-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 14px 18px;
    border-top: 1px solid var(--lp-border);
    background: var(--lp-bg-alt);
    font-size: 12px;
    font-weight: 600;
    color: var(--lp-text-muted);
}

.lp-finance-demo-foot .bi { color: var(--lp-blue); margin-right: 4px; }

.lp-finance-copy h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    line-height: 1.35;
}

.lp-finance-copy p {
    margin: 0 0 18px;
    color: var(--lp-text-muted);
    line-height: 1.65;
}

.lp-finance-perks {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.lp-finance-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.lp-finance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.lp-finance-card {
    padding: 22px 20px;
    border-radius: var(--lp-radius);
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-finance-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(24, 119, 242, 0.1);
}

.lp-finance-card h4 {
    margin: 0;
    font-size: 0.98rem;
}

.lp-finance-card p {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

.lp-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lp-tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--lp-blue-soft);
    color: var(--lp-blue);
    font-size: 11px;
    font-weight: 700;
}

/* Testimonials */
.lp-testimonials {
    background: linear-gradient(180deg, var(--lp-white) 0%, var(--lp-bg) 100%);
}

.lp-testimonials-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
    margin-bottom: 28px;
}

.lp-rating-summary {
    text-align: center;
    padding: 24px 28px;
    min-width: 200px;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
}

.lp-rating-score {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--lp-blue);
    letter-spacing: -0.03em;
}

.lp-rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 8px 0;
    color: #f59e0b;
    font-size: 16px;
}

.lp-rating-summary p {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--lp-text-muted);
}

.lp-rating-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--lp-success);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

/* Testimonials slider */
.lp-testimonials-carousel {
    position: relative;
}

.lp-testimonials-track-wrap {
    overflow: hidden;
    margin: 0 -4px;
    padding: 4px;
}

.lp-testimonials-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.lp-testimonials-carousel .lp-testimonial-card {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
    scroll-snap-align: start;
}

.lp-testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.lp-testimonials-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 280px;
}

.lp-testimonials-dots .lp-carousel-dot {
    width: 8px;
    height: 8px;
}

.lp-testimonials-dots .lp-carousel-dot.active {
    width: 22px;
    border-radius: 999px;
}

.lp-testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 20px;
    border-radius: var(--lp-radius);
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.lp-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(24, 119, 242, 0.12);
    border-color: rgba(24, 119, 242, 0.25);
}

.lp-testimonial-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lp-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-indigo) 100%);
    color: var(--lp-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.lp-testimonial-top strong {
    display: block;
    font-size: 14px;
    line-height: 1.3;
}

.lp-testimonial-top span {
    display: block;
    font-size: 12px;
    color: var(--lp-text-muted);
    line-height: 1.4;
}

.lp-testimonial-city {
    margin-top: 2px;
    font-size: 11px !important;
}

.lp-testimonial-city .bi { font-size: 10px; margin-right: 2px; }

.lp-testimonial-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 1px;
}

.lp-testimonial-card blockquote {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--lp-text);
}

.lp-testimonials-foot {
    margin: 24px 0 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-blue);
}

.lp-quote-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.lp-quote-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 12px;
    font-weight: 700;
}

.lp-quote-rating .bi { color: #fde68a; }

/* Carousel */
.lp-gallery { background: var(--lp-white); }

.lp-carousel { max-width: 960px; margin-inline: auto; }

.lp-carousel-track { position: relative; min-height: 420px; }

.lp-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(20px);
}

.lp-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.lp-slide-frame {
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
    margin-bottom: 20px;
}

.lp-slide figcaption {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 4px 8px 0;
    max-width: 720px;
    margin-inline: auto;
}

.lp-slide-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--lp-blue-soft);
    color: var(--lp-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.lp-slide-caption-copy h3,
.lp-slide figcaption h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}

.lp-slide figcaption p {
    margin: 0;
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.55;
}

.lp-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.lp-carousel-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--lp-border);
    border-radius: 50%;
    background: var(--lp-white);
    color: var(--lp-blue);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.lp-carousel-btn:hover {
    background: var(--lp-blue-soft);
    border-color: var(--lp-blue);
}

.lp-carousel-dots { display: flex; gap: 8px; }

.lp-carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--lp-border);
    cursor: pointer;
    transition: transform 0.15s, background 0.15s;
}

.lp-carousel-dot.active {
    background: var(--lp-blue);
    transform: scale(1.2);
}

.lp-carousel-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.lp-thumb {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--lp-bg-alt);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-family: inherit;
    text-align: left;
}

.lp-thumb img {
    border-radius: 8px;
    border: 1px solid var(--lp-border);
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.lp-thumb span {
    font-size: 10px;
    font-weight: 600;
    color: var(--lp-text-muted);
    line-height: 1.3;
}

.lp-thumb.active,
.lp-thumb:hover {
    border-color: var(--lp-blue);
    background: var(--lp-blue-soft);
}

.lp-thumb.active span { color: var(--lp-blue); }

/* Features */
.lp-features {
    background: linear-gradient(180deg, var(--lp-white) 0%, var(--lp-bg-alt) 100%);
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
    gap: 14px;
}

.lp-feature-card {
    min-height: 0;
}

.lp-feature-card .lp-icon-card-head {
    align-items: flex-start;
}

.lp-feature-card h4 {
    font-size: 0.95rem;
    padding-top: 2px;
}

/* Steps */
.lp-steps { background: var(--lp-bg-alt); }

.lp-steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: none;
}

.lp-steps-list li,
.lp-step-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 20px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: var(--lp-white);
    box-shadow: var(--lp-shadow);
}

.lp-step-card .lp-icon-badge-step {
    width: 48px;
    height: 48px;
    border-radius: 13px;
}

.lp-step-card .lp-icon-card-head h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
    padding-top: 2px;
}

.lp-step-card p {
    margin: 0;
    color: var(--lp-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Audience */
.lp-audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lp-check-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.lp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.45;
    border-radius: var(--lp-radius);
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
}

.lp-check-list .lp-check-wide {
    grid-column: 1 / -1;
}

.lp-check-list .lp-icon-badge {
    flex-shrink: 0;
}

.lp-quote-card {
    padding: 32px;
    border-radius: var(--lp-radius-lg);
    background: linear-gradient(145deg, var(--lp-blue) 0%, var(--lp-blue-dark) 100%);
    color: var(--lp-white);
    box-shadow: var(--lp-shadow-lg);
}

.lp-quote-card > .bi,
.lp-quote-card-head > .bi {
    font-size: 36px;
    opacity: 0.4;
    display: block;
}

.lp-quote-card-head > .bi {
    margin-bottom: 0;
}

.lp-quote-card blockquote {
    margin: 0 0 16px;
    font-size: 1.05rem;
    line-height: 1.65;
    font-style: italic;
}

.lp-quote-card cite {
    font-size: 13px;
    opacity: 0.85;
    font-style: normal;
}

/* FAQ */
.lp-faq { background: var(--lp-bg-alt); }

.lp-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.lp-accordion { display: flex; flex-direction: column; gap: 10px; }

.lp-faq-item {
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    background: var(--lp-white);
    overflow: hidden;
}

.lp-faq-item summary {
    padding: 16px 18px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-faq-item summary::-webkit-details-marker { display: none; }

.lp-faq-item summary::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    color: var(--lp-blue);
    transition: transform 0.2s;
}

.lp-faq-item[open] summary::after { transform: rotate(180deg); }

.lp-faq-item p {
    margin: 0;
    padding: 0 18px 16px;
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

/* CTA final */
.lp-cta-final {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--lp-blue) 0%, #0d5bbd 50%, var(--lp-indigo) 100%);
    color: var(--lp-white);
}

.lp-cta-final-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lp-cta-final h2 { margin: 0 0 8px; font-size: clamp(1.4rem, 3vw, 1.85rem); }
.lp-cta-final p { margin: 0; opacity: 0.9; max-width: 48ch; }

.lp-cta-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Footer */
.lp-footer {
    padding: 56px 0 28px;
    background: linear-gradient(180deg, #0f172a 0%, #0a1020 100%);
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 40px 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 320px;
}

.lp-footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--lp-white);
    text-decoration: none;
}

.lp-footer-brand-link:hover {
    color: var(--lp-white);
    opacity: 0.92;
}

.lp-footer-brand-link img {
    flex-shrink: 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.lp-footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}

.lp-footer-brand-text strong {
    font-size: 1.05rem;
    color: var(--lp-white);
}

.lp-footer-brand-text small {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.lp-footer-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
}

.lp-footer-site {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.lp-footer-site:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.35);
    color: var(--lp-white);
}

.lp-footer-site .bi {
    font-size: 14px;
    color: var(--lp-blue-light);
}

.lp-footer-col h4 {
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lp-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-footer-col a {
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.15s, transform 0.15s;
}

.lp-footer-col a:hover {
    color: var(--lp-white);
    transform: translateX(2px);
}

.lp-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 24px;
    padding-top: 24px;
    font-size: 13px;
}

.lp-footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

.lp-footer-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 960px) {
    :root {
        --lp-container: min(1120px, calc(100% - 48px));
    }

    .lp-hero-grid,
    .lp-story,
    .lp-audience-grid,
    .lp-faq-grid,
    .lp-finance-showcase,
    .lp-testimonials-head { grid-template-columns: 1fr; gap: 32px; }

    .lp-testimonials-carousel .lp-testimonial-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .lp-about-grid { grid-template-columns: 1fr; }
    .lp-highlight-banner { flex-direction: column; }
    .lp-glossary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .lp-features-grid { grid-template-columns: 1fr; gap: 16px; }
    .lp-stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .lp-steps-list { grid-template-columns: 1fr; gap: 16px; }
    .lp-check-list { grid-template-columns: 1fr; }
    .lp-carousel-thumbs { grid-template-columns: repeat(3, 1fr); }
    .lp-inline-checks { grid-template-columns: 1fr; }
    .lp-rating-summary { min-width: 0; }
    .lp-section { padding: 64px 0; }
    .lp-section-head { margin-bottom: 32px; }

    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 28px;
    }

    .lp-footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    :root {
        --lp-container: min(1120px, calc(100% - 32px));
        --lp-header-h: 64px;
    }

    .lp-nav-toggle { display: flex; align-items: center; justify-content: center; }

    .lp-nav {
        position: fixed;
        top: var(--lp-header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 20px 20px 24px;
        gap: 4px;
        background: var(--lp-white);
        border-bottom: 1px solid var(--lp-border);
        box-shadow: var(--lp-shadow);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
        max-height: calc(100vh - var(--lp-header-h));
        overflow-y: auto;
    }

    .lp-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .lp-nav a:not(.lp-btn) { padding: 14px 16px; font-size: 15px; }
    .lp-nav .lp-btn {
        justify-content: center;
        margin-top: 12px;
        padding: 14px 18px;
        font-size: 15px;
    }

    .lp-hero {
        padding: 40px 0 36px;
    }

    .lp-hero-grid { gap: 32px; }
    .lp-hero-copy-slider { min-height: 260px; }
    .lp-hero-visual-slider { min-height: 220px; }

    .lp-hero-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .lp-hero-arrow-prev { left: 4px; }
    .lp-hero-arrow-next { right: 4px; }

    .lp-hero-float-badge {
        font-size: 11px;
        padding: 8px 12px;
        bottom: 10px;
        left: 10px;
    }

    .lp-hero-visual { order: -1; }

    .lp-hero h1 {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .lp-hero-lead {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .lp-hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .lp-hero-cta .lp-btn {
        width: 100%;
        justify-content: center;
    }

    .lp-trust-list {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .lp-trust-list li {
        justify-content: flex-start;
    }

    .lp-marquee { display: none; }

    .lp-stats { padding: 32px 0; }

    .lp-stat {
        padding: 20px 18px;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
    }

    .lp-stat .lp-icon-badge {
        width: 50px;
        height: 50px;
    }

    .lp-section { padding: 56px 0; }
    .lp-section-head { margin-bottom: 28px; }
    .lp-section-head h2 { font-size: clamp(1.35rem, 5.5vw, 1.75rem); line-height: 1.3; }
    .lp-section-lead { font-size: 1rem; line-height: 1.7; }

    .lp-highlight-banner,
    .lp-story,
    .lp-security-callout,
    .lp-security-glossary,
    .lp-finance-demo,
    .lp-quote-card {
        padding: 22px 20px;
    }

    .lp-icon-card,
    .lp-step-card,
    .lp-finance-card,
    .lp-testimonial-card {
        padding: 20px 18px;
    }

    .lp-about-grid,
    .lp-features-grid,
    .lp-security-grid,
    .lp-finance-grid {
        gap: 16px;
    }

    .lp-testimonials-head {
        gap: 24px;
    }

    .lp-testimonials-carousel .lp-testimonial-card {
        flex: 0 0 100%;
    }

    .lp-testimonials-controls {
        margin-top: 20px;
    }
    .lp-glossary-grid { grid-template-columns: 1fr; gap: 16px; }

    .lp-tech-pill {
        font-size: 12px;
        padding: 8px 12px;
    }

    .lp-security-badge-stack { gap: 8px; }

    .lp-carousel-track { min-height: 280px; }
    .lp-carousel-thumbs { display: none; }
    .lp-slide figcaption { flex-direction: column; gap: 10px; padding: 8px 4px 0; }

    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .lp-footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }

    .lp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .lp-cta-final { padding: 48px 0; }
    .lp-cta-final-inner { flex-direction: column; text-align: center; gap: 28px; }
    .lp-cta-final-actions {
        justify-content: center;
        width: 100%;
        flex-direction: column;
    }

    .lp-cta-final-actions .lp-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    :root {
        --lp-container: min(1120px, calc(100% - 24px));
    }

    .lp-brand strong { font-size: 0.95rem; }
    .lp-kicker { font-size: 11px; padding: 6px 12px; }
    .lp-section { padding: 48px 0; }
    .lp-stats-grid { gap: 12px; }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lp-footer-col {
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .lp-slide { transition: none; }
    .lp-marquee-track { animation: none; }
    .lp-hero-copy-slide,
    .lp-hero-visual-slide { transition: none; }
    .lp-hero-progress { display: none; }
}
