/* style.css - Professional SaaS Landing Page Styles */

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 73px);
  padding: 2rem;
  background: var(--bg-color);
}

.hero-content {
  max-width: 800px;
  width: 100%;
  padding: 4rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: transparent;
  box-shadow: none;
  border: none;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  font-weight: 400;
}

.hero-actions {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-content { padding: 3rem 1.5rem; }
}

/* Professional SaaS Chatbot */
#chatbot-widget {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 340px;
    height: 500px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    border: var(--border-thin);
    box-shadow: var(--shadow-lg);
    background: #ffffff;
    border-radius: var(--border-radius-lg);
}

#chatbot-header {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    font-size: 0.95rem;
    background: #f8fafc;
}

.bot-msg, .user-msg {
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    max-width: 85%;
    line-height: 1.4;
    font-weight: 400;
    border-radius: var(--border-radius-lg);
}

.bot-msg {
    background: #ffffff;
    color: var(--text-dark);
    border: var(--border-thin);
    box-shadow: var(--shadow-sm);
    border-bottom-left-radius: 4px;
}

.user-msg {
    background: var(--primary-color);
    color: var(--text-light);
    margin-left: auto;
    border-bottom-right-radius: 4px;
    box-shadow: var(--shadow-sm);
}

#chatbot-input-area {
    display: flex;
    background: #ffffff;
    border-top: var(--border-thin);
    padding: 1rem;
    gap: 0.5rem;
}

#chatbot-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: var(--border-thin);
    border-radius: 20px;
    background: #f1f5f9;
    color: var(--text-dark);
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

#chatbot-input:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#chatbot-send {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0 1.25rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-fast);
}

#chatbot-send:hover { 
    background: var(--primary-hover); 
}

#chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: all var(--transition-fast);
}

#chatbot-toggle:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 20px -3px rgba(0,0,0,0.15);
}

.bot-msg table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 0.5rem;
    background: #ffffff;
    border-radius: var(--border-radius);
    border: var(--border-thin);
    overflow: hidden;
}

.bot-msg th, .bot-msg td {
    border-bottom: var(--border-thin);
    padding: 0.5rem;
    text-align: left;
    font-size: 0.85rem;
}

.bot-msg th {
    background-color: #f1f5f9;
    color: var(--text-muted);
    font-weight: 600;
}
