/* ============================================
   MOBILE APP LANDING PAGE - 658d5c97
   Premium SaaS Landing Page Styles
   ============================================ */

/* === RESET & BASE === */
.malp-658d5c97,
.malp-658d5c97 *,
.malp-658d5c97 *::before,
.malp-658d5c97 *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.malp-658d5c97 {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --teal: #14b8a6;
    --amber: #f59e0b;
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255,255,255,0.03);
    --bg-card-hover: rgba(255,255,255,0.06);
    --bg-glass: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 60px rgba(99,102,241,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.malp-658d5c97 a {
    text-decoration: none;
    color: inherit;
}

.malp-658d5c97 ul {
    list-style: none;
}

.malp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === ANIMATIONS === */
.malp-animate {
    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);
}

.malp-animate[data-anim="fade-right"] {
    transform: translateX(40px);
}

.malp-animate[data-anim="fade-left"] {
    transform: translateX(-40px);
}

.malp-animate.malp-visible {
    opacity: 1;
    transform: translate(0, 0);
}

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

@keyframes malp-pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes malp-scroll-down {
    0% { opacity: 0; transform: translateY(-8px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

@keyframes malp-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
}

/* === GRADIENT TEXT === */
.malp-gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === GLOW EFFECTS === */
.malp-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    animation: malp-pulse-glow 8s ease-in-out infinite;
}

.malp-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
    top: -200px; left: -100px;
}

.malp-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(236,72,153,0.15), transparent 70%);
    top: 100px; right: -150px;
    animation-delay: 3s;
}

.malp-glow-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(20,184,166,0.1), transparent 70%);
    bottom: -100px; left: 30%;
    animation-delay: 5s;
}

.malp-glow-4 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
    top: 0; right: -100px;
}

.malp-glow-5 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(236,72,153,0.1), transparent 70%);
    bottom: 0; left: -100px;
    animation-delay: 4s;
}

.malp-glow-6 {
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.1), transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.malp-glow-7 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
    top: -200px; left: -200px;
}

.malp-glow-8 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(236,72,153,0.15), transparent 70%);
    bottom: -200px; right: -200px;
    animation-delay: 3s;
}

.malp-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

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

.malp-nav.malp-nav-scrolled {
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.malp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.malp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
}

.malp-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
}

.malp-nav-links {
    display: flex;
    gap: 32px;
}

.malp-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.malp-nav-links a:hover {
    color: var(--text-primary);
}

.malp-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition);
    border-radius: 2px;
}

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

.malp-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.malp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.malp-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* === BUTTONS === */
.malp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.malp-btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.malp-btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.malp-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(99,102,241,0.3);
}

.malp-btn-primary:hover {
    box-shadow: 0 8px 32px rgba(99,102,241,0.5);
    transform: translateY(-2px);
    color: #fff;
}

.malp-btn-ghost {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.malp-btn-ghost:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.malp-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.malp-btn-outline:hover {
    background: var(--bg-glass);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.malp-btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
}

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

.malp-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.malp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: malp-badge-pulse 3s ease-in-out infinite;
}

.malp-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.malp-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.malp-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

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

.malp-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.malp-trust-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    font-size: 0.9rem;
}

.malp-trust-stars span {
    color: var(--text-secondary);
    margin-left: 8px;
    font-weight: 600;
}

.malp-trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.malp-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === PHONE MOCKUP === */
.malp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.malp-phone-mockup {
    position: relative;
    animation: malp-float 6s ease-in-out infinite;
}

.malp-phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,0.1);
    padding: 12px;
    position: relative;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.1);
}

.malp-frame-sm {
    width: 240px;
    height: 500px;
    border-radius: 36px;
}

.malp-phone-notch {
    width: 120px;
    height: 28px;
    background: #0a0a0f;
    border-radius: 0 0 20px 20px;
    margin: 0 auto 16px;
    position: relative;
}

.malp-phone-notch::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #1a1a2e;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 30px;
    box-shadow: 0 0 4px rgba(99,102,241,0.5);
}

.malp-phone-screen {
    background: linear-gradient(180deg, #0f0f1a, #1a1a2e);
    border-radius: 28px;
    padding: 20px 16px;
    height: calc(100% - 44px);
    overflow: hidden;
}

.malp-phone-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99,102,241,0.3), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

/* Phone Screen Content */
.malp-screen-header {
    margin-bottom: 20px;
}

.malp-screen-greeting {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.malp-screen-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 4px;
}

.malp-screen-stats {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.malp-screen-stat {
    flex: 1;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 8px;
    text-align: center;
}

.malp-stat-active {
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(236,72,153,0.1));
    border-color: rgba(99,102,241,0.3);
}

.malp-stat-num {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.malp-stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.malp-screen-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 10px;
}

.malp-screen-card-tag {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(99,102,241,0.2);
    color: var(--primary-light);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.malp-tag-green {
    background: rgba(20,184,166,0.2);
    color: var(--teal);
}

.malp-screen-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.malp-screen-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.malp-screen-avatars {
    display: flex;
}

.malp-mini-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    margin-left: -6px;
    border: 2px solid #1a1a2e;
}

.malp-mini-avatar:first-child {
    margin-left: 0;
}

.malp-screen-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.malp-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.malp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--teal));
    border-radius: 4px;
}

/* Floating Cards */
.malp-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(20,20,35,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.malp-float-1 {
    top: 15%;
    right: -20px;
}

.malp-float-1 i {
    color: #22c55e;
    font-size: 1.1rem;
}

.malp-float-2 {
    bottom: 20%;
    left: -20px;
}

.malp-float-2 i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

/* Scroll Indicator */
.malp-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.malp-scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: 12px;
    position: relative;
}

.malp-scroll-indicator::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: malp-scroll-down 2s ease-in-out infinite;
}

/* === LOGOS === */
.malp-logos {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.malp-logos-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 32px;
}

.malp-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.malp-logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
}

.malp-logo-item:hover {
    opacity: 1;
    color: var(--text-secondary);
}

.malp-logo-item i {
    font-size: 1.4rem;
}

/* === SECTION HEADERS === */
.malp-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.malp-section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(236,72,153,0.1));
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.malp-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.malp-section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === FEATURES === */
.malp-features {
    padding: 120px 0;
    position: relative;
}

.malp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.malp-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.malp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.malp-feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.malp-feature-card:hover::before {
    opacity: 1;
}

.malp-feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(99,102,241,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--icon-color, var(--primary));
    margin-bottom: 20px;
    transition: var(--transition);
}

.malp-feature-card:hover .malp-feature-icon {
    transform: scale(1.1);
}

.malp-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.malp-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === APP PREVIEW === */
.malp-preview {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.malp-preview-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.malp-preview-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.malp-tab {
    padding: 10px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.malp-tab:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.malp-tab-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
}

.malp-preview-showcase {
    position: relative;
}

.malp-preview-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    perspective: 1000px;
}

.malp-preview-phone-left,
.malp-preview-phone-right {
    opacity: 0.6;
    transform: scale(0.85);
    transition: var(--transition-slow);
}

.malp-preview-phone-left:hover,
.malp-preview-phone-right:hover {
    opacity: 0.85;
    transform: scale(0.9);
}

.malp-preview-phone-center {
    position: relative;
    z-index: 2;
}

/* Preview Screen Content */
.malp-pscreen-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.malp-pscreen-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.malp-pscreen-active {
    color: var(--text-primary);
    font-weight: 500;
}

.malp-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    flex-shrink: 0;
}

.malp-check.done {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: #fff;
}

.malp-pscreen-chart {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

.malp-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    margin-bottom: 8px;
}

.malp-chart-bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(99,102,241,0.4), rgba(99,102,241,0.1));
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
}

.malp-bar-active {
    background: linear-gradient(180deg, var(--primary), rgba(99,102,241,0.3));
}

.malp-chart-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
}

.malp-pscreen-metrics {
    display: flex;
    gap: 8px;
}

.malp-pmetric {
    flex: 1;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
}

.malp-pmetric-val {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.malp-pmetric-lbl {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Chat Screen */
.malp-chat-msg {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 12px;
}

.malp-chat-self {
    justify-content: flex-end;
}

.malp-chat-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.malp-chat-bubble {
    padding: 8px 12px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 12px 12px 12px 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    max-width: 80%;
}

.malp-chat-self .malp-chat-bubble {
    background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(99,102,241,0.1));
    border-color: rgba(99,102,241,0.2);
    border-radius: 12px 12px 4px 12px;
}

/* === HOW IT WORKS === */
.malp-how {
    padding: 120px 0;
    position: relative;
}

.malp-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.malp-step {
    text-align: center;
    max-width: 280px;
    position: relative;
}

.malp-step-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(236,72,153,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.malp-step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(236,72,153,0.1));
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-light);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.malp-step:hover .malp-step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(99,102,241,0.2);
}

.malp-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.malp-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.malp-step-connector {
    width: 80px;
    flex-shrink: 0;
    opacity: 0.5;
}

.malp-step-connector svg {
    width: 100%;
    height: 20px;
}

/* === STATS === */
.malp-stats {
    padding: 80px 0;
    position: relative;
}

.malp-stats-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.malp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.malp-stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.malp-stat-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.malp-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    display: inline;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.malp-stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.malp-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* === TESTIMONIALS === */
.malp-testimonials {
    padding: 120px 0;
    position: relative;
}

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

.malp-testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
}

.malp-testimonial-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.malp-testimonial-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.malp-testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.malp-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.malp-author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.malp-author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === PRICING === */
.malp-pricing {
    padding: 120px 0;
    position: relative;
}

.malp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.malp-pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
}

.malp-pricing-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.malp-pricing-popular {
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(236,72,153,0.05));
    border-color: rgba(99,102,241,0.3);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

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

.malp-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.malp-pricing-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.malp-pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.malp-pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.malp-price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.malp-price-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.malp-price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.malp-pricing-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.malp-pricing-features {
    margin-bottom: 28px;
}

.malp-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.malp-pricing-features li i {
    font-size: 0.8rem;
    color: #22c55e;
    width: 16px;
    text-align: center;
}

.malp-feature-disabled {
    opacity: 0.4;
}

.malp-feature-disabled i {
    color: var(--text-muted) !important;
}

/* === FAQ === */
.malp-faq {
    padding: 120px 0;
    position: relative;
}

.malp-faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.malp-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.malp-faq-item:hover {
    border-color: var(--border-hover);
}

.malp-faq-item.malp-faq-open {
    border-color: rgba(99,102,241,0.3);
    background: var(--bg-card);
}

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

.malp-faq-question i {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.malp-faq-open .malp-faq-question i {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.malp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.malp-faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.malp-faq-open .malp-faq-answer {
    max-height: 300px;
}

/* === FINAL CTA === */
.malp-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.malp-cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.malp-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.malp-cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.malp-cta-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.malp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.malp-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.malp-store-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.malp-store-btn i {
    font-size: 1.8rem;
}

.malp-store-text {
    text-align: left;
}

.malp-store-small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1;
}

.malp-store-big {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.malp-cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* === FOOTER === */
.malp-footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

.malp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.malp-footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.malp-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.malp-footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 1rem;
}

.malp-footer-social a:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.malp-footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.malp-footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 6px 0;
    transition: var(--transition);
}

.malp-footer-col a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.malp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

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

.malp-footer-legal {
    display: flex;
    gap: 24px;
}

.malp-footer-legal a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.malp-footer-legal a:hover {
    color: var(--text-primary);
}

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

    .malp-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .malp-trust {
        align-items: center;
    }

    .malp-trust-badges {
        justify-content: center;
    }

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

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

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

    .malp-pricing-popular {
        transform: scale(1);
    }

    .malp-pricing-popular:hover {
        transform: translateY(-4px);
    }

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

    .malp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .malp-steps {
        flex-direction: column;
        gap: 24px;
    }

    .malp-step-connector {
        transform: rotate(90deg);
        width: 40px;
    }
}

@media (max-width: 768px) {
    .malp-nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10,10,15,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

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

    .malp-nav-links a {
        font-size: 1.3rem;
    }

    .malp-hamburger {
        display: flex;
        z-index: 1001;
    }

    .malp-nav-actions .malp-btn {
        display: none;
    }

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

    .malp-hero-title {
        font-size: 2.2rem;
    }

    .malp-hero-subtitle {
        font-size: 1rem;
    }

    .malp-features-grid,
    .malp-testimonials-grid,
    .malp-pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .malp-preview-phone-left,
    .malp-preview-phone-right {
        display: none;
    }

    .malp-preview-tabs {
        flex-wrap: wrap;
    }

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

    .malp-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .malp-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .malp-floating-card {
        display: none;
    }

    .malp-hero-scroll {
        display: none;
    }

    .malp-logos-grid {
        gap: 24px;
    }

    .malp-section-header {
        margin-bottom: 48px;
    }

    .malp-features,
    .malp-preview,
    .malp-how,
    .malp-testimonials,
    .malp-pricing,
    .malp-faq,
    .malp-cta {
        padding: 80px 0;
    }

    .malp-phone-frame {
        width: 240px;
        height: 500px;
        border-radius: 36px;
    }
}

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

    .malp-section-title {
        font-size: 1.6rem;
    }

    .malp-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .malp-btn-lg {
        width: 100%;
        justify-content: center;
    }

    .malp-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .malp-store-btn {
        width: 100%;
        justify-content: center;
    }

    .malp-stat-value {
        font-size: 2rem;
    }

    .malp-phone-frame {
        width: 220px;
        height: 460px;
        border-radius: 32px;
    }
}
