/* ============================================================================
   HOME PAGE - ОБЩИЕ СТИЛИ
   Стили для главной страницы (десктопная и мобильная версии)
   ============================================================================ */

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero-section {
    background: linear-gradient(120deg, #fff 60%, #ffe5d0 100%);
    min-height: 624px;
}

.hero-title {
    color: #000000;
    font-size: 3.5rem;
}

.hero-title-highlight {
    color: #ff7a29;
}

.hero-description {
    color: #333;
}

.hero-image {
    min-height: 480px;
    contain: layout style paint;
}

.hero-chat-demo {
    max-width: 370px;
    min-height: 360px;
    contain: layout style paint;
}

.window-controls {
    flex-direction: row !important;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.chat-message-user {
    max-width: 80%;
}

.chat-message-ai {
    max-width: 80%;
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */

.feature-icon-large {
    width: 80px;
    height: 80px;
}

.feature-icon-medium {
    min-width: 40px;
}

/* ============================================================================
   HOW IT WORKS SECTION
   ============================================================================ */

.step-icon {
    width: 80px;
    height: 80px;
}

.progress-thin {
    height: 8px;
}

.progress-bar-custom {
    width: 87%;
}

/* ============================================================================
   ADD BOT SECTION
   ============================================================================ */

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.add-bot-image {
    max-width: 100%;
    height: auto;
    cursor: pointer;
    object-fit: contain;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.cta-section {
    background: linear-gradient(120deg, #fff 60%, #ffe5d0 100%);
}

.cta-description {
    color: #000000;
}

.cta-btn-equal {
    font-weight: 600;
}

/* ============================================================================
   MODAL STYLES
   ============================================================================ */

.modal-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.text-gradient {
    background: linear-gradient(45deg, #ff7a29, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

/* ============================================================================
   RESPONSIVE UTILITIES
   ============================================================================ */

@media (min-width: 769px) {
    .hero-btn {
        width: auto !important;
        min-width: 160px !important;
        max-width: none !important;
        padding: 12px 24px !important;
        margin-bottom: 0 !important;
    }
    
    .hero-section .d-flex {
        flex-direction: row !important;
        gap: 1rem !important;
    }
    
    .hero-section .d-flex .btn {
        flex: 0 1 auto !important;
        max-width: none !important;
    }
} 