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

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

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

.hero-subhead {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

.btn-link {
    color: #0066cc;
    border: 2px solid transparent;
}

.btn-link:hover {
    border-color: rgba(0, 102, 204, 0.2);
}

.btn-link span {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-left: 0.3rem;
}

/* 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.8rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #888;
    font-weight: 300;
}

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

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

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

.showcase-content {
    order: 2;
    text-align: center;
    max-width: 700px;
    margin-bottom: 3rem;
}

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

.showcase p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.showcase-image {
    order: 1;
    width: 100%;
}

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

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

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

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

/* Responsive Styles */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        text-align: left;
        padding: 8rem 4rem;
    }

    .hero-content {
        flex: 1;
        margin-bottom: 0;
        padding-right: 4rem;
    }

    .hero-image {
        flex: 1;
        margin-top: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .showcase {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

    .showcase-content {
        order: 1;
        flex: 1;
        text-align: left;
        margin-bottom: 0;
    }

    .showcase-image {
        order: 2;
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}