/* ============================================
   eFlipCard — Landing Page v3
   Stripe-inspired: mesh gradient, section flow,
   staggered reveals, GPU-only animations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --lp-bg: #f6f6f4;
    --lp-bg-white: #ffffff;
    --lp-bg-card: #ffffff;
    --lp-bg-dark: #0a0a0a;
    --lp-accent: #ecf95a;
    --lp-accent-hover: #e0ed40;
    --lp-accent-muted: rgba(236, 249, 90, 0.15);
    --lp-text: #0a0a0a;
    --lp-text-muted: #6b6b6b;
    --lp-text-light: #999999;
    --lp-text-on-dark: #ffffff;
    --lp-text-on-accent: #0a0a0a;
    --lp-border: #e5e5e3;
    --lp-border-light: #eeeeec;
    --lp-radius: 20px;
    --lp-radius-sm: 12px;
    --lp-radius-pill: 100px;
    --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lp-shadow: 0 1px 3px rgba(0,0,0,0.04);
    --lp-shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --lp-shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --lp-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; }

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

a { color: inherit; }

/* ── Mesh Gradient Canvas Background (hero-only) ──── */
#gradient-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    --gradient-color-1: #ecf95a;
    --gradient-color-2: #c8e034;
    --gradient-color-3: #f6f6f4;
    --gradient-color-4: #d4e84e;
    opacity: 0.2;
}

.lp-page-content {
    position: relative;
    z-index: 1;
}

/* ── Navigation ────────────────────────── */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: transparent;
    transition: all 0.4s var(--lp-transition);
}

.lp-nav.scrolled {
    background: rgba(246, 246, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.lp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--lp-text);
}

.lp-nav-logo img {
    height: 28px;
    width: auto;
    filter: brightness(0);
}

.lp-nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lp-nav-center a {
    color: var(--lp-text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.lp-nav-center a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--lp-text);
    transition: width 0.3s var(--lp-transition);
}

.lp-nav-center a:hover {
    color: var(--lp-text);
}

.lp-nav-center a:hover::after {
    width: 100%;
}

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

.lp-nav-login {
    color: var(--lp-text) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    transition: color 0.2s;
}

.lp-nav-login:hover {
    color: var(--lp-text-muted) !important;
}

.lp-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--lp-bg-dark);
    color: var(--lp-text-on-dark) !important;
    border-radius: var(--lp-radius-pill);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s var(--lp-transition);
}

.lp-nav-cta:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    color: var(--lp-text-on-dark) !important;
}

.lp-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--lp-text);
    cursor: pointer;
    padding: 8px;
}

.lp-nav-toggle svg { width: 24px; height: 24px; }

/* ── Sections ──────────────────────────── */
.lp-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px;
}

.lp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-text);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    width: fit-content;
}

.lp-section-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 20px;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.lp-section-subtitle {
    font-size: 18px;
    color: var(--lp-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Hero ──────────────────────────────── */
.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.lp-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.lp-hero-content {
    position: relative;
    z-index: 1;
}

.lp-hero h1 {
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.02;
    color: var(--lp-text);
    margin: 0 0 24px;
    letter-spacing: -0.035em;
}

.lp-hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: var(--lp-text-muted);
    margin: 0 0 44px;
    max-width: 460px;
}

.lp-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.lp-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero floating UI mockup cards */
.lp-hero-mockups {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 440px;
}

.lp-hero-mockup {
    position: absolute;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-lg);
    will-change: transform;
}

/* ─ Main Dashboard ─ */
.lp-hero-mockup-1 {
    width: 340px;
    top: 0;
    right: 20px;
    z-index: 2;
    animation: heroFloat1 8s ease-in-out infinite;
}

.lp-hero-mockup-1 .lp-hero-mockup-inner {
    position: relative;
    border-radius: var(--lp-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lp-hero-mockup-bar {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.lp-hero-mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-hero-mockup-bar span:first-child { background: #ff5f57; }
.lp-hero-mockup-bar span:nth-child(2) { background: #ffbd2e; }
.lp-hero-mockup-bar span:last-child { background: #28c840; }

.lp-hero-dash-header {
    display: flex;
    gap: 2px;
    padding: 8px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.lp-hero-dash-tab {
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #999;
}

.lp-hero-dash-tab.active {
    background: var(--lp-accent);
    color: var(--lp-bg-dark);
}

.lp-hero-dash-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
}

.lp-hero-dash-stat {
    text-align: center;
    padding: 10px 6px;
    background: #fafafa;
    border-radius: 10px;
}

.lp-hero-dash-stat-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.03em;
    margin-bottom: 2px;
}

.lp-hero-dash-stat-label {
    font-size: 9px;
    color: var(--lp-text-muted);
    font-weight: 500;
}

/* Mini Chart */
.lp-hero-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding: 0 16px 16px;
    height: 60px;
}

.lp-hero-chart-bar {
    flex: 1;
    height: var(--h, 50%);
    background: #eee;
    border-radius: 4px 4px 0 0;
    animation: chartGrow 1.5s ease-out forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.lp-hero-chart-bar:nth-child(1) { animation-delay: 0.3s; }
.lp-hero-chart-bar:nth-child(2) { animation-delay: 0.45s; }
.lp-hero-chart-bar:nth-child(3) { animation-delay: 0.6s; }
.lp-hero-chart-bar:nth-child(4) { animation-delay: 0.75s; }
.lp-hero-chart-bar:nth-child(5) { animation-delay: 0.9s; }
.lp-hero-chart-bar:nth-child(6) { animation-delay: 1.05s; }
.lp-hero-chart-bar:nth-child(7) { animation-delay: 1.2s; }

.lp-hero-chart-bar.accent {
    background: var(--lp-accent);
}

@keyframes chartGrow {
    0% { transform: scaleY(0); }
    60% { transform: scaleY(1.08); }
    100% { transform: scaleY(1); }
}

/* Animated Cursor */
.lp-hero-cursor {
    position: absolute;
    width: 18px;
    height: 18px;
    bottom: 40px;
    right: 80px;
    z-index: 10;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 3l14 8-6.5 1.5L11 19z' fill='%230a0a0a' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center / contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
    animation: cursorMove 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cursorMove {
    0%, 100% { transform: translate(0, 0); }
    15% { transform: translate(-60px, 10px); }
    20% { transform: translate(-60px, 10px) scale(0.8); }
    25% { transform: translate(-60px, 10px) scale(1); }
    45% { transform: translate(20px, -20px); }
    55% { transform: translate(-20px, -40px); }
    60% { transform: translate(-20px, -40px) scale(0.8); }
    65% { transform: translate(-20px, -40px) scale(1); }
    85% { transform: translate(10px, 5px); }
}

/* ─ Flip Card ─ */
.lp-hero-mockup-2 {
    width: 150px;
    left: 0;
    top: 60px;
    z-index: 3;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    animation: heroFloat2 9s ease-in-out infinite;
}

.lp-hero-flip-scene {
    width: 150px;
    height: 190px;
    perspective: 600px;
}

.lp-hero-flip-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: heroFlip 6s ease-in-out infinite;
}

.lp-hero-flip-front,
.lp-hero-flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
}

.lp-hero-flip-front {
    background: var(--lp-bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-hero-flip-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--lp-accent), #c8e034, #e8f540);
    opacity: 0.25;
}

.lp-hero-flip-logo {
    position: relative;
    font-size: 48px;
    font-weight: 800;
    color: var(--lp-text);
    font-style: italic;
}

.lp-hero-flip-back {
    background: var(--lp-bg-white);
    transform: rotateY(180deg);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-hero-flip-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.lp-hero-flip-lines span {
    height: 7px;
    border-radius: 4px;
    background: #eee;
    display: block;
}

.lp-hero-flip-btn {
    padding: 8px 0;
    border-radius: 8px;
    background: var(--lp-bg-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

@keyframes heroFlip {
    0%, 38% { transform: rotateY(0deg); }
    45%, 88% { transform: rotateY(180deg); }
    95%, 100% { transform: rotateY(0deg); }
}

/* ─ Notification popups ─ */
.lp-hero-mockup-notif {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    opacity: 0;
    border-radius: 14px;
}

.lp-hero-notif-1 {
    bottom: 70px;
    left: 20px;
    animation: notifPop1 7s ease-in-out infinite;
}

.lp-hero-notif-2 {
    bottom: 10px;
    left: 140px;
    animation: notifPop2 7s ease-in-out infinite;
}

.lp-hero-notif-3 {
    bottom: 40px;
    right: 0;
    animation: notifPop3 7s ease-in-out infinite;
}

.lp-hero-notif-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.lp-hero-notif-icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.lp-hero-notif-icon-accent {
    background: var(--lp-accent-muted);
    color: #7a8c00;
}

.lp-hero-notif-text strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--lp-text);
    line-height: 1.2;
}

.lp-hero-notif-text span {
    font-size: 10px;
    color: var(--lp-text-muted);
}

/* #1 pops in first (10%), stays, all fade out together at 75% */
@keyframes notifPop1 {
    0%, 8% { opacity: 0; transform: translateY(12px) scale(0.9); }
    14%, 72% { opacity: 1; transform: translateY(0) scale(1); }
    82%, 100% { opacity: 0; transform: translateY(-8px) scale(0.95); }
}

/* #2 pops in second (28%) */
@keyframes notifPop2 {
    0%, 26% { opacity: 0; transform: translateY(12px) scale(0.9); }
    32%, 72% { opacity: 1; transform: translateY(0) scale(1); }
    82%, 100% { opacity: 0; transform: translateY(-8px) scale(0.95); }
}

/* #3 pops in third (46%) */
@keyframes notifPop3 {
    0%, 44% { opacity: 0; transform: translateY(12px) scale(0.9); }
    50%, 72% { opacity: 1; transform: translateY(0) scale(1); }
    82%, 100% { opacity: 0; transform: translateY(-8px) scale(0.95); }
}

@keyframes heroFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes heroFloat2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Hero Rotating Text ──────────────── */
.lp-hero-rotate {
    display: inline-block;
    position: relative;
    color: var(--lp-text);
    padding: 0 10px;
    margin-left: -10px;
}

.lp-hero-rotate::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 35%;
    background: var(--lp-accent);
    opacity: 0.55;
    z-index: -1;
    border-radius: 4px;
}

.lp-hero-rotate.switching {
    animation: heroWordOut 0.35s var(--lp-transition) forwards;
}

.lp-hero-rotate.switching-in {
    animation: heroWordIn 0.35s var(--lp-transition) forwards;
}

@keyframes heroWordOut {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-14px); }
}

@keyframes heroWordIn {
    0% { opacity: 0; transform: translateY(14px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ── Hero Rating Badge ──────────────── */
.lp-hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    font-size: 14px;
    color: var(--lp-text-muted);
}

.lp-hero-rating-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

.lp-hero-rating-value {
    font-weight: 700;
    color: var(--lp-text);
}

.lp-hero-rating-count {
    color: var(--lp-text-light);
}

.lp-hero-rating-source {
    color: var(--lp-text-light);
    font-size: 13px;
}

.lp-hero-rating-source::before {
    content: '·';
    margin-right: 6px;
}

/* ── Hero Trust Logos ───────────────── */
.lp-hero-trust {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--lp-border-light);
}

.lp-hero-trust-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-text-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.lp-hero-trust-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.lp-hero-trust-logos img {
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.3s var(--lp-transition);
}

.lp-hero-trust-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
}

.lp-hero-trust-text {
    font-size: 13px;
    font-weight: 700;
    font-size: 14px;
    color: var(--lp-text-muted);
    white-space: nowrap;
    opacity: 0.55;
    transition: opacity 0.3s var(--lp-transition);
}

.lp-hero-trust-text:hover {
    opacity: 1;
}

.lp-hero-card-preview {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4/3;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
    position: relative;
    will-change: transform;
    animation: heroFloat 8s ease-in-out infinite;
}

.lp-hero-card-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--lp-accent) 0%, #c8e034 60%, #a5c420 100%);
}

.lp-hero-card-inner svg {
    width: 80px;
    height: 80px;
    color: var(--lp-text);
    opacity: 0.3;
}

.lp-hero-card-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--lp-bg-dark);
    color: var(--lp-text-on-dark);
    padding: 12px 20px;
    border-radius: var(--lp-radius-sm);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: badgeSlideIn 0.8s 0.6s var(--lp-transition) both;
}

.lp-hero-card-badge svg {
    width: 16px;
    height: 16px;
    color: var(--lp-accent);
}

.lp-hero-float-stat {
    position: absolute;
    top: -20px;
    left: -30px;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    padding: 14px 20px;
    border-radius: var(--lp-radius-sm);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: statSlideIn 0.8s 0.3s var(--lp-transition) both;
}

.lp-hero-float-stat strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--lp-text);
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

@keyframes statSlideIn {
    from { opacity: 0; transform: translate(-20px, -10px); }
    to { opacity: 1; transform: translate(0, 0); }
}

@keyframes badgeSlideIn {
    from { opacity: 0; transform: translate(20px, 10px); }
    to { opacity: 1; transform: translate(0, 0); }
}

/* ── Buttons ───────────────────────────── */
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: var(--lp-bg-dark);
    color: var(--lp-text-on-dark);
    border: none;
    border-radius: var(--lp-radius-pill);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--lp-font);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--lp-transition);
    position: relative;
    overflow: hidden;
}

.lp-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    color: var(--lp-text-on-dark);
    text-decoration: none;
}

.lp-btn-primary:hover::after { opacity: 1; }

.lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: var(--lp-bg-white);
    color: var(--lp-text);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-pill);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--lp-font);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--lp-transition);
}

.lp-btn-secondary:hover {
    border-color: #ccc;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    color: var(--lp-text);
    text-decoration: none;
}

.lp-btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: var(--lp-accent);
    color: var(--lp-text-on-accent);
    border: none;
    border-radius: var(--lp-radius-pill);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--lp-font);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--lp-transition);
}

.lp-btn-accent:hover {
    background: var(--lp-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(236, 249, 90, 0.3);
    color: var(--lp-text-on-accent);
    text-decoration: none;
}

/* ── Social Proof ────────────────────────  */
.lp-social-proof {
    padding: 80px 24px 40px;
    text-align: center;
}

.lp-stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.lp-stat { text-align: center; }

.lp-stat-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.lp-stat-label {
    font-size: 14px;
    color: var(--lp-text-muted);
    font-weight: 500;
}

/* Live counter stat */
.lp-stat-live {
    position: relative;
}

.lp-stat-onair {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    background: rgba(239, 68, 68, 0.08);
    padding: 4px 10px;
    border-radius: var(--lp-radius-pill);
}

.lp-onair-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: onairPulse 1.5s ease-in-out infinite;
}

@keyframes onairPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* ── Mission / Intro Section ──────────── */
.lp-mission {
    padding: 100px 24px;
}

.lp-mission-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lp-mission-text {
    max-width: 500px;
}

.lp-mission-visual {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 40px;
    box-shadow: var(--lp-shadow-md);
    position: relative;
    transition: all 0.4s var(--lp-transition);
}

.lp-mission-visual:hover {
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(-4px);
}

.lp-mission-visual-inner {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f8f8f6, var(--lp-bg));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lp-mission-visual-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lp-accent), #c8e034, #8fb81e);
    opacity: 0.12;
}

.lp-mission-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--lp-bg-dark);
    color: var(--lp-text-on-dark);
    padding: 10px 18px;
    border-radius: var(--lp-radius-sm);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.lp-mission-badge svg {
    width: 16px;
    height: 16px;
    color: var(--lp-accent);
}

/* ── Features Grid ─────────────────────── */
.lp-features-header {
    text-align: center;
    margin-bottom: 64px;
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lp-feature-card {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px 28px;
    transition: all 0.4s var(--lp-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.lp-feature-card:hover {
    border-color: #d0d0ce;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-6px);
}

.lp-feature-card.featured {
    background: var(--lp-accent);
    border-color: var(--lp-accent);
}

.lp-feature-card.featured:hover {
    border-color: var(--lp-accent-hover);
    background: var(--lp-accent-hover);
}

.lp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--lp-border);
    background: var(--lp-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s var(--lp-transition);
}

.lp-feature-card:hover .lp-feature-icon {
    transform: scale(1.05);
}

.lp-feature-card.featured .lp-feature-icon {
    border-color: rgba(10, 10, 10, 0.15);
    background: rgba(10, 10, 10, 0.08);
}

.lp-feature-icon svg,
.lp-feature-icon .lucide {
    width: 22px;
    height: 22px;
    color: var(--lp-text);
    stroke: var(--lp-text);
}

.lp-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 8px;
}

.lp-feature-card p {
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}

.lp-feature-card.featured p {
    color: rgba(10, 10, 10, 0.7);
}

.lp-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text);
    text-decoration: none;
    transition: gap 0.3s var(--lp-transition);
    margin-top: auto;
}

.lp-feature-link:hover { gap: 8px; }

.lp-feature-link svg {
    width: 14px;
    height: 14px;
}

/* ── Showcase / Highlight Section ──────── */
.lp-showcase {
    padding: 80px 24px;
}

.lp-stats-banner + .lp-showcase {
    padding-top: 120px;
}

.lp-showcase-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: box-shadow 0.4s var(--lp-transition);
}

.lp-showcase-inner:hover {
    box-shadow: 0 16px 64px rgba(0,0,0,0.06);
}

.lp-showcase-text {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-showcase-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 16px;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.lp-showcase-text p {
    font-size: 16px;
    color: var(--lp-text-muted);
    line-height: 1.7;
    margin: 0 0 32px;
}

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

.lp-showcase-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--lp-text);
}

.lp-showcase-features li svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

.lp-showcase-visual {
    background: linear-gradient(145deg, var(--lp-accent) 0%, #d4e84e 50%, #c8e034 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
    position: relative;
    overflow: hidden;
}

/* Floating particles in showcase */
.lp-showcase-visual::before,
.lp-showcase-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.05);
    will-change: transform;
}

.lp-showcase-visual::before {
    width: 300px;
    height: 300px;
    top: -60px;
    right: -60px;
    animation: floatBlob 12s ease-in-out infinite;
}

.lp-showcase-visual::after {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: -40px;
    animation: floatBlob 16s 4s ease-in-out infinite reverse;
}

/* Floating UI mockup cards in showcase visual */
.lp-mockup-stack {
    position: relative;
    width: 380px;
    height: 340px;
    z-index: 1;
}

.lp-mockup-card {
    position: absolute;
    background: var(--lp-bg-white);
    border-radius: var(--lp-radius-sm);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    will-change: transform;
    animation: mockupFloat 6s ease-in-out infinite;
}

.lp-mockup-card:nth-child(1) {
    width: 280px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 3;
    animation-delay: 0s;
}

.lp-mockup-card:nth-child(2) {
    width: 220px;
    bottom: 0;
    left: 0;
    transform: rotate(3deg);
    z-index: 2;
    opacity: 0.92;
    animation-delay: -2s;
}

.lp-mockup-card:nth-child(3) {
    width: 180px;
    bottom: 10px;
    right: 0;
    transform: rotate(-4deg);
    z-index: 1;
    opacity: 0.8;
    animation-delay: -4s;
}

.lp-mockup-card-inner {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
}

.lp-mockup-card-inner span {
    display: block;
    height: 6px;
    border-radius: 3px;
    background: var(--lp-border-light);
}

.lp-mockup-card-inner span:nth-child(1) { width: 70%; background: var(--lp-border); }
.lp-mockup-card-inner span:nth-child(2) { width: 90%; }
.lp-mockup-card-inner span:nth-child(3) { width: 50%; background: var(--lp-accent-muted); }

@keyframes mockupFloat {
    0%, 100% { transform: translateY(0) rotate(var(--r, -3deg)); }
    50% { transform: translateY(-10px) rotate(var(--r, -3deg)); }
}

.lp-mockup-card:nth-child(1) { --r: -2deg; }
.lp-mockup-card:nth-child(2) { --r: 3deg; }
.lp-mockup-card:nth-child(3) { --r: -4deg; }

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

/* ── How It Works ──────────────────────── */
.lp-how-header {
    text-align: center;
    margin-bottom: 64px;
}

.lp-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

/* Connecting line between steps */
.lp-how-steps::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(16.67% + 12px);
    right: calc(16.67% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--lp-border), var(--lp-accent), var(--lp-border));
    z-index: 0;
}

.lp-how-step {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--lp-transition);
    z-index: 1;
}

.lp-how-step:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.lp-how-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--lp-bg);
    border: 2px solid var(--lp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 22px;
    font-weight: 800;
    color: var(--lp-text);
    transition: all 0.4s var(--lp-transition);
}

.lp-how-step:hover .lp-how-number {
    background: var(--lp-accent);
    border-color: var(--lp-accent);
    transform: scale(1.1);
}

.lp-how-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 10px;
}

.lp-how-step p {
    font-size: 15px;
    color: var(--lp-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Video Demo ──────────────────────── */
.lp-how-video {
    margin-top: 64px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.lp-how-video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--lp-radius);
    overflow: hidden;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
    cursor: default;
    transition: all 0.4s var(--lp-transition);
}

.lp-how-video-wrapper:hover {
    box-shadow: 0 16px 60px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.lp-how-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.lp-how-video-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--lp-accent);
    color: var(--lp-text-on-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--lp-transition);
    box-shadow: 0 4px 24px rgba(236, 249, 90, 0.3);
}

.lp-how-video-wrapper:hover .lp-how-video-play {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(236, 249, 90, 0.4);
}

.lp-how-video-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
}

/* ── Feature Load More ───────────────── */
.lp-feature-hidden {
    display: none;
}

.lp-feature-show {
    display: flex;
    animation: featureReveal 0.4s ease-out forwards;
}

@keyframes featureReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.lp-features-load-more {
    text-align: center;
    margin-top: 40px;
}

.lp-features-load-more .lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ── Stats Banner ──────────────────────── */
.lp-stats-banner {
    padding: 64px 24px;
    background: var(--lp-bg-dark);
    position: relative;
    overflow: hidden;
}

.lp-stats-banner::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 249, 90, 0.15), transparent 70%);
    pointer-events: none;
}

.lp-stats-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 249, 90, 0.08), transparent 70%);
    pointer-events: none;
}

.lp-stats-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lp-stats-banner h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--lp-text-on-dark);
    margin: 0 0 48px;
    letter-spacing: -0.025em;
}

.lp-stats-banner-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.lp-stats-banner-item { text-align: center; }

.lp-stats-banner-num {
    font-size: 52px;
    font-weight: 800;
    color: var(--lp-accent);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
}

.lp-stats-banner-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* ── Pricing ───────────────────────────── */
.lp-pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-pricing-card {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s var(--lp-transition);
    box-sizing: border-box;
}

.lp-pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.lp-pricing-card.featured {
    border-color: var(--lp-bg-dark);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* ── Pricing Extras (Enterprise / Agentur) ── */
.lp-pricing-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 24px auto 0;
}

.lp-pricing-extra-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 32px;
    transition: all 0.4s var(--lp-transition);
}

.lp-pricing-extra-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.lp-pricing-extra-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 4px;
}

.lp-pricing-extra-desc {
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.5;
}

.lp-pricing-extra-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.lp-pricing-extra-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.lp-pricing-extra-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--lp-text-muted);
}

.lp-pricing-extra-cta {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--lp-radius-pill);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    background: var(--lp-bg);
    color: var(--lp-text);
    border: 1px solid var(--lp-border);
    white-space: nowrap;
    transition: all 0.3s var(--lp-transition);
}

.lp-pricing-extra-cta:hover {
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.lp-pricing-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-bg-dark);
    color: var(--lp-accent);
    padding: 5px 18px;
    border-radius: var(--lp-radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.lp-pricing-tier {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-text-muted);
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-pricing-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 12px;
}

.lp-pricing-price {
    font-size: 46px;
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.lp-pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--lp-text-muted);
}

.lp-pricing-desc {
    font-size: 14px;
    color: var(--lp-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.lp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    max-height: 192px;
    overflow: hidden;
    transition: max-height 0.4s var(--lp-transition);
}

.lp-pricing-features.expanded {
    max-height: none;
}

.lp-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--lp-text);
}

.lp-pricing-features li svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 1px;
}

.lp-pricing-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: none;
    border: none;
    padding: 8px 0;
    margin-bottom: 16px;
    font-family: var(--lp-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.lp-pricing-expand:hover {
    color: var(--lp-text);
}

.lp-pricing-expand svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--lp-transition);
}

.lp-pricing-expand.expanded svg {
    transform: rotate(180deg);
}

.lp-pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: var(--lp-radius-pill);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s var(--lp-transition);
}

.lp-pricing-card.featured .lp-pricing-cta {
    background: var(--lp-bg-dark);
    color: var(--lp-text-on-dark);
}

.lp-pricing-card.featured .lp-pricing-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.lp-pricing-card:not(.featured) .lp-pricing-cta {
    background: var(--lp-bg);
    color: var(--lp-text);
    border: 1px solid var(--lp-border);
}

.lp-pricing-card:not(.featured) .lp-pricing-cta:hover {
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ── Testimonials ──────────────────────── */
.lp-testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-testimonial-card {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px;
    transition: all 0.4s var(--lp-transition);
}

.lp-testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.lp-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.lp-testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #facc15;
    fill: #facc15;
}

.lp-testimonial-text {
    font-size: 15px;
    color: var(--lp-text);
    line-height: 1.7;
    margin: 0 0 20px;
    font-style: italic;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--lp-text);
    overflow: hidden;
    flex-shrink: 0;
}

.lp-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text);
}

.lp-testimonial-role {
    font-size: 13px;
    color: var(--lp-text-muted);
}

/* Featured testimonial (success story) */
.lp-testimonial-featured {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 48px;
    margin-bottom: 32px;
    box-shadow: var(--lp-shadow-md);
}

.lp-testimonial-featured-mark {
    font-size: 72px;
    font-weight: 800;
    color: var(--lp-accent);
    line-height: 0.8;
    margin-bottom: 12px;
}

.lp-testimonial-featured-quote p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--lp-text);
    font-style: italic;
    margin: 0 0 20px;
}

.lp-testimonial-featured-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.lp-testimonial-avatar-lg {
    width: 72px;
    height: 72px;
}

.lp-testimonials-grid-small {
    margin-top: 0;
}

/* Featured testimonial highlighted — same style as CTA */
.lp-testimonial-highlighted {
    background: var(--lp-bg-dark);
    border-color: rgba(236, 249, 90, 0.15);
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
}

.lp-testimonial-highlighted::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 249, 90, 0.15), transparent 70%);
    pointer-events: none;
}

.lp-testimonial-highlighted::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 249, 90, 0.08), transparent 70%);
    pointer-events: none;
}

.lp-testimonial-highlighted .lp-testimonial-featured-quote,
.lp-testimonial-highlighted .lp-testimonial-featured-author {
    position: relative;
    z-index: 1;
}

.lp-testimonial-highlighted .lp-testimonial-featured-mark {
    color: var(--lp-accent);
}

.lp-testimonial-highlighted .lp-testimonial-featured-quote p {
    color: rgba(255,255,255,0.9);
}

.lp-testimonial-highlighted .lp-testimonial-stars svg {
    color: var(--lp-accent);
    fill: var(--lp-accent);
}

.lp-testimonial-highlighted .lp-testimonial-name {
    color: #fff;
}

.lp-testimonial-highlighted .lp-testimonial-role {
    color: rgba(255,255,255,0.7);
}

/* ── Team Section ────────────────────── */
.lp-team-header {
    text-align: center;
    margin-bottom: 64px;
}

.lp-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-team-card {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 40px 24px;
    text-align: center;
    transition: all 0.4s var(--lp-transition);
}

.lp-team-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.lp-team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 24px;
    color: var(--lp-text);
    overflow: hidden;
}

.lp-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-team-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 4px;
}

.lp-team-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-accent-hover);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lp-team-text {
    font-size: 14px;
    color: var(--lp-text-muted);
    line-height: 1.5;
}

/* ── Contact ──────────────────────────── */
.lp-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--lp-text-muted);
}

.lp-contact-detail svg {
    color: var(--lp-text);
    flex-shrink: 0;
}

.lp-contact-form {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 40px;
    box-shadow: var(--lp-shadow-md);
}

.lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lp-form-group {
    margin-bottom: 20px;
}

.lp-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-text);
    margin-bottom: 6px;
}

.lp-form-group input,
.lp-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    font-family: var(--lp-font);
    font-size: 15px;
    color: var(--lp-text);
    background: var(--lp-bg);
    transition: all 0.2s;
    outline: none;
}

.lp-form-group input:focus,
.lp-form-group textarea:focus {
    border-color: var(--lp-bg-dark);
    box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}

.lp-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.lp-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.lp-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--lp-bg-dark);
    flex-shrink: 0;
    cursor: pointer;
}

.lp-form-checkbox label {
    font-size: 13px;
    color: var(--lp-text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.lp-form-checkbox label a {
    color: var(--lp-text);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lp-form-checkbox label a:hover {
    color: var(--lp-accent-hover);
}

/* ── FAQ ───────────────────────────────── */
.lp-faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.lp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.lp-faq-item {
    border-bottom: 1px solid var(--lp-border);
}

.lp-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-family: var(--lp-font);
    text-align: left;
    transition: color 0.2s;
}

.lp-faq-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-text-light);
    min-width: 28px;
}

.lp-faq-q-text {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--lp-text);
}

.lp-faq-question:hover .lp-faq-q-text {
    color: var(--lp-text-muted);
}

.lp-faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--lp-transition);
}

.lp-faq-item.active .lp-faq-toggle {
    background: var(--lp-accent);
    border-color: var(--lp-accent);
}

.lp-faq-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--lp-text);
    transition: transform 0.4s var(--lp-transition);
}

.lp-faq-item.active .lp-faq-toggle svg {
    transform: rotate(45deg);
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--lp-transition);
}

.lp-faq-item.active .lp-faq-answer {
    max-height: 400px;
}

.lp-faq-answer-inner {
    padding: 0 0 28px 48px;
    font-size: 15px;
    color: var(--lp-text-muted);
    line-height: 1.8;
}

/* ── CTA Section ───────────────────────── */
.lp-cta-section {
    padding: 40px 24px 100px;
}

.lp-cta-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--lp-bg-dark);
    border-radius: 28px;
    padding: 80px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Multiple subtle glows inside CTA */
.lp-cta-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 249, 90, 0.15), transparent 70%);
    pointer-events: none;
}

.lp-cta-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 249, 90, 0.08), transparent 70%);
    pointer-events: none;
}

.lp-cta-content {
    position: relative;
    z-index: 1;
}

.lp-cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--lp-text-on-dark);
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.lp-cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 36px;
    line-height: 1.7;
}

.lp-cta-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

/* CTA Envelope Animation */
.lp-cta-envelope {
    position: relative;
    width: 220px;
    height: 200px;
    animation: ctaFloat 6s ease-in-out infinite;
}

/* The card that slides out */
.lp-cta-envelope-card {
    position: absolute;
    width: 180px;
    height: 130px;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    background: linear-gradient(145deg, var(--lp-accent) 0%, #d4e84e 50%, #c8e034 100%);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 1;
    animation: ctaCardSlide 5s ease-in-out infinite;
}

.lp-cta-envelope-card svg {
    width: 32px;
    height: 32px;
    color: var(--lp-bg-dark);
    opacity: 0.5;
}

.lp-cta-envelope-card span {
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-bg-dark);
    opacity: 0.5;
    letter-spacing: 0.02em;
}

/* Envelope body */
.lp-cta-envelope-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 110px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px 4px 14px 14px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Envelope flap (triangle) */
.lp-cta-envelope-flap {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 55px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-bottom: none;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    z-index: 3;
    transform-origin: top center;
    animation: ctaFlapOpen 5s ease-in-out infinite;
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes ctaCardSlide {
    0%, 15% { transform: translateX(-50%) translateY(0); }
    35%, 65% { transform: translateX(-50%) translateY(-60px); }
    85%, 100% { transform: translateX(-50%) translateY(0); }
}

@keyframes ctaFlapOpen {
    0%, 10% { transform: rotateX(0deg); }
    25%, 75% { transform: rotateX(180deg); }
    90%, 100% { transform: rotateX(0deg); }
}

/* ── Footer ────────────────────────────── */
.lp-footer {
    background: var(--lp-bg-dark);
    padding: 80px 24px 40px;
    color: var(--lp-text-on-dark);
}

.lp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.lp-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.lp-footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 12px 0 0;
    max-width: 300px;
}

.lp-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lp-footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s;
}

.lp-footer-col a:hover {
    color: var(--lp-accent);
}

.lp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.lp-footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
}

.lp-footer-bottom-links {
    display: flex;
    gap: 24px;
}

.lp-footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.lp-footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Responsive ────────────────────────── */
@media (max-width: 1024px) {
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-hero-visual { display: none; }
    .lp-pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-pricing-extras { grid-template-columns: 1fr; }
    .lp-mission-inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-showcase-inner { grid-template-columns: 1fr; }
    .lp-showcase-visual { min-height: 320px; }
    .lp-mockup-stack { width: 320px; height: 300px; }
    .lp-mockup-card:nth-child(1) { width: 240px; }
    .lp-mockup-card:nth-child(2) { width: 190px; }
    .lp-cta-card { grid-template-columns: 1fr; text-align: center; }
    .lp-cta-visual { display: none; }
    .lp-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .lp-stats-banner-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .lp-how-steps::before { display: none; }
    .lp-testimonial-featured { grid-template-columns: 1fr; gap: 32px; }
    .lp-testimonial-featured-author { flex-direction: row; text-align: left; }
    .lp-contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .lp-nav-center {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(246, 246, 244, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 12px;
        border-bottom: 1px solid var(--lp-border);
        box-shadow: var(--lp-shadow-md);
    }

    .lp-nav-center.open { display: flex; }
    .lp-nav-toggle { display: block; }
    .lp-nav-right { display: none; }

    .lp-hero h1 { font-size: 36px; }
    .lp-hero-subtitle { font-size: 16px; }
    .lp-hero-actions { flex-direction: column; align-items: flex-start; }
    .lp-section { padding: 80px 20px; }

    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-how-steps { grid-template-columns: 1fr; }
    .lp-testimonials-grid { grid-template-columns: 1fr; }
    .lp-pricing-grid { grid-template-columns: 1fr; }
    .lp-pricing-extras { grid-template-columns: 1fr; }
    .lp-pricing-extra-card { flex-direction: column; text-align: center; }
    .lp-pricing-extra-right { flex-direction: column; }
    .lp-hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
    .lp-hero-rating { flex-wrap: wrap; }
    .lp-stats-banner-row { grid-template-columns: 1fr 1fr; }

    .lp-cta-card { padding: 48px 24px; border-radius: 20px; }
    .lp-cta-content h2 { font-size: 28px; }

    .lp-testimonial-featured { padding: 28px; }
    .lp-testimonial-featured-quote p { font-size: 16px; }
    .lp-form-row { grid-template-columns: 1fr; }
    .lp-contact-form { padding: 24px; }

    .lp-footer-top { grid-template-columns: 1fr; gap: 24px; }
    .lp-footer-bottom { flex-direction: column; text-align: center; }
    .lp-team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .lp-team-card { padding: 28px 16px; }
    .lp-demo-browser-bar, .lp-demo-editor-area, .lp-demo-analytics { width: 260px; }
    .lp-demo-editor-area { height: 130px; }
}

/* ── GPU-optimized Animations ─────────── */
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ── Lottie Animation Wrapper ─────────── */
.lp-lottie-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-lottie-wrap dotlottie-player {
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.1));
}

/* ── Editor Mockup (Mission) ──────────── */
.lp-editor-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.lp-editor-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.lp-editor-dots {
    display: flex;
    gap: 6px;
}

.lp-editor-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.lp-editor-dots span:first-child { background: #ff5f57; }
.lp-editor-dots span:nth-child(2) { background: #ffbd2e; }
.lp-editor-dots span:last-child { background: #28c840; }

.lp-editor-tabs {
    display: flex;
    gap: 4px;
}

.lp-editor-tabs span {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    cursor: default;
}

.lp-editor-tabs span.active {
    background: var(--lp-accent);
    color: var(--lp-bg-dark);
}

.lp-editor-body {
    display: flex;
    flex: 1;
    min-height: 0;
}

.lp-editor-sidebar {
    width: 60px;
    background: #f5f5f5;
    border-right: 1px solid #eee;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-editor-block {
    height: 32px;
    border-radius: 6px;
    background: #e5e5e5;
}

.lp-editor-block.accent {
    background: var(--lp-accent);
    animation: editorPulse 3s ease-in-out infinite;
}

.lp-editor-canvas {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lp-editor-card-preview {
    width: 160px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    animation: editorFloat 5s ease-in-out infinite;
}

.lp-editor-card-img {
    height: 64px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--lp-accent), #c8e034);
    margin-bottom: 10px;
}

.lp-editor-card-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.lp-editor-card-lines span {
    height: 6px;
    border-radius: 3px;
    background: #eee;
    display: block;
}

.lp-editor-card-btn {
    height: 22px;
    border-radius: 6px;
    background: var(--lp-bg-dark);
}

@keyframes editorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes editorPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ── Shield Mockup (Showcase Security) ── */
.lp-showcase-mockup {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lp-shield-icon {
    position: relative;
    z-index: 2;
    animation: shieldFloat 5s ease-in-out infinite;
}

.lp-shield-icon svg {
    width: 120px;
    height: 144px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
}

.lp-shield-pulse {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(10, 10, 10, 0.08);
    animation: shieldPulseRing 3s ease-out infinite;
}

.lp-shield-pulse-2 {
    animation-delay: 1.5s;
}

@keyframes shieldFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes shieldPulseRing {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ── Channel Mockup (Showcase Multi-Channel) ── */
.lp-channel-mockup {
    position: relative;
    width: 320px;
    height: 280px;
}

.lp-channel-node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    gap: 0;
    transition: box-shadow 0.4s ease;
}

.lp-channel-node svg {
    width: 24px;
    height: 24px;
}

.lp-channel-node span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    position: absolute;
    bottom: -22px;
    white-space: nowrap;
}

.lp-channel-email {
    background: var(--lp-accent);
    color: var(--lp-bg-dark);
    top: 10px;
    left: 24px;
    box-shadow: 0 4px 24px rgba(236, 249, 90, 0.3);
    animation: channelFloat 5s ease-in-out infinite;
}

.lp-channel-embed {
    background: var(--lp-bg-dark);
    color: var(--lp-accent);
    top: 10px;
    right: 24px;
    box-shadow: 0 4px 24px rgba(10, 10, 10, 0.2);
    animation: channelFloat 5s 1.6s ease-in-out infinite;
}

.lp-channel-link {
    background: #fff;
    color: var(--lp-bg-dark);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    animation: channelFloatCenter 5s 3.2s ease-in-out infinite;
}

/* Center hub */
.lp-channel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10,10,10,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: channelPulse 3s ease-in-out infinite;
}

.lp-channel-center-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236,249,90,0.15), transparent 70%);
    animation: channelGlow 3s ease-in-out infinite;
}

.lp-channel-center svg {
    width: 20px;
    height: 20px;
    color: var(--lp-bg-dark);
    position: relative;
    z-index: 1;
}

/* Connection lines */
.lp-channel-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 280px;
    z-index: 1;
}

.lp-channel-line {
    stroke-dasharray: 6 4;
    animation: channelFlow 2s linear infinite;
}
.lp-channel-line--delay1 { animation-delay: 0.7s; }
.lp-channel-line--delay2 { animation-delay: 1.4s; }

@keyframes channelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes channelFloatCenter {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes channelPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes channelGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes channelFlow {
    from { stroke-dashoffset: 20; }
    to { stroke-dashoffset: 0; }
}

/* ── Demo Animation ──────────────────── */
.lp-demo-animation {
    background: linear-gradient(135deg, var(--lp-bg-white) 0%, #f0f0ee 50%, var(--lp-bg) 100%);
    border: 1px solid var(--lp-border);
    cursor: default;
}

.lp-demo-screen {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.lp-demo-step {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: none;
}

.lp-demo-step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text-muted);
    margin-top: 20px;
    letter-spacing: 0.02em;
}

/* Step 1: Editor */
.lp-demo-step-1 {
    animation: demoStep1 9s ease-in-out infinite;
}

.lp-demo-browser-bar {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    background: #333;
    border-radius: 8px 8px 0 0;
    width: 320px;
}

.lp-demo-browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
}

.lp-demo-browser-bar span:first-child { background: #ff5f57; }
.lp-demo-browser-bar span:nth-child(2) { background: #ffbd2e; }
.lp-demo-browser-bar span:last-child { background: #28c840; }

.lp-demo-editor-area {
    display: flex;
    width: 320px;
    height: 160px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.lp-demo-sidebar-mini {
    width: 48px;
    background: #f5f5f5;
    border-right: 1px solid #eee;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-demo-sb-block {
    height: 24px;
    border-radius: 4px;
    background: #e5e5e5;
}

.lp-demo-sb-block.accent {
    background: var(--lp-accent);
    animation: editorPulse 2s ease-in-out infinite;
}

.lp-demo-canvas-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.lp-demo-card-preview {
    width: 100%;
    max-width: 200px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    animation: demoCardBuild 9s ease-in-out infinite;
}

.lp-demo-card-img {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--lp-accent) 0%, #d4e84e 100%);
    margin-bottom: 10px;
}

.lp-demo-card-line {
    height: 6px;
    border-radius: 3px;
    background: #e5e5e5;
    margin-bottom: 6px;
}

.lp-demo-card-btn {
    width: 60%;
    height: 20px;
    border-radius: 10px;
    background: var(--lp-bg-dark);
    margin-top: 8px;
}

/* Step 2: Send */
.lp-demo-step-2 {
    animation: demoStep2 9s ease-in-out infinite;
}

.lp-demo-send-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--lp-accent);
    color: var(--lp-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: demoSendPulse 9s ease-in-out infinite;
}

.lp-demo-send-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    align-items: center;
}

.lp-demo-send-line {
    height: 3px;
    border-radius: 2px;
    background: rgba(10, 10, 10, 0.12);
    animation: demoSendLine 9s ease-in-out infinite;
}

.lp-demo-send-line:nth-child(1) { width: 120px; animation-delay: 0s; }
.lp-demo-send-line:nth-child(2) { width: 80px; animation-delay: 0.15s; }
.lp-demo-send-line:nth-child(3) { width: 100px; animation-delay: 0.3s; }

/* Step 3: Analytics */
.lp-demo-step-3 {
    animation: demoStep3 9s ease-in-out infinite;
}

.lp-demo-analytics {
    width: 320px;
    padding: 24px;
}

.lp-demo-stat-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
}

.lp-demo-stat-mini {
    text-align: center;
    font-size: 11px;
    color: var(--lp-text-muted);
    font-weight: 500;
}

.lp-demo-stat-mini span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--lp-text);
    line-height: 1.2;
    margin-bottom: 2px;
}

.lp-demo-chart-mini {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.lp-demo-bar {
    flex: 1;
    height: var(--h);
    border-radius: 4px 4px 0 0;
    background: rgba(10, 10, 10, 0.08);
    animation: demoBarGrow 9s ease-out infinite;
}

.lp-demo-bar.accent {
    background: var(--lp-accent);
}

/* Demo keyframes */
@keyframes demoStep1 {
    0%, 5% { opacity: 0; transform: translateY(20px); }
    8%, 30% { opacity: 1; transform: translateY(0); }
    33%, 100% { opacity: 0; transform: translateY(-20px); }
}

@keyframes demoStep2 {
    0%, 33% { opacity: 0; transform: translateY(20px); }
    36%, 60% { opacity: 1; transform: translateY(0); }
    63%, 100% { opacity: 0; transform: translateY(-20px); }
}

@keyframes demoStep3 {
    0%, 63% { opacity: 0; transform: translateY(20px); }
    66%, 92% { opacity: 1; transform: translateY(0); }
    95%, 100% { opacity: 0; transform: translateY(-20px); }
}

@keyframes demoCardBuild {
    0%, 8% { opacity: 0.3; transform: scale(0.9); }
    15%, 30% { opacity: 1; transform: scale(1); }
    33%, 100% { opacity: 0; }
}

@keyframes demoSendPulse {
    0%, 36% { transform: scale(0.8); opacity: 0; }
    40% { transform: scale(1.1); opacity: 1; }
    44%, 60% { transform: scale(1); opacity: 1; }
    63%, 100% { transform: scale(0.8); opacity: 0; }
}

@keyframes demoSendLine {
    0%, 36% { width: 0; opacity: 0; }
    42%, 58% { opacity: 0.6; }
    63%, 100% { opacity: 0; }
}

@keyframes demoBarGrow {
    0%, 66% { transform: scaleY(0); }
    75%, 92% { transform: scaleY(1); }
    95%, 100% { transform: scaleY(0); }
}

/* ── Legal Pages ─────────────────────── */
.lp-legal-content {
    font-size: 15px;
    color: var(--lp-text);
    line-height: 1.8;
}

.lp-legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--lp-text);
}

.lp-legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 32px 0 12px;
    color: var(--lp-text);
}

.lp-legal-content p {
    margin: 0 0 16px;
}

.lp-legal-content ul, .lp-legal-content ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.lp-legal-content a {
    color: var(--lp-text);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Lucide ────────────────────────────── */
.lp-body .lucide {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    stroke-width: 2;
}
