.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    color: #202124;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(-45deg, #1a73e8, #4285f4, #00bcd4, #26c6da);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s ease-in-out infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: #5f6368;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-container {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
}

.features-container {
    max-width: 1400px;
    width: 100%;
    margin: 6rem auto 0;
    padding: 0 2rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5f6368;
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 600px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.features:last-child {
    margin-bottom: 0;
}

.features-reversed {
    flex-direction: row-reverse;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.features-text {
    text-align: left;
}

.features-text .section-title {
    text-align: left;
    white-space: nowrap;
}

.feature-card {
    padding: 2.5rem 2rem;
    transition: all 0.2s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-weight: 500;
    color: #202124;
    margin-bottom: 5rem;
}

.feature-description {
    color: #5f6368;
    font-weight: 400;
    line-height: 1.6;
}


@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 2s infinite;
}

.social-icons {
    display: flex;
    gap: 0.1rem;
}
.social-icons a{
    color: black;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 24px;
}

.social-icons a:hover {
    color: #1a73e8;
    background: rgba(26, 115, 232, 0.08);
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .features-text {
        text-align: left;
    }
    
    .features-demo {
        padding: 2rem;
    }
    
    .demo-interface {
        padding: 1.5rem;
    }
    
    .demo-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .demo-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }    
}
