/* Apple-style Home */

.hero-section {
    position: relative;
    width: 100%;
    height: 90vh; /* Large hero */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f7; /* Apple light gray bg */
    overflow: hidden;
    padding-top: 60px; /* Space for fixed header */
}

.hero-content {
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.07143;
    font-weight: 700;
    letter-spacing: -0.005em;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.hero-subtitle {
    font-size: 28px;
    line-height: 1.10722;
    font-weight: 400;
    letter-spacing: .004em;
    margin-bottom: 30px;
    color: #1d1d1f;
}

.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.1; /* Subtle background pattern or image */
    z-index: 1;
    pointer-events: none;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.feature-text {
    font-size: 17px;
    color: #86868b;
    line-height: 1.5;
}

/* Section Styling */
.section-white {
    background-color: #fff;
    padding: 80px 0;
}

.section-gray {
    background-color: #f5f5f7;
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1d1d1f;
}

/* Steps Section */
.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    font-size: 21px;
    font-weight: 600;
    color: #0071e3;
    margin-bottom: 10px;
    display: inline-block;
    border-bottom: 2px solid #0071e3;
    padding-bottom: 5px;
}

/* Testimonials */
.testimonial-card {
    background: #f5f5f7;
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: #86868b;
    font-weight: 500;
}

/* Stats */
.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.1;
}

.stat-label {
    font-size: 19px;
    font-weight: 600;
    color: #86868b;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 21px;
    }
    .section-title {
        font-size: 32px;
    }
}
