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

.hero-content {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.4;
}

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

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

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

/* 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: 0.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background-color: #f5f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

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

.showcase-content {
    margin-bottom: 3rem;
    text-align: center;
}

.showcase-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.showcase-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-list {
    text-align: left;
    display: inline-block;
    font-size: 1.25rem;
    line-height: 2;
    color: #333;
}

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

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

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #f5f5f7;
    border-radius: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #0071e3;
    color: white;
}

.btn-primary:hover {
    background-color: #0077ed;
}

.btn-link {
    color: #0071e3;
}

.btn-link:hover {
    text-decoration: underline;
}

.btn-link span {
    font-size: 0.9em;
    margin-left: 0.3em;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.25rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero {
        padding: 8rem 2rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .showcase {
        flex-direction: row;
        text-align: left;
    }
    
    .showcase-content {
        flex: 1;
        text-align: left;
        margin-right: 4rem;
        margin-bottom: 0;
    }
    
    .showcase-image {
        flex: 1;
    }
    
    .showcase-list {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 10rem 2rem;
    }
}