/* TendaPoa Landing Page CSS - Mobile First Responsive */
:root {
    --primary: #16A34A;
    --primary-dark: #0F7A35;
    --primary-light: #22C55E;
    --gold: #F59E0B;
    --purple: #8B5CF6;
    --cyan: #06B6D4;
    --text-dark: #0B1220;
    --text-gray: #475569;
    --bg-light: #F0FDF4;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #16A34A 0%, #0F7A35 100%);
    --gradient-cta: linear-gradient(135deg, #16A34A 0%, #0D9488 50%, #0891B2 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --shadow: 0 10px 40px rgba(22, 163, 74, 0.15);
    --shadow-lg: 0 25px 60px rgba(22, 163, 74, 0.2);
    --shadow-color: 0 10px 40px rgba(22, 163, 74, 0.3);
    --radius: 20px;
    --radius-sm: 12px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ===== MODAL ===== */
.download-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.download-modal.show { opacity: 1; visibility: visible; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 32px 24px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--cyan), var(--purple), var(--gold));
    border-radius: 24px 24px 0 0;
}
.download-modal.show .modal-content { transform: scale(1) translateY(0); }

.modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s;
}
.modal-close:hover { background: #ef4444; color: white; }

.modal-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.icon-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(22,163,74,0.3);
    animation: pulse-ring 2s infinite;
}
.ring-1 { width: 100%; height: 100%; }
.ring-2 { width: 75%; height: 75%; animation-delay: 0.3s; }
.ring-3 { width: 50%; height: 50%; animation-delay: 0.6s; }
@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}
.main-icon { font-size: 40px; z-index: 1; }

.modal-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.modal-content > p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.modal-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 14px;
    text-align: left;
}
.modal-feature span:first-child { font-size: 20px; }

.modal-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--shadow-color);
}
.modal-download-btn i { font-size: 22px; }

.modal-version {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-gray);
}
.modal-skip {
    margin-top: 12px;
    padding: 8px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 13px;
    cursor: pointer;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    position: fixed;
    bottom: 20px; right: 20px;
    z-index: 1000;
    display: flex;
    gap: 4px;
    padding: 4px;
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow);
}
.lang-btn {
    padding: 8px 14px;
    border: none;
    background: transparent;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}
.lang-btn.active { background: var(--primary); color: white; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}
.logo span { color: var(--text-dark); }

.nav-links { display: none; }
.escrow-badge { display: none; }

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

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 16px; right: 16px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    gap: 12px;
}
.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-color);
}
.btn-glass {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(22,163,74,0.3);
    color: var(--primary);
}
.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow);
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-glow { animation: glow 2s infinite; }
@keyframes glow {
    0%, 100% { box-shadow: 0 8px 25px rgba(22,163,74,0.4); }
    50% { box-shadow: 0 8px 40px rgba(22,163,74,0.6); }
}

/* ===== HERO ===== */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
    position: relative;
    overflow: hidden;
}
.hero-particles, .hero-gradient { display: none; }

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(22,163,74,0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.hero-content p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 28px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 32px;
}
.hero-cta .btn { width: 100%; }

.hero-stats-mini {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.stat-bubble {
    padding: 14px 18px;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: center;
    flex: 1;
    min-width: 100px;
}
.stat-bubble strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}
.stat-bubble span {
    font-size: 11px;
    color: var(--text-gray);
}

/* Phone Mockup - Hidden on mobile */
.hero-visual { display: none; }
.floating-card { display: none; }
.scroll-indicator { display: none; }

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--gradient-primary);
    padding: 24px 0;
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    color: white;
    font-size: 12px;
    font-weight: 500;
}
.trust-icon-box {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(22,163,74,0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.section-header p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== SERVICES ===== */
.services { background: var(--bg-light); }
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.service-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}
.service-icon-box {
    width: 60px; height: 60px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.service-icon { font-size: 30px; }
.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}
.service-card p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 14px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

/* ===== STEPS ===== */
.steps-container { position: relative; }
.steps-line { display: none; }
.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 16px;
}
.step-number {
    width: 44px; height: 44px;
    background: white;
    border: 3px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}
.step-icon { display: none; }
.step-content { flex: 1; }
.step h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.step p {
    font-size: 13px;
    color: var(--text-gray);
}

/* ===== DOWNLOAD CTA MID ===== */
.download-cta-mid { padding: 20px 0; }
.download-cta-box {
    background: var(--gradient-cta);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
}
.cta-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}
.cta-left p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 20px;
}
.cta-right { margin-top: 24px; }
.download-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.d-stat {
    padding: 16px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    text-align: center;
}
.d-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: white;
}
.d-stat span {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
}

/* ===== BENEFITS ===== */
.benefits { background: var(--bg-light); }
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.benefits-title { margin-bottom: 16px; }
.benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}
.benefits-badge.muhitaji {
    background: rgba(22,163,74,0.1);
    color: var(--primary);
}
.benefits-badge.mfanyakazi {
    background: rgba(245,158,11,0.1);
    color: var(--gold);
}
.benefit-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow);
    margin-bottom: 12px;
}
.benefit-icon {
    width: 48px; height: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.benefit-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.benefit-text p {
    font-size: 13px;
    color: var(--text-gray);
}

/* ===== STATS ===== */
.stats-section {
    background: var(--gradient-cta);
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.stat-card {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    color: white;
}
.stat-icon-wrap { font-size: 32px; margin-bottom: 10px; }
.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
}
.stat-label { font-size: 12px; opacity: 0.9; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: white; }
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testimonial-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 16px;
    position: relative;
}
.testimonial-quote {
    position: absolute;
    top: 12px; right: 16px;
    font-size: 48px;
    font-family: serif;
    color: rgba(22,163,74,0.1);
}
.testimonial-rating { margin-bottom: 14px; font-size: 18px; }
.star-filled { color: var(--gold); }
.star-empty { color: #e2e8f0; }
.testimonial-text {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.6;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px; height: 44px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}
.author-info span {
    font-size: 12px;
    color: var(--text-gray);
}

/* ===== FAQ ===== */
.faq { background: white; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 18px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}
.faq-question i {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.2s;
}
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p {
    padding: 0 18px 18px;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-cta);
    text-align: center;
    position: relative;
}
.cta-bg-shapes { display: none; }
.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
}
.cta-content > p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 28px;
}
.cta-buttons .btn { width: 100%; max-width: 300px; }
.cta-version {
    margin-top: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

/* ===== FOOTER ===== */
.footer {
    background: #0B1220;
    color: white;
    padding: 50px 0 30px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    margin-bottom: 32px;
}
.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-top: 14px;
}
.footer-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
}
.footer-links h4,
.footer-contact h4,
.footer-download h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 10px;
}
.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.footer-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--gradient-primary);
    border-radius: 14px;
    text-decoration: none;
    color: white;
}
.footer-download-btn i { font-size: 24px; }
.footer-download-btn small { font-size: 11px; opacity: 0.8; }
.footer-download-btn strong { font-size: 16px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

/* ========================================= */
/* TABLET STYLES (768px+) */
/* ========================================= */
@media (min-width: 768px) {
    .container { padding: 0 24px; }
    
    .hero { padding: 120px 0 80px; }
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }
    .hero-cta .btn { width: auto; }
    
    .trust-items {
        display: flex;
        justify-content: space-around;
    }
    .trust-item {
        flex-direction: row;
        font-size: 14px;
    }
    
    .section { padding: 80px 0; }
    .section-header h2 { font-size: 32px; }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    .footer-social { justify-content: flex-start; }
    .footer-contact p { justify-content: flex-start; }
}

/* ========================================= */
/* DESKTOP STYLES (1024px+) */
/* ========================================= */
@media (min-width: 1024px) {
    .container { padding: 0 32px; }
    
    /* Navbar Desktop */
    .mobile-menu-btn { display: none; }
    .nav-links {
        display: flex;
        gap: 32px;
    }
    .nav-links a {
        padding: 0;
        border: none;
        font-size: 14px;
    }
    .nav-links a:hover { color: var(--primary); }
    .escrow-badge {
        display: inline-block;
        background: var(--gradient-gold);
        color: white;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 12px;
        font-weight: 600;
    }
    
    /* Hero Desktop */
    .hero {
        padding: 140px 0 100px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    .hero-particles { display: block; }
    .hero-gradient { display: block; }
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
        align-items: center;
    }
    .hero-content h1 { font-size: 48px; }
    .hero-content p { font-size: 18px; }
    .hero-cta { justify-content: flex-start; }
    .hero-stats-mini { justify-content: flex-start; }
    
    .hero-visual { display: flex; justify-content: center; }
    .phone-mockup {
        width: 280px;
        background: linear-gradient(180deg, #2D3748 0%, #1A202C 100%);
        border-radius: 40px;
        padding: 12px;
        box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    }
    .phone-notch {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 26px;
        background: #1A202C;
        border-radius: 15px;
        z-index: 10;
    }
    .phone-screen {
        width: 100%;
        height: 540px;
        background: white;
        border-radius: 32px;
        overflow: hidden;
    }
    .app-preview { padding: 48px 16px 16px; }
    .app-header-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
        font-size: 16px;
        font-weight: 700;
        color: var(--primary);
    }
    .app-greeting { margin-bottom: 14px; }
    .app-greeting span { font-size: 13px; color: var(--text-gray); }
    .app-greeting strong { display: block; font-size: 20px; }
    .app-search {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px;
        background: #f1f5f9;
        border-radius: 12px;
        margin-bottom: 16px;
        font-size: 13px;
        color: var(--text-gray);
    }
    .app-services-mini {
        display: flex;
        justify-content: space-between;
        margin-bottom: 16px;
    }
    .mini-service {
        width: 48px; height: 48px;
        background: var(--bg-light);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }
    .app-card-demo {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px;
        background: white;
        border-radius: 14px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        margin-bottom: 14px;
    }
    .card-avatar {
        width: 40px; height: 40px;
        background: var(--gradient-primary);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 13px;
    }
    .card-info strong { display: block; font-size: 13px; }
    .card-info span { font-size: 11px; color: var(--text-gray); }
    .card-price { margin-left: auto; font-weight: 700; color: var(--primary); font-size: 13px; }
    .app-btn-demo {
        width: 100%;
        padding: 14px;
        background: var(--gradient-primary);
        color: white;
        text-align: center;
        border-radius: 12px;
        font-weight: 700;
        font-size: 14px;
    }
    
    .floating-card {
        display: flex;
        position: absolute;
        background: white;
        padding: 12px 18px;
        border-radius: 14px;
        box-shadow: var(--shadow-lg);
        align-items: center;
        gap: 12px;
        animation: float 3s ease-in-out infinite;
    }
    .floating-emoji { font-size: 24px; }
    .floating-card strong { display: block; font-size: 13px; }
    .floating-card small { font-size: 11px; color: var(--text-gray); }
    .card-1 { top: 15%; right: -10px; }
    .card-2 { bottom: 30%; left: -20px; animation-delay: 1s; }
    .card-3 { bottom: 12%; right: 10px; animation-delay: 2s; }
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-12px); }
    }
    
    .scroll-indicator {
        display: flex;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;
        gap: 6px;
        color: var(--text-gray);
        font-size: 12px;
        animation: bounce 2s infinite;
    }
    @keyframes bounce {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-8px); }
    }
    
    .section { padding: 100px 0; }
    .section-header h2 { font-size: 40px; }
    
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .service-card { padding: 32px; }
    
    .steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .step {
        flex-direction: column;
        text-align: center;
        background: transparent;
        padding: 0;
    }
    .step-number { margin: 0 auto 16px; }
    .step-icon { display: block; font-size: 36px; margin-bottom: 12px; }
    .steps-line {
        display: block;
        position: absolute;
        top: 50px;
        left: 15%;
        right: 15%;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--cyan), var(--purple), var(--gold));
        border-radius: 2px;
        z-index: 0;
    }
    
    .download-cta-box {
        padding: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    .cta-left { max-width: 500px; }
    .cta-left h2 { font-size: 32px; }
    .cta-right { margin-top: 0; }
    .d-stat { padding: 24px 32px; }
    .d-stat strong { font-size: 32px; }
    
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .stat-card { padding: 32px; }
    .stat-value { font-size: 42px; }
    
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    
    .cta-bg-shapes { display: block; }
    .cta-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
    }
    .s1 { width: 300px; height: 300px; top: -100px; left: -100px; }
    .s2 { width: 200px; height: 200px; bottom: -50px; right: 10%; }
    .s3 { width: 150px; height: 150px; top: 30%; right: -50px; }
    .cta-content h2 { font-size: 42px; }
    .cta-content > p { font-size: 18px; }
    
    .footer { padding: 80px 0 40px; }
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }
}
