/* AppZen Landing Page Styles */

/* Hero Section */
.appzen-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(var(--base-rgb), 0.05) 0%, rgba(var(--base-rgb-2), 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.appzen-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--base-rgb), 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    margin-bottom: 20px;
}

.badge-text {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--base-rgb), 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--base-1);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-rating,
.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--base-1);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.hero-cta {
    margin-top: 32px;
}

.btn-download-app {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(var(--base-rgb), 0.3);
}

.btn-download-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(var(--base-rgb), 0.4);
    color: white;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* About Section */
.appzen-about-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(var(--base-rgb), 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--base-1);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 32px;
}

.about-features {
    margin: 32px 0;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.btn-learn-more {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--base-1);
    border: 2px solid var(--base-1);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: var(--base-1);
    color: white;
}

.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.appzen-features-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 48px 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-card-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: white;
}

.feature-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.feature-card-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.feature-card-description {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-card-link {
    color: var(--base-1);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-card-link:hover {
    color: var(--base-2);
}

/* Benefits Section */
.appzen-benefits-section {
    padding: 100px 0;
    background: white;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #f8fafc;
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.benefits-footer {
    margin-top: 60px;
}

.rating-display {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--base-1);
}

.rating-text {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* Why Choose Section */
.appzen-why-choose-section {
    padding: 100px 0;
    background: #f8fafc;
}

.why-choose-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.why-choose-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.why-choose-icon svg {
    width: 32px;
    height: 32px;
}

.why-choose-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.why-choose-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.btn-start-journey {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(var(--base-rgb), 0.3);
}

.btn-start-journey:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(var(--base-rgb), 0.4);
    color: white;
}

/* How It Works Section */
.appzen-how-it-works-section {
    padding: 100px 0;
    background: white;
}

.how-it-works-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(var(--base-rgb), 0.1);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Key Facts Section */
.appzen-key-facts-section {
    padding: 100px 0;
    background: #f8fafc;
}

.key-fact-card {
    background: white;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.key-fact-card .feature-card-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.key-fact-card .feature-card-icon svg {
    width: 32px;
    height: 32px;
}

.key-fact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.key-fact-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--base-1);
    line-height: 1;
    margin-bottom: 20px;
}

.key-fact-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.key-fact-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.appzen-testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.testimonial-stat {
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--base-1);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.testimonials-slider {
    margin-top: 40px;
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-content {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    height: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.author-role {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Download Section */
.appzen-download-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(var(--base-rgb), 0.1) 0%, rgba(var(--base-rgb-2), 0.05) 100%);
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.download-description {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.download-btn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-label {
    font-size: 12px;
    color: #64748b;
    line-height: 1;
    margin-bottom: 4px;
}

.download-store {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .appzen-hero-section,
    .appzen-about-section,
    .appzen-features-section,
    .appzen-benefits-section,
    .appzen-why-choose-section,
    .appzen-how-it-works-section,
    .appzen-key-facts-section,
    .appzen-testimonials-section,
    .appzen-download-section {
        padding: 60px 0;
    }

    .hero-stats {
        gap: 30px;
    }

    .testimonials-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title,
    .section-title {
        font-size: 32px;
    }

    .hero-description,
    .section-description {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .testimonials-stats {
        flex-direction: column;
        gap: 30px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .download-btn {
        justify-content: center;
    }

    .feature-card,
    .benefit-card,
    .why-choose-card,
    .key-fact-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .appzen-hero-section {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-rating,
    .stat-number {
        font-size: 24px;
    }

    .key-fact-number {
        font-size: 40px;
    }

    .stat-value {
        font-size: 36px;
    }
}

