@import url('/resources/css/home/resources/variables.css');
@import url('/resources/css/home/resources/footer.css');
@import url('/resources/css/home/resources/modals.css');
@import url('/resources/css/home/resources/header.css');
@import url('/resources/css/home/resources/buttons.css');
@import url('/resources/css/home/resources/companies.css');

.section-title {
    margin-top: 2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #1e293b;
}

.section-container {
    max-width: 80vw;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section */
.hero {
    background: #f8f9ff;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 80vw;
    margin: 0 auto;
}

.hero h1 {
    max-width: 50vw;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 auto 1rem auto;
    line-height: 1.2;
    text-align: center;
}

.hero .highlight {
    color: var(--blue);
    display: block;
}

/* Content Sections */
.content-section {
    padding: 4rem 2rem;
    max-width: 80vw;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-text p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.content-image {
    background: #c4c4c4;
    height: 350px;
    border-radius: var(--radius);
    display: flex;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features Section */
.features {
    background: var(--glass);
    text-align: center;
    align-items: center;
}

.features h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

/* CTA Section */
.cta-container {
    max-width: 80vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 4rem;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.cta-content p {
    color: var(--text);;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info {
    background: var(--glass);
    padding: 2rem;
    border-radius: var(--radius);
}

.contact-info h2 {
    display: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.contact-item a {
    text-decoration: none;
    margin-left: -10px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 20px;
    height: 20px;
    background: #5D4EFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
        max-width: 100vw;
    }

    .content-section {
        max-width: 100%;
    }

    .content-grid {
        display: flex;
        flex-direction: column;
    }

    .content-grid .content-text {
        order: 1;
    }

    .content-grid .content-image {
        order: 2;
    }

    .features-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 2rem 0;
    }

    .contact-info h2 {
        display: block;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text);
    }
}