/* ================================================================
   Extracted from: app/Views/landing/index.php
   Date: 2026-02-14
   ================================================================ */

/* ═══════════════════════════════════════
       LANDING PAGE — SaaS Pro 2026
       ═══════════════════════════════════════ */
:root {
    /* Landing-specific accents */
    --lp-primary: var(--dt-brand, #10b981);
    --lp-primary-dark: var(--dt-brand-hover, #059669);
    --lp-primary-light: #4cd9a0;
    --lp-accent: #00cec9;
    --lp-accent-2: #148f5e;
    --lp-gradient: linear-gradient(135deg, #10b981 0%, #4cd9a0 50%, #059669 100%);

    /* Mapped to design tokens */
    --lp-bg: var(--dt-bg-body, #ffffff);
    --lp-surface: var(--dt-bg-surface, #f8f9fc);
    --lp-text: var(--dt-text-title, #1a1a2e);
    --lp-text-sub: var(--dt-text-secondary, #636e82);
    --lp-border: var(--dt-border, #e8ecf1);
    --lp-radius: var(--dt-radius-lg, 16px);
    --lp-radius-sm: var(--dt-radius-sm, 10px);
    --lp-shadow: var(--dt-shadow-md, 0 4px 24px rgba(0, 0, 0, 0.06));
    --lp-shadow-lg: 0 12px 48px rgba(43, 196, 138, 0.12);
    --lp-max-w: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Override global style.css body/html overflow:hidden (set for Leaflet map) */
html,
html[data-theme],
html[data-theme="light"],
body,
html body,
html[data-theme] body {
    overflow: visible !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    max-height: none !important;
    overscroll-behavior-y: auto !important;
    position: static !important;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--lp-bg);
    color: var(--lp-text);
    -webkit-font-smoothing: antialiased;
}

/* ── NAV: uses standard header.php partial (see style.css) ── */
/* Header légèrement plus haut sur la page À propos pour plus de respiration */
.header {
    height: 80px;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}

.lp-btn-primary {
    background: var(--lp-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(43, 196, 138, 0.3);
}

.lp-btn-primary:hover {
    background: var(--lp-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(43, 196, 138, 0.4);
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-text);
    border: 1.5px solid var(--lp-border);
}

.lp-btn-outline:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
}

.lp-btn-white {
    background: #fff;
    color: var(--lp-primary);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.lp-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.lp-btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.lp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ── SECTIONS ── */
.lp-section {
    padding: 88px 24px;
}

.lp-section-alt {
    background: var(--lp-surface);
}

.lp-container {
    max-width: var(--lp-max-w);
    margin: 0 auto;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.lp-section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.lp-section-header p {
    font-size: 1.05rem;
    color: var(--lp-text-sub);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.gradient-text {
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ── STATS ── */
.lp-stats {
    padding: 64px 24px;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-stats-inner {
    max-width: var(--lp-max-w);
    margin: 0 auto;
}

.lp-stats-header {
    text-align: center;
    margin-bottom: 40px;
}

.lp-stats-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.lp-stats-header p {
    font-size: 0.92rem;
    color: var(--lp-text-sub);
    margin-top: 6px;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lp-stat-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--lp-surface);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    transition: all 0.3s;
}

.lp-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow);
    border-color: var(--lp-primary-light);
}

.lp-stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.lp-stat-label.purple {
    color: var(--lp-primary);
}

.lp-stat-label.green {
    color: #10b981;
}

.lp-stat-label.blue {
    color: #3b82f6;
}

.lp-stat-label.orange {
    color: #f59e0b;
}

.lp-stat-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.lp-stat-desc {
    font-size: 0.82rem;
    color: var(--lp-text-sub);
    margin-top: 6px;
}

/* ── FEATURES SHOWCASE ── */
.lp-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 64px;
}

.lp-showcase-row:last-child {
    margin-bottom: 0;
}

.lp-showcase-row.reverse {
    direction: rtl;
}

.lp-showcase-row.reverse>* {
    direction: ltr;
}

.lp-showcase-visual {
    position: relative;
}

.lp-showcase-img {
    width: 100%;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-lg);
    border: 1px solid var(--lp-border);
}

.lp-showcase-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--lp-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.lp-showcase-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.lp-showcase-content p {
    font-size: 1rem;
    color: var(--lp-text-sub);
    line-height: 1.7;
    margin-bottom: 20px;
}

.lp-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--lp-text);
}

.lp-feature-list li i {
    color: var(--lp-accent);
    font-size: 0.82rem;
    width: 20px;
}

/* ── CONTRIBUTE ── */
.lp-contribute {
    text-align: center;
}

.lp-contribute-avatars {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.lp-contribute-avatars .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
    background: var(--lp-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lp-contribute-avatars .avatar:first-child {
    margin-left: 0;
}

.lp-contribute-avatars .avatar-more {
    background: var(--lp-surface);
    color: var(--lp-text-sub);
    font-size: 0.7rem;
    border: 2px solid var(--lp-border);
}

/* ── FEATURES GRID ── */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-feature-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
    border-color: var(--lp-primary-light);
}

.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lp-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.lp-feature-card:hover::before {
    opacity: 1;
}

.lp-feature-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    margin-bottom: 16px;
}

.lp-feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-feature-card p {
    font-size: 0.88rem;
    color: var(--lp-text-sub);
    line-height: 1.6;
}

/* ── STEPS ── */
.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}

.lp-step {
    text-align: center;
    position: relative;
}

.lp-step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--lp-gradient);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(43, 196, 138, 0.25);
}

.lp-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-step p {
    font-size: 0.88rem;
    color: var(--lp-text-sub);
    line-height: 1.6;
}

.lp-step-connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--lp-border) 0, var(--lp-border) 6px, transparent 6px, transparent 12px);
}

/* ── TESTIMONIALS ── */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-testimonial {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 24px;
    transition: all 0.3s;
}

.lp-testimonial:hover {
    box-shadow: var(--lp-shadow);
    transform: translateY(-2px);
}

.lp-testimonial-stars {
    color: #f59e0b;
    font-size: 0.82rem;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.lp-testimonial-text {
    font-size: 0.92rem;
    color: var(--lp-text-sub);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lp-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
}

.lp-testimonial-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.lp-testimonial-role {
    font-size: 0.75rem;
    color: var(--lp-text-sub);
}

/* ── PRICING ── */
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.lp-pricing-card {
    background: #fff;
    border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.lp-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
}

.lp-pricing-card.featured {
    border-color: var(--lp-primary);
    background: linear-gradient(180deg, rgba(43, 196, 138, 0.03) 0%, #fff 100%);
    transform: scale(1.04);
    z-index: 2;
    box-shadow: var(--lp-shadow-lg);
}

.lp-pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.lp-pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-gradient);
    color: #fff;
    padding: 4px 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.lp-pricing-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--lp-text-sub);
}

.lp-pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 4px;
    letter-spacing: -0.04em;
}

.lp-pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--lp-text-sub);
}

.lp-pricing-desc {
    font-size: 0.85rem;
    color: var(--lp-text-sub);
    margin-bottom: 24px;
}

.lp-pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.lp-pricing-features li {
    padding: 8px 0;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.lp-pricing-features li:last-child {
    border-bottom: none;
}

.lp-pricing-features li i {
    color: var(--lp-accent);
    font-size: 0.78rem;
}

.lp-pricing-features li.disabled {
    color: var(--lp-text-sub);
    opacity: 0.5;
}

.lp-pricing-features li.disabled i {
    color: var(--lp-border);
}

/* ── CTA FINAL ── */
.lp-cta {
    padding: 80px 24px;
    background: var(--lp-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='400' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='400' height='200' fill='url(%23g)'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.lp-cta-inner {
    position: relative;
    z-index: 1;
}

.lp-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.4rem;
    color: #fff;
    backdrop-filter: blur(8px);
}

.lp-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.lp-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.lp-cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* ── FOOTER ── */
.lp-footer {
    padding: 40px 24px;
    background: var(--lp-text);
    text-align: center;
}

.lp-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.lp-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

/* ── ANIMATIONS ── */
.lp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {

    .lp-hero-inner,
    .lp-showcase-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-showcase-row.reverse {
        direction: ltr;
    }

    .lp-hero h1 {
        font-size: 2.4rem;
    }

    .lp-features-grid,
    .lp-testimonials-grid,
    .lp-pricing-grid,
    .lp-steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-step-connector {
        display: none;
    }

    .lp-pricing-card.featured {
        transform: none;
    }
}

/* ═══════════════════════════════════════
   PREMIUM ANIMATIONS — Inspired by Distrib24 reference
   ═══════════════════════════════════════ */

/* Header uses standard style.css — no overrides needed */

/* ── STAGGERED FADE-UP REVEAL ── */
.lp-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children inside grids */
.lp-reveal.visible .lp-stat-card,
.lp-reveal.visible .lp-feature-card,
.lp-reveal.visible .lp-testimonial,
.lp-reveal.visible .lp-pricing-card,
.lp-reveal.visible .lp-step,
.lp-reveal.visible .lp-showcase-row {
    opacity: 0;
    animation: staggerFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lp-reveal.visible .lp-stat-card:nth-child(1),
.lp-reveal.visible .lp-feature-card:nth-child(1),
.lp-reveal.visible .lp-testimonial:nth-child(1),
.lp-reveal.visible .lp-pricing-card:nth-child(1),
.lp-reveal.visible .lp-step:nth-child(1),
.lp-reveal.visible .lp-showcase-row:nth-child(1) {
    animation-delay: 0.1s;
}

.lp-reveal.visible .lp-stat-card:nth-child(2),
.lp-reveal.visible .lp-feature-card:nth-child(2),
.lp-reveal.visible .lp-testimonial:nth-child(2),
.lp-reveal.visible .lp-pricing-card:nth-child(2),
.lp-reveal.visible .lp-step:nth-child(2),
.lp-reveal.visible .lp-showcase-row:nth-child(2) {
    animation-delay: 0.2s;
}

.lp-reveal.visible .lp-stat-card:nth-child(3),
.lp-reveal.visible .lp-feature-card:nth-child(3),
.lp-reveal.visible .lp-testimonial:nth-child(3),
.lp-reveal.visible .lp-pricing-card:nth-child(3),
.lp-reveal.visible .lp-step:nth-child(3) {
    animation-delay: 0.3s;
}

.lp-reveal.visible .lp-stat-card:nth-child(4),
.lp-reveal.visible .lp-feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.lp-reveal.visible .lp-feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.lp-reveal.visible .lp-feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes staggerFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── ANIMATED GRADIENT TEXT (like reference) ── */
.gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #4cd9a0 30%, #059669 60%, #10b981 100%) !important;
    background-size: 300% 300% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: gradientShift 4s ease infinite;
    transition: background-image 1.2s ease;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ── Leaflet Mini-Map on Landing ── */
.lp-leaflet-embed .leaflet-container {
    background: var(--lp-surface) !important;
}

.lp-map-marker {
    background: transparent !important;
    border: none !important;
}

/* ── Distributor Landing / Detail Pages — Ensure scroll works ── */
.distributor-detail-page,
.distributor-landing-page,
.page-search {
    overflow-y: auto !important;
    height: auto !important;
    max-height: none !important;
    position: static !important;
}

.distributor-detail-page body,
.distributor-landing-page body {
    overflow-y: auto !important;
    height: auto !important;
}

/* ── GLASSMORPHISM ON STAT CARDS (like reference) ── */
.lp-stat-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(43, 196, 138, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.lp-stat-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 16px 48px rgba(43, 196, 138, 0.15) !important;
    border-color: var(--lp-primary-light) !important;
}

/* Colored underline bar (like reference) */
.lp-stat-card::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    margin: 12px auto 0;
    background: var(--lp-gradient);
    transition: width 0.4s;
}

.lp-stat-card:hover::after {
    width: 60px;
}

/* ── NOUVEAU BADGE on first stat (neon flash orange — intense) ── */
.lp-stat-card:first-child {
    position: relative;
    border-color: rgba(255, 107, 0, 0.45) !important;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.15);
    animation: neonCardFlashOrange 1.2s ease-in-out infinite;
}

.lp-stat-card:first-child::before {
    content: '✦ NOUVEAU';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b00, #ff8c00, #e65100);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: 999px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 14px rgba(255, 107, 0, 0.6), 0 0 30px rgba(255, 107, 0, 0.3);
    animation: neonBadgeFlashOrange 0.8s ease-in-out infinite;
}

@keyframes neonBadgeFlashOrange {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 107, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.25);
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 107, 0, 0.9), 0 0 50px rgba(255, 107, 0, 0.5), 0 0 80px rgba(255, 107, 0, 0.25);
        opacity: 0.85;
    }
}

@keyframes neonCardFlashOrange {

    0%,
    100% {
        border-color: rgba(255, 107, 0, 0.35) !important;
        box-shadow: 0 0 15px rgba(255, 107, 0, 0.08);
    }

    50% {
        border-color: rgba(255, 107, 0, 0.6) !important;
        box-shadow: 0 0 30px rgba(255, 107, 0, 0.2), 0 0 60px rgba(255, 107, 0, 0.08);
    }
}

/* ── ENHANCED FEATURE CARDS ── */
.lp-feature-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.lp-feature-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(43, 196, 138, 0.12) !important;
}

.lp-feature-card:hover .lp-feature-card-icon {
    transform: scale(1.1) rotate(-3deg);
    transition: transform 0.3s;
}

/* ── SHIMMER on badge ── */
.lp-hero-badge {
    position: relative;
    overflow: hidden;
}

.lp-hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* ── ENHANCED FLOATING CARDS ── */
.lp-hero-float {
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.lp-hero-float:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-4px) scale(1.05) !important;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-6px) rotate(0.5deg);
    }

    75% {
        transform: translateY(4px) rotate(-0.5deg);
    }
}

/* ── PRICING HOVER ── */
.lp-pricing-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.lp-pricing-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
}

.lp-pricing-card.featured {
    transform: scale(1.03);
}

.lp-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px) !important;
}

/* ── TESTIMONIAL HOVER ── */
.lp-testimonial {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.lp-testimonial:hover {
    transform: translateY(-6px) scale(1.01) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08) !important;
}

/* ── STEP NUMBERS PULSE ── */
.lp-step-number {
    animation: stepPulse 3s ease-in-out infinite;
}

@keyframes stepPulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(43, 196, 138, 0.25);
    }

    50% {
        box-shadow: 0 6px 30px rgba(43, 196, 138, 0.45), 0 0 0 8px rgba(43, 196, 138, 0.06);
    }
}

/* ── CTA BACKGROUND ANIMATION ── */
.lp-cta {
    background-size: 200% 200% !important;
    animation: ctaGradient 6s ease infinite !important;
}

@keyframes ctaGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ── SOCIAL PROOF AVATARS BOUNCE ── */
.lp-contribute-avatars .avatar {
    transition: transform 0.3s;
}

.lp-contribute-avatars .avatar:hover {
    transform: translateY(-4px) scale(1.15) !important;
    z-index: 10;
}

/* ── COUNTER ANIMATION (number values) ── */
.lp-stat-value[data-count] {
    display: inline-block;
}

/* ── PARALLAX BACKGROUND DOTS ── */
.lp-section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(43, 196, 138, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.lp-section-alt {
    position: relative;
}

/* ── RESPONSIVE REFINEMENTS ── */
@media (max-width: 1024px) {
    .lp-hero-inner {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .lp-hero-ctas {
        justify-content: center;
    }

    .lp-hero-sub {
        margin: 0 auto 32px;
    }

    .lp-hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .lp-showcase-row,
    .lp-showcase-row.reverse {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
    }

    .lp-showcase-row>* {
        direction: ltr !important;
    }

    .lp-pricing-card.featured {
        transform: none;
    }

    .lp-pricing-card.featured:hover {
        transform: translateY(-4px) !important;
    }
}

@media (max-width: 768px) {

    .lp-stats-grid,
    .lp-features-grid,
    .lp-testimonials-grid,
    .lp-pricing-grid,
    .lp-steps-grid {
        grid-template-columns: 1fr;
    }

    .lp-hero h1 {
        font-size: 2rem;
    }

    .lp-section {
        padding: 56px 16px;
    }

    .lp-hero-ctas {
        flex-direction: column;
    }

    .lp-cta h2 {
        font-size: 1.6rem;
    }

    .lp-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .lp-hero-stores {
        justify-content: center;
    }
}