/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #3b82f6;
  --primary-dark: #2563eb;
  --secondary-color: #6b7280;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --bg-color: #f9fafb;
  --surface-color: #ffffff;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-color);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background-color: var(--surface-color);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Navigation Bar */
.navbar {
  background-color: var(--surface-color);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease-out;
}

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

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-image {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar-logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-brand h1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 25%,
    #f093fb 50%,
    #764ba2 75%,
    #667eea 100%
  );
  background-size: 400% 400%;
  animation: subtleGradient 20s ease infinite;
  color: white;
  position: relative;
  overflow: hidden;
}

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

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  /* Removed animation */
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  /* Removed animation */
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  /* Removed animation */
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* Removed animation */
}

.trial-info {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

.hero-image {
  /* Removed animation */
}

.dashboard-preview {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 3rem;
  backdrop-filter: blur(10px);
  /* Removed float animation */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.dashboard-preview::before {
  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 3s infinite;
}

.preview-card {
  position: relative;
  z-index: 1;
}

/* Features Section */
.features {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  /* Removed animation */
}

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

.feature-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  /* Removed fadeIn animation */
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Removed animation-delay for feature cards */

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  /* Removed pulse animation */
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: var(--bg-color);
}

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

.pricing-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease-out backwards;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}
.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}
.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

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

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  animation: pulse 2s ease infinite;
}

.price {
  margin: 1.5rem 0;
}

.amount {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  color: var(--text-secondary);
}

.features-list {
  list-style: none;
  margin: 2rem 0;
}

.features-list li {
  padding: 0.5rem 0;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Auth Pages */
.auth-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg-color);
}

.auth-page .auth-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.auth-page .footer {
  margin-top: auto;
}

.auth-box {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
}

.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.auth-form input,
.auth-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.form-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--border-color);
}

.form-divider span {
  position: relative;
  background: var(--surface-color);
  padding: 0 1rem;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
}

/* Dashboard Layout */
.dashboard-page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background: var(--text-primary);
  color: white;
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h1 {
  font-size: 1.5rem;
  margin: 0;
}

.sidebar-nav {
  flex: 1;
  padding: 1rem 0;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: var(--surface-color);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-bar input {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  width: 300px;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notification-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--danger-color);
  color: white;
  border-radius: 50%;
  padding: 0.125rem 0.375rem;
  font-size: 0.75rem;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.dashboard-content {
  padding: 2rem;
  overflow-y: auto;
}

.page-header {
  margin-bottom: 2rem;
}

.subtitle {
  color: var(--text-secondary);
  margin: 0;
}

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

.stat-card {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
}

.stat-icon {
  font-size: 2.5rem;
}

.stat-content h3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.stat-change {
  font-size: 0.875rem;
}

.stat-change.positive {
  color: var(--success-color);
}

.stat-change.negative {
  color: var(--danger-color);
}

.quick-actions {
  margin-bottom: 2rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.action-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.widgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.widget {
  background: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.widget-link {
  font-size: 0.875rem;
}

.empty-state {
  color: var(--text-secondary);
  text-align: center;
  padding: 2rem;
}

/* AI Activity Section */
.ai-activity-section {
  margin-bottom: 2rem;
}

.ai-activity-section h2 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ai-stat-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.ai-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ai-stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.ai-stat-info h3 {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.ai-stat-value {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.ai-stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 1rem;
}

.hamburger-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: absolute;
  left: 0;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  top: 8px;
}

/* Settings Page */
.settings-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
}

.settings-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.settings-tab {
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  text-align: left;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.settings-tab.active {
  background: var(--primary-color);
  color: white;
}

.settings-panel {
  display: none;
}

.settings-panel.active {
  display: block;
}

.settings-form {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.settings-section {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
}

.avatar-upload {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-preview {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--surface-color);
  border-radius: 0.5rem;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-large .modal-content {
  max-width: 800px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-secondary);
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal form {
  padding: 1.5rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.filter-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background: var(--surface-color);
}

.section-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  background: var(--surface-color);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.actions-right {
  display: flex;
  gap: 0.5rem;
}

/* Data Table */
.data-table {
  background: var(--surface-color);
  border-radius: 0.5rem;
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.data-table th {
  background: var(--bg-color);
  font-weight: 600;
  color: var(--text-secondary);
}

.data-table tbody tr:hover {
  background: var(--bg-color);
}

/* Cards Grid */
.cards-grid,
.goals-grid,
.projects-grid,
.contacts-grid,
.recipes-grid,
.ideas-list,
.budgets-grid,
.accounts-grid,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Tabs */
.tabs-container {
  margin-bottom: 1.5rem;
}

.tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
  margin-bottom: -2px;
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Notes List */
.notes-list {
  display: grid;
  gap: 1rem;
}

.note-item {
  background: var(--surface-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
}

/* Color Picker */
.color-picker {
  display: flex;
  gap: 0.5rem;
}

.color-picker input[type="radio"] {
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--border-color);
}

.color-picker input[type="radio"][value="default"] {
  background: var(--surface-color);
}

.color-picker input[type="radio"][value="blue"] {
  background: #3b82f6;
}

.color-picker input[type="radio"][value="green"] {
  background: #10b981;
}

.color-picker input[type="radio"][value="yellow"] {
  background: #f59e0b;
}

.color-picker input[type="radio"][value="red"] {
  background: #ef4444;
}

.color-picker input[type="radio"][value="purple"] {
  background: #8b5cf6;
}

.color-picker input[type="radio"]:checked {
  border-color: var(--text-primary);
  box-shadow:
    0 0 0 2px var(--surface-color),
    0 0 0 4px var(--text-primary);
}

/* Calendar View */
.calendar-container {
  background: var(--surface-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-header h2 {
  margin: 0;
}

.nav-btn {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.2rem;
}

.nav-btn:hover {
  background: var(--bg-color);
}

.calendar-view {
  min-height: 400px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  background: var(--surface-color);
  border-radius: 0.5rem;
  padding: 1rem;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
}

/* Sync Button */
.sync-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  margin-top: 0.25rem;
}

.sync-btn:hover {
  background: var(--primary-dark);
}

/* Voice Recorder */
.voice-recorder {
  padding: 2rem;
  text-align: center;
}

.recording-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.recording-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--danger-color);
  animation: pulse 1.5s infinite;
}

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

.record-btn {
  background: var(--danger-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.record-btn:hover {
  background: #dc2626;
}

.audio-preview {
  margin: 1.5rem 0;
}

/* Badges */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.badge-card {
  background: var(--surface-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: transform 0.2s;
}

.badge-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.badge-card.locked {
  opacity: 0.6;
  filter: grayscale(100%);
}

.badge-card.earned {
  border: 2px solid var(--success-color);
}

.badge-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.badge-icon-large {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.badge-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.badge-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.badge-progress {
  margin: 1rem 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: var(--primary-color);
  transition: width 0.3s;
}

.progress-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.badge-rarity {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-rarity.common {
  background: #9ca3af;
  color: white;
}

.badge-rarity.rare {
  background: #3b82f6;
  color: white;
}

.badge-rarity.epic {
  background: #8b5cf6;
  color: white;
}

.badge-rarity.legendary {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
}

.recent-achievements {
  background: var(--surface-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.section-header h2 {
  margin: 0;
}

.achievements-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Share Modal */
.share-content {
  padding: 1.5rem;
}

.share-preview {
  background: var(--bg-color);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.achievement-preview {
  text-align: center;
}

.share-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.share-btn {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background: var(--surface-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.share-btn:hover {
  background: var(--bg-color);
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
  border-color: #1da1f2;
}

.share-btn.linkedin {
  background: #0a66c2;
  color: white;
  border-color: #0a66c2;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .navbar .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    display: none;
  }

  .navbar .nav-menu.active {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
  }

  .features-grid {
    grid-template-columns: 1fr !important;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 1000;
    transition: left 0.3s ease;
  }

  .sidebar.mobile-active {
    left: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  }

  .sidebar-nav span:not(.icon) {
    display: inline;
  }

  .sidebar-header h1 {
    font-size: 1.5rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  body.sidebar-open::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .ai-stats-grid {
    grid-template-columns: 1fr;
  }

  .settings-container {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .filters {
    width: 100%;
  }

  .filter-select {
    flex: 1;
  }

  .search-bar input {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .cards-grid,
  .goals-grid,
  .projects-grid,
  .contacts-grid,
  .recipes-grid,
  .badges-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-large {
    width: 100%;
    text-align: center;
  }
}

/* Verification and Alert Styles */
.verification-result {
  margin: 2rem 0;
}

.alert {
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
}

.alert svg {
  margin: 0 auto 1rem;
  display: block;
}

.alert h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.alert p {
  color: inherit;
  opacity: 0.9;
}

.alert-success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.alert-success svg {
  color: #10b981;
}

.alert-error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

.alert-error svg {
  color: #ef4444;
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-options .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-options .checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
}

/* Upgrade Page Styles */
.upgrade-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.upgrade-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.upgrade-intro p {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: var(--surface-color);
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
  position: relative;
}

.pricing-card.featured .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.price {
  margin-bottom: 2rem;
}

.price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price .period {
  font-size: 1rem;
  color: var(--text-secondary);
}

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

.features-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

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

.upgrade-info {
  margin-top: 4rem;
}

.upgrade-info h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Debug Footer Styles */
.debug-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: #f3f4f6;
  font-family: "Courier New", monospace;
  font-size: 12px;
  z-index: 9999;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.debug-toggle {
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #374151;
  user-select: none;
}

.debug-toggle:hover {
  background: #374151;
}

.debug-badge {
  background: #ef4444;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: bold;
}

.debug-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.debug-content.open {
  max-height: 600px;
  overflow-y: auto;
}

.debug-section {
  padding: 12px 16px;
  border-bottom: 1px solid #374151;
}

.debug-section h4 {
  margin: 0 0 8px 0;
  color: #60a5fa;
  font-size: 13px;
  font-weight: bold;
}

.debug-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.debug-metrics .metric {
  display: flex;
  justify-content: space-between;
  padding: 6px;
  background: #374151;
  border-radius: 4px;
}

.debug-errors .debug-error {
  margin-bottom: 8px;
  padding: 8px;
  background: #374151;
  border-left: 3px solid #ef4444;
  border-radius: 4px;
}

.debug-error.warning {
  border-left-color: #f59e0b;
}

.debug-error.notice {
  border-left-color: #3b82f6;
}

.debug-error.info {
  border-left-color: #10b981;
}

.error-type {
  color: #fca5a5;
  font-weight: bold;
  margin-bottom: 4px;
}

.error-message {
  color: #f3f4f6;
  margin-bottom: 4px;
}

.error-location {
  color: #9ca3af;
  font-size: 11px;
}

.error-trace summary {
  cursor: pointer;
  color: #60a5fa;
  margin-top: 4px;
}

.error-trace pre {
  margin-top: 4px;
  padding: 8px;
  background: #1f2937;
  border-radius: 4px;
  overflow-x: auto;
  font-size: 11px;
}

.debug-queries .debug-query {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  background: #374151;
  border-radius: 4px;
  margin-bottom: 4px;
}

.query-index {
  color: #9ca3af;
  min-width: 30px;
}

.query-sql {
  flex: 1;
  color: #fbbf24;
  overflow-x: auto;
}

.query-time {
  color: #10b981;
  min-width: 60px;
  text-align: right;
}

.debug-info {
  display: grid;
  gap: 6px;
}

.debug-info div {
  display: flex;
  justify-content: space-between;
  padding: 4px 8px;
  background: #374151;
  border-radius: 4px;
}

/* XP Widget Styles */
.xp-widget {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 1.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.xp-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.xp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.xp-level {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.level-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  backdrop-filter: blur(10px);
}

.level-title {
  font-size: 1rem;
  opacity: 0.9;
}

.xp-stats {
  font-size: 0.875rem;
  opacity: 0.9;
}

.xp-progress-container {
  margin: 1rem 0;
}

.xp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.xp-percent {
  opacity: 0.9;
}

.next-reward {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

/* XP History Modal */
.xp-history-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.xp-history-modal .modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.xp-history-modal .modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.xp-history-modal .modal-header h2 {
  margin: 0;
  color: var(--text-primary);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
}

.modal-close:hover {
  color: var(--text-primary);
}

.xp-history-modal .modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.xp-history-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.xp-history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-color);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.xp-history-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.xp-type {
  font-weight: 600;
  color: var(--text-primary);
}

.xp-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.xp-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.xp-amount {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--success-color);
}

.no-history {
  text-align: center;
  color: var(--text-secondary);
  padding: 2rem;
}

/* Footer Styles */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

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

/* Help Search Suggestions */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
}

.search-suggestion-item {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: background 0.2s;
}

.search-suggestion-item:last-of-type {
  border-bottom: none;
}

.search-suggestion-item:hover {
  background: var(--bg-color);
}

.suggestion-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.suggestion-title mark {
  background: #fef3c7;
  color: var(--text-primary);
  padding: 0 0.2rem;
}

.suggestion-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.suggestion-excerpt mark {
  background: #fef3c7;
  color: var(--text-primary);
}

.suggestion-category {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 500;
}

.search-suggestion-footer {
  padding: 0.75rem 1rem;
  background: var(--bg-color);
  border-top: 1px solid var(--border-color);
}

.view-all-results {
  width: 100%;
  padding: 0.5rem;
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.view-all-results:hover {
  background: var(--primary-color);
  color: white;
}

.search-box {
  position: relative;
}

/* Landing Page Specific Styles */
.preview-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  display: block;
}

.preview-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: white;
}

.preview-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: var(--bg-color);
}

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

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.benefit-item p {
  color: var(--text-secondary);
}

/* About Section */
.about {
  padding: 5rem 0;
  background: var(--surface-color);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s backwards;
}

.animate-slide-in-right {
  animation: slideInRight 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
