@import url(https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap);
/* Professional Platform Chatbot Styles with Design System */
.platform-chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-family: var(--font-body, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
}

.platform-chat-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, var(--color-accent, #06b6d4) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 
    0 12px 40px rgba(30, 64, 175, 0.35),
    0 6px 20px rgba(6, 182, 212, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.platform-chat-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-chat-button:hover::before {
  opacity: 1;
}

.platform-chat-button:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 
    0 20px 50px rgba(30, 64, 175, 0.4),
    0 10px 30px rgba(6, 182, 212, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.platform-chat-button:active {
  transform: scale(1.02) translateY(-2px);
  transition: all 0.1s ease;
}

.platform-chat-window {
  position: fixed;
  bottom: 104px;
  right: 24px;
  width: 400px;
  height: 600px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 40px 90px rgba(0, 0, 0, 0.12),
    0 20px 45px rgba(0, 0, 0, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(40px) scale(0.85);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.platform-chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.platform-chat-header {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #06b6d4 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, var(--color-primary-600, #2563eb) 50%, var(--color-accent, #06b6d4) 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.platform-chat-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.platform-chat-header h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.close-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.close-btn:active {
  transform: scale(0.95);
}

.platform-chat-messages {
  flex: 1 1;
  overflow-y: auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scroll-behavior: smooth;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.platform-chat-messages::-webkit-scrollbar {
  width: 6px;
}

.platform-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.platform-chat-messages::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(30, 64, 175, 0.25), rgba(6, 182, 212, 0.25));
  border-radius: 3px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.platform-chat-messages::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(30, 64, 175, 0.4), rgba(6, 182, 212, 0.4));
}

.platform-chat-message {
  max-width: 85%;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.925rem;
  margin-bottom: 4px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
  animation: messageSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.platform-chat-message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, var(--color-accent, #06b6d4) 100%);
  color: white;
  border-bottom-right-radius: 0.5rem;
  box-shadow: 
    0 8px 25px rgba(30, 64, 175, 0.25),
    0 4px 12px rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.platform-chat-message.user::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
  border-radius: 1.25rem;
  border-bottom-right-radius: 0.5rem;
  pointer-events: none;
}

.platform-chat-message.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  border-bottom-left-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.06),
    0 3px 10px rgba(0, 0, 0, 0.03);
}

.platform-chat-message a {
  color: #1e40af;
  color: var(--color-primary, #1e40af);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.platform-chat-message.user a {
  color: inherit;
}

.platform-chat-message ul, 
.platform-chat-message ol {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.platform-chat-message ol {
  list-style-type: decimal;
}

.platform-chat-message ul {
  list-style-type: disc;
}

.platform-chat-message li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.platform-chat-message li:last-child {
  margin-bottom: 0;
}

.platform-chat-message h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  margin: 0.75rem 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.platform-chat-message h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  margin: 0.625rem 0 0.375rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.platform-chat-message strong {
  font-weight: 600;
}

.platform-chat-message p {
  margin: 0.5rem 0;
}

.platform-chat-message br + br {
  display: block;
  content: '';
  margin-top: 0.5rem;
}

.platform-chat-input {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  gap: 0.75rem;
}

.platform-chat-input textarea {
  flex: 1 1;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
  resize: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.925rem;
  max-height: 120px;
  min-height: 52px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.03),
    0 1px 2px rgba(0, 0, 0, 0.02);
  line-height: 1.5;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
}

.platform-chat-input textarea::placeholder {
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  font-weight: 400;
}

.platform-chat-input textarea:focus {
  border-color: #60a5fa;
  border-color: var(--color-primary-400, #60a5fa);
  box-shadow: 
    0 0 0 4px rgba(30, 64, 175, 0.08),
    inset 0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 16px rgba(30, 64, 175, 0.1);
  background: rgba(255, 255, 255, 1);
}

.send-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, var(--color-accent, #06b6d4) 100%);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
  box-shadow: 
    0 10px 30px rgba(30, 64, 175, 0.3),
    0 5px 15px rgba(6, 182, 212, 0.2);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.send-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.send-button:hover::before {
  opacity: 1;
}

.send-button:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 
    0 15px 40px rgba(30, 64, 175, 0.35),
    0 8px 20px rgba(6, 182, 212, 0.25);
}

.send-button:active {
  transform: scale(0.98);
  transition: all 0.1s ease;
}

.send-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: 
    0 4px 12px rgba(30, 64, 175, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.05);
}

.send-button:disabled::before {
  opacity: 0;
}

.typing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  align-self: flex-start;
  max-width: 85%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.25rem;
  border-bottom-left-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.06),
    0 3px 10px rgba(0, 0, 0, 0.03);
  animation: messageSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.typing .dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  border-radius: 50%;
  animation: typingPulse 1.4s infinite ease-in-out both;
}

.typing .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing .dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typingPulse {
  0%, 80%, 100% { 
    transform: scale(0.5);
    opacity: 0.5;
  }
  40% { 
    transform: scale(1);
    opacity: 1;
  }
}

.suggested-questions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  align-self: flex-start;
  max-width: 85%;
}

.suggested-questions-label {
  font-size: 13px;
  color: rgba(29, 29, 31, 0.6);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: -0.1px;
}

.suggested-question-btn {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 12px 18px;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
  color: #1d1d1f;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 1px 4px rgba(0, 0, 0, 0.02);
  font-weight: 400;
  line-height: 1.4;
}

.suggested-question-btn:hover {
  background: rgba(0, 122, 255, 0.05);
  border-color: rgba(0, 122, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(0, 122, 255, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
  color: #007AFF;
}

.suggested-question-btn:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .platform-chatbot {
    bottom: 20px;
    right: 20px;
  }
  
  .platform-chat-window {
    bottom: 88px;
    right: 20px;
    left: 20px;
    width: auto;
    height: 70vh;
    max-height: 600px;
  }
  
  .platform-chat-button {
    width: 56px;
    height: 56px;
  }
  
  .platform-chat-header {
    padding: 20px;
  }
  
  .platform-chat-messages {
    padding: 20px 16px;
  }
  
  .platform-chat-input {
    padding: 16px 20px 20px;
  }
  
  .platform-chat-input textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

@media (max-width: 480px) {
  .platform-chat-window {
    height: 75vh;
    border-radius: 16px;
  }
  
  .platform-chat-header {
    padding: 16px;
    border-radius: 16px 16px 0 0;
  }
  
  .platform-chat-header h3 {
    font-size: 16px;
  }
}

/* Escalation-specific styles */
.platform-chat-message.escalation-suggestion {
  background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
  border-left: 4px solid #f59e0b;
  padding: 16px;
  margin: 8px 0;
  border-radius: 8px;
  position: relative;
}

.platform-chat-message.escalation-suggestion::before {
  content: '⚠️';
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 16px;
}

.platform-chat-message.escalation-suggestion div {
  margin-left: 28px;
  font-weight: 500;
  color: #1f2937;
}

.platform-chat-message.escalation-confirmation {
  background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 100%);
  border-left: 4px solid #10b981;
  padding: 16px;
  margin: 8px 0;
  border-radius: 8px;
  position: relative;
}

.platform-chat-message.escalation-confirmation::before {
  content: '✅';
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 16px;
}

.platform-chat-message.escalation-confirmation div {
  margin-left: 28px;
  color: #1f2937;
}

.suggested-question-btn.escalation-suggestion-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border: 2px solid transparent;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.suggested-question-btn.escalation-suggestion-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* Ticket confirmation integration */
.platform-chat-window .ticket-confirmation {
  height: 100%;
  overflow-y: auto;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 24px;
}

.platform-chat-window .ticket-confirmation .confirmation-actions {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background: white;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  margin-top: 20px;
}

/* Responsive escalation styles */
@media (max-width: 768px) {
  .platform-chat-message.escalation-suggestion,
  .platform-chat-message.escalation-confirmation {
    padding: 12px;
    margin: 6px 0;
  }
  
  .platform-chat-message.escalation-suggestion div,
  .platform-chat-message.escalation-confirmation div {
    margin-left: 24px;
    font-size: 14px;
  }
  
  .platform-chat-window .ticket-confirmation {
    padding: 16px;
  }
}

/* High contrast mode support for escalation */
@media (prefers-contrast: high) {
  .platform-chat-message.escalation-suggestion {
    background: #fff;
    border-left-color: #000;
    border-left-width: 6px;
  }
  
  .platform-chat-message.escalation-confirmation {
    background: #fff;
    border-left-color: #000;
    border-left-width: 6px;
  }
  
  .suggested-question-btn.escalation-suggestion-btn {
    background: #000;
    border-color: #000;
  }
}

/* Animation for escalation elements */
@keyframes escalationSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.platform-chat-message.escalation-suggestion,
.platform-chat-message.escalation-confirmation {
  animation: escalationSlideIn 0.4s ease-out;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .platform-chat-message.escalation-suggestion,
  .platform-chat-message.escalation-confirmation,
  .suggested-question-btn.escalation-suggestion-btn {
    animation: none;
    transition: none;
  }
  
  .suggested-question-btn.escalation-suggestion-btn:hover {
    transform: none;
  }
}

/* ========== DEMO SCHEDULING FORM STYLES ========== */

/* Demo Form Overlay */
.platform-chatbot-demo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10010;
  padding: 20px;
  animation: fadeIn 0.2s ease-out;
}

/* Demo Form Modal */
.platform-chatbot-demo-modal {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Demo Form Header */
.platform-chatbot-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  border-radius: 20px 20px 0 0;
}

.platform-chatbot-demo-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.platform-chatbot-demo-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.platform-chatbot-demo-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Demo Form Body */
.platform-chatbot-demo-form {
  padding: 24px;
}

.platform-chatbot-demo-field {
  margin-bottom: 18px;
}

.platform-chatbot-demo-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.platform-chatbot-demo-field input,
.platform-chatbot-demo-field select,
.platform-chatbot-demo-field textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  color: #1f2937;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.platform-chatbot-demo-field input:focus,
.platform-chatbot-demo-field select:focus,
.platform-chatbot-demo-field textarea:focus {
  outline: none;
  border-color: #1e40af;
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.platform-chatbot-demo-field input::placeholder,
.platform-chatbot-demo-field textarea::placeholder {
  color: #9ca3af;
}

.platform-chatbot-demo-field input:disabled,
.platform-chatbot-demo-field select:disabled,
.platform-chatbot-demo-field textarea:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}

.platform-chatbot-demo-field textarea {
  resize: vertical;
  min-height: 80px;
}

.platform-chatbot-demo-field select {
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-right: 44px;
}

/* Demo Form Actions */
.platform-chatbot-demo-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.platform-chatbot-demo-cancel,
.platform-chatbot-demo-submit {
  flex: 1 1;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.platform-chatbot-demo-cancel {
  background: #f3f4f6;
  color: #4b5563;
  border: 2px solid #e5e7eb;
}

.platform-chatbot-demo-cancel:hover:not(:disabled) {
  background: #e5e7eb;
  border-color: #d1d5db;
}

.platform-chatbot-demo-submit {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.platform-chatbot-demo-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.platform-chatbot-demo-cancel:disabled,
.platform-chatbot-demo-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Demo Confirmation Message Styling */
.platform-chat-message.demo-confirmation {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-left: 4px solid #10b981;
  padding: 16px;
  margin: 8px 0;
  border-radius: 12px;
  position: relative;
}

.platform-chat-message.demo-confirmation div {
  color: #1f2937;
  line-height: 1.6;
}

/* Demo Suggestion Button Styling */
.suggested-question-btn.demo-suggestion-btn {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  border: 2px solid transparent;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.suggested-question-btn.demo-suggestion-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

/* Responsive Demo Form */
@media (max-width: 480px) {
  .platform-chatbot-demo-modal {
    max-height: 85vh;
    border-radius: 16px;
    margin: 10px;
  }
  
  .platform-chatbot-demo-header {
    padding: 16px 20px;
    border-radius: 16px 16px 0 0;
  }
  
  .platform-chatbot-demo-header h3 {
    font-size: 16px;
  }
  
  .platform-chatbot-demo-form {
    padding: 20px;
  }
  
  .platform-chatbot-demo-field {
    margin-bottom: 14px;
  }
  
  .platform-chatbot-demo-field input,
  .platform-chatbot-demo-field select,
  .platform-chatbot-demo-field textarea {
    padding: 10px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .platform-chatbot-demo-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
  
  .platform-chatbot-demo-cancel,
  .platform-chatbot-demo-submit {
    padding: 12px 16px;
  }
}

/* High contrast mode for demo form */
@media (prefers-contrast: high) {
  .platform-chatbot-demo-modal {
    background: white;
    border: 3px solid black;
  }
  
  .platform-chatbot-demo-header {
    background: black;
  }
  
  .platform-chatbot-demo-field input,
  .platform-chatbot-demo-field select,
  .platform-chatbot-demo-field textarea {
    border-width: 3px;
    border-color: black;
  }
  
  .platform-chatbot-demo-submit {
    background: black;
    border-color: black;
  }
}

/* Reduced motion for demo form */
@media (prefers-reduced-motion: reduce) {
  .platform-chatbot-demo-overlay,
  .platform-chatbot-demo-modal {
    animation: none;
  }
  
  .platform-chatbot-demo-close:hover,
  .platform-chatbot-demo-submit:hover {
    transform: none;
  }
}

/* Temporary highlight effect for action responses */
.chatbot-highlight {
  animation: chatbotHighlightPulse 2s ease-in-out 2;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
  transition: box-shadow 0.3s ease;
}

@keyframes chatbotHighlightPulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35); }
}

.chatbot-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.chatbot-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.16);
  width: 320px;
  max-width: 90vw;
  padding-bottom: 12px;
}

.chatbot-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.chatbot-modal-body {
  padding: 16px;
  color: #111827;
  font-size: 14px;
  line-height: 1.5;
}

.modal-close {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: #6b7280;
}

.consent-card,
.qualifier-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.consent-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.consent-actions button,
.qualifier-options button {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}

.qualifier-options {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.menu-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  margin-right: 8px;
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-dropdown {
  position: absolute;
  top: 56px;
  right: 56px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 20;
}

.chatbot-action-card {
  margin: 10px 0;
  animation: chatbotActionSlide 0.3s ease-out;
}

.chatbot-action-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.chatbot-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.chatbot-action-card--blue .chatbot-action-button { border-left: 4px solid #3b82f6; }
.chatbot-action-card--green .chatbot-action-button { border-left: 4px solid #10b981; }
.chatbot-action-card--purple .chatbot-action-button { border-left: 4px solid #8b5cf6; }
.chatbot-action-card--yellow .chatbot-action-button { border-left: 4px solid #f59e0b; }
.chatbot-action-card--orange .chatbot-action-button { border-left: 4px solid #f97316; }
.chatbot-action-card--gray .chatbot-action-button { border-left: 4px solid #9ca3af; }

.chatbot-action-icon {
  font-size: 18px;
  line-height: 1;
}

.chatbot-action-text {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

@keyframes chatbotActionSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tour Carousel Styles - Phase 2.1: Mini-Tours */

.tour-carousel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

.tour-carousel-container {
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Header */
.tour-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tour-header-info {
  flex: 1 1;
}

.tour-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.tour-category {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  text-transform: capitalize;
  margin-right: 8px;
}

.tour-time {
  display: inline-block;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.tour-close-button {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.tour-close-button:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  transform: scale(1.1);
}

/* Progress Bar */
.tour-progress-bar {
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.tour-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 12px rgba(102, 126, 234, 0.4);
}

/* Mode Toggle */
.tour-mode-toggle {
  display: flex;
  gap: 12px;
  padding: 24px 32px;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tour-mode-button {
  flex: 1 1;
  padding: 12px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tour-mode-button:hover {
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(102, 126, 234, 0.05);
  transform: translateY(-2px);
}

.tour-mode-button.active {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Step Content */
.tour-step-content {
  padding: 32px;
  flex: 1 1;
  min-height: 300px;
}

.tour-step-header {
  margin-bottom: 24px;
}

.tour-step-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.tour-step-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 8px 0 12px 0;
  line-height: 1.3;
}

.tour-step-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.tour-step-body {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 16px;
  padding: 24px;
  min-height: 200px;
}

.tour-video-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tour-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-content-text {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}

.tour-content-text p {
  margin: 0 0 16px 0;
}

.tour-highlight-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(102, 126, 234, 0.08);
  border-radius: 10px;
  margin-top: 16px;
  font-size: 14px;
  color: #667eea;
  font-weight: 500;
}

.tour-highlight-icon {
  font-size: 18px;
}

/* Action Prompt */
.tour-action-prompt {
  margin-top: 24px;
  text-align: center;
}

.tour-action-button {
  padding: 14px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.tour-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.tour-action-button:active {
  transform: translateY(0);
}

/* Step Indicators */
.tour-step-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
}

.tour-step-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
}

.tour-step-indicator:hover {
  background: rgba(102, 126, 234, 0.4);
  transform: scale(1.3);
}

.tour-step-indicator.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.tour-step-indicator.completed {
  background: #10b981;
}

/* Navigation */
.tour-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tour-nav-button {
  padding: 12px 24px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1;
  max-width: 160px;
}

.tour-nav-button:hover:not(:disabled) {
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(102, 126, 234, 0.05);
  transform: translateY(-2px);
}

.tour-nav-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.tour-next-button,
.tour-complete-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.tour-complete-button {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tour-play-button {
  padding: 12px 24px;
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 12px;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tour-play-button:hover {
  background: rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

/* Footer */
.tour-footer {
  padding: 20px 32px 32px;
  text-align: center;
}

.tour-description {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* Highlight Animation for Page Elements */
@keyframes tourHighlight {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
  }
}

:global(.tour-highlight) {
  animation: tourHighlight 2s ease-out;
  border: 3px solid #667eea !important;
  border-radius: 8px !important;
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.5) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tour-carousel-container {
    width: 95%;
    max-width: none;
    border-radius: 16px;
  }

  .tour-carousel-header {
    padding: 24px 20px 20px;
  }

  .tour-title {
    font-size: 22px;
  }

  .tour-step-content {
    padding: 24px 20px;
  }

  .tour-step-title {
    font-size: 20px;
  }

  .tour-navigation {
    padding: 20px;
    flex-wrap: wrap;
  }

  .tour-nav-button {
    max-width: none;
  }

  .tour-mode-toggle {
    padding: 20px;
  }

  .tour-play-button {
    width: 100%;
    order: 3;
  }
}

@media (max-width: 480px) {
  .tour-title {
    font-size: 20px;
  }

  .tour-step-title {
    font-size: 18px;
  }

  .tour-mode-toggle {
    flex-direction: column;
  }

  .tour-mode-button {
    width: 100%;
  }
}

/* Calculator Modal Styles - Phase 2.2: Decision Helper Calculators */

.calculator-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

.calculator-modal-container {
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Header */
.calculator-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.calculator-modal-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.calculator-close-button {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.calculator-close-button:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  transform: scale(1.1);
}

/* Body */
.calculator-modal-body {
  padding: 32px;
}

/* Inputs */
.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.calculator-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calculator-input-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.calculator-input-group input[type="number"],
.calculator-input-group input[type="text"],
.calculator-input-group select {
  padding: 12px 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 16px;
  color: #1f2937;
  transition: all 0.2s ease;
  background: white;
}

.calculator-input-group input[type="number"]:focus,
.calculator-input-group input[type="text"]:focus,
.calculator-input-group select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.calculator-input-group input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.1);
  outline: none;
  -webkit-appearance: none;
}

.calculator-input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.calculator-input-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.range-value {
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #667eea;
}

.calculator-checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calculator-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #374151;
  cursor: pointer;
}

.calculator-checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  cursor: pointer;
  accent-color: #667eea;
}

/* Actions */
.calculator-actions {
  text-align: center;
  margin: 32px 0;
}

.calculator-button {
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calculator-calculate-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.calculator-calculate-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.calculator-calculate-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Results */
.calculator-results {
  background: rgba(102, 126, 234, 0.05);
  border-radius: 16px;
  padding: 24px;
  margin-top: 32px;
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calculator-results h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px 0;
  text-align: center;
}

/* Result Grid */
.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 24px;
}

.result-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.result-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.result-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
}

.result-highlight .result-label {
  opacity: 0.9;
}

.result-value {
  font-size: 24px;
  font-weight: 700;
}

.result-summary {
  background: white;
  border-radius: 12px;
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}

.result-summary strong {
  color: #667eea;
  font-weight: 700;
}

/* Plan Selector Results */
.recommended-plan {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.plan-score {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.plan-details {
  background: white;
  border-radius: 12px;
  padding: 24px;
}

.plan-price {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.plan-conversations {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
}

.plan-features h5 {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  padding: 8px 0;
  font-size: 15px;
  color: #4b5563;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-reasoning {
  margin-top: 20px;
  padding: 16px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 10px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.plan-reasoning strong {
  color: #667eea;
}

.plan-alternatives {
  padding: 16px;
  background: white;
  border-radius: 12px;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

/* Pricing Results */
.pricing-breakdown {
  background: white;
  border-radius: 12px;
  padding: 24px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 15px;
  color: #374151;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-total {
  font-weight: 700;
  font-size: 18px;
  color: #1f2937;
  padding-top: 20px;
  margin-top: 12px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.pricing-value {
  font-weight: 600;
  color: #667eea;
}

.pricing-savings {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.savings-icon {
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .calculator-modal-container {
    width: 95%;
    max-width: none;
    border-radius: 16px;
  }

  .calculator-modal-header {
    padding: 24px 20px 20px;
  }

  .calculator-modal-header h3 {
    font-size: 22px;
  }

  .calculator-modal-body {
    padding: 24px 20px;
  }

  .result-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }

  .result-value {
    font-size: 20px;
  }

  .plan-name {
    font-size: 20px;
  }

  .plan-price {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .result-grid {
    grid-template-columns: 1fr;
  }
}

/**
 * CapabilityCard Styles - Premium Capability Display
 * 
 * Styles for the capability disclosure card with modern glassmorphism design
 * matching the platform's premium theme. Includes smooth animations,
 * hover effects, and accessibility considerations.
 * 
 * Step 11: Capability Disclosure
 * Created: February 5, 2026
 */

.capability-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(30, 64, 175, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  margin: 12px 0;
  overflow: hidden;
  animation: capabilityFadeIn 0.4s ease-out;
}

@keyframes capabilityFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Header */
.capability-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
}

.capability-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.capability-card-dismiss {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.capability-card-dismiss:hover {
  background: rgba(255, 255, 255, 0.15);
}

.capability-card-dismiss:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* Content */
.capability-card-content {
  padding: 20px;
}

/* Categories */
.capability-categories {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.capability-categories.additional {
  margin-top: 10px;
  animation: capabilityExpandIn 0.3s ease-out;
}

@keyframes capabilityExpandIn {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.capability-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(248, 250, 252, 0.8);
  border: 2px solid rgba(226, 232, 240, 0.6);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

.capability-category:hover {
  background: rgba(239, 246, 255, 0.9);
  border-color: rgba(147, 197, 253, 0.8);
  transform: translateY(-2px);
  box-shadow: 
    0 4px 12px rgba(30, 64, 175, 0.1),
    0 2px 6px rgba(30, 64, 175, 0.05);
}

.capability-category:active {
  transform: translateY(0);
}

.capability-category:focus-visible {
  outline: 3px solid #1e40af;
  outline-offset: 2px;
}

.capability-category-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-radius: 10px;
}

.capability-category-content {
  flex: 1 1;
  min-width: 0;
}

.capability-category-title {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 3px;
}

.capability-category-description {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

.capability-category-arrow {
  font-size: 18px;
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.capability-category:hover .capability-category-arrow {
  color: #1e40af;
  transform: translateX(3px);
}

/* More section */
.capability-more-section {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.capability-more-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  color: #1e40af;
}

.capability-more-toggle:hover {
  background: rgba(30, 64, 175, 0.05);
}

.capability-more-toggle:focus-visible {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

.capability-more-icon {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.capability-more-toggle.expanded .capability-more-icon {
  transform: rotate(0deg);
}

.capability-more-text {
  flex: 1 1;
  text-align: left;
}

/* Footer */
.capability-card-footer {
  padding: 0 20px 20px;
}

.capability-card-hint {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  text-align: center;
  padding: 12px;
  background: rgba(241, 245, 249, 0.6);
  border-radius: 8px;
}

/* Responsive design */
@media (max-width: 640px) {
  .capability-card-header {
    padding: 16px 16px 12px;
  }

  .capability-card-title {
    font-size: 16px;
  }

  .capability-card-content {
    padding: 16px;
  }

  .capability-category {
    padding: 12px 14px;
    gap: 12px;
  }

  .capability-category-icon {
    font-size: 24px;
    width: 38px;
    height: 38px;
  }

  .capability-category-title {
    font-size: 14px;
  }

  .capability-category-description {
    font-size: 12px;
  }

  .capability-card-footer {
    padding: 0 16px 16px;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  .capability-card {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(148, 163, 184, 0.2);
  }

  .capability-category {
    background: rgba(51, 65, 85, 0.6);
    border-color: rgba(71, 85, 105, 0.6);
  }

  .capability-category:hover {
    background: rgba(51, 65, 85, 0.8);
    border-color: rgba(100, 116, 139, 0.8);
  }

  .capability-category-title {
    color: #f1f5f9;
  }

  .capability-category-description {
    color: #cbd5e1;
  }

  .capability-card-hint {
    background: rgba(51, 65, 85, 0.4);
    color: #cbd5e1;
  }
}

/* Print styles */
@media print {
  .capability-card {
    box-shadow: none;
    border: 1px solid #000;
    page-break-inside: avoid;
  }

  .capability-card-header {
    background: #1e40af !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .capability-card-dismiss {
    display: none;
  }

  .capability-category {
    border: 1px solid #000;
  }
}

/**
 * EscalationPrompt Styles - Premium Modal Design
 * 
 * Styles for the escalation confirmation modal with modern, clean design
 * matching the platform's premium theme. Includes responsive layout,
 * smooth animations, and accessibility considerations.
 * 
 * Created by: Anil Uttamchandani
 * Created on: September 14, 2025
 */

.escalation-prompt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: escalationFadeIn 0.3s ease-out;
}

@keyframes escalationFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.escalation-prompt-modal {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  animation: escalationSlideIn 0.3s ease-out;
}

@keyframes escalationSlideIn {
  from {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.escalation-prompt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
}

.escalation-prompt-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.escalation-prompt-close {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.escalation-prompt-close:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
}

.escalation-prompt-close:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.escalation-prompt-content {
  padding: 28px;
  max-height: calc(90vh - 140px);
  overflow-y: auto;
}

.escalation-description {
  margin-bottom: 24px;
}

.escalation-description p {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.6;
}

.escalation-form-group {
  margin-bottom: 20px;
}

.escalation-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #374151;
  font-size: 14px;
}

.escalation-input,
.escalation-select,
.escalation-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  background: white;
}

.escalation-input:focus,
.escalation-select:focus,
.escalation-textarea:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.escalation-input:disabled,
.escalation-select:disabled,
.escalation-textarea:disabled {
  background: #f9fafb;
  color: #6b7280;
  cursor: not-allowed;
}

.escalation-textarea {
  resize: vertical;
  min-height: 80px;
}

.escalation-char-count {
  text-align: right;
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.escalation-benefits {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin-top: 24px;
}

.escalation-benefits h4 {
  margin: 0 0 12px 0;
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
}

.escalation-benefits ul {
  margin: 0;
  padding-left: 20px;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.escalation-benefits li {
  margin-bottom: 4px;
}

.escalation-prompt-actions {
  padding: 20px 28px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.escalation-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  position: relative;
}

.escalation-btn-secondary {
  background: white;
  color: #374151;
  border: 2px solid #d1d5db;
}

.escalation-btn-secondary:hover:not(:disabled) {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.escalation-btn-primary {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  border: 2px solid transparent;
}

.escalation-btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.escalation-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.escalation-loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: escalationSpin 1s linear infinite;
}

@keyframes escalationSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 640px) {
  .escalation-prompt-overlay {
    padding: 10px;
  }
  
  .escalation-prompt-modal {
    border-radius: 12px;
    max-height: 95vh;
  }
  
  .escalation-prompt-header {
    padding: 20px 20px 16px;
  }
  
  .escalation-prompt-title {
    font-size: 18px;
  }
  
  .escalation-prompt-content {
    padding: 20px;
  }
  
  .escalation-prompt-actions {
    padding: 16px 20px;
    flex-direction: column-reverse;
  }
  
  .escalation-btn {
    width: 100%;
    justify-content: center;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .escalation-prompt-header {
    background: #000;
  }
  
  .escalation-btn-primary {
    background: #000;
  }
  
  .escalation-input:focus,
  .escalation-select:focus,
  .escalation-textarea:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .escalation-prompt-overlay,
  .escalation-prompt-modal,
  .escalation-btn,
  .escalation-loading-spinner {
    animation: none;
    transition: none;
  }
  
  .escalation-btn-primary:hover:not(:disabled) {
    transform: none;
  }
}

/* Contact Information Section */
.escalation-contact-section {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.15);
}

.escalation-section-title {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.required-marker {
  color: #ef4444;
  font-weight: 700;
}

.escalation-help-text {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.5;
}

.escalation-error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  color: #dc2626;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: escalationShake 0.5s ease;
}

.escalation-error-message::before {
  content: "⚠";
  font-size: 18px;
}

@keyframes escalationShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Success Confirmation Modal */
.escalation-success-modal .escalation-prompt-header {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.escalation-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  margin: 0 auto 20px;
  animation: escalationSuccessPulse 0.6s ease-out;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

@keyframes escalationSuccessPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.escalation-success-details {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.escalation-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #d1fae5;
}

.escalation-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.escalation-detail-row:first-child {
  padding-top: 0;
}

.escalation-detail-label {
  font-weight: 600;
  color: #065f46;
  font-size: 14px;
}

.escalation-detail-value {
  font-weight: 500;
  color: #047857;
  font-size: 14px;
  text-align: right;
}

.escalation-ticket-id {
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 15px;
  color: #059669;
  font-weight: 700;
  background: white;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #10b981;
}

.escalation-priority-normal {
  color: #2563eb;
  background: #dbeafe;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: capitalize;
}

.escalation-priority-high {
  color: #ea580c;
  background: #fed7aa;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: capitalize;
}

.escalation-priority-critical {
  color: #dc2626;
  background: #fecaca;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  animation: escalationPriorityPulse 2s ease-in-out infinite;
}

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

.escalation-success-message {
  color: #065f46;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.escalation-success-message p {
  margin: 0 0 8px 0;
}

.escalation-auto-close-notice {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Error Confirmation Modal */
.escalation-error-modal .escalation-prompt-header {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.escalation-error-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  margin: 0 auto 20px;
  animation: escalationErrorShake 0.6s ease-out;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

@keyframes escalationErrorShake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(-10px) rotate(-5deg); }
  50% { transform: translateX(10px) rotate(5deg); }
  75% { transform: translateX(-5px) rotate(-2deg); }
}

.escalation-error-details {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.escalation-error-message-text {
  color: #dc2626;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.escalation-fallback-options {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.escalation-fallback-options h4 {
  margin: 0 0 12px 0;
  color: #92400e;
  font-size: 15px;
  font-weight: 600;
}

.escalation-fallback-options ul {
  margin: 0;
  padding-left: 24px;
  color: #78350f;
  font-size: 14px;
  line-height: 1.8;
}

.escalation-fallback-options li {
  margin-bottom: 6px;
}

.escalation-support-contact {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  color: #075985;
  line-height: 1.6;
}

.escalation-support-contact p {
  margin: 4px 0;
}

.escalation-support-contact strong {
  color: #0c4a6e;
  font-weight: 600;
}

/* Prefill notice styles - Step 10: Auto-fill Contact Info */
.escalation-prefill-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
  border: 1px solid #93c5fd;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
  animation: escalationPrefillFadeIn 0.4s ease-out;
}

@keyframes escalationPrefillFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.escalation-prefill-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.escalation-prefill-text {
  color: #1e3a8a;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

/* Focus visible styles for accessibility */
.escalation-btn:focus-visible,
.escalation-input:focus-visible,
.escalation-select:focus-visible,
.escalation-textarea:focus-visible,
.escalation-prompt-close:focus-visible {
  outline: 3px solid #1e40af;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .escalation-prompt-overlay {
    position: static;
    background: none;
  }
  
  .escalation-prompt-modal {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .escalation-prompt-header {
    background: #000 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  
  .escalation-prompt-close,
  .escalation-prompt-actions {
    display: none;
  }
}

/**
 * TicketConfirmation Styles - Success State Design
 * 
 * Styles for the ticket confirmation component with clean, success-focused
 * design. Includes ticket information display, progress steps, and action buttons
 * with premium styling and responsive layout.
 * 
 * Created by: Anil Uttamchandani
 * Created on: September 14, 2025
 */

.ticket-confirmation {
  background: white;
  border-radius: 12px;
  padding: 32px;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ticket-confirmation-header {
  text-align: center;
  margin-bottom: 32px;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  padding: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon svg {
  width: 32px;
  height: 32px;
}

.success-title {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
}

.success-subtitle {
  margin: 0;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.5;
}

.ticket-details {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.ticket-id-section {
  margin-bottom: 24px;
}

.detail-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.ticket-id-container {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.ticket-id {
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  font-family: 'SF Mono', 'Monaco', 'Roboto Mono', monospace;
  font-size: 14px;
  color: #1f2937;
  flex: 1 1;
  -webkit-user-select: all;
          user-select: all;
}

.copy-btn {
  background: #1e40af;
  border: none;
  border-radius: 6px;
  padding: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.copy-btn:hover {
  background: #5a67d8;
  transform: translateY(-1px);
}

.copy-btn.copied {
  background: #10b981;
}

.copy-btn svg {
  width: 16px;
  height: 16px;
}

.copy-feedback {
  position: absolute;
  right: 0;
  top: -30px;
  background: #1f2937;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  animation: copyFadeIn 0.3s ease-out;
}

@keyframes copyFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ticket-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
}

.detail-value {
  font-size: 15px;
  color: #1f2937;
  font-weight: 500;
}

.response-time {
  color: #059669;
  font-weight: 600;
}

.priority-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: -webkit-fit-content;
  width: fit-content;
}

.priority-normal {
  background: #dbeafe;
  color: #1e40af;
}

.priority-high {
  background: #fed7aa;
  color: #ea580c;
}

.priority-critical {
  background: #fecaca;
  color: #dc2626;
}

.priority-low {
  background: #d1fae5;
  color: #059669;
}

.next-steps {
  margin-bottom: 32px;
}

.next-steps-title {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.step-content h5 {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}

.step-content p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.additional-info {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 32px;
}

.info-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
}

.info-card h5 {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}

.info-card p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.info-card code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'SF Mono', 'Monaco', 'Roboto Mono', monospace;
  font-size: 13px;
  color: #1f2937;
}

.confirmation-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.action-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  min-height: 44px;
}

.action-btn.secondary {
  background: white;
  color: #374151;
  border: 2px solid #d1d5db;
}

.action-btn.secondary:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.action-btn.primary {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  border: 2px solid transparent;
}

.action-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ticket-confirmation {
    padding: 24px 20px;
    border-radius: 8px;
  }
  
  .success-icon {
    width: 56px;
    height: 56px;
    padding: 14px;
  }
  
  .success-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .success-title {
    font-size: 20px;
  }
  
  .ticket-details {
    padding: 20px;
  }
  
  .ticket-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .ticket-id-container {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .copy-btn {
    align-self: flex-end;
    width: auto;
    padding: 8px 16px;
  }
  
  .steps-list {
    gap: 20px;
  }
  
  .step-item {
    gap: 12px;
  }
  
  .confirmation-actions {
    flex-direction: column-reverse;
  }
  
  .action-btn {
    width: 100%;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .success-icon {
    background: #000;
  }
  
  .step-number {
    background: #000;
  }
  
  .action-btn.primary {
    background: #000;
  }
  
  .copy-btn {
    background: #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .success-icon,
  .copy-feedback,
  .action-btn,
  .copy-btn {
    animation: none;
    transition: none;
  }
  
  .action-btn.primary:hover,
  .copy-btn:hover {
    transform: none;
  }
}

/* Startup Health Check Styles */

.startup-health-check {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.health-check-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.health-check-header h1 {
  color: #333;
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 600;
}

.health-check-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1e40af;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.health-icon {
  font-size: 40px;
}

.health-icon.success {
  color: #4CAF50;
}

.health-icon.error {
  color: #f44336;
}

.health-check-status p {
  margin: 0;
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.health-check-content {
  margin-bottom: 30px;
}

.health-message {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
  border-left: 4px solid #1e40af;
}

.health-attempts {
  font-size: 12px;
  color: #888;
  margin-bottom: 15px;
}

.health-details-section {
  margin-top: 20px;
}

.toggle-details-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-details-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.health-details {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 15px;
  margin-top: 10px;
  text-align: left;
  max-height: 200px;
  overflow-y: auto;
}

.health-details pre {
  margin: 0;
  font-size: 11px;
  color: #555;
  white-space: pre-wrap;
  word-break: break-word;
}

.health-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.retry-btn, .skip-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.retry-btn {
  background: #1e40af;
  color: white;
}

.retry-btn:hover {
  background: #5a6fd8;
  transform: translateY(-1px);
}

.skip-btn {
  background: #6c757d;
  color: white;
}

.skip-btn:hover {
  background: #5a6268;
  transform: translateY(-1px);
}

.health-check-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}

.health-check-footer p {
  margin: 0 0 5px 0;
  font-size: 12px;
  color: #888;
}

.health-check-footer small {
  font-size: 10px;
  color: #aaa;
}

/* Responsive design */
@media (max-width: 600px) {
  .health-check-container {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .health-check-header h1 {
    font-size: 20px;
  }
  
  .health-actions {
    flex-direction: column;
  }
  
  .retry-btn, .skip-btn {
    width: 100%;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .health-check-container {
    background: #2d3748;
    color: #e2e8f0;
  }
  
  .health-check-header h1 {
    color: #e2e8f0;
  }
  
  .health-check-status p {
    color: #a0aec0;
  }
  
  .health-message {
    background: #4a5568;
    color: #e2e8f0;
    border-left-color: #1e40af;
  }
  
  .toggle-details-btn {
    background: #4a5568;
    border-color: #718096;
    color: #e2e8f0;
  }
  
  .toggle-details-btn:hover {
    background: #2d3748;
    border-color: #a0aec0;
  }
  
  .health-details {
    background: #4a5568;
    border-color: #718096;
  }
  
  .health-details pre {
    color: #e2e8f0;
  }
  
  .health-check-footer {
    border-top-color: #4a5568;
  }
}

/* Enhanced Error Boundary Styles */
.enhanced-error-boundary {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
  border-radius: 12px;
  margin: 1rem 0;
}

.error-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.error-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  animation: bounceIn 0.6s ease-out;
}

.error-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 1rem 0;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.error-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Action Buttons */
.error-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.retry-button,
.reset-button,
.details-button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  min-width: 120px;
  justify-content: center;
}

.retry-button {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.retry-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.retry-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.reset-button {
  background: rgba(74, 85, 104, 0.1);
  color: #4a5568;
  border: 1px solid rgba(74, 85, 104, 0.2);
}

.reset-button:hover {
  background: rgba(74, 85, 104, 0.15);
  transform: translateY(-1px);
}

.details-button {
  background: rgba(236, 201, 75, 0.1);
  color: #b7791f;
  border: 1px solid rgba(236, 201, 75, 0.3);
}

.details-button:hover {
  background: rgba(236, 201, 75, 0.15);
  transform: translateY(-1px);
}

/* Loading Spinner */
.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error Details */
.error-details {
  background: rgba(247, 250, 252, 0.8);
  border: 1px solid rgba(203, 213, 224, 0.5);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: left;
  animation: fadeIn 0.3s ease-out;
}

.error-details h3 {
  margin: 0 0 1rem 0;
  color: #2d3748;
  font-size: 1.1rem;
  font-weight: 600;
}

.error-message,
.error-stack {
  margin-bottom: 1rem;
}

.error-message strong,
.error-stack strong {
  color: #4a5568;
  display: block;
  margin-bottom: 0.5rem;
}

.error-stack pre {
  background: rgba(45, 55, 72, 0.05);
  border: 1px solid rgba(203, 213, 224, 0.5);
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  color: #4a5568;
  max-height: 200px;
  overflow-y: auto;
}

/* Error Suggestions */
.error-suggestions {
  text-align: left;
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

.suggestion {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  margin: 0.5rem 0;
  background: rgba(72, 187, 120, 0.1);
  border: 1px solid rgba(72, 187, 120, 0.2);
  border-radius: 10px;
  color: #2f855a;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.suggestion:hover {
  background: rgba(72, 187, 120, 0.15);
  transform: translateX(4px);
}

.suggestion-icon {
  font-size: 1rem;
  margin-top: 0.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .enhanced-error-boundary {
    padding: 1rem;
  }
  
  .error-container {
    padding: 2rem 1.5rem;
  }
  
  .error-title {
    font-size: 1.5rem;
  }
  
  .error-description {
    font-size: 1rem;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .retry-button,
  .reset-button,
  .details-button {
    width: 100%;
    min-width: auto;
  }
  
  .error-stack pre {
    font-size: 0.8rem;
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .error-icon {
    font-size: 3rem;
  }
  
  .error-title {
    font-size: 1.25rem;
  }
  
  .error-container {
    padding: 1.5rem 1rem;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .enhanced-error-boundary {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  }
  
  .error-container {
    background: rgba(26, 32, 44, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .error-title {
    color: #f7fafc;
  }
  
  .error-description {
    color: #e2e8f0;
  }
  
  .reset-button {
    background: rgba(237, 242, 247, 0.1);
    color: #e2e8f0;
    border: 1px solid rgba(237, 242, 247, 0.2);
  }
  
  .reset-button:hover {
    background: rgba(237, 242, 247, 0.15);
  }
  
  .details-button {
    background: rgba(236, 201, 75, 0.15);
    color: #ecc94b;
    border: 1px solid rgba(236, 201, 75, 0.3);
  }
  
  .error-details {
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .error-details h3 {
    color: #f7fafc;
  }
  
  .error-message strong,
  .error-stack strong {
    color: #e2e8f0;
  }
  
  .error-stack pre {
    background: rgba(45, 55, 72, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
  }
  
  .suggestion {
    background: rgba(72, 187, 120, 0.15);
    border: 1px solid rgba(72, 187, 120, 0.3);
    color: #68d391;
  }
  
  .suggestion:hover {
    background: rgba(72, 187, 120, 0.2);
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .error-container {
    border: 2px solid #000;
    background: #fff;
  }
  
  .error-title {
    color: #000;
  }
  
  .error-description {
    color: #333;
  }
  
  .retry-button {
    background: #0066cc;
    border: 2px solid #004499;
  }
  
  .reset-button {
    background: #f0f0f0;
    color: #000;
    border: 2px solid #333;
  }
  
  .details-button {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #856404;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .error-icon,
  .error-title,
  .error-description,
  .error-actions,
  .error-suggestions {
    animation: none;
  }
  
  .retry-button:hover:not(:disabled),
  .reset-button:hover,
  .details-button:hover,
  .suggestion:hover {
    transform: none;
  }
  
  .loading-spinner {
    animation: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
  }
}

/* Animations */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  padding: 20px;
}

.error-container {
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.error-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.error-container h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 16px;
}

.error-message {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.error-details {
  text-align: left;
  margin: 20px 0;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.error-details summary {
  cursor: pointer;
  font-weight: 600;
  color: #666;
  margin-bottom: 12px;
}

.error-details pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 12px;
  color: #333;
  max-height: 300px;
  overflow-y: auto;
}

.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.error-actions button {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: #1e40af;
  color: white;
}

.btn-primary:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: #f5f5f5;
  color: #333;
}

.btn-secondary:hover {
  background: #e0e0e0;
}

/* Skeleton Loader Styles */

/* Base Skeleton Styles */
.skeleton-wrapper {
  margin: 0;
}

.skeleton-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: 8px;
}

.skeleton-animated .skeleton-shimmer {
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Basic Elements */
.skeleton-line {
  height: 16px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skeleton-button {
  height: 40px;
  width: 120px;
  border-radius: 8px;
}

.skeleton-image {
  border-radius: 8px;
}

/* Card Skeleton */
.skeleton-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.skeleton-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.skeleton-card-title {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skeleton-card-content {
  margin-bottom: 1.5rem;
}

.skeleton-card-content .skeleton-line {
  margin-bottom: 12px;
}

.skeleton-card-footer {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* List Skeleton */
.skeleton-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: white;
}

.skeleton-list-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skeleton-list-action {
  flex-shrink: 0;
}

/* Table Skeleton */
.skeleton-table {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.skeleton-table-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1px;
  gap: 1px;
  background: #f7fafc;
  padding: 1rem;
}

.skeleton-th {
  height: 20px;
  border-radius: 4px;
}

.skeleton-table-body {
  display: flex;
  flex-direction: column;
}

.skeleton-table-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1px;
  gap: 1px;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.skeleton-table-row:last-child {
  border-bottom: none;
}

.skeleton-td {
  height: 16px;
  border-radius: 4px;
}

/* Dashboard Skeleton */
.skeleton-dashboard {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.skeleton-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.skeleton-dashboard-actions {
  display: flex;
  gap: 1rem;
}

.skeleton-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.skeleton-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.skeleton-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
}

.skeleton-stat-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skeleton-dashboard-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 2rem;
  gap: 2rem;
}

.skeleton-dashboard-chart {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
}

.skeleton-chart {
  height: 300px;
  border-radius: 8px;
}

.skeleton-dashboard-sidebar {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
}

/* Chat Skeleton */
.skeleton-chat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-chat-message {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
}

.skeleton-chat-user {
  flex-direction: row-reverse;
  background: rgba(102, 126, 234, 0.1);
  align-self: flex-end;
  max-width: 80%;
}

.skeleton-chat-bot {
  background: rgba(247, 250, 252, 0.8);
  align-self: flex-start;
  max-width: 80%;
}

.skeleton-chat-avatar {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.skeleton-chat-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Text Skeleton */
.skeleton-text {
  display: flex;
  flex-direction: column;
}

/* Subscription Skeleton */
.skeleton-subscription {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.skeleton-subscription-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.skeleton-subscription-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.skeleton-plan-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.skeleton-plan-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.skeleton-plan-price {
  margin-bottom: 2rem;
}

.skeleton-plan-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.skeleton-plan-button {
  margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .skeleton-dashboard-content {
    grid-template-columns: 1fr;
  }
  
  .skeleton-dashboard-stats {
    grid-template-columns: 1fr;
  }
  
  .skeleton-subscription-plans {
    grid-template-columns: 1fr;
  }
  
  .skeleton-card {
    padding: 1rem;
  }
  
  .skeleton-dashboard-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  .skeleton-dashboard-actions {
    justify-content: stretch;
  }
  
  .skeleton-dashboard-actions .skeleton-button {
    flex: 1 1;
  }
  
  .skeleton-table-header,
  .skeleton-table-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .skeleton-list-item {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .skeleton-chat-user,
  .skeleton-chat-bot {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .skeleton-card {
    padding: 0.75rem;
  }
  
  .skeleton-card-header {
    margin-bottom: 1rem;
  }
  
  .skeleton-card-content {
    margin-bottom: 1rem;
  }
  
  .skeleton-card-footer {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .skeleton-stat-card {
    padding: 1rem;
  }
  
  .skeleton-plan-card {
    padding: 1.5rem;
  }
  
  .skeleton-table-header,
  .skeleton-table-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  
  .skeleton-th,
  .skeleton-td {
    height: 14px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .skeleton-shimmer {
    background: linear-gradient(90deg, #2d3748 25%, #4a5568 50%, #2d3748 75%);
    background-size: 200% 100%;
  }
  
  .skeleton-card,
  .skeleton-list-item,
  .skeleton-table,
  .skeleton-stat-card,
  .skeleton-dashboard-chart,
  .skeleton-dashboard-sidebar,
  .skeleton-plan-card {
    background: #1a202c;
    border-color: #2d3748;
  }
  
  .skeleton-table-header {
    background: #2d3748;
  }
  
  .skeleton-table-row {
    border-color: #2d3748;
  }
  
  .skeleton-chat-user {
    background: rgba(102, 126, 234, 0.2);
  }
  
  .skeleton-chat-bot {
    background: rgba(45, 55, 72, 0.8);
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .skeleton-shimmer {
    background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
  }
  
  .skeleton-card,
  .skeleton-list-item,
  .skeleton-table,
  .skeleton-stat-card,
  .skeleton-dashboard-chart,
  .skeleton-dashboard-sidebar,
  .skeleton-plan-card {
    border: 2px solid #000;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .skeleton-animated .skeleton-shimmer {
    animation: none;
    background: #f0f0f0;
  }
  
  @media (prefers-color-scheme: dark) {
    .skeleton-animated .skeleton-shimmer {
      background: #2d3748;
    }
  }
}

/* Focus and Accessibility */
.skeleton-wrapper:focus {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .skeleton-wrapper,
  .skeleton-container {
    display: none;
  }
}

/* Professional NavBar Styling with Design System */
.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.875rem 2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
  /* Fix flickering: use specific properties instead of 'all' */
  transition: background 0.3s ease, box-shadow 0.3s ease;
  /* GPU optimization */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
}

.main-nav .container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  text-decoration: none;
  /* Fix flickering: use specific properties instead of 'all' */
  transition: color 0.2s ease, opacity 0.2s ease;
  letter-spacing: -0.02em;
}

.logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(30, 64, 175, 0.2));
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  font-weight: 500;
  position: relative;
  text-decoration: none;
  padding: 0.5rem 0;
  /* Fix flickering: use specific properties instead of 'all' */
  transition: color 0.2s ease;
  font-size: 0.925rem;
}

.nav-link:hover {
  color: #1e40af;
  color: var(--color-primary, #1e40af);
}

.nav-link.active {
  color: #1e40af;
  color: var(--color-primary, #1e40af);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  gap: 0.875rem;
  align-items: center;
}

.nav-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  /* Fix flickering: use specific properties */
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* GPU optimization */
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.nav-btn.primary {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-primary-600, #2563eb));
  color: white;
  box-shadow: 
    0 4px 15px rgba(30, 64, 175, 0.25),
    0 2px 4px rgba(30, 64, 175, 0.1);
}

.nav-btn.primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  background: linear-gradient(135deg, var(--color-primary-700, #1d4ed8), var(--color-primary, #1e40af));
  color: white;
  box-shadow: 
    0 8px 25px rgba(30, 64, 175, 0.35),
    0 4px 8px rgba(30, 64, 175, 0.15);
  transform: translateY(-2px);
}

.nav-btn.secondary {
  background: white;
  color: #1e40af;
  color: var(--color-primary, #1e40af);
  border: 1.5px solid #1e40af;
  border: 1.5px solid var(--color-primary, #1e40af);
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.nav-btn.secondary:hover {
  background: #eff6ff;
  background: var(--color-primary-50, #eff6ff);
  border-color: #1e40af;
  border-color: var(--color-primary, #1e40af);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
  transform: translateY(-2px);
}

.nav-btn.back-home {
  background: rgba(100, 116, 139, 0.08);
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  border: 1px solid rgba(100, 116, 139, 0.15);
}

.nav-btn.back-home:hover {
  background: rgba(100, 116, 139, 0.15);
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  transform: translateY(-1px);
}

/* Clean User Info Display */
.user-info-compact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 0.75rem;
}

.user-company {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  font-size: 0.875rem;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
}

.user-type {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.7rem;
  color: #1e40af;
  color: var(--color-primary, #1e40af);
  background: linear-gradient(135deg, #eff6ff, rgba(6, 182, 212, 0.1));
  background: linear-gradient(135deg, var(--color-primary-50, #eff6ff), rgba(6, 182, 212, 0.1));
  padding: 0.125rem 0.5rem;
  border-radius: 6px;
  margin-top: 0.125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.profile-container {
  position: relative;
}

.profile-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(248, 250, 252, 0.9);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
  cursor: pointer;
  /* Fix flickering: use specific properties */
  transition: background 0.2s ease, border-color 0.2s ease;
}

.profile-button:hover {
  background: #eff6ff;
  background: var(--color-primary-50, #eff6ff);
  border-color: #bfdbfe;
  border-color: var(--color-primary-200, #bfdbfe);
}

.profile-icon {
  font-size: 1.125rem;
  color: #1e40af;
  color: var(--color-primary, #1e40af);
}

.dropdown-arrow {
  font-size: 0.7rem;
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  transition: transform 0.2s ease;
}

.profile-container:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-width: 220px;
  z-index: 1001;
  overflow: hidden;
  animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-header {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.5));
}

.dropdown-company {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  font-size: 0.9rem;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  margin-bottom: 0.25rem;
}

.dropdown-type {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.7rem;
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  display: inline-block;
  background: #eff6ff;
  background: var(--color-primary-50, #eff6ff);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.dropdown-email {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.75rem;
  color: #94a3b8;
  color: var(--color-text-secondary, #94a3b8);
  display: block;
  margin-top: 0.375rem;
}

.dropdown-links {
  padding: 0.5rem 0;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: #374151;
  color: var(--color-text-primary, #374151);
  text-decoration: none;
  /* Fix flickering: use specific properties */
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 0.875rem;
}

.dropdown-link:hover {
  background: #eff6ff;
  background: var(--color-primary-50, #eff6ff);
  color: #1e40af;
  color: var(--color-primary, #1e40af);
}

.dropdown-icon {
  font-size: 1rem;
  width: 1.25rem;
  text-align: center;
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
}

.dropdown-link:hover .dropdown-icon {
  color: #1e40af;
  color: var(--color-primary, #1e40af);
}

.dropdown-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.5rem;
}

.dropdown-logout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background: rgba(239, 68, 68, 0.08);
  border: none;
  border-radius: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  /* Fix flickering: use specific properties */
  transition: background 0.2s ease;
}

.dropdown-logout:hover {
  background: rgba(239, 68, 68, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    padding: 0.75rem 1rem;
  }
  
  .nav-links {
    gap: 1.25rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
  }
  
  .nav-actions {
    gap: 0.5rem;
  }
  
  .nav-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
  }
  
  .user-info-compact {
    display: none;
  }
}
/* Professional Footer Styles with Design System */
.main-footer {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 3rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.footer-section {
  flex: 1 1;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(6, 182, 212, 0.3));
}

.footer-logo .logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.footer-section p {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  color: #94a3b8;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  color: white;
  transform: translateY(-2px);
  border-color: transparent;
}

.footer-links {
  flex: 2 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1 1;
  min-width: 160px;
}

.footer-column h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.875rem;
}

.footer-column a {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.925rem;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding-block: 3px;
}

.footer-column a:hover {
  color: #06b6d4;
  color: var(--color-accent, #06b6d4);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  flex: 0 1;
}

.footer-bottom .footer-links a {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: #64748b;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom .footer-links a:hover {
  color: #06b6d4;
  color: var(--color-accent, #06b6d4);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 4rem 0 2rem;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links {
    justify-content: space-between;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem 0;
  }
  
  .footer-bottom .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column a:hover {
    transform: none;
  }
}
/* Home Component Styles - Professional Design System v2.0 */

/* Base styles are inherited from index.css */

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  padding: 6rem 2rem 6rem;
  background: linear-gradient(135deg, #1e40af 0%, #0891b2 50%, #06b6d4 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, var(--color-accent-600, #0891b2) 50%, var(--color-accent, #06b6d4) 100%);
  color: white;
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  justify-content: space-between;
  margin-top: 0;
}

/* Ensure all text in hero section is visible while maintaining theme */
.hero-section * {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Subtle, cleaner hero without decorative wedge */
.hero-section::after {
  display: none;
}

/* Decorative background elements */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 3.75rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #cffafe 50%, #a5f3fc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-content p {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 95%;
  line-height: 1.7;
  font-weight: 400;
}

/* Clean hero text highlights with white borders */
.hero-section .hero-content .hero-text-highlights {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-section .hero-content .hero-text-highlights .highlight-text {
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.hero-section .hero-content .hero-text-highlights .highlight-text:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

/* CTA buttons with proper theme styling */
.home-container .hero-section .hero-content .hero-cta {
  display: flex !important;
  gap: 1rem !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.home-container .hero-section .hero-content .hero-cta .register-button {
  padding: 1rem 2rem !important;
  background: white !important;
  color: #1e40af !important;
  color: var(--color-primary, #1e40af) !important;
  border-radius: 1rem !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  font-size: 1.1rem !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  text-align: center !important;
  letter-spacing: 0.02em !important;
}

.register-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.register-button:hover::before {
  opacity: 1;
}

.register-button:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25) !important;
}

/* Calm, accessible focus styles */
.register-button:focus-visible,
.demo-button-large:focus-visible,
.pricing-cta:focus-visible,
.features-button:focus-visible,
.cta-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.hero-cta .demo-button-large {
  padding: 1rem 2rem;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  letter-spacing: 0.02em;
}

.hero-cta .demo-button-large:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-2px);
}

.hero-image {
  flex: 0 0 480px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-decoration {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  z-index: -1;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Chat Bubble with enhanced visibility */
.chat-bubble {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 12px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.chat-header {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, var(--color-accent, #06b6d4) 100%);
  color: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
}

.chat-title {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
}

.chat-messages {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.message {
  padding: 0.875rem 1.25rem;
  border-radius: 1.25rem;
  max-width: 85%;
  line-height: 1.5;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  font-size: 0.95rem;
  animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message.user {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  background: linear-gradient(135deg, var(--color-primary-100, #dbeafe) 0%, var(--color-primary-50, #eff6ff) 100%);
  align-self: flex-end;
  border-bottom-right-radius: 0.375rem;
  color: #1e40af;
  color: var(--color-primary-800, #1e40af);
  border: 1px solid #bfdbfe;
  border: 1px solid var(--color-primary-200, #bfdbfe);
}

.message.bot {
  background: white;
  border-bottom-left-radius: 0.375rem;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.message.typing {
  background: white;
  border-bottom-left-radius: 0.375rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.typing-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, var(--color-accent, #06b6d4) 100%);
  border-radius: 50%;
  animation: typingAnimation 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingAnimation {
  0%, 100% { 
    transform: translateY(0);
    opacity: 0.5;
  }
  50% { 
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  background: #dbeafe;
  background: var(--color-primary-100, #dbeafe);
  color: #1d4ed8;
  color: var(--color-primary-700, #1d4ed8);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-header h2 span {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, var(--color-accent, #06b6d4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-description {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.125rem;
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, var(--color-accent, #06b6d4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.12),
    0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #bfdbfe;
  border-color: var(--color-primary-200, #bfdbfe);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, var(--color-accent, #06b6d4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 40px -10px rgba(30, 64, 175, 0.35);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.05) rotate(5deg);
}

.feature-icon {
  font-size: 1.75rem;
  color: white;
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.65;
  font-size: 0.95rem;
}

.feature-link {
  color: #1e40af;
  color: var(--color-primary, #1e40af);
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.5rem 0;
}

.feature-link:hover {
  color: #06b6d4;
  color: var(--color-accent, #06b6d4);
  gap: 0.75rem;
}

.feature-link svg,
.feature-link::after {
  transition: transform 0.2s ease;
}

.feature-link:hover svg,
.feature-link:hover::after {
  transform: translateX(4px);
}

.features-cta {
  text-align: center;
  margin-top: 4rem;
}

.features-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, var(--color-primary-600, #2563eb) 100%);
  color: white;
  border-radius: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 
    0 10px 40px -10px rgba(30, 64, 175, 0.35),
    0 4px 6px rgba(30, 64, 175, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-button:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 20px 50px -10px rgba(30, 64, 175, 0.4),
    0 8px 12px rgba(30, 64, 175, 0.15);
}

/* Pricing Section */
.pricing-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.pricing-toggle span {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  transition: color 0.3s ease;
}

.pricing-toggle span.active {
  color: #1e40af;
  color: var(--color-primary, #1e40af);
}

.toggle-switch {
  position: relative;
  width: 64px;
  height: 32px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch:hover {
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.toggle-slider.annual {
  transform: translateX(32px);
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
}

.discount-badge {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #059669;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.annual-total {
  font-size: 1rem;
  color: #10b981;
  font-weight: 600;
  margin-top: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1280px;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.12),
    0 15px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover::before {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
}

.pricing-card.featured {
  border: 2px solid #1e40af;
  border: 2px solid var(--color-primary, #1e40af);
  transform: scale(1.02);
}

.pricing-card.featured::before {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  height: 5px;
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-12px);
}

.pricing-tier {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #475569;
  color: var(--color-text-secondary, #475569);
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier.best-value {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  color: white;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.pricing-header {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.5), transparent);
}

.pricing-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.price {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 3.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.pricing-card:hover .price {
  transform: scale(1.02);
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.price-description {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  margin: 0.5rem 0 0;
}

.pricing-features {
  padding: 2rem;
  list-style: none;
  text-align: left;
  margin: 0;
  flex-grow: 1;
}

.pricing-features li {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  padding: 0.875rem 0;
  color: #334155;
  color: var(--color-text-primary, #334155);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.check-icon {
  color: #10b981;
  font-weight: bold;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.pricing-cta {
  display: block;
  margin: 0 2rem 2rem;
  padding: 1.125rem 1.5rem;
  background: linear-gradient(135deg, #1e40af, #2563eb);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-primary-600, #2563eb));
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  box-shadow: 
    0 10px 30px rgba(30, 64, 175, 0.25),
    0 4px 10px rgba(30, 64, 175, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.pricing-cta:hover::before {
  left: 100%;
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(30, 64, 175, 0.3),
    0 8px 15px rgba(30, 64, 175, 0.2);
}

.pricing-card.pro {
  transform: scale(1.03);
  border: 2px solid #1e40af;
  border: 2px solid var(--color-primary, #1e40af);
  box-shadow: 
    0 30px 60px rgba(30, 64, 175, 0.15),
    0 15px 30px rgba(30, 64, 175, 0.1);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.pricing-card.pro::before {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  height: 5px;
}

.pricing-card.pro:hover {
  transform: scale(1.03) translateY(-12px);
  box-shadow: 
    0 40px 80px rgba(30, 64, 175, 0.2),
    0 20px 40px rgba(30, 64, 175, 0.15);
}

.pricing-card.pro .pricing-cta {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  box-shadow: 
    0 15px 40px rgba(30, 64, 175, 0.35),
    0 8px 15px rgba(6, 182, 212, 0.2);
}

.pricing-footnote {
  margin: 3rem auto 0;
  max-width: 700px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.trial-badge {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(6, 182, 212, 0.08));
  color: #1e40af;
  color: var(--color-primary, #1e40af);
  padding: 1rem 2rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(30, 64, 175, 0.15);
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
}

.trial-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.pricing-details-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e40af;
  color: var(--color-primary, #1e40af);
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.pricing-details-link:hover {
  color: #06b6d4;
  color: var(--color-accent, #06b6d4);
  gap: 0.75rem;
}

/* Testimonials section */
.testimonials-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.03);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.1),
    0 10px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
  padding-top: 2rem;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-content p {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1rem;
  line-height: 1.75;
  color: #334155;
  color: var(--color-text-primary, #334155);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}

.author-details h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.1rem;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  margin: 0 0 0.25rem;
  font-weight: 600;
}

.author-details p {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  margin: 0;
}

/* CTA Banner */
.cta-banner {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #0f172a 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, #1e3a8a 50%, #0f172a 100%);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0) 60%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-content p {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1.125rem 2.25rem;
  border-radius: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: white;
  color: #1e40af;
  color: var(--color-primary, #1e40af);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
  transition: left 0.5s ease;
}

.cta-button.primary:hover::before {
  left: 100%;
}

.cta-button.primary:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.2),
    0 12px 25px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-graphic {
  position: absolute;
  bottom: 0;
  right: 10%;
  height: 400px;
  width: 400px;
  background: url("data:image/svg+xml;utf8,<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"rgba%28255, 255, 255, 0.025%29\" d=\"M47.5,-61.3C59.3,-51.3,65.6,-34.3,70.5,-16.3C75.4,1.7,79,20.8,72.3,34.1C65.6,47.4,48.6,54.9,31.6,61.1C14.5,67.3,-2.7,72.1,-19.6,69.4C-36.5,66.7,-53.1,56.5,-64.7,41.3C-76.4,26.1,-83,6,-78.8,-11.1C-74.6,-28.2,-59.6,-42.3,-44.1,-51.8C-28.6,-61.3,-12.8,-66.2,2.7,-69.5C18.3,-72.8,35.6,-71.4,47.5,-61.3Z\" transform=\"translate%28100 100%29\" /></svg>") no-repeat center center;
  opacity: 0.5;
  z-index: 0;
}

/* Footer Styles */
.main-footer {
  background-color: #0f172a;
  color: white;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 4rem;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-section p {
  color: #94a3b8;
  max-width: 300px;
  line-height: 1.7;
  margin: 1.5rem 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .logo-icon {
  font-size: 2rem;
}

.footer-logo .logo-text {
  font-size: 1.25rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
}

.footer-column h4 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom .footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-bottom .footer-links a:hover {
  color: white;
}

/* NavBar styles are defined in NavBar.css - do not duplicate here */

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-section {
    padding: 6rem 2rem 4rem;
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 3rem;
    max-width: 100%;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card.pro {
    transform: translateY(0);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-section p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.25rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .register-button, .demo-button-large {
    width: 100%;
    text-align: center;
  }
  
  .register-button {
    background: linear-gradient(135deg, #ffffff, #f1f5f9) !important;
    color: #0f172a !important;
  }
  
  .demo-button-large {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 3rem auto;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-bottom .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}
.upload-container {
  padding: 2rem;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.file-input {
  margin-bottom: 1rem;
  width: 100%;
  padding: 0.5rem;
}

.upload-button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.upload-button:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

.error-message {
  color: #dc3545;
  margin-top: 0.5rem;
}

.success-message {
  color: #28a745;
  margin-top: 0.5rem;
}
.whatsapp-config {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.config-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  font-weight: 500;
  color: #1e293b;
}

.input-group input {
  padding: 0.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.notification-prefs {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
  cursor: pointer;
}

.save-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 0.875rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.save-btn:hover:not(:disabled) {
  background-color: #128c7e;
}

.save-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
/* ScheduleDemo Page Styles */

.schedule-demo-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1e293b;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
.sd-header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.sd-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #2563eb;
}

.logo-icon {
  font-size: 1.75rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
}

.sd-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.sd-nav a {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.sd-nav a:hover, 
.sd-nav a.active {
  color: #2563eb;
}

.sd-nav a.active {
  position: relative;
}

.sd-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2563eb;
}

.demo-button {
  padding: 0.5rem 1rem;
  background-color: #f1f5f9;
  border-radius: 0.375rem;
}

.login-button {
  padding: 0.5rem 1rem;
  background-color: #2563eb;
  color: white !important;
  border-radius: 0.375rem;
}

.login-button:hover {
  background-color: #1d4ed8;
}

/* Hero Section */
.sd-hero {
  padding: 5rem 0;
  background: linear-gradient(120deg, #f0f9ff 0%, #e0f2fe 100%);
  text-align: center;
}

.sd-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #0f172a;
}

.sd-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: #475569;
}

/* Form Section */
.demo-form-section {
  padding: 5rem 0;
  background-color: white;
}

.form-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 3rem;
  gap: 3rem;
}

.demo-form {
  background-color: #f8fafc;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.error-banner {
  background-color: #fee2e2;
  color: #b91c1c;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section h2 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.section-description {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #1e293b;
  transition: all 0.2s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Interests Grid */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.interest-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.interest-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  cursor: pointer;
}

.interest-item label {
  color: #475569;
  font-weight: 400;
  cursor: pointer;
}

/* Form Footer */
.form-footer {
  margin-top: 2.5rem;
  text-align: center;
}

.submit-button {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.2s;
}

.submit-button:hover:not(:disabled) {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-button.loading {
  background-image: linear-gradient(45deg, #2563eb 25%, #1d4ed8 25%, #1d4ed8 50%, #2563eb 50%, #2563eb 75%, #1d4ed8 75%, #1d4ed8);
  background-size: 1rem 1rem;
  animation: loading-stripes 1s linear infinite;
}

@keyframes loading-stripes {
  0% { background-position: 0 0; }
  100% { background-position: 1rem 0; }
}

.form-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.form-disclaimer a {
  color: #2563eb;
  text-decoration: none;
}

.form-disclaimer a:hover {
  text-decoration: underline;
}

/* Success Message */
.success-message {
  background-color: #f0fdf4;
  padding: 3rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.success-message h2 {
  font-size: 1.75rem;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.success-message p {
  color: #475569;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.primary-action {
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
}

.primary-action:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.secondary-action {
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: #2563eb;
  border: 1px solid #2563eb;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.secondary-action:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Demo Details */
.demo-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-card {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.detail-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.detail-card h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.detail-card p {
  color: #475569;
  margin-bottom: 1rem;
}

.detail-card ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.detail-card li {
  margin-bottom: 0.5rem;
  color: #475569;
}

.phone-link {
  display: block;
  margin-top: 0.5rem;
  color: #2563eb;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

/* Testimonials Section */
.demo-testimonials {
  padding: 5rem 0;
  background-color: #f1f5f9;
}

.demo-testimonials h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #0f172a;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: #1e293b;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.author-details h4 {
  margin: 0;
  font-size: 1rem;
  color: #0f172a;
}

.author-details p {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: white;
  color: #2563eb;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1.125rem;
}

.cta-button:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

/* Footer Styles */
.sd-footer {
  background-color: #1e293b;
  color: #f8fafc;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info {
  flex: 1 1;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
  color: white;
}

.footer-info p {
  color: #94a3b8;
  max-width: 300px;
}

.footer-links {
  flex: 2 1;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
  .form-container {
    grid-template-columns: 1fr;
  }
  
  .demo-details {
    order: -1;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .sd-header .container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  .sd-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .sd-hero {
    padding: 3rem 0;
  }
  
  .sd-hero h1 {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .interests-grid {
    grid-template-columns: 1fr;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}
/* GetStarted Page Styles */

.get-started-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1e293b;
  line-height: 1.6;
  margin-top: 5rem; /* Add margin to push the content down */
}

.container {
  max-width: 1200px;
  margin: 4rem;
  padding: 0 5rem;
  
  
}

/* Header Styles */
.gs-header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.gs-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #2563eb;
}

.logo-icon {
  font-size: 1.75rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
}

.gs-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.gs-nav a {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.gs-nav a:hover, 
.gs-nav a.active {
  color: #2563eb;
}

.gs-nav a.active {
  position: relative;
}

.gs-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2563eb;
}

.demo-button {
  padding: 0.5rem 1rem;
  background-color: #f1f5f9;
  border-radius: 0.375rem;
}

.login-button {
  padding: 0.5rem 1rem;
  background-color: #2563eb;
  color: white !important;
  border-radius: 0.375rem;
}

.login-button:hover {
  background-color: #1d4ed8;
}

/* Hero Section */
.gs-hero {
  padding: 7rem 0; /* Increase top padding for better spacing */
  background: linear-gradient(120deg, #f0f9ff 0%, #e0f2fe 100%);
  text-align: center;
}

.gs-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #0f172a;
}

.gs-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: #475569;
}

/* Steps Section */
.steps-section {
  padding: 5rem 0;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1 1;
}

.step-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.step-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #475569;
}

.step-list {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.step-list li {
  margin-bottom: 0.5rem;
  color: #475569;
}

.step-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
}

.step-button:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.code-block {
  background-color: #0f172a;
  color: #e2e8f0;
  padding: 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  overflow-x: auto;
  margin-top: 1rem;
}

/* Implementation Options Section */
.implementation-options {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.implementation-options h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #0f172a;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.option-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.option-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.option-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.option-card p {
  color: #475569;
  margin-bottom: 1.5rem;
}

.option-features {
  padding-left: 1.5rem;
}

.option-features li {
  margin-bottom: 0.5rem;
  color: #475569;
}

/* Resources Section */
.resources-section {
  padding: 5rem 0;
}

.resources-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #0f172a;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.resource-card {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.resource-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.resource-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.resource-card p {
  color: #475569;
  margin-bottom: 1.5rem;
}

.resource-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: white;
  color: #2563eb;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid #e2e8f0;
}

.resource-link:hover {
  background-color: #f1f5f9;
}

/* Support Section */
.support-section {
  padding: 5rem 0;
  background-color: #f0f9ff;
}

.support-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #0f172a;
}

.support-section > .container > p {
  text-align: center;
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.support-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.support-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.support-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.support-card p {
  color: #475569;
  margin-bottom: 1.5rem;
}

.support-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.support-button:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: white;
  color: #2563eb;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1.125rem;
}

.cta-button:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

/* Footer Styles */
.gs-footer {
  background-color: #1e293b;
  color: #f8fafc;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info {
  flex: 1 1;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
  color: white;
}

.footer-info p {
  color: #94a3b8;
  max-width: 300px;
}

.footer-links {
  flex: 2 1;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gs-header .container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  .gs-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .gs-hero {
    padding: 3rem 0;
  }
  
  .gs-hero h1 {
    font-size: 2rem;
  }
  
  .step {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .step-number {
    margin-bottom: 0.5rem;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}
/* Features Page Styles */

.features-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1e293b;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
.features-header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.features-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #2563eb;
}

.logo-icon {
  font-size: 1.75rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
}

.features-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.features-nav a {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.features-nav a:hover, 
.features-nav a.active {
  color: #2563eb;
}

.features-nav a.active {
  position: relative;
}

.features-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2563eb;
}

.demo-button {
  padding: 0.5rem 1rem;
  background-color: #f1f5f9;
  border-radius: 0.375rem;
}

.login-button {
  padding: 0.5rem 1rem;
  background-color: #2563eb;
  color: white !important;
  border-radius: 0.375rem;
}

.login-button:hover {
  background-color: #1d4ed8;
}

/* Hero Section */
.features-hero {
  padding: 5rem 0;
  background: linear-gradient(120deg, #f0f9ff 0%, #e0f2fe 100%);
  text-align: center;
}

.features-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #0f172a;
}

.features-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: #475569;
}

/* Feature Sections */
.feature-section {
  padding: 5rem 0;
}

.feature-section:nth-child(even) {
  background-color: #f8fafc;
}

.feature-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.feature-grid.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1 1;
}

.feature-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.feature-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #475569;
}

.feature-list {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.feature-list li {
  margin-bottom: 0.5rem;
  color: #475569;
}

.feature-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
}

.feature-cta:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.feature-image {
  flex: 1 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* AI Section Visuals */
.ai-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.docs-icon {
  font-size: 3rem;
}

.ai-process {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ai-icon {
  font-size: 2.5rem;
}

.process-arrow {
  font-size: 1.5rem;
}

.knowledge-base {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  width: 100%;
}

.kb-block {
  height: 60px;
  background-color: #f1f5f9;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.kb-block::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 80%;
  height: 10px;
  background-color: #e2e8f0;
  border-radius: 3px;
}

.kb-block::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 10px;
  width: 60%;
  height: 10px;
  background-color: #e2e8f0;
  border-radius: 3px;
}

/* Chat Section Visuals */
.chat-demo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.chat-message {
  padding: 1rem;
  border-radius: 1rem;
  max-width: 85%;
  line-height: 1.4;
}

.chat-message.user {
  background-color: #f1f5f9;
  align-self: flex-end;
  border-bottom-right-radius: 0.25rem;
}

.chat-message.bot {
  background-color: #eff6ff;
  border-bottom-left-radius: 0.25rem;
}

/* Channels Section Visuals */
.channels-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
  gap: 1.5rem;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.channel {
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.channel:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.channel-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.channel-name {
  font-weight: 500;
}

/* Analytics Section Visuals */
.analytics-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.chart {
  height: 80px;
  background-color: #f1f5f9;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.bar-chart::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10px;
  width: 30px;
  height: 40px;
  background-color: #2563eb;
  border-radius: 3px 3px 0 0;
}

.bar-chart::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  width: 30px;
  height: 30px;
  background-color: #2563eb;
  border-radius: 3px 3px 0 0;
}

.line-chart::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2563eb;
  -webkit-clip-path: polygon(0% 100%, 20% 50%, 40% 70%, 60% 40%, 80% 30%, 100% 10%);
          clip-path: polygon(0% 100%, 20% 50%, 40% 70%, 60% 40%, 80% 30%, 100% 10%);
}

.analytics-metrics {
  display: flex;
  justify-content: space-between;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

.metric-label {
  font-size: 0.875rem;
  color: #64748b;
}

/* All Features Section */
.all-features-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.all-features-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.features-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.features-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
  color: #0f172a;
}

.features-column ul {
  padding-left: 1.5rem;
}

.features-column li {
  margin-bottom: 0.75rem;
  color: #475569;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.primary-cta {
  padding: 0.875rem 1.5rem;
  background-color: white;
  color: #2563eb;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1.125rem;
}

.primary-cta:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

.secondary-cta {
  padding: 0.875rem 1.5rem;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1.125rem;
}

.secondary-cta:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

/* Footer Styles */
.features-footer {
  background-color: #1e293b;
  color: #f8fafc;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info {
  flex: 1 1;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
  color: white;
}

.footer-info p {
  color: #94a3b8;
  max-width: 300px;
}

.footer-links {
  flex: 2 1;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
  .feature-grid, 
  .feature-grid.reverse {
    flex-direction: column;
    gap: 3rem;
  }
  
  .feature-image {
    order: 2;
  }
  
  .feature-content {
    order: 1;
  }
  
  .features-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .features-header .container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  .features-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .features-hero {
    padding: 3rem 0;
  }
  
  .features-hero h1 {
    font-size: 2rem;
  }
  
  .features-hero p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}
/**
 * Professional Pricing Component Styles with Design System
 */

/* General page styles */
.pricing-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-family: var(--font-body, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  line-height: 1.6;
  background: linear-gradient(180deg, #fafafa 0%, #f1f5f9 100%);
  min-height: 100vh;
}

.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header and navigation */
.pricing-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
}

.logo-icon {
  font-size: 1.5rem;
  margin-right: 0.625rem;
  filter: drop-shadow(0 2px 4px rgba(30, 64, 175, 0.2));
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.pricing-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.pricing-nav a {
  text-decoration: none;
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  font-weight: 500;
  font-size: 0.925rem;
  transition: color 0.2s ease;
}

.pricing-nav a:hover,
.pricing-nav a.active {
  color: #1e40af;
  color: var(--color-primary, #1e40af);
}

.demo-button {
  padding: 0.5rem 1rem;
  background: rgba(100, 116, 139, 0.08);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-weight: 500;
}

.demo-button:hover {
  background: rgba(100, 116, 139, 0.15);
}

.login-button {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #1e40af, #2563eb);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-primary-600, #2563eb));
  color: #fff !important;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
}

.login-button:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  background: linear-gradient(135deg, var(--color-primary-700, #1d4ed8), var(--color-primary, #1e40af));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

/* Hero section */
.pricing-hero {
  text-align: center;
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #0f172a 100%);
  background: linear-gradient(135deg, var(--color-primary, #1e40af) 0%, #1e3a8a 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.pricing-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.pricing-hero p {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.billing-toggle span {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.billing-toggle span.active {
  color: white;
  font-weight: 600;
}

.save-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
  color: #34d399;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  margin-left: 0.5rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Switch toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
  background: linear-gradient(135deg, #60a5fa, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary-400, #60a5fa), var(--color-accent, #06b6d4));
}

input:focus + .slider {
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Pricing plans */
.pricing-plans {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 50%, #ffffff 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.plan-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  --plan-color: var(--color-primary, #1e40af);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.02);
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.1),
    0 10px 25px rgba(0, 0, 0, 0.06);
}

.plan-card:hover::before {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
}

.recommended {
  border: 2px solid #1e40af;
  border: 2px solid var(--color-primary, #1e40af);
  transform: scale(1.02);
  box-shadow: 
    0 20px 50px rgba(30, 64, 175, 0.12),
    0 10px 25px rgba(30, 64, 175, 0.08);
}

.recommended::before {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  height: 5px;
}

.recommended:hover {
  transform: scale(1.02) translateY(-10px);
}

.recommended-badge {
  position: absolute;
  top: 1rem;
  right: 0;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  color: white;
  padding: 0.375rem 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.plan-header {
  margin-bottom: 1.5rem;
}

.plan-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e40af;
  color: var(--color-primary, #1e40af);
  letter-spacing: -0.01em;
}

.plan-description {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  margin-bottom: 1.25rem;
  min-height: 44px;
  line-height: 1.6;
}

.plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.currency {
  font-size: 1.5rem;
  margin-top: 0.375rem;
}

.period {
  font-size: 1rem;
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  font-weight: 400;
  margin-top: 0.75rem;
  margin-left: 0.25rem;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.billed-annually {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  color: #64748b;
  color: var(--color-text-secondary, #64748b);
  margin-top: 0.5rem;
}

.plan-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  font-family: 'Inter', sans-serif;
  font-family: var(--font-body, 'Inter', sans-serif);
  padding: 0.625rem 0;
  display: flex;
  align-items: center;
  color: #334155;
  color: var(--color-text-primary, #334155);
  font-size: 0.925rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.plan-features li:last-child {
  border-bottom: none;
}

.feature-icon {
  color: #10b981;
  margin-right: 0.75rem;
  font-weight: bold;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.1));
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  background: linear-gradient(135deg, #1e40af, #2563eb);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-primary-600, #2563eb));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(30, 64, 175, 0.25),
    0 4px 10px rgba(30, 64, 175, 0.15);
}

.plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 15px 40px rgba(30, 64, 175, 0.3),
    0 8px 15px rgba(30, 64, 175, 0.2);
}

.recommended .plan-cta {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  background: linear-gradient(135deg, var(--color-primary, #1e40af), var(--color-accent, #06b6d4));
  box-shadow: 
    0 12px 35px rgba(30, 64, 175, 0.3),
    0 6px 15px rgba(6, 182, 212, 0.2);
}

/* Features comparison table */
.comparison-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.comparison-section h2 {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #0f172a;
  color: var(--color-text-primary, #0f172a);
  letter-spacing: -0.02em;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
  background-color: #f9fafb;
  font-weight: 600;
}

.comparison-table th.feature-name {
  text-align: left;
  width: 300px;
}

.comparison-table td.feature-name {
  text-align: left;
  font-weight: 500;
}

.category-row td {
  background-color: #f3f4f6;
  font-weight: 700;
  color: #333;
  text-align: left;
}

.plan-column.recommended {
  background-color: #f0f9ff;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

/* FAQ section */
.pricing-faq {
  padding: 80px 0;
}

.pricing-faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  gap: 30px;
}

.faq-item {
  padding: 24px;
  background-color: #f9fafb;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 16px;
  color: #2563eb;
}

.faq-item p {
  margin: 0;
  color: #4b5563;
}

/* Enterprise CTA section */
.enterprise-cta {
  padding: 80px 0;
  background-color: #1e40af;
  color: white;
}

.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  gap: 40px;
  align-items: center;
}

.enterprise-content h2 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 20px;
}

.enterprise-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.enterprise-actions {
  display: flex;
  gap: 16px;
}

.enterprise-demo-btn,
.enterprise-contact-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.enterprise-demo-btn {
  background-color: white;
  color: #1e40af;
}

.enterprise-demo-btn:hover {
  background-color: #f9fafb;
}

.enterprise-contact-btn {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.enterprise-contact-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.enterprise-features {
  background-color: #2563eb;
  border-radius: 12px;
  padding: 30px;
}

.enterprise-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.enterprise-feature:last-child {
  margin-bottom: 0;
}

.enterprise-feature .feature-icon {
  font-size: 24px;
  margin-right: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.enterprise-feature h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.enterprise-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

/* Testimonials section */
.testimonials-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-content p {
  font-style: italic;
  color: #4b5563;
  position: relative;
  padding-left: 24px;
  margin: 0;
}

.testimonial-content p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -15px;
  font-size: 42px;
  color: #cbd5e1;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 16px;
}

.author-details h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.author-details p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

/* CTA section */
.pricing-cta {
  text-align: center;
  padding: 80px 0;
  background-color: #f0f9ff;
}

.pricing-cta h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.pricing-cta p {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: #1d4ed8;
}

/* Footer styles */
.pricing-footer {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 60px;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-info {
  font-size: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  font-size: 24px;
  margin-right: 10px;
}

.footer-logo .logo-text {
  font-weight: 700;
  font-size: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  gap: 30px;
}

.footer-column h4 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 20px;
  color: #f9fafb;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 14px;
}

.footer-column a:hover {
  color: #f9fafb;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #374151;
  font-size: 14px;
  color: #9ca3af;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .enterprise-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-nav ul {
    display: none;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .plan-card.recommended {
    transform: scale(1);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .enterprise-actions {
    flex-direction: column;
  }
  
  .comparison-table th.feature-name {
    width: 200px;
  }
  
  .pricing-header .container {
    flex-direction: column;
    gap: 15px;
  }
}
/**
 * Contact Component Styles
 */

/* General page styles */
.contact-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #333;
  line-height: 1.6;
  /* GPU optimization to prevent flickering */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and navigation */
.contact-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
  /* GPU optimization to prevent flickering */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.contact-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.logo-icon {
  font-size: 24px;
  margin-right: 10px;
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
}

.contact-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.contact-nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-nav a:hover {
  color: #2563eb;
}

.demo-button {
  padding: 8px 16px;
  background-color: #f3f4f6;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.demo-button:hover {
  background-color: #e5e7eb;
}

.login-button {
  padding: 8px 16px;
  background-color: #2563eb;
  color: #fff !important;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.login-button:hover {
  background-color: #1d4ed8;
}

/* Hero section */
.contact-hero {
  text-align: center;
  padding: 80px 0 40px;
  background-color: #f9fafb;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact methods section */
.contact-methods {
  padding: 60px 0;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  gap: 30px;
}

.method-card {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  /* Fix flickering: add GPU optimization for transforms */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.method-card:hover {
  transform: translateY(-5px) translateZ(0);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.method-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.method-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.method-card p {
  color: #6b7280;
  margin-bottom: 16px;
}

.method-link {
  display: block;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  margin-bottom: 10px;
}

.method-link:hover {
  text-decoration: underline;
}

.hours {
  font-size: 14px;
  color: #9ca3af;
}

/* Contact form section */
.contact-form-section {
  padding: 60px 0;
  background-color: #f9fafb;
}

/* Form Container Styling - Center everything */
.form-container {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin: 0 auto; /* Center horizontally */
  max-width: 700px; /* Slightly narrower for better proportions */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center children horizontally */
  /* GPU optimization to prevent flickering */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Form header styling - Ensure it's centered and above form */
.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
  width: 100%; /* Take full width to ensure proper centering */
}

.form-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
  font-weight: 700;
}

.form-header p {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto; /* Center the text */
}

/* Form layout and alignment - Make sure it's full width */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%; /* Take full width of container */
  /* GPU optimization to prevent flickering */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Row alignment for side-by-side fields - Keep consistency */
.form-row {
  display: flex;
  gap: 2rem;
  width: 100%; /* Ensure full width */
}

/* Make form-row stack on mobile */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 1.75rem;
  }
  
  .form-container {
    padding: 2rem 1.5rem;
  }
}

/* Form group for each input */
.form-group {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

/* Label styling - consistent alignment */
.form-group label {
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Input styling with consistent height and padding */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.5;
  width: 100%;
  /* Fix flickering: use specific properties instead of 'all' */
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  font-family: inherit;
  color: #1f2937;
  background-color: #f9fafb;
  /* GPU optimization to prevent flickering */
  will-change: border-color, box-shadow;
  transform: translateZ(0);
  -webkit-font-smoothing: subpixel-antialiased;
}

/* Focus state for all inputs */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4f46e5;
  border-color: var(--primary, #4f46e5);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* Placeholder text styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

/* Checkbox group with horizontal alignment */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-top: -0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  accent-color: #4f46e5;
  accent-color: var(--primary, #4f46e5);
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  color: #4b5563;
}

/* Submit button section */
.form-actions {
  margin-top: 0.5rem;
}

.submit-button {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #4f46e5;
  background-color: var(--primary, #4f46e5);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  /* Fix flickering: use specific properties instead of 'all' */
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  height: 54px;
  /* GPU optimization to prevent flickering */
  will-change: transform, background-color;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.submit-button:hover {
  background-color: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.submit-button svg {
  transition: transform 0.3s ease;
}

.submit-button:hover svg {
  transform: translateX(3px);
}

/* Privacy policy note */
.privacy-note {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1.5rem;
}

.privacy-note a {
  color: #4f46e5;
  color: var(--primary, #4f46e5);
  text-decoration: underline;
}

/* Success message styling */
.success-message {
  padding: 3rem 2rem;
  text-align: center;
  width: 100%; /* Take full width */
}

.success-icon {
  width: 64px;
  height: 64px;
  background-color: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.success-message h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.success-message p {
  color: #4b5563;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.new-message-btn {
  padding: 0.875rem 1.5rem;
  background-color: #f9fafb;
  color: #4f46e5;
  color: var(--primary, #4f46e5);
  border: 2px solid #4f46e5;
  border: 2px solid var(--primary, #4f46e5);
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  /* Fix flickering: use specific properties instead of 'all' */
  transition: background-color 0.2s ease, color 0.2s ease;
  /* GPU optimization */
  will-change: background-color, color;
  transform: translateZ(0);
}

.new-message-btn:hover {
  background-color: #4f46e5;
  background-color: var(--primary, #4f46e5);
  color: white;
}

/* Error message styling */
.error-message {
  background-color: #fef2f2;
  color: #b91c1c;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #ef4444;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Loading overlay */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  border-radius: 12px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(79, 70, 229, 0.2);
  border-radius: 50%;
  border-top-color: #4f46e5;
  border-top-color: var(--primary, #4f46e5);
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-overlay p {
  font-size: 1.1rem;
  color: #4b5563;
  font-weight: 500;
}

/* FAQ section */
.contact-faq {
  padding: 80px 0;
}

.contact-faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  gap: 30px;
}

.faq-item {
  padding: 24px;
  background-color: #f9fafb;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 16px;
  color: #2563eb;
}

.faq-item p {
  margin: 0;
  color: #4b5563;
}

.faq-item a {
  color: #2563eb;
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Footer styles */
.contact-footer {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 60px;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-info {
  font-size: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  font-size: 24px;
  margin-right: 10px;
}

.footer-logo .logo-text {
  font-weight: 700;
  font-size: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  gap: 30px;
}

.footer-column h4 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 20px;
  color: #f9fafb;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 14px;
}

.footer-column a:hover {
  color: #f9fafb;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #374151;
  font-size: 14px;
  color: #9ca3af;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-nav ul {
    display: none;
  }
  
  .methods-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .contact-header .container {
    flex-direction: column;
    gap: 15px;
  }
  
  .form-container {
    padding: 30px 20px;
  }
}
.support-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: calc(100vh - 80px);
}

.support-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  border-radius: 12px;
}

.support-header h1 {
  margin: 0 0 10px 0;
  font-size: 2.5rem;
  font-weight: 600;
}

.support-header p {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.knowledge-base-browser {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.search-section {
  display: flex;
  justify-content: center;
}

.search-bar {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.search-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 25px;
  font-size: 16px;
  background: white;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #666;
}

.category-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 20px;
  border: 2px solid #e1e5e9;
  background: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-btn:hover {
  border-color: #1e40af;
  background: #f8f9ff;
}

.category-btn.active {
  background: #1e40af;
  color: white;
  border-color: #1e40af;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 20px;
  gap: 20px;
  margin-top: 20px;
}

.guide-card {
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #1e40af;
}

.guide-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.guide-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #2d3748;
  flex: 1 1;
}

.guide-category {
  background: #1e40af;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 10px;
}

.guide-description {
  color: #666;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.guide-footer {
  display: flex;
  justify-content: flex-end;
}

.read-more {
  color: #1e40af;
  font-weight: 500;
  font-size: 0.9rem;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-results h3 {
  margin: 0 0 10px 0;
  color: #2d3748;
}

.additional-support {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e1e5e9;
}

.additional-support h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #2d3748;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.support-option {
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.support-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.support-option h4 {
  margin: 0 0 10px 0;
  color: #2d3748;
  font-size: 1.1rem;
}

.support-option p {
  margin: 0 0 10px 0;
  color: #666;
}

.support-link {
  display: inline-block;
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
  margin: 5px 0;
}

.support-link:hover {
  text-decoration: underline;
}

.support-note {
  font-size: 0.85rem;
  color: #999 !important;
  font-style: italic;
}

/* Guide Viewer Styles */
.guide-viewer {
  max-width: 800px;
  margin: 0 auto;
}

.guide-nav {
  margin-bottom: 30px;
}

.back-btn {
  padding: 10px 20px;
  border: 1px solid #e1e5e9;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #1e40af;
}

.back-btn:hover {
  background: #f8f9ff;
  border-color: #1e40af;
}

.guide-content {
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.markdown-content h1 {
  color: #2d3748;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #e1e5e9;
}

.markdown-content h2 {
  color: #2d3748;
  margin: 30px 0 15px 0;
}

.markdown-content h3 {
  color: #4a5568;
  margin: 25px 0 10px 0;
}

.markdown-content p {
  line-height: 1.7;
  color: #666;
  margin: 0 0 15px 0;
}

.markdown-content strong {
  color: #2d3748;
}

.markdown-content em {
  color: #1e40af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .support-container {
    padding: 15px;
  }
  
  .support-header {
    padding: 30px 15px;
  }
  
  .support-header h1 {
    font-size: 2rem;
  }
  
  .guides-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .guide-card {
    padding: 20px;
  }
  
  .guide-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .guide-category {
    align-self: flex-start;
    margin-left: 0;
  }
  
  .support-options {
    grid-template-columns: 1fr;
  }
  
  .category-filter {
    gap: 8px;
  }
  
  .category-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .guide-content {
    padding: 25px;
  }
}

/**
 * NotFound Component Styles
 */

.not-found-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #f9fafb;
  padding: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.not-found-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.not-found-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.not-found-content p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.home-button,
.login-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 16px;
}

.home-button {
  background-color: #2563eb;
  color: white;
}

.home-button:hover {
  background-color: #1d4ed8;
}

.login-button {
  background-color: #f3f4f6;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}

.login-button:hover {
  background-color: #e5e7eb;
}

.helpful-links {
  background-color: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.helpful-links h2 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 24px;
  text-align: center;
  color: #1f2937;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  gap: 24px;
}

.link-card {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 20px;
}

.link-card h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 16px;
  color: #2563eb;
}

.link-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-card li {
  margin-bottom: 10px;
}

.link-card a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding: 6px 0;
}

.link-card a:hover {
  color: #2563eb;
}

@media (max-width: 768px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
  
  .not-found-actions {
    flex-direction: column;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .not-found-content h1 {
    font-size: 24px;
  }
}
.integrations-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.integrations-hero {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.integrations-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.integrations-intro {
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.integrations-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a202c;
}

.integrations-intro p {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.8;
}

.integrations-grid-section {
  padding: 40px 20px 80px;
}

.category-section {
  margin-bottom: 60px;
}

.category-title {
  font-size: 1.75rem;
  color: #2d3748;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #1e40af;
  display: inline-block;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 30px;
  gap: 30px;
  margin-bottom: 40px;
}

.integration-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.integration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.integration-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.integration-card h4 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 12px;
}

.integration-card p {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.status-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.available {
  background: #c6f6d5;
  color: #22543d;
}

.status-badge.coming-soon {
  background: #fed7d7;
  color: #742a2a;
}

.integration-cta {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  margin: 40px 20px 80px;
}

.integration-cta h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: white;
}

.integration-cta p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: white;
  color: #1e40af;
}

.btn-primary:hover {
  background: #f7fafc;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .integrations-hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .integrations-intro h2 {
    font-size: 1.75rem;
  }

  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .integration-cta h2 {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

.documentation-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.documentation-hero {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.documentation-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.documentation-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
  flex: 1 1;
}

.documentation-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: -webkit-fit-content;
  height: fit-content;
}

.documentation-sidebar h3 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 700;
}

.documentation-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  color: #4a5568;
  font-weight: 500;
  text-align: left;
}

.sidebar-item:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
}

.sidebar-item.active {
  background: #1e40af;
  color: white;
  border-color: #1e40af;
}

.sidebar-icon {
  font-size: 1.25rem;
}

.sidebar-cta {
  background: #f7fafc;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.sidebar-cta h4 {
  font-size: 1rem;
  color: #2d3748;
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 0.875rem;
  color: #718096;
  margin-bottom: 15px;
}

.sidebar-cta-button {
  display: block;
  width: 100%;
  padding: 10px;
  background: #1e40af;
  color: white;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.sidebar-cta-button:hover {
  background: #5568d3;
}

.documentation-content {
  flex: 1 1;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.content-header {
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.content-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

.content-header h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 15px;
}

.content-description {
  font-size: 1.125rem;
  color: #718096;
  line-height: 1.6;
}

.content-body {
  margin-bottom: 50px;
}

.section-block {
  margin-bottom: 30px;
}

.section-block h3 {
  font-size: 1.2rem;
  color: #2d3748;
  margin-bottom: 12px;
}

.content-paragraph {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 12px;
}

.content-paragraph:last-child {
  margin-bottom: 0;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.step-item {
  padding: 25px;
  background: #f7fafc;
  border-radius: 10px;
  border-left: 4px solid #1e40af;
}

.step-item h3 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 12px;
}

.step-item p {
  color: #4a5568;
  line-height: 1.7;
}

.topics-list, .features-list, .platforms-list, .endpoints-list, .issues-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-gap: 15px;
  gap: 15px;
}

.group-sections {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.topics-list li, .features-list li, .platforms-list li, .endpoints-list li, .issues-list li {
  padding: 15px 20px;
  background: #f7fafc;
  border-radius: 8px;
  color: #2d3748;
  position: relative;
  padding-left: 45px;
}

.topics-list li::before, .features-list li::before, .platforms-list li::before, .endpoints-list li::before, .issues-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  color: #1e40af;
  font-weight: bold;
  font-size: 1.25rem;
}

.endpoint-groups {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.endpoint-group {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 18px;
  background: #fafcff;
}

.endpoint-group h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #2d3748;
}

.reference-table-wrapper {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.reference-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: white;
}

.reference-table th,
.reference-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #edf2f7;
  vertical-align: top;
  color: #2d3748;
  line-height: 1.5;
}

.reference-table th {
  background: #f7fafc;
  font-size: 0.9rem;
  font-weight: 700;
}

.reference-table tr:last-child td {
  border-bottom: none;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 30px;
}

.issue-card {
  background: #fff8f8;
  border: 1px solid #fed7d7;
  border-left: 4px solid #e53e3e;
  border-radius: 10px;
  padding: 16px;
}

.issue-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #742a2a;
}

.issue-card p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

.notes-list {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.note-item {
  padding: 12px 14px;
  background: #ebf8ff;
  color: #2a4365;
  border: 1px solid #bee3f8;
  border-radius: 8px;
  line-height: 1.6;
}

.content-footer {
  border-top: 2px solid #e2e8f0;
  padding-top: 30px;
}

.helpful-section {
  text-align: center;
  margin-bottom: 30px;
}

.helpful-section p {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 15px;
}

.helpful-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.helpful-btn {
  padding: 10px 30px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  background: white;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.helpful-btn:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
}

.related-links {
  text-align: center;
}

.related-links h4 {
  font-size: 1.125rem;
  color: #2d3748;
  margin-bottom: 15px;
}

.related-links a {
  display: inline-block;
  margin: 0 15px;
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
}

.related-links a:hover {
  text-decoration: underline;
}

@media (max-width: 968px) {
  .documentation-container {
    flex-direction: column;
  }

  .documentation-sidebar {
    width: 100%;
    position: static;
  }

  .documentation-content {
    padding: 30px 20px;
  }

  .content-header h2 {
    font-size: 2rem;
  }

  .reference-table {
    min-width: 640px;
  }
}

.static-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
}

.page-hero {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.page-content {
  background: white;
  border-radius: 12px;
  padding: 60px;
  margin: 60px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.page-content h2 {
  font-size: 2.25rem;
  color: #1a202c;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.75rem;
  color: #2d3748;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-content p {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-content ul, .page-content ol {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 30px;
}

.page-content li {
  margin-bottom: 10px;
}

.page-content strong {
  color: #2d3748;
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 25px;
  gap: 25px;
  margin: 30px 0;
}

.value-card {
  background: #f7fafc;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  border-color: #1e40af;
}

.value-card h3 {
  font-size: 1.375rem;
  color: #2d3748;
  margin-bottom: 12px;
  margin-top: 0;
}

.value-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #1e40af;
  color: white;
  border: 2px solid #1e40af;
}

.btn-primary:hover {
  background: #5568d3;
  border-color: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background: white;
  color: #1e40af;
  border: 2px solid #1e40af;
}

.btn-secondary:hover {
  background: #1e40af;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(102, 126, 234, 0.2);
}

.info-card {
  background: #f7fafc;
  border-left: 4px solid #1e40af;
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
}

.info-card h3 {
  margin-top: 0;
  color: #2d3748;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.section-divider {
  border: none;
  border-top: 2px solid #e2e8f0;
  margin: 50px 0;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid rgba(102, 126, 234, 0.3);
  margin: 30px 0;
}

.highlight-box h3 {
  margin-top: 0;
}

.job-listing, .partner-tier, .policy-section {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.job-listing:hover, .partner-tier:hover {
  border-color: #1e40af;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.job-title, .tier-name {
  font-size: 1.75rem;
  color: #1a202c;
  margin-bottom: 10px;
  font-weight: 700;
}

.job-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.job-meta span {
  color: #718096;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.benefits-list, .requirements-list, .partner-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.benefits-list li, .requirements-list li, .partner-benefits li {
  padding: 12px 0 12px 35px;
  color: #4a5568;
  font-size: 1.125rem;
  position: relative;
}

.benefits-list li::before, .requirements-list li::before, .partner-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1e40af;
  font-weight: bold;
  font-size: 1.375rem;
}

.apply-button, .contact-button {
  display: inline-block;
  padding: 12px 30px;
  background: #1e40af;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.apply-button:hover, .contact-button:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

.last-updated {
  color: #718096;
  font-style: italic;
  font-size: 1rem;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e2e8f0;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 60px 0 50px;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .page-content {
    padding: 40px 25px;
    margin: 40px 0;
  }

  .page-content h2 {
    font-size: 1.875rem;
  }

  .page-content h3 {
    font-size: 1.5rem;
  }

  .page-content p, .page-content ul, .page-content ol {
    font-size: 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }
}

.tenant-register-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  /* GPU optimization to prevent flickering */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.tenant-register-content {
  flex: 1 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 2rem 2rem;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.tenant-register-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  /* GPU optimization to prevent flickering */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: auto;
}

.tenant-register-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
}

.tenant-register-header {
  text-align: center;
  margin-bottom: 2rem;
}

.register-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 16px;
}

.tenant-register-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tenant-register-header p {
  color: #64748b;
  font-size: 0.95rem;
}

.error-message {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.field-error {
  display: block;
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.375rem;
  font-weight: 500;
}

/* Override banner .error-message styles when used on inline field errors */
.field-error.error-message {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 0;
  display: block;
  font-size: 0.8rem;
  margin-top: 0.375rem;
  gap: 0;
  border-radius: 0;
}

.optional-label {
  color: #94a3b8;
  font-weight: 400;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper.has-password-toggle input {
  padding-right: 3rem !important;
}

.input-icon {
  position: absolute !important;
  left: 0.875rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #64748b !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.input-wrapper input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 0.95rem;
  /* Fix flickering: use specific properties instead of 'all' */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
  /* GPU optimization to prevent flickering */
  will-change: border-color, box-shadow;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.input-wrapper input:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.input-wrapper input:hover:not(:focus) {
  border-color: rgba(0, 0, 0, 0.15);
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0.25rem;
  z-index: 2;
}

.password-toggle:hover:not(:disabled) {
  color: #1e40af;
}

.password-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Style select elements to match input fields */
.input-wrapper select {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 2.75rem !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 0.95rem;
  /* Fix flickering: use specific properties instead of 'all' */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%2364748b%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpolyline points=%276,9 12,15 18,9%27%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1rem;
  cursor: pointer;
  box-sizing: border-box;
  /* GPU optimization to prevent flickering */
  will-change: border-color, box-shadow;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  text-indent: 0;
}

.input-wrapper select:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.input-wrapper select:hover:not(:focus) {
  border-color: rgba(0, 0, 0, 0.15);
}

.input-wrapper select:disabled {
  background-color: #f1f5f9;
  cursor: not-allowed;
}

/* Password strength meter */
.password-strength {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.strength-meter {
  height: 6px;
  background-color: #e5e7eb;
  border-radius: 3px;
  margin-bottom: 0.25rem;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.strength-0 {
  background-color: #ef4444; /* Very weak - red */
}

.strength-1 {
  background-color: #f97316; /* Weak - orange */
}

.strength-2 {
  background-color: #facc15; /* Medium - yellow */
}

.strength-3 {
  background-color: #84cc16; /* Strong - light green */
}

.strength-4 {
  background-color: #22c55e; /* Very strong - green */
}

.strength-text {
  color: #64748b;
  font-size: 0.8rem;
}

/* Password match indicator */
.password-match {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.password-match.match {
  color: #22c55e;
}

.password-match.mismatch {
  color: #ef4444;
}

/* Demo account checkbox and info */
.checkbox-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.checkbox-container {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 20px;
  width: 20px;
  background-color: #f9fafb;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #f1f5f9;
  border-color: #94a3b8;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #2563eb;
  border-color: #1d4ed8;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.demo-info {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background-color: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: #0c4a6e;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.demo-info span {
  font-size: 1.2rem;
}

/* Plans preview */
.plans-preview {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background-color: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}

.plans-preview h3 {
  font-size: 1rem;
  color: #334155;
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.plan-card-mini {
  padding: 1rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  /* Fix flickering: specific property transition + GPU optimization */
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.plan-card-mini:hover {
  /* Remove transform to prevent flickering - use box-shadow only */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-card-mini.selected {
  border-color: #2563eb;
  background-color: rgba(37, 99, 235, 0.05);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.plan-card-mini h4 {
  margin: 0 0 0.5rem 0;
  color: #0f172a;
  font-size: 0.95rem;
}

.plan-price {
  font-weight: bold;
  color: #2563eb;
  margin: 0.5rem 0;
}

.plan-limit {
  font-size: 0.8rem;
  color: #64748b;
}

/* Buttons */
.register-button {
  width: 100%;
  padding: 0.875rem;
  margin-top: 0.5rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.register-button:hover:not(:disabled) {
  background-color: #1d4ed8;
}

.register-button:active:not(:disabled) {
  background-color: #1e40af;
  transform: none;
}

.register-button:focus:not(:disabled) {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

.register-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.register-button.loading {
  position: relative;
  color: transparent;
}

.register-button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

.register-button.demo-button {
  background-color: #0ea5e9;
}

.register-button.demo-button:hover:not(:disabled) {
  background-color: #0284c7;
}

.login-link {
  text-align: center;
  margin-top: 1.5rem;
  color: #64748b;
}

.login-link a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Success Page Styles */
.success-container {
  text-align: center;
  padding: 1rem;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #22c55e;
}

.success-container h2 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.success-message {
  background-color: #dcfce7;
  color: #15803d;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  border: 1px solid #bbf7d0;
  line-height: 1.5;
}

.verification-steps {
  margin: 2rem 0;
  text-align: left;
}

.verification-steps h3 {
  color: #334155;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.verification-steps ol {
  margin: 0;
  padding-left: 1.5rem;
}

.verification-steps li {
  margin-bottom: 0.75rem;
  color: #475569;
  line-height: 1.5;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.verify-email-button {
  padding: 0.875rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  /* Fix flickering: replace transition: all with specific properties */
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  /* GPU optimization for stable rendering */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.back-to-login-button {
  padding: 0.875rem;
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  /* Fix flickering: replace transition: all with specific properties */
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  /* GPU optimization for stable rendering */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.verify-email-button:hover {
  background-color: #1d4ed8;
  /* Remove transform to prevent flickering - use box-shadow only */
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.back-to-login-button:hover {
  background-color: #e2e8f0;
  /* Remove transform to prevent flickering - use box-shadow only */
  box-shadow: 0 4px 6px rgba(203, 213, 225, 0.4);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 640px) {
  .tenant-register-content {
    padding: 100px 1rem 1rem;
    max-width: 100%;
  }
  
  .tenant-register-card {
    padding: 1.5rem;
  }
  
  .tenant-register-header h2 {
    font-size: 1.5rem;
  }
  
  .register-icon {
    font-size: 2rem;
  }
  
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Reduced-motion guard for motion-sensitive users */
@media (prefers-reduced-motion: reduce) {
  .tenant-register-card,
  .input-wrapper input,
  .input-wrapper select,
  .plan-card-mini,
  .register-button,
  .verify-email-button,
  .back-to-login-button,
  .strength-fill {
    transition: none !important;
    animation: none !important;
  }

  .register-button.loading::after {
    animation: none !important;
  }
}

/* Stripe Payment Form Styles */
.stripe-payment-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.stripe-payment-form {
  padding: 0;
  font-family: 'Inter', system-ui, sans-serif;
}

/* Payment Summary */
.payment-summary {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  color: white;
  text-align: center;
}

.plan-details h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
}

.price-details {
  margin-bottom: 16px;
}

.price-details .price {
  font-size: 32px;
  font-weight: 700;
}

.price-details .period {
  font-size: 18px;
  opacity: 0.9;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
}

.trial-badge .trial-icon {
  margin-right: 8px;
  font-size: 16px;
}

/* Validation Errors */
.validation-errors {
  background: #ffebee;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.validation-error {
  display: flex;
  align-items: center;
  color: #c62828;
  font-size: 14px;
  margin-bottom: 8px;
}

.validation-error:last-child {
  margin-bottom: 0;
}

.validation-error .error-icon {
  margin-right: 8px;
  font-size: 16px;
}

/* Payment Element Container */
.payment-element-container {
  margin-bottom: 24px;
}

.payment-label {
  display: block;
  margin-bottom: 12px;
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

.payment-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #666;
  font-size: 16px;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-top: 2px solid #1e40af;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 12px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Payment Error */
.payment-error {
  background: #ffebee;
  border: 1px solid #e57373;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
}

.payment-error .error-icon {
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

.error-content strong {
  display: block;
  color: #c62828;
  font-weight: 600;
  margin-bottom: 4px;
}

.error-content p {
  color: #d32f2f;
  margin: 0;
  line-height: 1.4;
}

/* Terms and Conditions */
.terms-section {
  margin-bottom: 24px;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1.4;
}

.terms-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
  background: #1e40af;
  border-color: #1e40af;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.terms-text {
  color: #555;
  font-size: 14px;
}

.terms-text a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
}

.terms-text a:hover {
  text-decoration: underline;
}

/* Submit Button */
.payment-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.payment-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #45a049 0%, #388e3c 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.payment-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.payment-submit-btn.processing {
  background: #1e40af;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 12px;
}

.btn-icon {
  margin-right: 8px;
  font-size: 18px;
}

/* Security Info */
.security-info {
  text-align: center;
  margin-bottom: 24px;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #1e40af;
}

.badge-icon {
  margin-right: 6px;
  font-size: 14px;
}

.security-text {
  color: #666;
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}

/* Billing Information */
.billing-info {
  background: rgba(76, 175, 80, 0.05);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.billing-info h4 {
  color: #333;
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
}

.billing-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.billing-info li {
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.billing-info li:last-child {
  margin-bottom: 0;
}

/* Processing Overlay */
.processing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.processing-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.processing-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #1e40af;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.processing-content h3 {
  color: #333;
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
}

.processing-content p {
  color: #666;
  margin: 0 0 24px 0;
  line-height: 1.4;
}

.processing-steps {
  text-align: left;
}

.processing-steps .step {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
}

.processing-steps .step.completed {
  color: #4CAF50;
}

.processing-steps .step.processing {
  color: #1e40af;
}

.processing-steps .step.pending {
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stripe-payment-wrapper {
    max-width: 100%;
    padding: 0 16px;
  }
  
  .payment-summary {
    padding: 20px;
  }
  
  .price-details .price {
    font-size: 28px;
  }
  
  .security-badges {
    gap: 12px;
  }
  
  .security-badge {
    font-size: 11px;
    padding: 4px 8px;
  }
  
  .processing-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .billing-info {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .payment-summary {
    padding: 16px;
  }
  
  .price-details .price {
    font-size: 24px;
  }
  
  .payment-submit-btn {
    font-size: 15px;
    padding: 14px 20px;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .stripe-payment-form {
    color: #e0e0e0;
  }
  
  .payment-label,
  .billing-info h4 {
    color: #e0e0e0;
  }
  
  .terms-text {
    color: #bbb;
  }
  
  .security-text {
    color: #aaa;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .payment-summary {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
  }
  
  .payment-submit-btn {
    background: #000;
    border: 2px solid #fff;
  }
  
  .checkmark {
    border-color: #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .loading-spinner,
  .btn-spinner,
  .processing-spinner {
    animation: none;
  }
  
  .payment-submit-btn:hover:not(:disabled) {
    transform: none;
  }
  
  .processing-overlay,
  .processing-content {
    animation: none;
  }
}

/* Tenant Registration with Payment Styles */
.tenant-registration-with-payment {
  min-height: 100vh;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Inter', system-ui, sans-serif;
}

.registration-container {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Registration Header */
.registration-header {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  text-align: center;
  padding: 32px 40px;
}

.logo-section h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.logo-section p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

/* Progress Indicator */
.progress-indicator {
  padding: 32px 40px 0;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-bottom: 24px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1e40af 0%, #06b6d4 100%);
  border-radius: 2px;
  transition: width 0.6s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1;
  position: relative;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.progress-step.completed .step-circle {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
}

.step-label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  text-align: center;
}

.progress-step.completed .step-label {
  color: #1e40af;
}

/* Registration Content */
.registration-content {
  padding: 40px;
}

.registration-step {
  /* Animation removed to prevent flickering during input */
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-header {
  text-align: center;
  margin-bottom: 32px;
}

.step-header h1,
.step-header h2 {
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.step-header h1 {
  font-size: 32px;
}

.step-header h2 {
  font-size: 28px;
}

.step-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* Form Styles */
.registration-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(102, 126, 234, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.form-section h3 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
}

.form-section h3::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  border-radius: 2px;
  margin-right: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}

.field-hint {
  display: block;
  font-weight: 400;
  color: #666;
  font-size: 12px;
  margin-top: 2px;
  line-height: 1.3;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error {
  border-color: #f44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27%23666%27 d=%27M6 8L1 3h10z%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select::-ms-expand {
  display: none;
}

/* Plan Selection */
.loading-state {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e0e0e0;
  border-top: 3px solid #1e40af;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  margin-bottom: 40px;
}

.plan-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: -webkit-fit-content;
  height: fit-content;
}

.plan-card:hover {
  border-color: #1e40af;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.plan-card.selected {
  border-color: #1e40af;
  background: rgba(102, 126, 234, 0.03);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.plan-card.popular {
  border-color: #4CAF50;
}

.plan-card.popular.selected {
  border-color: #1e40af;
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #4CAF50;
  color: white;
  padding: 6px 45px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.plan-header {
  text-align: center;
  margin-bottom: 24px;
}

.plan-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.plan-price {
  margin-bottom: 12px;
}

.plan-price .currency {
  font-size: 18px;
  color: #666;
  vertical-align: top;
}

.plan-price .amount {
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

.plan-price .period {
  font-size: 16px;
  color: #666;
}

.plan-description {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

.plan-features {
  margin-bottom: 24px;
}

.plan-features h4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.check-icon {
  color: #4CAF50;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-text {
  color: #555;
}

.feature-limit {
  color: #888;
  font-size: 12px;
}

.plan-footer {
  margin-top: auto;
}

.plan-select-btn {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #1e40af;
  border-radius: 10px;
  background: white;
  color: #1e40af;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.plan-select-btn:hover {
  background: #1e40af;
  color: white;
}

.plan-select-btn.selected {
  background: #1e40af;
  color: white;
}

.btn-check {
  margin-right: 8px;
  font-size: 16px;
}

/* Plan Benefits */
.plan-benefits {
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(76, 175, 80, 0.05);
  border-radius: 16px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.benefit-item {
  text-align: center;
  padding: 16px;
}

.benefit-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.benefit-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
}

.benefit-item p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

/* Registration Summary */
.registration-summary {
  background: rgba(102, 126, 234, 0.05);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
}

.summary-section h3 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item .label {
  color: #666;
  font-weight: 500;
  font-size: 14px;
}

.summary-item .value {
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

/* Navigation */
.step-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  border-color: transparent;
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: white;
  color: #1e40af;
  border-color: #1e40af;
}

.btn-secondary:hover:not(:disabled) {
  background: #1e40af;
  color: white;
}

.btn-large {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  min-height: 54px;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 12px;
}

/* Error Messages */
.error-message {
  background: #ffebee;
  border: 1px solid #e57373;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  color: #c62828;
}

.error-icon {
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

/* Footer */
.registration-footer {
  text-align: center;
  padding: 24px 40px;
  border-top: 1px solid #e0e0e0;
  color: #666;
  font-size: 12px;
}

.registration-footer a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
}

.registration-footer a:hover {
  text-decoration: underline;
}

.login-link {
  text-align: center;
  margin-top: 24px;
  color: #666;
  font-size: 14px;
}

.login-link a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tenant-registration-with-payment {
    padding: 10px;
  }
  
  .registration-container {
    max-width: 100%;
    border-radius: 16px;
  }
  
  .registration-header,
  .registration-content,
  .registration-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .progress-indicator {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .step-navigation {
    flex-direction: column-reverse;
    gap: 12px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  .step-header h1 {
    font-size: 24px;
  }
  
  .step-header h2 {
    font-size: 20px;
  }
  
  .logo-section h1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .registration-header,
  .registration-content,
  .registration-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .progress-indicator {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .form-section {
    padding: 16px;
  }
  
  .plan-card {
    padding: 20px;
  }
  
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  
  .summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .registration-container {
    background: white;
    border: 2px solid black;
  }
  
  .plan-card {
    border-color: black;
  }
  
  .plan-card.selected {
    background: yellow;
    border-color: black;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .loading-spinner,
  .btn-spinner {
    animation: none;
  }
  
  .registration-container,
  .registration-step {
    animation: none;
  }
  
  .progress-fill {
    transition: none;
  }
  
  .btn-primary:hover:not(:disabled) {
    transform: none;
  }
}

/* ForgotPasswordForm.css */
.forgot-password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  padding: 20px;
}

.forgot-password-form {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  transition: all 0.3s ease;
}

.forgot-password-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-header p {
  color: #7f8c8d;
  font-size: 1rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: rgba(255, 255, 255, 1);
}

.btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.error-message {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.error-message i {
  margin-right: 8px;
}

.success-message {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.success-message i {
  margin-right: 8px;
}

.form-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-footer p {
  color: #7f8c8d;
  margin: 0;
}

.form-footer a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .forgot-password-container {
    padding: 10px;
  }
  
  .forgot-password-form {
    padding: 30px 20px;
  }
  
  .form-header h2 {
    font-size: 1.5rem;
  }
}

/* ResetPasswordForm.css */
.reset-password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  padding: 20px;
}

.reset-password-form {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  transition: all 0.3s ease;
}

.reset-password-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-header p {
  color: #7f8c8d;
  font-size: 1rem;
  line-height: 1.5;
}

.loading-spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #1e40af;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: rgba(255, 255, 255, 1);
}

.password-requirements {
  margin-top: 5px;
}

.password-requirements small {
  color: #7f8c8d;
  font-size: 0.85rem;
}

.btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.error-message {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.error-message i {
  margin-right: 8px;
}

.success-message {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.success-message i {
  margin-right: 8px;
}

.form-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-footer p {
  color: #7f8c8d;
  margin: 0;
}

.form-footer a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
  margin: 0 5px;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .reset-password-container {
    padding: 10px;
  }
  
  .reset-password-form {
    padding: 30px 20px;
  }
  
  .form-header h2 {
    font-size: 1.5rem;
  }
}

/* Admin Login - Standardized Auth Form */
.admin-login-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.registration-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Registration Header with Branding */
.registration-header {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  text-align: center;
  padding: 32px 40px;
}

.logo-section h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.logo-section p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

/* Registration Content */
.registration-content {
  padding: 40px;
}

.admin-login-card {
  background: transparent;
  padding: 0;
}

.admin-login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.admin-login-header h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.admin-login-header p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Form Styling */
.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #1e40af;
  font-size: 1.1rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 2px solid rgba(30, 64, 175, 0.1);
  border-radius: 12px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.password-input-wrapper input {
  padding-right: 2.5rem;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.25rem;
  color: #64748b;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: #1e40af;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input:hover:not(:focus):not(:disabled) {
  border-color: #cbd5e1;
}

.form-group input::placeholder {
  color: #94a3b8;
}

.form-group input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #f1f5f9;
}

/* Error Message */
.error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  color: #dc2626;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.error-message span {
  font-size: 1.1rem;
}

/* Submit Button */
.login-button {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.login-button:hover:not(:disabled) {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.login-button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.login-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.login-button.loading {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  background-size: 200% 100%;
  animation: loadingGradient 1.5s ease infinite;
  pointer-events: none;
}

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

/* Login Links */
.login-links {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.forgot-password-link {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.forgot-password-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.login-link {
  text-align: center;
  margin-top: 1.5rem;
  color: #64748b;
  font-size: 0.875rem;
}

.login-link a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.login-link a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Registration Footer */
.registration-footer {
  background: #f8fafc;
  padding: 20px 40px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.registration-footer p {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
}

.back-to-site {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.back-to-site:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 640px) {
  .admin-login-container {
    padding: 10px;
  }

  .registration-container {
    border-radius: 16px;
  }

  .registration-header {
    padding: 24px 20px;
  }

  .logo-section h1 {
    font-size: 24px;
  }

  .logo-section p {
    font-size: 14px;
  }

  .registration-content {
    padding: 24px 20px;
  }

  .admin-login-header h2 {
    font-size: 1.5rem;
  }

  .registration-footer {
    padding: 16px 20px;
  }
}

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.home-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1e40af;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    /* Fix flickering: use specific properties instead of 'all' */
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    /* GPU optimization */
    will-change: transform, background;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.home-button:hover {
    background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
    color: white;
    transform: translateY(-1px);
}

.admin-login-content {
    max-width: 420px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.admin-login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-login-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #1e293b;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-login-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.error-message {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.admin-login-container .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.admin-login-container .input-wrapper .input-icon {
    position: absolute !important;
    left: 0.875rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    color: #64748b;
}

/* Password visibility toggle button */
.admin-login-container .password-input-wrapper {
    position: relative;
}

.admin-login-container .password-input-wrapper input {
    padding-right: 3rem !important;
}

.admin-login-container .password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: #64748b;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: color 0.2s ease;
}

.admin-login-container .password-toggle:hover {
    color: #2563eb;
}

.admin-login-container .password-toggle:focus {
    outline: none;
    color: #2563eb;
}

.admin-login-container .form-group input {
    width: 100%;
    padding: 0.875rem 1rem !important;
    padding-left: 2.75rem !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.9);
    /* Fix flickering: use specific properties instead of 'all' */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    /* GPU optimization */
    will-change: border-color, box-shadow;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.admin-login-container .form-group input:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.login-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    /* Fix flickering: use specific properties instead of 'all' */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
    /* GPU optimization */
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.login-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
}

.login-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-button.loading {
    background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
}

.login-button.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Forgot password and login links */
.admin-login-container .login-links {
    text-align: center;
    margin-bottom: 1rem;
}

.admin-login-container .forgot-password-link {
    color: #2563eb;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.admin-login-container .forgot-password-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.admin-login-container .login-link {
    text-align: center;
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.875rem;
}

.admin-login-container .login-link a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.admin-login-container .login-link a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .admin-login-content {
        margin: 2rem auto;
    }
    
    .admin-login-card {
        padding: 1.5rem;
    }
}
/* Admin Registration - Standardized Auth Form */
.admin-register-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.registration-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Registration Header with Branding */
.registration-header {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  color: white;
  text-align: center;
  padding: 32px 40px;
}

.logo-section h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.logo-section p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

/* Registration Content */
.registration-content {
  padding: 40px;
}

.admin-register-card {
  background: transparent;
  padding: 0;
}

.admin-register-header {
  text-align: center;
  margin-bottom: 2rem;
}

.admin-register-header h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.admin-register-header p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Form Styling */
.admin-register-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
}

.input-wrapper.has-password-toggle input {
  padding-right: 3rem;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #1e40af;
  font-size: 1.1rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 2px solid rgba(30, 64, 175, 0.1);
  border-radius: 12px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input:hover:not(:focus):not(:disabled) {
  border-color: #cbd5e1;
}

.form-group input::placeholder {
  color: #94a3b8;
}

.form-group input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #f1f5f9;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0.25rem;
}

.password-toggle:hover:not(:disabled) {
  color: #1e40af;
}

.password-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Error Message */
.error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  color: #dc2626;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.error-message span {
  font-size: 1.1rem;
}

/* Submit Button */
.register-button {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.register-button:hover:not(:disabled) {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.register-button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.register-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.register-button.loading {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  background-size: 200% 100%;
  animation: loadingGradient 1.5s ease infinite;
  pointer-events: none;
}

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

/* Login Link */
.login-link {
  text-align: center;
  margin-top: 1.5rem;
  color: #64748b;
  font-size: 0.875rem;
}

.login-link a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.login-link a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Registration Footer */
.registration-footer {
  background: #f8fafc;
  padding: 20px 40px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.registration-footer p {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
}

.back-to-site {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.back-to-site:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 640px) {
  .admin-register-container {
    padding: 10px;
  }

  .registration-container {
    border-radius: 16px;
  }

  .registration-header {
    padding: 24px 20px;
  }

  .logo-section h1 {
    font-size: 24px;
  }

  .logo-section p {
    font-size: 14px;
  }

  .registration-content {
    padding: 24px 20px;
  }

  .admin-register-header h2 {
    font-size: 1.5rem;
  }

  .registration-footer {
    padding: 16px 20px;
  }
}

/**
 * Email Verification Component Styles
 * 
 * @version 1.0.0
 * @created 2024-04-02
 * @updated 2024-04-02
 */

.verification-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 1rem;
}

.verification-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.verification-status {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.verification-status h2 {
  margin: 1.5rem 0 1rem 0;
  color: #0f172a;
  font-size: 1.5rem;
}

.verification-status p {
  margin-bottom: 2rem;
  color: #475569;
  line-height: 1.6;
}

/* Status icons */
.status-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.success .status-icon {
  color: #22c55e;
}

.error .status-icon {
  color: #ef4444;
}

/* Spinner for verifying state */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(59, 130, 246, 0.2);
  border-top-color: #1e40af;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Action buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}

.primary-button {
  padding: 0.9rem 1.5rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.primary-button:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.secondary-button {
  padding: 0.9rem 1.5rem;
  background-color: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.secondary-button:hover {
  background-color: #e2e8f0;
  transform: translateY(-1px);
}

.link-button {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.5rem;
  display: inline-block;
}

.link-button:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .verification-card {
    padding: 1.5rem;
  }
}
.registration-success-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  padding: 20px;
}

.success-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 12px 24px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.checkmark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0 0 0 #4ade80;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4ade80;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #4ade80;
  stroke-width: 3;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0 0 0 100px rgba(74, 222, 128, 0.1);
  }
}

.success-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-message {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.account-details,
.subscription-details {
  background: rgba(102, 126, 234, 0.05);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.account-details h3,
.subscription-details h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 14px;
  color: #6b7280;
}

.detail-value {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
}

.plan-badge {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.trial-info {
  color: #059669;
}

.redirect-notice {
  margin: 24px 0;
  padding: 16px;
  background: rgba(102, 126, 234, 0.08);
  border-radius: 12px;
}

.redirect-notice p {
  margin: 0;
  color: #1e40af;
  font-size: 14px;
}

.redirect-notice strong {
  font-size: 18px;
  font-weight: 700;
}

.go-to-dashboard-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35);
}

.go-to-dashboard-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.45);
}

.go-to-dashboard-btn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 480px) {
  .success-card {
    padding: 32px 24px;
  }

  .success-title {
    font-size: 24px;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* Email Verification - Glassmorphism Design */

.email-verification-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}

.email-verification-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Status Icons */
.verification-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  position: relative;
}

.spinner-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(102, 126, 234, 0.2);
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.checkmark {
  width: 100px;
  height: 100px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.checkmark-circle {
  stroke: #4caf50;
  stroke-width: 3;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke: #4caf50;
  stroke-width: 3;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  transform-origin: 50% 50%;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

.error-icon {
  width: 100px;
  height: 100px;
  animation: scaleIn 0.5s ease-out;
}

.error-circle {
  stroke: #f44336;
  stroke-width: 3;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.error-cross {
  stroke: #f44336;
  stroke-width: 3;
  stroke-dasharray: 54;
  stroke-dashoffset: 54;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* Typography */
.verification-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2c3e50;
}

.verification-title.success {
  color: #4caf50;
}

.verification-title.error {
  color: #f44336;
}

.verification-details {
  font-size: 16px;
  line-height: 1.6;
  color: #546e7a;
  margin-bottom: 16px;
}

.success-message {
  margin-bottom: 24px;
}

.redirect-notice {
  font-size: 14px;
  color: #90a4ae;
  font-style: italic;
  margin-top: 12px;
}

/* Actions */
.verification-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

/* Help Section */
.verification-help {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.verification-help p {
  font-size: 14px;
  color: #90a4ae;
  margin: 0;
}

.help-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.help-link:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .email-verification-card {
    padding: 36px 24px;
  }

  .verification-title {
    font-size: 24px;
  }

  .verification-details {
    font-size: 14px;
  }

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

  .checkmark,
  .error-icon {
    width: 80px;
    height: 80px;
  }

  .verification-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* Request Password Reset - Glassmorphism Design */

.password-reset-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}

.password-reset-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 16px;
  color: #546e7a;
  line-height: 1.6;
  margin: 0;
}

/* Form Elements */
.reset-form {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.7;
}

.form-group input.input-error {
  border-color: #f44336;
}

.form-group input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

/* Error Messages */
.error-message {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px;
  background: rgba(244, 67, 54, 0.1);
  border-radius: 8px;
  color: #c62828;
  font-size: 14px;
  animation: shake 0.5s ease-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.error-icon-small {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Rate Limit Notice */
.rate-limit-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px;
  background: rgba(255, 152, 0, 0.1);
  border-radius: 8px;
  color: #ef6c00;
  font-size: 14px;
}

.info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.spinner-small {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Footer */
.form-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-footer p {
  font-size: 14px;
  color: #546e7a;
  margin: 0;
}

.link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.link:hover {
  color: #764ba2;
  text-decoration: underline;
}

.link-button {
  background: none;
  border: none;
  color: #667eea;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-button:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Security Notice */
.security-notice {
  margin-top: 24px;
  padding: 16px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.shield-icon {
  width: 24px;
  height: 24px;
  color: #388e3c;
  flex-shrink: 0;
  margin-top: 2px;
}

.security-notice p {
  font-size: 13px;
  color: #2e7d32;
  margin: 0;
  line-height: 1.5;
}

/* Success Card */
.success-card {
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 100%;
  height: 100%;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-circle {
  stroke: #4caf50;
  stroke-width: 3;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check {
  stroke: #4caf50;
  stroke-width: 3;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-size: 28px;
  font-weight: 700;
  color: #4caf50;
  margin-bottom: 16px;
}

.success-message {
  font-size: 16px;
  color: #546e7a;
  line-height: 1.6;
  margin-bottom: 24px;
}

.success-details {
  text-align: left;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.success-details h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 12px 0;
}

.success-details ol {
  margin: 0;
  padding-left: 20px;
  color: #546e7a;
}

.success-details li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.success-details li:last-child {
  margin-bottom: 0;
}

.success-actions {
  margin-top: 32px;
}

.help-text {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.help-text p {
  font-size: 14px;
  color: #90a4ae;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .password-reset-card {
    padding: 36px 24px;
  }

  .form-header h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
  }

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

  .success-title {
    font-size: 24px;
  }
}

/* Reset Password - Glassmorphism Design */

.reset-password-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}

.reset-password-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 16px;
  color: #546e7a;
  line-height: 1.6;
  margin: 0;
}

/* Form Elements */
.reset-form {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

/* Password Input with Toggle */
.password-input-wrapper {
  position: relative;
}

.password-input-wrapper input {
  width: 100%;
  padding: 14px 48px 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.password-input-wrapper input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-input-wrapper input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.7;
}

.password-input-wrapper input.input-error {
  border-color: #f44336;
}

.password-input-wrapper input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #90a4ae;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #667eea;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Password Strength Indicator */
.password-strength {
  margin-top: 12px;
}

.strength-bar {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.strength-bar-fill {
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.strength-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.strength-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
}

.check-item svg {
  width: 14px;
  height: 14px;
}

/* Password Mismatch Warning */
.password-mismatch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(244, 67, 54, 0.1);
  border-radius: 8px;
  color: #c62828;
  font-size: 13px;
}

.password-mismatch svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Validation Errors */
.validation-errors {
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(244, 67, 54, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(244, 67, 54, 0.3);
  animation: shake 0.5s ease-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.error-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #c62828;
  margin-bottom: 8px;
}

.error-header svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.validation-errors ul {
  margin: 0;
  padding-left: 20px;
  color: #c62828;
}

.validation-errors li {
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.5;
}

.validation-errors li:last-child {
  margin-bottom: 0;
}

/* General Error Message */
.error-message {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(244, 67, 54, 0.1);
  border-radius: 8px;
  color: #c62828;
  font-size: 14px;
  animation: shake 0.5s ease-out;
}

.error-message svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.spinner-small {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Footer */
.form-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-footer p {
  font-size: 14px;
  color: #546e7a;
  margin: 0;
}

.link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.link:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Security Notice */
.security-notice {
  margin-top: 24px;
  padding: 16px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.shield-icon {
  width: 24px;
  height: 24px;
  color: #388e3c;
  flex-shrink: 0;
  margin-top: 2px;
}

.security-notice p {
  font-size: 13px;
  color: #2e7d32;
  margin: 0;
  line-height: 1.5;
}

/* Success Card */
.success-card {
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 100%;
  height: 100%;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-circle {
  stroke: #4caf50;
  stroke-width: 3;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check {
  stroke: #4caf50;
  stroke-width: 3;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-size: 28px;
  font-weight: 700;
  color: #4caf50;
  margin-bottom: 16px;
}

.success-message {
  font-size: 16px;
  color: #546e7a;
  line-height: 1.6;
  margin-bottom: 24px;
}

.success-details {
  text-align: left;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.success-details h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 12px 0;
}

.success-details ul {
  margin: 0;
  padding-left: 20px;
  color: #546e7a;
}

.success-details li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.success-details li:last-child {
  margin-bottom: 0;
}

.success-actions {
  margin-top: 32px;
}

.redirect-notice {
  margin-top: 24px;
  font-size: 14px;
  color: #90a4ae;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .reset-password-card {
    padding: 36px 24px;
  }

  .form-header h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
  }

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

  .success-title {
    font-size: 24px;
  }

  .strength-checks {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Email Verification Prompt - Glassmorphism Design */

.email-verification-prompt-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 20px;
}

.verification-prompt-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  padding: 48px;
  max-width: 600px;
  width: 100%;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Email Icon */
.email-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.email-icon {
  width: 120px;
  height: 120px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Header */
.verification-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 16px;
}

.verification-subtitle {
  font-size: 16px;
  color: #546e7a;
  text-align: center;
  margin-bottom: 12px;
}

/* Email Display */
.email-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  margin-bottom: 32px;
  font-size: 18px;
  color: #667eea;
}

.email-icon-small {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.email-display strong {
  word-break: break-all;
}

/* Instructions */
.instructions-container {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.instructions-container h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 20px 0;
}

.instructions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.instructions-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.instruction-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.instruction-content {
  flex: 1 1;
}

.instruction-content strong {
  display: block;
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 4px;
}

.instruction-content p {
  font-size: 14px;
  color: #546e7a;
  margin: 0;
  line-height: 1.5;
}

/* Trial Info */
.trial-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.info-icon {
  width: 24px;
  height: 24px;
  color: #388e3c;
  flex-shrink: 0;
}

.trial-info strong {
  display: block;
  font-size: 14px;
  color: #2e7d32;
  margin-bottom: 4px;
}

.trial-info p {
  font-size: 13px;
  color: #558b2f;
  margin: 0;
}

/* Resend Section */
.resend-section {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.resend-text {
  font-size: 16px;
  color: #546e7a;
  margin-bottom: 16px;
}

.success-message,
.error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.error-message {
  background: rgba(244, 67, 54, 0.1);
  color: #c62828;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.success-message svg,
.error-message svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.rate-limit-notice {
  font-size: 13px;
  color: #ef6c00;
  margin-top: 12px;
  padding: 12px;
  background: rgba(255, 152, 0, 0.1);
  border-radius: 8px;
}

/* Buttons */
.btn {
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-text {
  background: none;
  color: #667eea;
  padding: 8px 16px;
  font-size: 14px;
}

.btn-text:hover {
  color: #764ba2;
  text-decoration: underline;
}

.spinner-small {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Help Section */
.help-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.help-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 12px;
}

.help-item svg {
  width: 24px;
  height: 24px;
  color: #667eea;
  flex-shrink: 0;
  margin-top: 2px;
}

.help-item strong {
  display: block;
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 4px;
}

.help-item p {
  font-size: 13px;
  color: #546e7a;
  margin: 0;
  line-height: 1.5;
}

.help-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.help-link:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Footer Actions */
.footer-actions {
  text-align: center;
  padding-top: 16px;
}

/* Security Notice Footer */
.security-notice-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 600px;
  margin-top: 24px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.security-notice-footer svg {
  width: 24px;
  height: 24px;
  color: #388e3c;
  flex-shrink: 0;
}

.security-notice-footer p {
  font-size: 13px;
  color: #2e7d32;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .verification-prompt-card {
    padding: 32px 24px;
  }

  .verification-title {
    font-size: 26px;
  }

  .email-icon {
    width: 100px;
    height: 100px;
  }

  .email-display {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    font-size: 16px;
  }

  .instructions-container {
    padding: 20px 16px;
  }

  .instruction-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .help-section {
    gap: 12px;
  }

  .help-item {
    padding: 12px;
  }

  .security-notice-footer {
    flex-direction: column;
    text-align: center;
  }
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.premium-badge {
  border-radius: 9999px;
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
  --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.bottom-4 {
  bottom: 1rem;
}
.left-0 {
  left: 0px;
}
.left-3 {
  left: 0.75rem;
}
.right-0 {
  right: 0px;
}
.right-1 {
  right: 0.25rem;
}
.right-2 {
  right: 0.5rem;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-1\/2 {
  top: 50%;
}
.top-2 {
  top: 0.5rem;
}
.top-4 {
  top: 1rem;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.-mr-16 {
  margin-right: -4rem;
}
.-mt-16 {
  margin-top: -4rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.list-item {
  display: list-item;
}
.hidden {
  display: none;
}
.h-1 {
  height: 0.25rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-64 {
  height: 16rem;
}
.h-8 {
  height: 2rem;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.max-h-64 {
  max-height: 16rem;
}
.max-h-\[90vh\] {
  max-height: 90vh;
}
.min-h-screen {
  min-height: 100vh;
}
.w-1 {
  width: 0.25rem;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-3 {
  width: 0.75rem;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-56 {
  width: 14rem;
}
.w-6 {
  width: 1.5rem;
}
.w-64 {
  width: 16rem;
}
.w-8 {
  width: 2rem;
}
.w-80 {
  width: 20rem;
}
.w-full {
  width: 100%;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-full {
  min-width: 100%;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-sm {
  max-width: 24rem;
}
.flex-1 {
  flex: 1 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-100 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  border-color: rgb(243 244 246 / var(--tw-divide-opacity, 1));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-dashed {
  border-style: dashed;
}
.border-amber-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 211 77 / 1);
  border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
}
.border-blue-200 {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / 1);
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}
.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-green-200 {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / 1);
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
.border-primary-200 {
  --tw-border-opacity: 1;
  border-color: rgb(186 230 253 / 1);
  border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
}
.border-primary-500 {
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / 1);
  border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
}
.border-primary-600 {
  --tw-border-opacity: 1;
  border-color: rgb(2 132 199 / 1);
  border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
}
.border-red-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / 1);
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
.border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / 1);
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
.border-slate-200\/70 {
  border-color: rgb(226 232 240 / 0.7);
}
.border-slate-300 {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / 1);
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-yellow-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / 1);
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
.border-t-transparent {
  border-top-color: transparent;
}
.bg-amber-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / 1);
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / 1);
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / 1);
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / 1);
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-blue-50\/50 {
  background-color: rgb(239 246 255 / 0.5);
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / 1);
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / 1);
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / 1);
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / 1);
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / 1);
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / 1);
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / 1);
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-green-50\/50 {
  background-color: rgb(240 253 244 / 0.5);
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / 1);
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-orange-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / 1);
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.bg-primary-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(224 242 254 / 1);
  background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}
.bg-primary-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 249 255 / 1);
  background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
.bg-primary-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / 1);
  background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.bg-primary-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(2 132 199 / 1);
  background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
}
.bg-purple-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / 1);
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / 1);
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / 1);
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-red-50\/50 {
  background-color: rgb(254 242 242 / 0.5);
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / 1);
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-slate-50\/80 {
  background-color: rgb(248 250 252 / 0.8);
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / 1);
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / 1);
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.bg-yellow-50\/50 {
  background-color: rgb(254 252 232 / 0.5);
}
.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-primary-50 {
  --tw-gradient-from: #f0f9ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(240 249 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary-500 {
  --tw-gradient-from: #0ea5e9 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(14 165 233 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-primary-600 {
  --tw-gradient-from: #0284c7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(2 132 199 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500 {
  --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600 {
  --tw-gradient-from: #9333ea var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-white\/5 {
  --tw-gradient-from: rgb(255 255 255 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-pink-500 {
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.to-pink-600 {
  --tw-gradient-to: #db2777 var(--tw-gradient-to-position);
}
.to-primary-600 {
  --tw-gradient-to: #0284c7 var(--tw-gradient-to-position);
}
.to-purple-50 {
  --tw-gradient-to: #faf5ff var(--tw-gradient-to-position);
}
.to-purple-600 {
  --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.text-amber-700 {
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / 1);
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}
.text-amber-900 {
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / 1);
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}
.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / 1);
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / 1);
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / 1);
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / 1);
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / 1);
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / 1);
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / 1);
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / 1);
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / 1);
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / 1);
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / 1);
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.text-orange-700 {
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / 1);
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.text-pink-500 {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / 1);
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.text-primary-500 {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / 1);
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}
.text-primary-600 {
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / 1);
  color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.text-primary-700 {
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / 1);
  color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}
.text-primary-800 {
  --tw-text-opacity: 1;
  color: rgb(7 89 133 / 1);
  color: rgb(7 89 133 / var(--tw-text-opacity, 1));
}
.text-purple-500 {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / 1);
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}
.text-purple-600 {
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / 1);
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.text-purple-700 {
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / 1);
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.text-purple-800 {
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / 1);
  color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / 1);
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / 1);
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / 1);
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / 1);
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-700 {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / 1);
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}
.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}
.text-yellow-500 {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / 1);
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.text-yellow-600 {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / 1);
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.text-yellow-700 {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / 1);
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / 1);
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.underline {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.placeholder-gray-400::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / 1);
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-75 {
  opacity: 0.75;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-3xl {
  --tw-blur: blur(64px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.glass-card {
  border-radius: 1rem;
  border-width: 1px;
  border-color: rgb(229 231 235 / 0.5);
  background-color: rgb(255 255 255 / 0.95);
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-backdrop-blur: blur(16px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

/* Custom glassmorphism utilities */

/* Premium subscription styling */

.hover\:border-gray-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.hover\:border-primary-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(125 211 252 / 1);
  border-color: rgb(125 211 252 / var(--tw-border-opacity, 1));
}

.hover\:border-primary-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / 1);
  border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
}

.hover\:bg-amber-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(253 230 138 / 1);
  background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / 1);
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / 1);
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}

.hover\:bg-primary-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(2 132 199 / 1);
  background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
}

.hover\:bg-primary-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(3 105 161 / 1);
  background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / 1);
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / 1);
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}

.hover\:text-blue-900:hover {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / 1);
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}

.hover\:text-gray-600:hover {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.hover\:text-primary-600:hover {
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / 1);
  color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}

.hover\:text-primary-700:hover {
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / 1);
  color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}

.hover\:text-primary-900:hover {
  --tw-text-opacity: 1;
  color: rgb(12 74 110 / 1);
  color: rgb(12 74 110 / var(--tw-text-opacity, 1));
}

.hover\:text-red-900:hover {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / 1);
  color: rgb(127 29 29 / var(--tw-text-opacity, 1));
}

.hover\:text-yellow-900:hover {
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / 1);
  color: rgb(113 63 18 / var(--tw-text-opacity, 1));
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:border-primary-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / 1);
  border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
}

.focus\:ring-primary-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity, 1));
}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:bg-gray-300:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / 1);
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}

.disabled\:opacity-40:disabled {
  opacity: 0.4;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.disabled\:opacity-60:disabled {
  opacity: 0.6;
}

.disabled\:opacity-70:disabled {
  opacity: 0.7;
}

.group:hover .group-hover\:translate-x-1 {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 640px) {

  .sm\:flex {
    display: flex;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:justify-between {
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {

  .lg\:ml-64 {
    margin-left: 16rem;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-end {
    align-items: flex-end;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:pt-0 {
    padding-top: 0px;
  }
}

@media (prefers-color-scheme: dark) {

  .dark\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-opacity: 1;
    border-color: rgb(55 65 81 / 1);
    border-color: rgb(55 65 81 / var(--tw-divide-opacity, 1));
  }

  .dark\:border-blue-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 64 175 / 1);
    border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
  }

  .dark\:border-gray-600 {
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / 1);
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
  }

  .dark\:border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / 1);
    border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
  }

  .dark\:border-green-800 {
    --tw-border-opacity: 1;
    border-color: rgb(22 101 52 / 1);
    border-color: rgb(22 101 52 / var(--tw-border-opacity, 1));
  }

  .dark\:border-primary-700 {
    --tw-border-opacity: 1;
    border-color: rgb(3 105 161 / 1);
    border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
  }

  .dark\:border-red-700 {
    --tw-border-opacity: 1;
    border-color: rgb(185 28 28 / 1);
    border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
  }

  .dark\:border-red-800 {
    --tw-border-opacity: 1;
    border-color: rgb(153 27 27 / 1);
    border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
  }

  .dark\:border-slate-600 {
    --tw-border-opacity: 1;
    border-color: rgb(71 85 105 / 1);
    border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
  }

  .dark\:border-slate-700 {
    --tw-border-opacity: 1;
    border-color: rgb(51 65 85 / 1);
    border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
  }

  .dark\:border-yellow-800 {
    --tw-border-opacity: 1;
    border-color: rgb(133 77 14 / 1);
    border-color: rgb(133 77 14 / var(--tw-border-opacity, 1));
  }

  .dark\:bg-amber-900\/40 {
    background-color: rgb(120 53 15 / 0.4);
  }

  .dark\:bg-blue-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 64 175 / 1);
    background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 58 138 / 1);
    background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-blue-900\/10 {
    background-color: rgb(30 58 138 / 0.1);
  }

  .dark\:bg-blue-900\/20 {
    background-color: rgb(30 58 138 / 0.2);
  }

  .dark\:bg-blue-900\/40 {
    background-color: rgb(30 58 138 / 0.4);
  }

  .dark\:bg-gray-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / 1);
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / 1);
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / 1);
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-green-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 101 52 / 1);
    background-color: rgb(22 101 52 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-green-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(20 83 45 / 1);
    background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-green-900\/10 {
    background-color: rgb(20 83 45 / 0.1);
  }

  .dark\:bg-green-900\/20 {
    background-color: rgb(20 83 45 / 0.2);
  }

  .dark\:bg-green-900\/40 {
    background-color: rgb(20 83 45 / 0.4);
  }

  .dark\:bg-primary-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(12 74 110 / 1);
    background-color: rgb(12 74 110 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-primary-900\/20 {
    background-color: rgb(12 74 110 / 0.2);
  }

  .dark\:bg-purple-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(88 28 135 / 1);
    background-color: rgb(88 28 135 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-red-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 27 27 / 1);
    background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-red-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(127 29 29 / 1);
    background-color: rgb(127 29 29 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-red-900\/10 {
    background-color: rgb(127 29 29 / 0.1);
  }

  .dark\:bg-red-900\/20 {
    background-color: rgb(127 29 29 / 0.2);
  }

  .dark\:bg-red-900\/40 {
    background-color: rgb(127 29 29 / 0.4);
  }

  .dark\:bg-slate-800\/60 {
    background-color: rgb(30 41 59 / 0.6);
  }

  .dark\:bg-slate-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42 / 1);
    background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-yellow-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 63 18 / 1);
    background-color: rgb(113 63 18 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-yellow-900\/10 {
    background-color: rgb(113 63 18 / 0.1);
  }

  .dark\:bg-yellow-900\/20 {
    background-color: rgb(113 63 18 / 0.2);
  }

  .dark\:from-primary-900\/20 {
    --tw-gradient-from: rgb(12 74 110 / 0.2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(12 74 110 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  }

  .dark\:to-purple-900\/20 {
    --tw-gradient-to: rgb(88 28 135 / 0.2) var(--tw-gradient-to-position);
  }

  .dark\:text-amber-200 {
    --tw-text-opacity: 1;
    color: rgb(253 230 138 / 1);
    color: rgb(253 230 138 / var(--tw-text-opacity, 1));
  }

  .dark\:text-blue-200 {
    --tw-text-opacity: 1;
    color: rgb(191 219 254 / 1);
    color: rgb(191 219 254 / var(--tw-text-opacity, 1));
  }

  .dark\:text-blue-300 {
    --tw-text-opacity: 1;
    color: rgb(147 197 253 / 1);
    color: rgb(147 197 253 / var(--tw-text-opacity, 1));
  }

  .dark\:text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / 1);
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
  }

  .dark\:text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / 1);
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
  }

  .dark\:text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / 1);
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }

  .dark\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / 1);
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }

  .dark\:text-green-100 {
    --tw-text-opacity: 1;
    color: rgb(220 252 231 / 1);
    color: rgb(220 252 231 / var(--tw-text-opacity, 1));
  }

  .dark\:text-green-200 {
    --tw-text-opacity: 1;
    color: rgb(187 247 208 / 1);
    color: rgb(187 247 208 / var(--tw-text-opacity, 1));
  }

  .dark\:text-green-400 {
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / 1);
    color: rgb(74 222 128 / var(--tw-text-opacity, 1));
  }

  .dark\:text-primary-200 {
    --tw-text-opacity: 1;
    color: rgb(186 230 253 / 1);
    color: rgb(186 230 253 / var(--tw-text-opacity, 1));
  }

  .dark\:text-primary-300 {
    --tw-text-opacity: 1;
    color: rgb(125 211 252 / 1);
    color: rgb(125 211 252 / var(--tw-text-opacity, 1));
  }

  .dark\:text-primary-400 {
    --tw-text-opacity: 1;
    color: rgb(56 189 248 / 1);
    color: rgb(56 189 248 / var(--tw-text-opacity, 1));
  }

  .dark\:text-purple-200 {
    --tw-text-opacity: 1;
    color: rgb(233 213 255 / 1);
    color: rgb(233 213 255 / var(--tw-text-opacity, 1));
  }

  .dark\:text-purple-300 {
    --tw-text-opacity: 1;
    color: rgb(216 180 254 / 1);
    color: rgb(216 180 254 / var(--tw-text-opacity, 1));
  }

  .dark\:text-purple-400 {
    --tw-text-opacity: 1;
    color: rgb(192 132 252 / 1);
    color: rgb(192 132 252 / var(--tw-text-opacity, 1));
  }

  .dark\:text-red-100 {
    --tw-text-opacity: 1;
    color: rgb(254 226 226 / 1);
    color: rgb(254 226 226 / var(--tw-text-opacity, 1));
  }

  .dark\:text-red-200 {
    --tw-text-opacity: 1;
    color: rgb(254 202 202 / 1);
    color: rgb(254 202 202 / var(--tw-text-opacity, 1));
  }

  .dark\:text-red-300 {
    --tw-text-opacity: 1;
    color: rgb(252 165 165 / 1);
    color: rgb(252 165 165 / var(--tw-text-opacity, 1));
  }

  .dark\:text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / 1);
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
  }

  .dark\:text-slate-100 {
    --tw-text-opacity: 1;
    color: rgb(241 245 249 / 1);
    color: rgb(241 245 249 / var(--tw-text-opacity, 1));
  }

  .dark\:text-slate-400 {
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / 1);
    color: rgb(148 163 184 / var(--tw-text-opacity, 1));
  }

  .dark\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / 1);
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }

  .dark\:text-yellow-200 {
    --tw-text-opacity: 1;
    color: rgb(254 240 138 / 1);
    color: rgb(254 240 138 / var(--tw-text-opacity, 1));
  }

  .dark\:text-yellow-300 {
    --tw-text-opacity: 1;
    color: rgb(253 224 71 / 1);
    color: rgb(253 224 71 / var(--tw-text-opacity, 1));
  }

  .dark\:text-yellow-400 {
    --tw-text-opacity: 1;
    color: rgb(250 204 21 / 1);
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
  }

  .dark\:hover\:border-gray-600:hover {
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / 1);
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
  }

  .dark\:hover\:border-primary-600:hover {
    --tw-border-opacity: 1;
    border-color: rgb(2 132 199 / 1);
    border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
  }

  .dark\:hover\:bg-gray-600:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / 1);
    background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
  }

  .dark\:hover\:bg-gray-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / 1);
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }

  .dark\:hover\:bg-gray-700\/40:hover {
    background-color: rgb(55 65 81 / 0.4);
  }

  .dark\:hover\:bg-gray-700\/50:hover {
    background-color: rgb(55 65 81 / 0.5);
  }

  .dark\:hover\:bg-gray-800:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / 1);
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }

  .dark\:hover\:bg-red-900\/20:hover {
    background-color: rgb(127 29 29 / 0.2);
  }

  .dark\:hover\:text-blue-400:hover {
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / 1);
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
  }

  .dark\:hover\:text-gray-300:hover {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / 1);
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }

  .dark\:hover\:text-primary-300:hover {
    --tw-text-opacity: 1;
    color: rgb(125 211 252 / 1);
    color: rgb(125 211 252 / var(--tw-text-opacity, 1));
  }

  .dark\:hover\:text-primary-400:hover {
    --tw-text-opacity: 1;
    color: rgb(56 189 248 / 1);
    color: rgb(56 189 248 / var(--tw-text-opacity, 1));
  }

  .dark\:hover\:text-red-400:hover {
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / 1);
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
  }

  .dark\:hover\:text-yellow-400:hover {
    --tw-text-opacity: 1;
    color: rgb(250 204 21 / 1);
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
  }
}

/**
 * Customer Care AI Platform - Design System
 * 
 * Professional design language featuring:
 * - Deep intelligent blue primary
 * - Vibrant cyan accents
 * - Space Grotesk + Inter typography
 * - Glassmorphism effects
 * - Smooth animations
 * 
 * @version 2.0.0
 * @created December 24, 2025
 */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */

:root {
  /* ===========================================
     COLOR PALETTE
     Using oklch for wider gamut and better control
     =========================================== */
  
  /* Primary Colors - Deep Intelligent Blue */
  --color-primary-50: #eff6ff;
  --color-primary-100: #dbeafe;
  --color-primary-200: #bfdbfe;
  --color-primary-300: #93c5fd;
  --color-primary-400: #60a5fa;
  --color-primary-500: #1e40af;
  --color-primary-600: #2563eb;
  --color-primary-700: #1d4ed8;
  --color-primary-800: #1e40af;
  --color-primary-900: #1e3a8a;
  --color-primary-950: #172554;
  
  /* Main Primary */
  --color-primary: #1e40af;
  --color-primary-dark: #1e3a8a;
  --color-primary-light: #1e40af;
  
  /* Secondary Colors - Soft Slate */
  --color-secondary-50: #f8fafc;
  --color-secondary-100: #f1f5f9;
  --color-secondary-200: #e2e8f0;
  --color-secondary-300: #cbd5e1;
  --color-secondary-400: #94a3b8;
  --color-secondary-500: #64748b;
  --color-secondary-600: #475569;
  --color-secondary-700: #334155;
  --color-secondary-800: #1e293b;
  --color-secondary-900: #0f172a;
  
  --color-secondary: #64748b;
  --color-secondary-dark: #475569;
  --color-secondary-light: #94a3b8;
  
  /* Accent Colors - Vibrant Cyan */
  --color-accent-50: #ecfeff;
  --color-accent-100: #cffafe;
  --color-accent-200: #a5f3fc;
  --color-accent-300: #67e8f9;
  --color-accent-400: #22d3ee;
  --color-accent-500: #06b6d4;
  --color-accent-600: #0891b2;
  --color-accent-700: #0e7490;
  --color-accent-800: #155e75;
  --color-accent-900: #164e63;
  
  --color-accent: #06b6d4;
  --color-accent-dark: #0891b2;
  --color-accent-light: #22d3ee;
  
  /* Semantic Colors */
  --color-success: #10b981;
  --color-success-light: #34d399;
  --color-success-dark: #059669;
  --color-success-bg: #d1fae5;
  
  --color-warning: #f59e0b;
  --color-warning-light: #fbbf24;
  --color-warning-dark: #d97706;
  --color-warning-bg: #fef3c7;
  
  --color-danger: #ef4444;
  --color-danger-light: #f87171;
  --color-danger-dark: #dc2626;
  --color-danger-bg: #fee2e2;
  
  --color-info: #1e40af;
  --color-info-light: #60a5fa;
  --color-info-dark: #2563eb;
  --color-info-bg: #dbeafe;
  
  /* Background Colors */
  --color-bg-primary: #fafafa;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-elevated: #ffffff;
  --color-bg-dark: #0f172a;
  --color-bg-overlay: rgba(15, 23, 42, 0.5);
  
  /* Glass Background */
  --color-glass-light: rgba(255, 255, 255, 0.85);
  --color-glass-medium: rgba(255, 255, 255, 0.75);
  --color-glass-dark: rgba(15, 23, 42, 0.85);
  
  /* Text Colors */
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-tertiary: #64748b;
  --color-text-muted: #94a3b8;
  --color-text-inverse: #ffffff;
  --color-text-link: #2563eb;
  --color-text-link-hover: #1d4ed8;
  
  /* Border Colors */
  --color-border-light: #e2e8f0;
  --color-border-medium: #cbd5e1;
  --color-border-dark: #94a3b8;
  --color-border-focus: #1e40af;
  --color-border-accent: #06b6d4;
  
  /* Gradient Definitions */
  --gradient-primary: linear-gradient(135deg, #1e40af 0%, #1e40af 100%);
  --gradient-accent: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
  --gradient-hero: linear-gradient(135deg, #1e40af 0%, #0891b2 50%, #06b6d4 100%);
  --gradient-button: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #1e40af 100%);
  --gradient-button-hover: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  
  /* ===========================================
     TYPOGRAPHY
     =========================================== */
  
  /* Font Families */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Font Sizes */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  --text-7xl: 4.5rem;      /* 72px */
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Letter Spacing */
  --tracking-tighter: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  
  /* ===========================================
     SPACING
     =========================================== */
  
  --space-0: 0;
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-32: 8rem;     /* 128px */
  
  /* ===========================================
     BORDERS & RADIUS
     =========================================== */
  
  --radius-none: 0;
  --radius-sm: 0.25rem;    /* 4px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-2xl: 1.25rem;   /* 20px */
  --radius-3xl: 1.5rem;    /* 24px */
  --radius-full: 9999px;
  
  --border-width-thin: 1px;
  --border-width-medium: 2px;
  --border-width-thick: 4px;
  
  /* ===========================================
     SHADOWS
     =========================================== */
  
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  
  /* Colored Shadows */
  --shadow-primary: 0 10px 40px -10px rgba(30, 64, 175, 0.35);
  --shadow-primary-lg: 0 20px 50px -15px rgba(30, 64, 175, 0.4);
  --shadow-accent: 0 10px 40px -10px rgba(6, 182, 212, 0.35);
  --shadow-accent-lg: 0 20px 50px -15px rgba(6, 182, 212, 0.4);
  
  /* Glass Shadows */
  --shadow-glass: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  --shadow-glass-elevated: 
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  
  /* ===========================================
     TRANSITIONS & ANIMATIONS
     =========================================== */
  
  --duration-instant: 50ms;
  --duration-fast: 150ms;
  --duration-normal: 200ms;
  --duration-slow: 300ms;
  --duration-slower: 500ms;
  
  --ease-linear: linear;
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  --transition-fast: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* ===========================================
     Z-INDEX SCALE
     =========================================== */
  
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-notification: 800;
  --z-chatbot: 9999;
  
  /* ===========================================
     CONTAINER WIDTHS
     =========================================== */
  
  --container-xs: 320px;
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;
  --container-max: 1920px;
}

/* ===========================================
   DARK MODE SUPPORT
   =========================================== */

@media (prefers-color-scheme: dark) {
  :root.auto-dark {
    --color-bg-primary: #0f172a;
    --color-bg-secondary: #1e293b;
    --color-bg-tertiary: #334155;
    --color-bg-elevated: #1e293b;
    
    --color-text-primary: #f8fafc;
    --color-text-secondary: #cbd5e1;
    --color-text-tertiary: #94a3b8;
    --color-text-muted: #64748b;
    
    --color-border-light: #334155;
    --color-border-medium: #475569;
    
    --color-glass-light: rgba(30, 41, 59, 0.85);
    --color-glass-medium: rgba(30, 41, 59, 0.75);
  }
}

/* Explicit Dark Mode Class */
.dark {
  --color-bg-primary: #0f172a;
  --color-bg-secondary: #1e293b;
  --color-bg-tertiary: #334155;
  --color-bg-elevated: #1e293b;
  
  --color-text-primary: #f8fafc;
  --color-text-secondary: #cbd5e1;
  --color-text-tertiary: #94a3b8;
  --color-text-muted: #64748b;
  
  --color-border-light: #334155;
  --color-border-medium: #475569;
  
  --color-glass-light: rgba(30, 41, 59, 0.85);
  --color-glass-medium: rgba(30, 41, 59, 0.75);
  
  --gradient-glass: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
}

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

/* Headings */
.heading-1 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-size: var(--text-5xl);
  font-weight: 700;
  font-weight: var(--font-bold);
  line-height: 1.25;
  line-height: var(--leading-tight);
  letter-spacing: -0.025em;
  letter-spacing: var(--tracking-tight);
  color: #0f172a;
  color: var(--color-text-primary);
}

.heading-2 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-size: var(--text-4xl);
  font-weight: 600;
  font-weight: var(--font-semibold);
  line-height: 1.25;
  line-height: var(--leading-tight);
  letter-spacing: -0.025em;
  letter-spacing: var(--tracking-tight);
  color: #0f172a;
  color: var(--color-text-primary);
}

.heading-3 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-size: var(--text-2xl);
  font-weight: 500;
  font-weight: var(--font-medium);
  line-height: 1.375;
  line-height: var(--leading-snug);
  color: #0f172a;
  color: var(--color-text-primary);
}

.heading-4 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-size: var(--text-xl);
  font-weight: 500;
  font-weight: var(--font-medium);
  line-height: 1.375;
  line-height: var(--leading-snug);
  color: #0f172a;
  color: var(--color-text-primary);
}

.body-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--font-body);
  font-size: 1rem;
  font-size: var(--text-base);
  font-weight: 400;
  font-weight: var(--font-normal);
  line-height: 1.625;
  line-height: var(--leading-relaxed);
  color: #475569;
  color: var(--color-text-secondary);
}

.body-large {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-size: var(--text-lg);
  font-weight: 400;
  font-weight: var(--font-normal);
  line-height: 1.625;
  line-height: var(--leading-relaxed);
  color: #475569;
  color: var(--color-text-secondary);
}

.body-small {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-size: var(--text-sm);
  font-weight: 400;
  font-weight: var(--font-normal);
  line-height: 1.5;
  line-height: var(--leading-normal);
  color: #64748b;
  color: var(--color-text-tertiary);
}

.caption {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-size: var(--text-xs);
  font-weight: 400;
  font-weight: var(--font-normal);
  line-height: 1.5;
  line-height: var(--leading-normal);
  color: #94a3b8;
  color: var(--color-text-muted);
}

.label {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-size: var(--text-sm);
  font-weight: 500;
  font-weight: var(--font-medium);
  line-height: 1;
  line-height: var(--leading-none);
  letter-spacing: 0.025em;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: #64748b;
  color: var(--color-text-tertiary);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #1e40af 0%, #0891b2 50%, #06b6d4 100%);
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-accent {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================================
   RESPONSIVE TYPOGRAPHY
   =========================================== */

@media (max-width: 768px) {
  .heading-1 {
    font-size: 2.25rem;
    font-size: var(--text-4xl);
  }
  
  .heading-2 {
    font-size: 1.875rem;
    font-size: var(--text-3xl);
  }
  
  .heading-3 {
    font-size: 1.25rem;
    font-size: var(--text-xl);
  }
}

@media (max-width: 480px) {
  .heading-1 {
    font-size: 1.875rem;
    font-size: var(--text-3xl);
  }
  
  .heading-2 {
    font-size: 1.5rem;
    font-size: var(--text-2xl);
  }
}

/**
 * Customer Care AI Platform - Component Styles
 * 
 * Reusable component patterns following the design system
 * 
 * @version 2.0.0
 * @created December 24, 2025
 */

/* ============================================
   BUTTONS
   ============================================ */

/* Base Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-wide);
  text-decoration: none;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Primary Button - Gradient */
.btn-primary {
  background: var(--gradient-button);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn-primary:hover:not(:disabled) {
  background: var(--gradient-button-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-primary-lg);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
}

/* Secondary Button */
.btn-secondary {
  background: var(--color-secondary-100);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-light);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--color-secondary-200);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary:active:not(:disabled) {
  transform: translateY(0);
}

/* Accent Button */
.btn-accent {
  background: var(--gradient-accent);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-accent-lg);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--color-text-primary);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--color-secondary-100);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover:not(:disabled) {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  border-radius: var(--radius-lg);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  border-radius: var(--radius-2xl);
}

.btn-xl {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-xl);
  border-radius: var(--radius-2xl);
}

/* Icon-only Button */
.btn-icon {
  padding: var(--space-3);
  border-radius: var(--radius-lg);
}

.btn-icon.btn-sm {
  padding: var(--space-2);
}

.btn-icon.btn-lg {
  padding: var(--space-4);
}

/* Button with Icon */
.btn-icon-left svg,
.btn-icon-left .icon {
  margin-right: var(--space-2);
}

.btn-icon-right svg,
.btn-icon-right .icon {
  margin-left: var(--space-2);
}

/* Loading State */
.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   CARDS
   ============================================ */

/* Base Card */
.card {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  transition: var(--transition-normal);
}

/* Glass Card */
.glass-card {
  background: var(--color-glass-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-glass);
  padding: var(--space-6);
  transition: var(--transition-normal);
}

.glass-card-elevated {
  box-shadow: var(--shadow-glass-elevated);
}

.glass-card-accent {
  border-color: var(--color-accent);
  box-shadow: 
    var(--shadow-glass),
    0 0 0 1px var(--color-accent);
}

/* Hoverable Card */
.card-hover:hover,
.glass-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glass-elevated);
}

/* Feature Card */
.feature-card {
  background: var(--color-glass-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero);
  opacity: 0;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-primary-300);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  font-size: var(--text-2xl);
  box-shadow: var(--shadow-primary);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* Stats Card */
.stats-card {
  background: var(--color-glass-light);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  text-align: center;
  border: 1px solid var(--color-border-light);
}

.stats-card-value {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}

.stats-card-label {
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* ============================================
   INPUTS & FORMS
   ============================================ */

/* Input Group */
.input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Input Label */
.input-label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-primary);
}

/* Base Input */
.input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: var(--color-bg-secondary);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  transition: var(--transition-fast);
}

.input::placeholder {
  color: var(--color-text-muted);
}

.input:hover:not(:disabled) {
  border-color: var(--color-border-medium);
}

.input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input:disabled {
  background: var(--color-secondary-100);
  cursor: not-allowed;
}

/* Input with Icon */
.input-with-icon {
  position: relative;
}

.input-with-icon .input {
  padding-left: var(--space-12);
}

.input-with-icon .input-icon {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}

/* Input States */
.input-error {
  border-color: var(--color-danger);
}

.input-error:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.input-success {
  border-color: var(--color-success);
}

.input-success:focus {
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Helper Text */
.input-helper {
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
}

.input-helper-error {
  color: var(--color-danger);
}

/* Textarea */
.textarea {
  min-height: 120px;
  resize: vertical;
}

/* Select */
.select {
  -webkit-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27 stroke=%27%2364748b%27%3E%3Cpath stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M19 9l-7 7-7-7%27%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  background-size: 20px;
  padding-right: var(--space-12);
}

/* ============================================
   BADGES
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge-primary {
  background: var(--color-primary-100);
  color: var(--color-primary-700);
}

.badge-secondary {
  background: var(--color-secondary-100);
  color: var(--color-secondary-700);
}

.badge-accent {
  background: var(--color-accent-100);
  color: var(--color-accent-700);
}

.badge-success {
  background: var(--color-success-bg);
  color: var(--color-success-dark);
}

.badge-warning {
  background: var(--color-warning-bg);
  color: var(--color-warning-dark);
}

.badge-danger {
  background: var(--color-danger-bg);
  color: var(--color-danger-dark);
}

.badge-info {
  background: var(--color-info-bg);
  color: var(--color-info-dark);
}

/* Badge with Dot */
.badge-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Badge Sizes */
.badge-lg {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* ============================================
   NAVIGATION
   ============================================ */

/* Nav Container */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--color-glass-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: var(--space-2) 0;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ============================================
   MODALS & OVERLAYS
   ============================================ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: var(--color-bg-overlay);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: var(--z-modal-backdrop);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  animation: fadeIn var(--duration-normal) var(--ease-out);
}

.modal-content {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  animation: slideUp var(--duration-slow) var(--ease-bounce);
}

.modal-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  border: none;
  background: var(--color-secondary-100);
  color: var(--color-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-secondary-200);
  color: var(--color-text-primary);
}

.modal-body {
  padding: var(--space-6);
}

.modal-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
}

/* ============================================
   TABS
   ============================================ */

.tabs {
  display: flex;
  gap: var(--space-1);
  background: var(--color-secondary-100);
  padding: var(--space-1);
  border-radius: var(--radius-xl);
}

.tab {
  flex: 1 1;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab:hover:not(.tab-active) {
  color: var(--color-text-primary);
}

.tab-active {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   TOOLTIPS
   ============================================ */

.tooltip {
  position: relative;
}

.tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: var(--space-2) var(--space-3);
  background: var(--color-secondary-800);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: var(--z-tooltip);
}

.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-secondary-800);
}

.tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-12px);
}

/* ============================================
   DROPDOWN
   ============================================ */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  margin-top: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition-fast);
  z-index: var(--z-dropdown);
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--color-secondary-100);
}

.dropdown-divider {
  height: 1px;
  background: var(--color-border-light);
  margin: var(--space-2) 0;
}

/* ============================================
   AVATAR
   ============================================ */

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--gradient-hero);
  color: var(--color-text-inverse);
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  overflow: hidden;
}

.avatar-sm {
  width: 32px;
  height: 32px;
  font-size: var(--text-sm);
}

.avatar-md {
  width: 40px;
  height: 40px;
  font-size: var(--text-base);
}

.avatar-lg {
  width: 56px;
  height: 56px;
  font-size: var(--text-xl);
}

.avatar-xl {
  width: 80px;
  height: 80px;
  font-size: var(--text-3xl);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   PROGRESS BAR
   ============================================ */

.progress {
  width: 100%;
  height: 8px;
  background: var(--color-secondary-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-hero);
  border-radius: var(--radius-full);
  transition: width var(--duration-slow) var(--ease-out);
}

.progress-bar-accent {
  background: var(--gradient-accent);
}

.progress-bar-success {
  background: var(--color-success);
}

/* ============================================
   DIVIDERS
   ============================================ */

.divider {
  height: 1px;
  background: var(--color-border-light);
  margin: var(--space-6) 0;
}

.divider-vertical {
  width: 1px;
  height: 100%;
  background: var(--color-border-light);
  margin: 0 var(--space-4);
}

.divider-with-text {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.divider-with-text::before,
.divider-with-text::after {
  content: '';
  flex: 1 1;
  height: 1px;
  background: var(--color-border-light);
}

.divider-with-text span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   LOADING STATES
   ============================================ */

.skeleton {
  background: linear-gradient(
    90deg,
    var(--color-secondary-200) 0%,
    var(--color-secondary-100) 50%,
    var(--color-secondary-200) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 16px;
  margin-bottom: var(--space-2);
}

.skeleton-text:last-child {
  width: 70%;
}

.skeleton-circle {
  border-radius: var(--radius-full);
}

.skeleton-card {
  padding: var(--space-6);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-2xl);
}

/* Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-secondary-200);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.spinner-lg {
  width: 56px;
  height: 56px;
  border-width: 4px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   SCROLL AREA
   ============================================ */

.scroll-area {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary-300) transparent;
}

.scroll-area::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.scroll-area::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-area::-webkit-scrollbar-thumb {
  background: var(--color-secondary-300);
  border-radius: var(--radius-full);
}

.scroll-area::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary-400);
}

/* ============================================
   SECTION LAYOUTS
   ============================================ */

.section {
  padding: var(--space-20) var(--space-6);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.section-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary-100);
  color: var(--color-primary-700);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  letter-spacing: var(--tracking-tight);
}

.section-description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--container-lg);
}

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

@media (max-width: 768px) {
  .section {
    padding: var(--space-12) var(--space-4);
  }
  
  .section-title {
    font-size: var(--text-3xl);
  }
  
  .section-header {
    margin-bottom: var(--space-10);
  }
  
  .feature-card {
    padding: var(--space-6);
  }
  
  .modal-content {
    max-height: 85vh;
    margin: var(--space-4);
  }
  
  .nav-links {
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .btn-lg {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
  }
  
  .section-title {
    font-size: var(--text-2xl);
  }
}

/**
 * Customer Care AI Platform - Animation Utilities
 * 
 * Smooth, intelligent animations for a professional feel
 * 
 * @version 2.0.0
 * @created December 24, 2025
 */

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

/* Fade Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide Animations */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale Animations */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleInBounce {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulse Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Glow Animation */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.6);
  }
}

@keyframes glowPrimary {
  0%, 100% {
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(30, 64, 175, 0.5);
  }
}

/* Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Shimmer Animation */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Typing Indicator Animation */
@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
}

@keyframes typingPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Spin Animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

/* Shake Animation */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

/* Wave Animation */
@keyframes wave {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-15deg);
  }
}

/* Gradient Shift */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Number Count Up (for stats) */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Fade Animations */
.animate-fade-in {
  animation: fadeIn var(--duration-normal) var(--ease-out);
}

.animate-fade-in-up {
  animation: fadeInUp var(--duration-slow) var(--ease-out);
}

.animate-fade-in-down {
  animation: fadeInDown var(--duration-slow) var(--ease-out);
}

.animate-fade-in-left {
  animation: fadeInLeft var(--duration-slow) var(--ease-out);
}

.animate-fade-in-right {
  animation: fadeInRight var(--duration-slow) var(--ease-out);
}

/* Slide Animations */
.animate-slide-up {
  animation: slideUp var(--duration-slow) var(--ease-bounce);
}

.animate-slide-in-bottom {
  animation: slideInFromBottom var(--duration-slow) var(--ease-bounce);
}

.animate-slide-in-right {
  animation: slideInFromRight var(--duration-slow) var(--ease-out);
}

/* Scale Animations */
.animate-scale-in {
  animation: scaleIn var(--duration-normal) var(--ease-out);
}

.animate-scale-in-bounce {
  animation: scaleInBounce var(--duration-slow) var(--ease-bounce);
}

.animate-pop-in {
  animation: popIn var(--duration-slow) var(--ease-bounce);
}

.animate-bounce-in {
  animation: bounceIn var(--duration-slower) var(--ease-bounce);
}

/* Continuous Animations */
.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-pulse-scale {
  animation: pulseScale 2s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-glow-primary {
  animation: glowPrimary 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-spin-slow {
  animation: spin 3s linear infinite;
}

.animate-shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.animate-shake {
  animation: shake 0.5s ease-in-out;
}

.animate-wave {
  animation: wave 2s ease-in-out infinite;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

/* ============================================
   HOVER ANIMATIONS
   ============================================ */

.hover-lift {
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hover-lift-sm:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hover-lift-lg:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.hover-scale {
  transition: transform var(--duration-fast) var(--ease-out);
}

.hover-scale:hover {
  transform: scale(1.02);
}

.hover-scale-sm:hover {
  transform: scale(1.01);
}

.hover-scale-lg:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.hover-glow-primary:hover {
  box-shadow: 0 0 30px rgba(30, 64, 175, 0.4);
}

.hover-rotate {
  transition: transform var(--duration-normal) var(--ease-out);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-brightness {
  transition: filter var(--duration-fast) var(--ease-out);
}

.hover-brightness:hover {
  filter: brightness(1.1);
}

/* ============================================
   TYPING INDICATOR
   ============================================ */

.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--color-secondary-100);
  border-radius: 18px 18px 18px 4px;
}

.typing-indicator-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-indicator-dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-indicator-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator-dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Alternative typing indicator style */
.typing-indicator-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--color-secondary-100) 0%, var(--color-secondary-50) 100%);
  border-radius: 20px 20px 20px 4px;
}

.typing-indicator-pulse .dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 50%;
  animation: typingPulse 1.2s ease-in-out infinite;
}

.typing-indicator-pulse .dot:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-indicator-pulse .dot:nth-child(3) {
  animation-delay: 0.3s;
}

/* ============================================
   CHAT MESSAGE ANIMATIONS
   ============================================ */

.message-enter {
  animation: messageSlideIn 0.3s var(--ease-out);
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.message-user-enter {
  animation: messageSlideInUser 0.3s var(--ease-out);
}

@keyframes messageSlideInUser {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.message-bot-enter {
  animation: messageSlideInBot 0.3s var(--ease-out);
}

@keyframes messageSlideInBot {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   STAGGERED ANIMATIONS
   ============================================ */

.stagger-animation > * {
  opacity: 0;
  animation: fadeInUp var(--duration-slow) var(--ease-out) forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0ms; }
.stagger-animation > *:nth-child(2) { animation-delay: 100ms; }
.stagger-animation > *:nth-child(3) { animation-delay: 200ms; }
.stagger-animation > *:nth-child(4) { animation-delay: 300ms; }
.stagger-animation > *:nth-child(5) { animation-delay: 400ms; }
.stagger-animation > *:nth-child(6) { animation-delay: 500ms; }
.stagger-animation > *:nth-child(7) { animation-delay: 600ms; }
.stagger-animation > *:nth-child(8) { animation-delay: 700ms; }

/* Fast stagger */
.stagger-fast > *:nth-child(1) { animation-delay: 0ms; }
.stagger-fast > *:nth-child(2) { animation-delay: 50ms; }
.stagger-fast > *:nth-child(3) { animation-delay: 100ms; }
.stagger-fast > *:nth-child(4) { animation-delay: 150ms; }
.stagger-fast > *:nth-child(5) { animation-delay: 200ms; }
.stagger-fast > *:nth-child(6) { animation-delay: 250ms; }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-bounce);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-float,
  .animate-float-slow,
  .animate-bounce,
  .animate-pulse,
  .animate-glow,
  .animate-shimmer {
    animation: none !important;
  }
}

/* ============================================
   Customer Care AI Platform - Global Styles
   Professional Design System v2.0
   ============================================ */

/* Import Tailwind CSS */

/* Import Design System */

/* Google Fonts */

/* Legacy Variable Mapping - maintains backwards compatibility */
:root {
    /* Map legacy variables to new design system */
    --primary: var(--color-primary, #1e40af);
    --primary-dark: var(--color-primary-dark, #1e3a8a);
    --primary-light: var(--color-primary-light, #1e40af);
    --secondary: var(--color-secondary, #64748b);
    --secondary-dark: var(--color-secondary-dark, #475569);
    --secondary-light: var(--color-secondary-light, #94a3b8);
    --tertiary: var(--color-accent, #06b6d4);
    --success: var(--color-success, #10b981);
    --warning: var(--color-warning, #f59e0b);
    --danger: var(--color-danger, #ef4444);
    --text: var(--color-text-primary, #0f172a);
    --text-light: var(--color-text-secondary, #475569);
    --text-lighter: var(--color-text-tertiary, #64748b);
    --text-dark: var(--color-text-primary, #0f172a);
    --bg-light: var(--color-bg-primary, #fafafa);
    --bg-lighter: var(--color-bg-secondary, #ffffff);
    --bg-dark: #0f172a;
    --border: var(--color-border-light, #e2e8f0);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --transition: all 0.3s ease;
    /* Specific transitions to prevent flickering */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* Reduce motion for users who prefer it and during testing */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Test mode: disable animations for E2E testing */
html[data-testmode="true"] *,
html[data-testmode="true"] *::before,
html[data-testmode="true"] *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* ============================================
   ANTI-FLICKERING UTILITIES
   Prevent visual instability during renders
   ============================================ */

/* GPU-accelerated containers for form pages */
.registration-form,
.login-form,
.contact-form,
.tenant-register-card,
.admin-register-card,
form {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

/* Stable input rendering - prevent reflow on focus/blur */
input,
textarea,
select {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    /* Use specific transitions instead of 'all' to prevent flickering */
    transition-property: border-color, box-shadow, background-color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

/* Prevent layout shift on validation state changes */
.form-group,
.input-wrapper,
.form-field {
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Stable error message containers */
.error-message,
.validation-error,
.field-error,
[class*="-error"] {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Reserve space to prevent layout shift */
    min-height: 0;
}

/* Stable button rendering */
button,
.btn,
[class*="button"] {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition-property: background-color, border-color, color, box-shadow, transform;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

/* Prevent focus outline from causing reflow */
*:focus {
    outline-offset: 2px;
}

/* Stable card/container rendering */
.card,
[class*="-card"],
[class*="-container"] {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-family: var(--font-body, 'Inter'), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    background-color: var(--color-bg-primary, #fafafa);
    color: #0f172a;
    color: var(--color-text-primary, #0f172a);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Heading defaults - Use Space Grotesk */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-family: var(--font-heading, 'Space Grotesk'), -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    line-height: 1.25;
    color: #0f172a;
    color: var(--color-text-primary, #0f172a);
}

a {
    text-decoration: none;
    color: #1e40af;
    color: var(--primary);
    transition: all 0.3s ease;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 2rem;
}

/* Main Navigation */
.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    z-index: 1000;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-logo-img {
    width: 2rem;
    height: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #0f172a;
    color: var(--text);
    font-weight: 500;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    color: #1e40af;
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -0.25rem;
    left: 0;
    background-color: #1e40af;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.tenant-actions {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    transition: var(--transition);
}

.nav-btn.primary {
    background-color: #1e40af;
    background-color: var(--primary);
    color: white;
}

.nav-btn.primary:hover {
    background-color: #1e3a8a;
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
}

.nav-btn.secondary {
    border: 2px solid #1e40af;
    border: 2px solid var(--primary);
    color: #1e40af;
    color: var(--primary);
}

.nav-btn.secondary:hover {
    background-color: #1e40af;
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #1e40af, #64748b);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 85vh;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -5%;
    right: -5%;
    height: 100px;
    background: #fafafa;
    background: var(--bg-light);
    transform: rotate(-2deg);
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 0 0 500px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border-radius: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.gradient-text {
    background-image: linear-gradient(90deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 90%;
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background-image: linear-gradient(90deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-align: center;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #475569;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e40af, #64748b);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: all 0.3s ease;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
    color: var(--text-dark);
}

.feature-card p {
    color: #475569;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-link {
    display: inline-block;
    color: #1e40af;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    transition: var(--transition);
}

.feature-link:hover {
    color: #1e3a8a;
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    background-color: #ffffff;
    background-color: var(--bg-lighter);
    position: relative;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1280px;
    margin: 3rem auto 0;
    flex-wrap: wrap;
}

.step {
    flex: 1 1;
    min-width: 240px;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af, #64748b);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
    color: var(--text-dark);
}

.step p {
    color: #475569;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: #0f172a;
    color: var(--text);
    line-height: 1.7;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 5rem;
    color: #1e40af;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #0f172a;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #475569;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e40af, #64748b);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-button.primary {
    background-color: white;
    color: #1e40af;
    color: var(--primary);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Footer */
.main-footer {
    background-color: #0f172a;
    background-color: var(--bg-dark);
    color: white;
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 3rem;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 1.5rem;
    color: #64748b;
    color: var(--text-lighter);
    max-width: 300px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #64748b;
    color: var(--text-lighter);
    text-decoration: none;
    transition: all 0.3s ease;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #64748b;
    color: var(--text-lighter);
    text-decoration: none;
    transition: all 0.3s ease;
    transition: var(--transition);
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #64748b;
    color: var(--text-lighter);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #64748b;
    color: var(--text-lighter);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero-section {
        padding: 6rem 2rem 4rem;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 3rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-container {
        justify-content: center;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .tenant-actions {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2rem; }
.mt-8 { margin-top: 3rem; }
.mt-10 { margin-top: 4rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2rem; }
.mb-8 { margin-bottom: 3rem; }
.mb-10 { margin-bottom: 4rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-6 { padding-top: 2rem; padding-bottom: 2rem; }
.py-8 { padding-top: 3rem; padding-bottom: 3rem; }
.py-10 { padding-top: 4rem; padding-bottom: 4rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-6 { padding-left: 2rem; padding-right: 2rem; }
.px-8 { padding-left: 3rem; padding-right: 3rem; }
.px-10 { padding-left: 4rem; padding-right: 4rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.5rem; }
.gap-6 { gap: 2rem; }
.gap-8 { gap: 3rem; }
.gap-10 { gap: 4rem; }

.rounded-sm { border-radius: 0.25rem; border-radius: var(--radius-sm); }
.rounded { border-radius: 0.5rem; border-radius: var(--radius); }
.rounded-md { border-radius: 0.75rem; border-radius: var(--radius-md); }
.rounded-lg { border-radius: 1rem; border-radius: var(--radius-lg); }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); box-shadow: var(--shadow-sm); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); box-shadow: var(--shadow); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); box-shadow: var(--shadow-lg); }

.transition { transition: all 0.3s ease; transition: var(--transition); }

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
}

.hover-brighten:hover {
    filter: brightness(1.1);
}

.gradient-bg {
    background: linear-gradient(135deg, #1e40af, #64748b);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* Animation utility classes */
.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-in-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
