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

:root {
    --primary-50: #E3F2FD;
    --primary-100: #BBDEFB;
    --primary-200: #90CAF9;
    --primary-300: #64B5F6;
    --primary-400: #42A5F5;
    --primary-500: #2196F3;
    --primary-600: #1E88E5;
    --primary-700: #1976D2;
    --primary-800: #1565C0;
    --primary-900: #0D47A1;
    
    --success: #4CAF50;
    --success-light: #E8F5E9;
    
    --accent: #FF6B6B;
    --accent-light: #FFE5E5;
    
    --text-dark: #2C3E50;
    --text-medium: #546E7A;
    --text-light: #90A4AE;
    --bg-light: #F8F9FA;
    --border-light: #E0E0E0;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #FFFFFF;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Header Gradient Bar */
.gradient-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--primary-500), var(--success), var(--accent));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 0 0 50px 50px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.logo-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 40px rgba(33, 150, 243, 0.2),
        0 0 0 10px rgba(33, 150, 243, 0.05);
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

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

.logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.hero .subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.hero .description {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.4);
}

.download-btn.ios {
    background: linear-gradient(135deg, #555, #333);
}

.download-btn.ios:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.download-btn .material-icons {
    font-size: 28px;
}

/* Stats Section */
.stats {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--success));
    border-radius: 2px;
}

.stat-item h4 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-600), var(--success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.15rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-500), var(--success));
    border-radius: 3px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-100), transparent);
    border-radius: 0 0 0 100%;
    opacity: 0.5;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
    border-color: var(--primary-200);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.25);
    position: relative;
    z-index: 1;
}

.feature-icon .material-icons {
    color: white;
    font-size: 36px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Sections Grid */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.section-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-right: 5px solid var(--success);
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--success-light);
    border-radius: 0 0 0 100%;
}

.section-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.15);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success-light), var(--success-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border: 2px solid var(--success);
}

.section-icon .material-icons {
    color: var(--success);
    font-size: 30px;
}

.section-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.section-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Highlighted Features Section */
.highlighted-features {
    margin-bottom: 80px;
}

.highlight-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.highlight-row.reverse {
    flex-direction: row-reverse;
}

.highlight-content {
    flex: 1;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-badge .material-icons {
    font-size: 20px;
}

.highlight-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 25px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 12px;
    font-weight: 500;
}

.highlight-list li .material-icons {
    color: var(--success);
    font-size: 22px;
}

.highlight-image {
    flex: 0 0 400px;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.image-placeholder .material-icons {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.asset-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.debt-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.savings-bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Free Trial Banner */
.trial-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.trial-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.trial-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.trial-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trial-icon .material-icons {
    font-size: 48px;
    color: white;
}

.trial-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.trial-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.trial-image {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.trial-image .material-icons {
    font-size: 64px;
    color: white;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto 80px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-200);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question .material-icons {
    color: var(--primary-600);
    font-size: 28px;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.faq-answer {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1rem;
    margin: 0;
    padding-right: 43px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(33, 150, 243, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-links {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.footer-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.footer-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    color: var(--primary-600);
}

.footer-link .material-icons {
    font-size: 22px;
}

.copyright {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.3rem;
    }

    .hero .description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .download-btn {
        justify-content: center;
    }

    .logo-container {
        width: 120px;
        height: 120px;
    }

    .logo {
        width: 85px;
        height: 85px;
    }

    .stat-item h4 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1rem;
    }

    .stats {
        padding: 40px 25px;
    }

    .trial-banner {
        flex-direction: column;
        padding: 35px 25px;
    }

    .trial-content {
        flex-direction: column;
        text-align: center;
    }

    .trial-text h3 {
        font-size: 1.7rem;
    }

    .trial-text p {
        font-size: 1rem;
    }

    .faq-item {
        padding: 25px;
    }

    .highlight-row {
        flex-direction: column;
        padding: 35px 25px;
        gap: 30px;
    }

    .highlight-row.reverse {
        flex-direction: column;
    }

    .highlight-image {
        flex: 1;
        width: 100%;
    }

    .image-placeholder {
        height: 280px;
    }

    .image-placeholder .material-icons {
        font-size: 90px;
    }

    .highlight-content h3 {
        font-size: 1.6rem;
    }

    .highlight-content p {
        font-size: 1rem;
    }
}

    @media (max-width: 480px) {
        .container {
            padding: 15px;
        }

        .feature-card,
        .section-card {
            padding: 25px;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .hero .subtitle {
            font-size: 1.1rem;
        }

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

        .logo-container {
            width: 100px;
            height: 100px;
        }

        .logo {
            width: 70px;
            height: 70px;
        }

        .trial-banner {
            flex-direction: column;
            text-align: center;
            padding: 30px 20px;
        }

        .trial-content {
            flex-direction: column;
            text-align: center;
        }

        .trial-text h3 {
            font-size: 1.5rem;
        }

        .trial-text p {
            font-size: 1rem;
        }

        .trial-image {
            width: 100px;
            height: 100px;
        }

        .trial-image .material-icons {
            font-size: 52px;
        }

        .faq-question h3 {
            font-size: 1.1rem;
        }

        .faq-answer {
            font-size: 0.95rem;
        }

        .highlight-row {
            padding: 25px 20px;
        }

        .image-placeholder {
            height: 240px;
        }

        .image-placeholder .material-icons {
            font-size: 70px;
        }

        .highlight-content h3 {
            font-size: 1.4rem;
        }

        .highlight-content p {
            font-size: 0.95rem;
        }

        .highlight-list li {
            font-size: 0.9rem;
        }
    }
