/* Hero Section Styles */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    padding-right: 4rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: #202124;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: #5f6368;
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 540px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5f6368;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 540px;
}

.hero-cta .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    background-color: #1a73e8;
    border: none;
    transition: background-color 0.3s ease;
}

.hero-cta .btn-primary:hover {
    background-color: #1557b0;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.interface-preview {
    position: relative;
    width: 120%;
    margin-left: -10%;
}

.interface-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-primary {
    background-color: #1a73e8;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary:hover {
    background-color: #1557b0;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(26, 115, 232, 0.2);
}

/* Features Section Styles */
.mega-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: #202124;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #202124;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item p {
    color: #5f6368;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }

    .mega-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description,
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .mega-title {
        font-size: 2rem;
    }

    .feature-item {
        padding: 1.5rem;
    }
}