/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #86868b;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    margin-top: 3rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1d1d1f;
    color: white;
    border: 2px solid #1d1d1f;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

.btn-link {
    color: #1d1d1f;
    border: 2px solid #1d1d1f;
}

.btn-link:hover {
    background-color: rgba(29, 29, 31, 0.05);
}

.arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-link:hover .arrow {
    transform: translateX(4px);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.feature p {
    color: #86868b;
    line-height: 1.5;
}

/* Showcase Section */
.showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.showcase-content {
    text-align: center;
    max-width: 600px;
}

.showcase h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
}

.showcase p {
    font-size: 1.25rem;
    color: #86868b;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.showcase-image {
    width: 100%;
    max-width: 1000px;
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Call to Action */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #f5f5f7;
    border-radius: 12px;
    max-width: 1200px;
    margin: 4rem auto;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
}

.cta p {
    font-size: 1.25rem;
    color: #86868b;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero {
        padding: 8rem 2rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .showcase {
        flex-direction: row;
        text-align: left;
    }
    
    .showcase:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .showcase-content {
        text-align: left;
        flex: 1;
    }
    
    .showcase-image {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        text-align: left;
        gap: 4rem;
    }
    
    .hero-content {
        flex: 1;
        margin-bottom: 0;
        text-align: left;
        align-self: center;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-image {
        flex: 1;
        margin-top: 0;
    }
}