/* ===== Landing Page 2 - ManyChat-inspired Gen Z Design ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #2f5eb5;
    --primary-light: #4a89dc;
    --primary-dark: #1e3799;
    --accent: #F59E0B;
    --accent-pink: #4a69bd;
    --bg-dark: #0c2461;
    --bg-card: rgba(255,255,255,0.06);
    --text-white: #FFFFFF;
    --text-muted: #A1A1AA;
    --text-light: #D4D4D8;
    --gradient-hero: linear-gradient(135deg, #1e3799 0%, #2f5eb5 50%, #4a89dc 100%);
    --gradient-purple: linear-gradient(135deg, #1e3799, #0c2461);
    --glass: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-glow: 0 0 60px rgba(30,55,153,0.3);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body.landing2-body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ===== NAV ===== */
.l2-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(15,11,26,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}
.l2-nav .l2-container { display: flex; align-items: center; justify-content: space-between; }
.l2-nav-logo img { height: 44px; width: 44px; }
.l2-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.l2-nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--transition); }
.l2-nav-links a:hover { color: var(--text-white); }
.l2-nav-actions { display: flex; gap: 12px; align-items: center; }
.l2-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-full); font-weight: 700; font-size: 14px; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; font-family: inherit; }
.l2-btn-outline { background: transparent; color: var(--text-white); border: 1.5px solid var(--glass-border); }
.l2-btn-outline:hover { border-color: var(--primary-light); background: var(--glass); }
.l2-btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 20px rgba(30,55,153,0.4); }
.l2-btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(30,55,153,0.5); }
.l2-btn-white { background: white; color: var(--bg-dark); font-weight: 800; }
.l2-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.2); }
.l2-btn-lg { padding: 18px 40px; font-size: 16px; }
.l2-hamburger { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

/* ===== HERO ===== */
.l2-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--primary);
    background: linear-gradient(160deg, #2f5eb5 0%, #1e3799 40%, #0c2461 100%);
}
.l2-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.l2-hero::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}
.l2-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.l2-hero h1 {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: white;
}
.l2-hero h1 .l2-highlight {
    position: relative;
    display: inline-block;
}
.l2-hero h1 .l2-highlight::after {
    content: '';
    position: absolute; bottom: 4px; left: 0; right: 0; height: 12px;
    background: var(--accent);
    opacity: 0.6;
    border-radius: 4px;
    z-index: -1;
}
.l2-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.l2-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.l2-hero-glow {
    position: absolute; top: 50%; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(74,137,220,0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: l2-pulse 6s ease-in-out infinite;
}
@keyframes l2-pulse { 0%,100%{ opacity: 0.5; transform: scale(1); } 50%{ opacity: 0.8; transform: scale(1.1); } }

/* ===== TRUST BAR ===== */
.l2-trust {
    padding: 60px 0;
    border-bottom: 1px solid var(--glass-border);
}
.l2-trust-inner {
    display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.l2-trust-item { display: flex; align-items: center; gap: 12px; }
.l2-trust-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--glass); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; }
.l2-trust-icon img { width: 24px; height: 24px; border-radius: 50%; }
.l2-trust-text { font-size: 14px; color: var(--text-muted); }
.l2-trust-text strong { color: var(--text-white); display: block; font-size: 15px; }

/* ===== SECTION HEADINGS ===== */
.l2-section { padding: 100px 0; }
.l2-section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.l2-section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: var(--radius-full);
    background: rgba(30,55,153,0.15); color: var(--primary-light);
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 20px;
    border: 1px solid rgba(30,55,153,0.2);
}
.l2-section-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}
.l2-section-desc { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

/* ===== SERVICES GRID ===== */
.l2-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.l2-service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.l2-service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-hero);
    opacity: 0;
    transition: var(--transition);
}
.l2-service-card:hover { transform: translateY(-6px); border-color: rgba(30,55,153,0.3); box-shadow: var(--shadow-glow); }
.l2-service-card:hover::before { opacity: 1; }
.l2-service-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: rgba(30,55,153,0.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 24px;
}
.l2-service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.l2-service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== SPLIT FEATURE ===== */
.l2-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.l2-split.reverse { direction: rtl; }
.l2-split.reverse > * { direction: ltr; }
.l2-split-text .l2-section-tag { margin-bottom: 16px; }
.l2-split-text h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900; letter-spacing: -1px;
    line-height: 1.1; margin-bottom: 16px;
}
.l2-split-text p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.l2-split-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.l2-split-visual img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.l2-split-visual::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(30,55,153,0.25), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

/* ===== BILLS ICONS ===== */
.l2-bills-icons {
    display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px;
}
.l2-bills-icons img {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--glass); border: 1px solid var(--glass-border);
    padding: 8px; transition: var(--transition);
}
.l2-bills-icons img:hover { transform: scale(1.15); border-color: var(--primary-light); }

/* ===== STATS ===== */
.l2-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    padding: 80px 0;
}
.l2-stat {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.l2-stat:hover { transform: translateY(-4px); border-color: rgba(30,55,153,0.3); }
.l2-stat-num {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.l2-stat-label { font-size: 14px; color: var(--text-muted); margin-top: 8px; }

/* ===== CTA ===== */
.l2-cta {
    padding: 100px 0;
}
.l2-cta-box {
    background: var(--gradient-purple);
    border-radius: 32px;
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.l2-cta-box::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.l2-cta-box > * { position: relative; z-index: 2; }
.l2-cta-box h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900; letter-spacing: -1.5px;
    margin-bottom: 16px;
}
.l2-cta-box p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.l2-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== DOWNLOAD BTNS ===== */
.l2-download-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: white;
    text-decoration: none;
    font-weight: 600; font-size: 14px;
    transition: var(--transition);
}
.l2-download-btn:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.l2-download-btn i { font-size: 18px; }

/* ===== FEATURES LIST ===== */
.l2-feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.l2-feature-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; color: var(--text-light);
}
.l2-feature-list li::before {
    content: '✓';
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; min-width: 28px;
    border-radius: 50%;
    background: rgba(30,55,153,0.2);
    color: var(--primary-light);
    font-size: 13px; font-weight: 700;
}

/* ===== FOOTER ===== */
.l2-footer {
    border-top: 1px solid var(--glass-border);
    padding: 48px 0 32px;
}
.l2-footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.l2-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.l2-footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: var(--transition); }
.l2-footer-links a:hover { color: var(--text-white); }
.l2-footer-copy { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--glass-border); }
.l2-social-links { display: flex; gap: 12px; }
.l2-social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--glass); border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); transition: var(--transition);
    text-decoration: none; font-size: 16px;
}
.l2-social-links a:hover { color: white; background: var(--primary); border-color: var(--primary); }

/* ===== MOBILE MENU ===== */
.l2-mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(15,11,26,0.95); backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px;
}
.l2-mobile-menu.active { display: flex; }
.l2-mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.l2-mobile-menu-close { background: none; border: none; color: white; font-size: 28px; cursor: pointer; }
.l2-mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.l2-mobile-menu nav a {
    color: var(--text-light); text-decoration: none; font-size: 20px; font-weight: 600;
    padding: 16px 0; border-bottom: 1px solid var(--glass-border); transition: var(--transition);
}
.l2-mobile-menu nav a:hover { color: var(--primary-light); }
.l2-mobile-menu-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ===== ANIMATIONS ===== */
.l2-fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.l2-fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .l2-split { grid-template-columns: 1fr; gap: 48px; }
    .l2-split.reverse { direction: ltr; }
    .l2-split-visual { order: -1; }
    .l2-nav-links { display: none; }
    .l2-hamburger { display: block; }
}
@media (max-width: 768px) {
    .l2-hero { padding: 120px 0 80px; }
    .l2-hero h1 { font-size: 40px; letter-spacing: -1px; }
    .l2-hero-sub { font-size: 16px; }
    .l2-hero-actions { flex-direction: column; }
    .l2-hero-actions .l2-btn { width: 100%; justify-content: center; }
    .l2-stats { grid-template-columns: 1fr; gap: 16px; }
    .l2-section { padding: 64px 0; }
    .l2-cta-box { padding: 48px 24px; border-radius: 20px; }
    .l2-services-grid { grid-template-columns: 1fr; }
    .l2-trust-inner { gap: 24px; }
    .l2-footer-inner { flex-direction: column; text-align: center; }
    .l2-footer-links { justify-content: center; }
    .l2-social-links { justify-content: center; }
    .l2-nav-actions .l2-btn-outline,
    .l2-nav-actions .l2-btn-primary { display: none; }
    .l2-download-btn { width: 100%; justify-content: center; }
    .l2-cta-actions { flex-direction: column; align-items: center; }
}
