/* Home Page Specific Styles */

.app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 180px;
    justify-content: center;
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.register-button {
    background: linear-gradient(45deg, #10b981, #059669);
    border: none;
}

.register-button:hover {
    background: linear-gradient(45deg, #059669, #047857);
}

/* Features Section */
.features-section {
    text-align: center;
    background: #ffffff;
}

.features-section h2 {
    color: #1e293b;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.feature-card h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
}

/* Benefits Section */
.benefits-section {
    background: #f8fafc;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
    font-weight: 700;
}

.benefits-section .feature-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.benefits-section .feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #059669, #047857);
}

.benefits-section .feature-card:hover {
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 25px;
    font-weight: 700;
}

.cta p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Page Content Toggle */
.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

/* Lists */
.bullet-list {
    text-align: left;
    max-width: 800px;
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.bullet-list li {
    margin-bottom: 15px;
    color: #64748b;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.2;
}

.bullet-list strong {
    color: #1e293b;
}

.checkmark-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 30px auto 0;
}

.checkmark-list li {
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    color: #1e293b;
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
}

.checkmark-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.4em;
    line-height: 1.2;
}

/* Steps Section */
.steps-section {
    background: #f8fafc;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-card h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    margin-bottom: 10px;
    color: #1e293b;
}

.step-card p {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: #64748b;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .app-buttons {
        justify-content: center;
        gap: 12px;
    }

    .app-button {
        min-width: 160px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-section {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .bullet-list {
        margin: 20px 0;
    }

    .bullet-list li {
        font-size: 1rem;
        padding-left: 20px;
    }

    .checkmark-list {
        margin: 25px auto 0;
        padding: 0 10px;
    }

    .checkmark-list li {
        font-size: 1.05rem;
        padding-left: 30px;
        margin-bottom: 15px;
    }

    .cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .app-button {
        min-width: 140px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}
