/* ============================================
   aplo Landing Page — CSS
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #6366F1;
    --secondary: #7C3AED;
    --accent: #06B6D4;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0 !important;
    font-size: 1rem;
}

/* --- Container --- */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-container-narrow {
    max-width: 800px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }

.lp-gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white { color: #fff !important; }
.text-light-muted { color: rgba(255,255,255,0.7) !important; }

/* ============================================
   NAVIGATION
   ============================================ */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.lp-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

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

.lp-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.aplo-logo-svg {
    display: block;
    width: auto;
    height: auto;
}

.lp-logo .aplo-logo-svg {
    width: 110px;
    height: 36px;
}

.lp-footer-brand .aplo-logo-svg {
    width: 90px;
    height: 30px;
}

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

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(79, 70, 229, 0.14);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.72);
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    font: inherit;
    font-weight: 700;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(79, 70, 229, 0.24);
    box-shadow: var(--shadow);
    outline: none;
}

.theme-toggle i {
    color: var(--primary);
    font-size: 0.92rem;
}

.theme-toggle-label {
    font-size: 0.85rem;
    letter-spacing: -0.01em;
}

.lp-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: var(--radius-full);
    background: rgba(79, 70, 229, 0.08);
}

.lp-language-link {
    min-width: 42px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.lp-language-link::after {
    display: none !important;
}

.lp-language-link.active {
    background: #fff;
    color: var(--primary) !important;
    box-shadow: var(--shadow-sm);
}

.lp-nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.lp-nav-links a:not(.lp-btn):hover {
    color: var(--primary);
}

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

.lp-nav-links a:not(.lp-btn):hover::after {
    width: 100%;
}

/* --- Mobile Menu Toggle --- */
.lp-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.lp-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition);
    border-radius: 2px;
}

.lp-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.lp-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.lp-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
}

.lp-btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
    color: #fff;
}

.lp-btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.lp-btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.lp-btn-nav {
    background: var(--gradient);
    color: #fff !important;
    padding: 8px 20px;
    font-size: 0.9rem;
}

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

.lp-btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.lp-btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.lp-btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

.lp-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 70, 229, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
}

.lp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 70%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 70%);
}

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

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.lp-badge i { font-size: 0.75rem; }

.lp-hero-text h1 {
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.lp-hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

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

.lp-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.lp-hero-trust span {
    font-size: 0.85rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-hero-trust i {
    color: var(--success);
    font-size: 0.8rem;
}

/* --- Chat Mockup --- */
.lp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.lp-chat-mockup {
    width: 380px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.lp-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gradient);
    color: #fff;
}

.lp-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.lp-chat-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.lp-chat-status {
    font-size: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34D399;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.lp-chat-messages {
    padding: 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--gray-50);
}

.lp-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: msgFadeIn 0.5s ease forwards;
    opacity: 0;
    animation-delay: var(--delay, 0s);
}

.lp-msg p { margin: 0; }

.lp-msg-bot {
    background: #fff;
    color: var(--gray-800);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: var(--shadow-sm);
}

.lp-msg-user {
    background: var(--primary);
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.lp-msg-product {
    margin-top: 8px;
}

.lp-product-card-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--gray-50);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    border: 1px solid var(--gray-200);
}

.lp-product-card-mini i {
    color: var(--secondary);
}

@keyframes msgFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Floating Icons --- */
.lp-float {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.lp-float-1 {
    background: var(--primary);
    top: -10px;
    right: -20px;
    animation-delay: 0s;
}

.lp-float-2 {
    background: var(--secondary);
    bottom: 40px;
    left: -20px;
    animation-delay: 2s;
}

.lp-float-3 {
    background: var(--accent);
    top: 50%;
    right: -40px;
    animation-delay: 4s;
}

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

/* ============================================
   STATS BAR
   ============================================ */
.lp-stats {
    padding: 50px 0;
    background: var(--gray-900);
}

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

.lp-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 4px;
}

.lp-stat-label {
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.lp-section {
    padding: 100px 0;
}

.lp-section-light {
    background: var(--gray-50);
}

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

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

.lp-section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-top: 16px;
}

.lp-section-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-section-tag-light {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   PROBLEMS
   ============================================ */
.lp-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lp-problem-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.lp-problem-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--danger);
    margin-bottom: 20px;
}

.lp-problem-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.lp-problem-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   FEATURES
   ============================================ */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lp-feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.2);
}

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

.lp-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: rgba(79, 70, 229, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.lp-feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.lp-feature-card p {
    color: var(--gray-500);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.lp-steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    margin-bottom: 50px;
}

.lp-step {
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.lp-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.lp-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 auto 20px;
}

.lp-step h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.lp-step p {
    color: rgba(255,255,255,0.6);
    font-size: 0.93rem;
    line-height: 1.6;
}

.lp-step-arrow {
    color: rgba(255,255,255,0.2);
    font-size: 1.5rem;
    margin-top: 60px;
    flex-shrink: 0;
}

/* --- Code Snippet --- */
.lp-code-snippet {
    max-width: 650px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.lp-code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #2D2D2D;
}

.lp-code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.lp-code-title {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-left: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.lp-code-snippet pre {
    margin: 0;
    padding: 20px;
    background: #1E1E1E;
    overflow-x: auto;
}

.lp-code-snippet code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #A5D6FF;
    line-height: 1.6;
}

/* ============================================
   USE CASES
   ============================================ */
.lp-usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.lp-usecase-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

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

.lp-usecase-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary);
}

.lp-usecase-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.lp-usecase-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: rgba(79, 70, 229, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.lp-usecase-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.lp-usecase-card > p {
    color: var(--gray-500);
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lp-usecase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-usecase-list li {
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-usecase-list i {
    color: var(--success);
    font-size: 0.8rem;
    flex-shrink: 0;
}

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

.lp-pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

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

.lp-pricing-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl), 0 0 0 2px var(--primary);
    transform: scale(1.05);
}

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

.lp-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.lp-pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.lp-pricing-header {
    margin-bottom: 16px;
}

.lp-pricing-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.lp-platform-features {
    margin-top: 8px;
}

.lp-pricing-price {
    margin: 28px 0;
    padding: 20px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.lp-price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.lp-price-period {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 400;
}

.lp-pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.lp-pricing-features li {
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
}

.lp-pricing-features li i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.lp-pricing-features li .fa-check { color: var(--success); }
.lp-pricing-features li .fa-times { color: var(--gray-300); }

.lp-pricing-disabled {
    color: var(--gray-400) !important;
}

/* ============================================
   FAQ
   ============================================ */
.lp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.lp-faq-item:hover {
    border-color: var(--gray-300);
}

.lp-faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.lp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}

.lp-faq-question i {
    color: var(--gray-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.lp-faq-item.active .lp-faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.lp-faq-item.active .lp-faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.lp-faq-answer p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CTA / CONTACT
   ============================================ */
.lp-section-cta {
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.lp-section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
}

.lp-cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.lp-cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.lp-cta-content > p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.lp-contact-form {
    text-align: left;
}

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

.lp-form-group {
    margin-bottom: 0;
}

.lp-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.lp-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.lp-input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3);
}

.lp-textarea {
    resize: vertical;
    min-height: 90px;
    margin-bottom: 20px;
}

.lp-form-note {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.lp-footer {
    background: var(--gray-900);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 30px;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.lp-footer-brand p {
    color: var(--gray-500);
    margin-top: 12px;
    font-size: 0.95rem;
}

.lp-footer-links h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.lp-footer-links a {
    display: block;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.lp-footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.lp-footer-social a {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
}

.lp-footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

html[data-theme='dark'] body {
    color: #E2E8F0;
    background: #020617;
}

html[data-theme='dark'] h1,
html[data-theme='dark'] h2,
html[data-theme='dark'] h3,
html[data-theme='dark'] h4 {
    color: #F8FAFC;
}

html[data-theme='dark'] .lp-nav.scrolled {
    background: rgba(2, 6, 23, 0.88);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.36);
}

html[data-theme='dark'] .lp-nav-links a {
    color: #CBD5E1;
}

html[data-theme='dark'] .lp-nav-links a:not(.lp-btn):hover {
    color: #C7D2FE;
}

html[data-theme='dark'] .lp-language-switcher {
    background: rgba(148, 163, 184, 0.12);
}

html[data-theme='dark'] .lp-language-link.active {
    background: rgba(15, 23, 42, 0.88);
    color: #F8FAFC !important;
}

html[data-theme='dark'] .lp-menu-toggle span {
    background: #E2E8F0;
}

html[data-theme='dark'] .theme-toggle {
    background: rgba(15, 23, 42, 0.76);
    border-color: rgba(148, 163, 184, 0.18);
    color: #E2E8F0;
}

html[data-theme='dark'] .theme-toggle i {
    color: #C7D2FE;
}

html[data-theme='dark'] .lp-hero-gradient {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 70, 229, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(124, 58, 237, 0.16) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
}

html[data-theme='dark'] .lp-hero-grid {
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
}

html[data-theme='dark'] .lp-hero-subtitle,
html[data-theme='dark'] .lp-section-header p,
html[data-theme='dark'] .lp-problem-card p,
html[data-theme='dark'] .lp-feature-card p,
html[data-theme='dark'] .lp-usecase-card > p,
html[data-theme='dark'] .lp-usecase-list li,
html[data-theme='dark'] .lp-pricing-features li,
html[data-theme='dark'] .lp-stat-label,
html[data-theme='dark'] .lp-form-note,
html[data-theme='dark'] .lp-footer-brand p,
html[data-theme='dark'] .lp-footer-links a,
html[data-theme='dark'] .lp-faq-answer p,
html[data-theme='dark'] .lp-hero-trust span,
html[data-theme='dark'] .lp-footer-bottom p {
    color: #94A3B8;
}

html[data-theme='dark'] .lp-badge,
html[data-theme='dark'] .lp-section-tag {
    background: rgba(99, 102, 241, 0.16);
    color: #C7D2FE;
}

html[data-theme='dark'] .lp-section-light {
    background: #0B1220;
}

html[data-theme='dark'] .lp-section-dark,
html[data-theme='dark'] .lp-stats,
html[data-theme='dark'] .lp-footer {
    background: #020617;
}

html[data-theme='dark'] .lp-chat-mockup,
html[data-theme='dark'] .lp-problem-card,
html[data-theme='dark'] .lp-feature-card,
html[data-theme='dark'] .lp-usecase-card,
html[data-theme='dark'] .lp-pricing-card,
html[data-theme='dark'] .lp-faq-item {
    background: rgba(15, 23, 42, 0.84);
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.34);
}

html[data-theme='dark'] .lp-chat-messages,
html[data-theme='dark'] .lp-product-card-mini {
    background: rgba(2, 6, 23, 0.78);
    border-color: rgba(148, 163, 184, 0.14);
}

html[data-theme='dark'] .lp-msg-bot {
    background: rgba(15, 23, 42, 0.92);
    color: #E2E8F0;
}

html[data-theme='dark'] .lp-code-snippet {
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.42);
}

html[data-theme='dark'] .lp-faq-question {
    color: #F8FAFC;
}

html[data-theme='dark'] .lp-input {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(148, 163, 184, 0.16);
    color: #F8FAFC;
}

html[data-theme='dark'] .lp-input::placeholder {
    color: #64748B;
}

html[data-theme='dark'] .lp-input:focus {
    background: rgba(15, 23, 42, 0.96);
}

html[data-theme='dark'] .lp-footer-links h4,
html[data-theme='dark'] .lp-cta-content > p,
html[data-theme='dark'] .lp-pricing-desc,
html[data-theme='dark'] .lp-price-period {
    color: #94A3B8;
}

html[data-theme='dark'] .lp-footer-links a:hover {
    color: #FFFFFF;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .lp-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .lp-hero-subtitle {
        margin: 0 auto 36px;
    }

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

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

    .lp-hero-visual {
        order: -1;
    }

    .theme-toggle-label {
        display: none;
    }

    .lp-chat-mockup {
        width: 340px;
    }

    .lp-float-3 { display: none; }

    .lp-problems-grid,
    .lp-features-grid,
    .lp-usecases-grid,
    .lp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .lp-section { padding: 70px 0; }

    .lp-menu-toggle { display: flex; }

    .lp-nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .lp-nav-links.active {
        opacity: 1;
        visibility: visible;
    }

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

    .lp-language-switcher {
        background: var(--gray-100);
    }

    .lp-hero { min-height: 0; padding: 100px 0 60px; }

    .lp-chat-mockup { width: 100%; max-width: 340px; }

    .lp-float { display: none; }

    .lp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .lp-stat-number { font-size: 2rem; }

    .lp-problems-grid,
    .lp-features-grid,
    .lp-usecases-grid,
    .lp-pricing-grid {
        grid-template-columns: 1fr;
    }

    .lp-steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .lp-step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

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

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .lp-container { padding: 0 16px; }
    .lp-hero { padding: 90px 0 50px; }
    .lp-hero-ctas { flex-direction: column; }
    .lp-btn-lg { padding: 12px 24px; font-size: 1rem; }
    .lp-hero-trust { flex-direction: column; gap: 8px; align-items: center; }
    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-language-switcher { width: 100%; justify-content: center; }
}
