/* ============================================
   FOTOS DCS - Landing Page Styles
   Style: Motion-Driven + Glassmorphism
   Primary: #3B82F6 | CTA: #F97316
   Fonts: Righteous (headings) / Poppins (body)
   ============================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
    --lp-primary: #3B82F6;
    --lp-primary-dark: #2563EB;
    --lp-primary-light: #60A5FA;
    --lp-cta: #F97316;
    --lp-cta-hover: #EA580C;
    --lp-dark: #0a1628;
    --lp-dark-mid: #0f1f3d;
    --lp-dark-light: #1a2d5a;
    --lp-text: #F8FAFC;
    --lp-text-muted: #94A3B8;
    --lp-text-dark: #1E293B;
    --lp-text-dark-muted: #475569;
    --lp-glass-bg: rgba(255, 255, 255, 0.06);
    --lp-glass-border: rgba(255, 255, 255, 0.12);
    --lp-glass-bg-light: rgba(255, 255, 255, 0.85);
    --lp-radius: 16px;
    --lp-radius-sm: 10px;
    --lp-radius-lg: 24px;
    --lp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lp-font-heading: 'Righteous', cursive;
    --lp-font-body: 'Poppins', sans-serif;
    --lp-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --lp-shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
}

/* === RESET & BASE === */
.landing-page {
    font-family: var(--lp-font-body);
    color: var(--lp-text);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    background: var(--lp-dark);
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.landing-page img {
    max-width: 100%;
    height: auto;
}

.landing-page a {
    text-decoration: none;
    color: inherit;
    transition: var(--lp-transition);
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4 {
    font-family: var(--lp-font-heading);
    line-height: 1.2;
}

/* === CONTAINER === */
.lp-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === NAVBAR === */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--lp-transition);
    background: transparent;
}

.lp-navbar.scrolled {
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lp-glass-border);
    padding: 0.5rem 0;
}

.lp-navbar .lp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-nav-logo img {
    height: 132px;
    width: auto;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.lp-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    cursor: pointer;
}

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

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

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

.lp-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--lp-cta);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--lp-transition);
    border: none;
}

.lp-nav-cta:hover {
    background: var(--lp-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}

.lp-nav-cta::after {
    display: none !important;
}

.lp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* === LANGUAGE SWITCHER === */
.lp-lang-switcher {
    position: relative;
    margin-left: 0.5rem;
}

.lp-lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--lp-transition);
    font-family: var(--lp-font-body);
    white-space: nowrap;
}

.lp-lang-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

.lp-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(15, 31, 61, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--lp-radius-sm);
    padding: 0.4rem;
    display: none;
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.lp-lang-dropdown.open {
    display: block;
}

.lp-lang-dropdown button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 0.5rem 0.75rem;
    text-align: left;
    font-size: 0.82rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
    font-family: var(--lp-font-body);
}

.lp-lang-dropdown button:hover {
    background: rgba(59, 130, 246, 0.2);
}

/* === HERO SECTION === */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #0a1628 0%, #0f1f3d 35%, #1a2d5a 60%, #2563EB 100%);
    overflow: hidden;
    padding-top: 80px;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    mix-blend-mode: luminosity;
}

.lp-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.lp-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: lp-float linear infinite;
}

@keyframes lp-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-hero-text {
    max-width: 600px;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--lp-primary-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.lp-badge svg {
    width: 16px;
    height: 16px;
}

.lp-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.lp-hero h1 span {
    background: linear-gradient(135deg, var(--lp-cta), #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero p {
    font-size: 1.15rem;
    color: var(--lp-text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.lp-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--lp-cta);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--lp-transition);
    border: none;
    font-family: var(--lp-font-body);
}

.lp-btn-primary:hover {
    background: var(--lp-cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--lp-transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: var(--lp-font-body);
}

.lp-btn-secondary:hover {
    border-color: var(--lp-primary-light);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

/* Hero Visual Cards */
.lp-hero-visual {
    position: relative;
    height: 580px;
}

.lp-glass-card {
    position: absolute;
    background: var(--lp-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--lp-glass-border);
    border-radius: var(--lp-radius);
    padding: 1.5rem;
    box-shadow: var(--lp-shadow);
    transition: var(--lp-transition);
}

.lp-glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow), var(--lp-shadow-glow);
}

.lp-hero-card-main {
    top: 10px;
    right: 20px;
    width: 300px;
    z-index: 3;
}

.lp-hero-card-stats {
    bottom: 60px;
    left: 0;
    width: 240px;
    z-index: 4;
}

.lp-hero-card-badge {
    top: 120px;
    right: -10px;
    width: 200px;
    z-index: 5;
    text-align: center;
}

.lp-card-img {
    width: 100%;
    border-radius: var(--lp-radius-sm);
    margin-bottom: 1rem;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.lp-stat-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.lp-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-stat-icon.blue {
    background: rgba(59, 130, 246, 0.2);
    color: var(--lp-primary-light);
}

.lp-stat-icon.orange {
    background: rgba(249, 115, 22, 0.2);
    color: var(--lp-cta);
}

.lp-stat-icon.green {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
}

.lp-stat-value {
    font-family: var(--lp-font-heading);
    font-size: 1.5rem;
    color: #fff;
}

.lp-stat-label {
    font-size: 0.78rem;
    color: var(--lp-text-muted);
}

.lp-hero-card-badge .lp-big-number {
    font-family: var(--lp-font-heading);
    font-size: 2.5rem;
    color: var(--lp-cta);
}

/* Counter Animation */
.lp-counter {
    display: inline-block;
}

/* === SECTION STYLES === */
.lp-section {
    padding: 6rem 0;
    position: relative;
}

.lp-section-dark {
    background: var(--lp-dark);
}

.lp-section-gradient {
    background: linear-gradient(180deg, var(--lp-dark) 0%, var(--lp-dark-mid) 100%);
}

.lp-section-light {
    background: #F8FAFC;
    color: var(--lp-text-dark);
}

.lp-section-accent {
    background: linear-gradient(135deg, var(--lp-dark-light) 0%, var(--lp-primary-dark) 100%);
}

.lp-section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: inherit;
}

.lp-section-subtitle {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
    color: var(--lp-text-muted);
    font-size: 1.05rem;
}

.lp-section-light .lp-section-subtitle {
    color: var(--lp-text-dark-muted);
}

.lp-section-label {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.lp-section-label span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--lp-primary-light);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lp-section-light .lp-section-label span {
    background: rgba(59, 130, 246, 0.08);
    color: var(--lp-primary-dark);
}

/* === FEATURES GRID === */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.lp-feature-card {
    background: var(--lp-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--lp-glass-border);
    border-radius: var(--lp-radius);
    padding: 2rem 1.5rem;
    transition: var(--lp-transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-cta));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.lp-feature-card:hover::before {
    transform: scaleX(1);
}

.lp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-glow);
    border-color: rgba(59, 130, 246, 0.3);
}

.lp-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: rgba(59, 130, 246, 0.12);
    color: var(--lp-primary-light);
    transition: var(--lp-transition);
}

.lp-feature-card:hover .lp-feature-icon {
    background: rgba(59, 130, 246, 0.25);
    transform: scale(1.1);
}

.lp-feature-icon svg {
    width: 24px;
    height: 24px;
}

.lp-feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: #fff;
    font-family: var(--lp-font-body);
    font-weight: 600;
}

.lp-feature-card p {
    font-size: 0.88rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

.lp-feature-card .lp-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--lp-primary-light);
    font-weight: 500;
    cursor: pointer;
}

.lp-feature-card .lp-learn-more svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.lp-feature-card:hover .lp-learn-more svg {
    transform: translateX(4px);
}

/* === HOW IT WORKS === */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.lp-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), rgba(249, 115, 22, 0.08));
    z-index: -1;
}

.lp-steps::after {
    content: '';
    position: absolute;
    top: 49px;
    left: 16.66%;
    right: 16.66%;
    height: 4px;
    border-radius: 4px;
    z-index: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            #3B82F6 8%,
            #6366F1 15%,
            #8B5CF6 22%,
            #F97316 30%,
            transparent 38%,
            transparent 100%);
    background-size: 300% 100%;
    animation: ledLineGlow 3.5s ease-in-out infinite alternate;
    box-shadow: 0 0 12px 2px rgba(59, 130, 246, 0.2);
}

@keyframes ledLineGlow {
    0% {
        background-position: 100% 0;
        box-shadow: 0 0 12px 2px rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 16px 4px rgba(139, 92, 246, 0.35);
    }

    100% {
        background-position: 0% 0;
        box-shadow: 0 0 12px 2px rgba(249, 115, 22, 0.3);
    }
}

.lp-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.lp-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    color: #fff;
    font-family: var(--lp-font-heading);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    transition: var(--lp-transition);
}

.lp-step:hover .lp-step-number {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

.lp-step-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--lp-radius);
    background: var(--lp-glass-bg);
    border: 1px solid var(--lp-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--lp-primary-light);
}

.lp-step-icon svg {
    width: 36px;
    height: 36px;
}

.lp-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-family: var(--lp-font-body);
    font-weight: 600;
}

.lp-step p {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* === MARKETPLACE === */
.lp-marketplace-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.lp-marketplace-header h2 {
    font-size: 1.8rem;
    color: var(--lp-text-dark);
}

.lp-filter-tabs {
    display: flex;
    gap: 0.5rem;
}

.lp-filter-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--lp-transition);
    border: 1px solid #E2E8F0;
    background: transparent;
    color: var(--lp-text-dark-muted);
    font-family: var(--lp-font-body);
}

.lp-filter-tab.active,
.lp-filter-tab:hover {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}

.lp-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.lp-partner-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: var(--lp-transition);
    cursor: pointer;
}

.lp-partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--lp-primary);
}

.lp-partner-cover {
    height: 160px;
    background: linear-gradient(135deg, var(--lp-dark-light), var(--lp-primary-dark));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.lp-partner-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.lp-partner-tipo {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-partner-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-cta));
    color: #fff;
    font-family: var(--lp-font-heading);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    position: absolute;
    bottom: -32px;
    left: 20px;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: var(--lp-transition);
}

.lp-partner-card:hover .lp-partner-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.3);
}

.lp-partner-info {
    padding: 2.5rem 1.25rem 1.25rem;
}

.lp-partner-info h3 {
    font-size: 1.05rem;
    color: var(--lp-text-dark);
    margin-bottom: 0.25rem;
    font-family: var(--lp-font-body);
    font-weight: 600;
}

.lp-partner-location {
    font-size: 0.82rem;
    color: var(--lp-text-dark-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.lp-partner-location svg {
    width: 14px;
    height: 14px;
}

.lp-partner-desc {
    font-size: 0.85rem;
    color: var(--lp-text-dark-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-partner-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #F1F5F9;
}

.lp-partner-price {
    font-size: 0.8rem;
    color: var(--lp-text-dark-muted);
}

.lp-partner-price strong {
    display: block;
    font-size: 1.15rem;
    color: var(--lp-primary-dark);
    font-weight: 700;
}

.lp-partner-btn {
    background: var(--lp-primary);
    color: #fff;
    border: none;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lp-transition);
    font-family: var(--lp-font-body);
}

.lp-partner-btn:hover {
    background: var(--lp-primary-dark);
    transform: translateY(-2px);
}

/* === PRICING === */
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.lp-pricing-card {
    background: var(--lp-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--lp-glass-border);
    border-radius: var(--lp-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--lp-transition);
    position: relative;
}

.lp-pricing-card.featured {
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.15), rgba(249, 115, 22, 0.1));
    border-color: var(--lp-primary);
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.2);
}

.lp-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lp-shadow-glow);
}

.lp-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.lp-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lp-cta), #FBBF24);
    color: #fff;
    padding: 0.35rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lp-pricing-name {
    font-family: var(--lp-font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.lp-pricing-price {
    font-family: var(--lp-font-heading);
    font-size: 3rem;
    color: var(--lp-primary-light);
    margin-bottom: 0.5rem;
}

.lp-pricing-price small {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
}

.lp-pricing-desc {
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    margin-bottom: 2rem;
}

.lp-pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.lp-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-pricing-features li svg {
    width: 18px;
    height: 18px;
    color: #34D399;
    flex-shrink: 0;
}

.lp-pricing-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--lp-transition);
    font-family: var(--lp-font-body);
    text-align: center;
}

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

.lp-pricing-btn-outline:hover {
    border-color: var(--lp-primary-light);
    background: rgba(59, 130, 246, 0.1);
}

.lp-pricing-btn-fill {
    background: var(--lp-cta);
    border: none;
    color: #fff;
}

.lp-pricing-btn-fill:hover {
    background: var(--lp-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}

/* === CTA SECTION === */
.lp-cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--lp-primary-dark) 0%, #1a2d5a 50%, var(--lp-dark) 100%);
    position: relative;
    overflow: hidden;
}

.lp-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: lp-pulse-glow 4s ease-in-out infinite;
}

@keyframes lp-pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.lp-cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.lp-cta-section p {
    font-size: 1.1rem;
    color: var(--lp-text-muted);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.lp-cta-contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.lp-cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--lp-glass-bg);
    border: 1px solid var(--lp-glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--lp-transition);
}

.lp-cta-contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.lp-cta-contact-item svg {
    width: 20px;
    height: 20px;
    color: #25D366;
}

/* === FOOTER === */
.lp-footer {
    background: #060d1a;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.lp-footer-brand p {
    color: var(--lp-text-muted);
    font-size: 0.88rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.lp-footer-brand img {
    height: 160px;
}

.lp-footer h4 {
    font-size: 0.85rem;
    font-family: var(--lp-font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    color: #fff;
}

.lp-footer-links {
    list-style: none;
}

.lp-footer-links li {
    margin-bottom: 0.65rem;
}

.lp-footer-links a {
    color: var(--lp-text-muted);
    font-size: 0.88rem;
    transition: var(--lp-transition);
}

.lp-footer-links a:hover {
    color: var(--lp-primary-light);
    padding-left: 4px;
}

.lp-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    color: var(--lp-text-muted);
    font-size: 0.88rem;
}

.lp-footer-contact-item svg {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--lp-primary-light);
}

.lp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.lp-footer-bottom p {
    color: var(--lp-text-muted);
    font-size: 0.82rem;
}

.lp-footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.lp-footer-bottom-links a {
    color: var(--lp-text-muted);
    font-size: 0.82rem;
}

.lp-footer-bottom-links a:hover {
    color: var(--lp-primary-light);
}

/* === MODAL === */
.lp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--lp-transition);
    padding: 1rem;
}

.lp-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lp-modal {
    background: #fff;
    border-radius: var(--lp-radius-lg);
    width: 100%;
    max-width: 520px;
    padding: 2.5rem;
    transform: translateY(20px) scale(0.95);
    transition: var(--lp-transition);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.lp-modal-overlay.active .lp-modal {
    transform: translateY(0) scale(1);
}

.lp-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #F1F5F9;
    color: var(--lp-text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--lp-transition);
}

.lp-modal-close:hover {
    background: #E2E8F0;
}

.lp-modal h2 {
    font-size: 1.4rem;
    color: var(--lp-text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--lp-font-body);
    font-weight: 700;
}

.lp-modal p {
    color: var(--lp-text-dark-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.lp-form-group {
    margin-bottom: 1.25rem;
}

.lp-form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--lp-text-dark);
    margin-bottom: 0.4rem;
}

.lp-form-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: var(--lp-radius-sm);
    font-family: var(--lp-font-body);
    font-size: 0.9rem;
    color: var(--lp-text-dark);
    transition: var(--lp-transition);
    outline: none;
    background: #fff;
}

.lp-form-input:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

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

.lp-form-submit {
    width: 100%;
    padding: 0.85rem;
    background: var(--lp-cta);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lp-transition);
    font-family: var(--lp-font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.lp-form-submit:hover {
    background: var(--lp-cta-hover);
    transform: translateY(-2px);
}

.lp-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.lp-form-success {
    text-align: center;
    padding: 2rem 0;
}

.lp-form-success svg {
    width: 64px;
    height: 64px;
    color: #10B981;
    margin-bottom: 1rem;
}

.lp-form-success h3 {
    font-size: 1.25rem;
    color: var(--lp-text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--lp-font-body);
    font-weight: 600;
}

.lp-form-success p {
    color: var(--lp-text-dark-muted);
}

/* === ANIMATIONS === */
.lp-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lp-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lp-fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.lp-fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lp-fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.lp-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays */
.lp-delay-1 {
    transition-delay: 0.1s;
}

.lp-delay-2 {
    transition-delay: 0.2s;
}

.lp-delay-3 {
    transition-delay: 0.3s;
}

.lp-delay-4 {
    transition-delay: 0.4s;
}

.lp-delay-5 {
    transition-delay: 0.5s;
}

.lp-delay-6 {
    transition-delay: 0.6s;
}

.lp-delay-7 {
    transition-delay: 0.7s;
}

.lp-delay-8 {
    transition-delay: 0.8s;
}

/* Parallax */
.lp-parallax-layer {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .lp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .lp-pricing-card.featured {
        transform: none;
    }

    .lp-pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .lp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 22, 40, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 999;
    }

    .lp-nav-links.open {
        display: flex;
    }

    .lp-nav-links a {
        font-size: 1.2rem;
    }

    .lp-mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .lp-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-hero-visual {
        display: none;
    }

    .lp-hero-btns {
        justify-content: center;
    }

    .lp-features-grid {
        grid-template-columns: 1fr;
    }

    .lp-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lp-steps::before {
        display: none;
    }

    .lp-steps::after {
        display: none;
    }

    .lp-marketplace-header {
        flex-direction: column;
        text-align: center;
    }

    .lp-filter-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .lp-partners-grid {
        grid-template-columns: 1fr;
    }

    .lp-biz-grid {
        grid-template-columns: 1fr !important;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lp-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .lp-cta-contacts {
        flex-direction: column;
        align-items: center;
    }

    .lp-container {
        padding: 0 1.25rem;
    }

    .lp-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .lp-hero h1 {
        font-size: 1.8rem;
    }

    .lp-hero p {
        font-size: 1rem;
    }

    .lp-btn-primary,
    .lp-btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {

    .lp-fade-in,
    .lp-fade-in-left,
    .lp-fade-in-right,
    .lp-scale-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lp-particle {
        animation: none;
        display: none;
    }

    .lp-step-number,
    .lp-feature-card,
    .lp-partner-card,
    .lp-pricing-card,
    .lp-glass-card {
        transition: none;
    }

    .lp-cta-section::before {
        animation: none;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}