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

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #2b5876 0%, #4e4376 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 2.5rem;
}

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

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

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

/* Features Section */
.features {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

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

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

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

.feature-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

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

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

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

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

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

.showcase-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

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

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

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #2b5876 0%, #4e4376 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-link {
    color: #4e4376;
    font-weight: 600;
}

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

.btn-link span {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

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

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

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

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

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

    .showcase:nth-child(even) .showcase-container {
        flex-direction: row-reverse;
    }
}

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

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