/* Hero Section */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #f5f5f7;
    margin-top: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: #86868b;
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

.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: #0071e3;
    color: white;
}

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

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

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

.btn-link span {
    margin-left: 0.5rem;
}

.hero-image {
    margin-top: 3rem;
}

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

/* Features Section */
.features {
    padding: 6rem 2rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4;
    color: #86868b;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.feature-item {
    padding: 2rem;
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #0071e3;
}

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

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

.feature-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #86868b;
}

/* Showcase Section */
.showcase {
    padding: 6rem 2rem;
    background-color: #f5f5f7;
}

.showcase .container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.showcase-content {
    text-align: center;
}

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

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .showcase .container {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .showcase-content {
        flex: 1;
        text-align: left;
    }

    .showcase-image {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}