/* Genel kutu modeli ve kaydırma davranışı */
:root {
  --primary-gradient: linear-gradient(90deg, #7f5af0, #00c0ff);
  --success-gradient: linear-gradient(90deg, #2ecc71, #27ae60);
  --warning-gradient: linear-gradient(90deg, #f1c40f, #f39c12);
  --danger-gradient: linear-gradient(90deg, #e74c3c, #c0392b);
  --primary-color: #7f5af0;
  --secondary-color: #00c0ff;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --background-dark: #16192e;
  --background-darker: #141829;
  --bg-color: linear-gradient(135deg, #16192e 0%, #141829 100%);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #888888;
  --border-color: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(255, 255, 255, 0.05);
  --hover-bg: rgba(0, 192, 255, 0.07);
  --shadow-sm: 0 2px 8px rgba(0, 192, 255, 0.07);
  --shadow-md: 0 4px 16px rgba(0, 192, 255, 0.13);
  --shadow-lg: 0 8px 32px rgba(0, 192, 255, 0.18);
  --transition-base: all 0.3s ease;
  --container-padding: 1.2rem;
  --container-max-width: 1200px;
  --card-background: #fff;
  --hover-color: rgba(99, 102, 241, 0.1);
  --text-gradient: linear-gradient(90deg, #7f5af0, #00c0ff);
  --card-featured-bg: linear-gradient(135deg, #7f5af0 0%, #00c0ff 100%);
  --card-featured-border: #7f5af0;
}

/* Dark Theme */
[data-theme="dark"] {
  --primary-color: #00c0ff;
  --secondary-color: #00ffae;
  --background-color: linear-gradient(135deg, #16192e 0%, #141829 100%);
  --text-color: #ffffff;
  --border-color: rgba(255, 255, 255, 0.1);
  --success-color: #34d399;
  --error-color: #f87171;
  --warning-color: #fbbf24;
  --info-color: #00c0ff;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #16192e 0%, #141829 100%) !important;
  background-attachment: fixed;
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: 60px;
  transition: background-color 0.3s, color 0.3s;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

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

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

.btn-secondary {
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}

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

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  backdrop-filter: blur(10px);
}

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

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

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

.form-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  background-color: var(--background-color);
  color: var(--text-color);
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.alert-success {
  background: rgba(0, 255, 174, 0.1);
  border: 1px solid rgba(0, 255, 174, 0.2);
  color: var(--secondary-color);
}

.alert-error {
  background: rgba(255, 82, 82, 0.1);
  border: 1px solid rgba(255, 82, 82, 0.2);
  color: #ff5252;
}

.alert-warning {
  background: rgba(255, 171, 0, 0.1);
  border: 1px solid rgba(255, 171, 0, 0.2);
  color: #ffab00;
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 2px solid var(--primary-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  flex: 1 0 0%;
  padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  :root {
    --container-padding: 1rem;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.3rem; }
  h5 { font-size: 1.1rem; }

  .btn {
    padding: 0.6rem 1.2rem;
  }

  .card {
    padding: 1.2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  body {
    padding-top: 52px;
  }

  :root {
    --container-padding: 0.8rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.2rem; }
  h5 { font-size: 1rem; }

  .row {
    margin: 0 -0.5rem;
  }

  .col {
    padding: 0 0.5rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    width: 100%;
  }

  .card {
    padding: 1rem;
  }

  .form-input {
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  body {
    padding-top: 48px;
  }

  :root {
    --container-padding: 0.6rem;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  h4 { font-size: 1.1rem; }
  h5 { font-size: 0.95rem; }

  .row {
    margin: 0 -0.3rem;
  }

  .col {
    padding: 0 0.3rem;
  }

  .btn {
    padding: 0.5rem 0.8rem;
  }

  .card {
    padding: 0.8rem;
  }

  .form-input {
    padding: 0.5rem 0.7rem;
  }
}

/* Utility Classes */
.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-circle { border-radius: 50%; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.cursor-pointer { cursor: pointer; }
.user-select-none { user-select: none; }

.transition { transition: var(--transition-base); }

/* Mobile-specific utilities */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
  .text-center-mobile { text-align: center !important; }
  .w-100-mobile { width: 100% !important; }
  .mt-2-mobile { margin-top: 1rem !important; }
  .mb-2-mobile { margin-bottom: 1rem !important; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
  .show-desktop { display: block !important; }
}

/* DEAKTIF - Navbar artık partials/navbar.ejs'den yönetiliyor */
/* Navbar - Logo */
/* .logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 36px;
}

.logo-area span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

/* Navigation Links */
/* .nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
}

.nav-links a:hover {
  color: #00ffff;
} */

/* Hero Banner */
.hero {
  text-align: center;
  padding: 120px 20px 60px;
  background: transparent;
}

.hero img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0,192,255,0.2);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
  opacity: 0.8;
}

/* 3'lü Kolonlar */
.columns {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 80px auto;
  gap: 30px;
  padding: 0 20px;
  justify-content: center;
}

.column {
  flex: 1;
  min-width: 280px;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
  background: transparent;
}

.column i {
  font-size: 3rem;
  margin-bottom: 20px;
}

.column h3 {
  margin-bottom: 15px;
}

.column a {
  display: inline-block;
  padding: 12px 24px;
  background: #00c0ff;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 15px;
  font-weight: 600;
  transition: background 0.3s ease;
}

/* Notify Me Bölümü */
.notify {
  text-align: center;
  padding: 60px 20px;
  background: transparent;
}

.notify input {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px 0 0 8px;
  width: 300px;
  background: rgba(255,255,255,0.05);
  color: white;
}

.notify button {
  padding: 12px 24px;
  background: #00c0ff;
  color: #000;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-weight: 600;
}

/* Footer */
footer {
  background: transparent !important;
  text-align: center;
  padding: 20px;
  color: #ccc;
}

/* Responsive Nav */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  /* DEAKTIF - Navbar artık partials/navbar.ejs'den yönetiliyor */
  /* .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  } */
}

/* Pricing Section */
.pricing-section {
  background: transparent;
  padding: 4rem 0;
}

.pricing-section::before {
  display: none;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-align: center;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 192, 255, 0.07), 0 1.5px 6px rgba(0, 192, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.pricing-card.featured {
  background: rgba(255, 255, 255, 0.08);
  border: 2.5px solid rgba(0, 192, 255, 0.4);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 192, 255, 0.15), 0 2px 8px rgba(0, 192, 255, 0.09);
  transform: scale(1.05);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured ul li {
  color: #fff;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 192, 255, 0.18), 0 8px 24px rgba(0, 192, 255, 0.12);
  border-color: rgba(0, 192, 255, 0.4);
}

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

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-price .period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.pricing-features li {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features i {
  color: #00ffae;
}

.pricing-btn {
  display: inline-block;
  padding: 1.15rem 2.5rem;
  background: linear-gradient(90deg, #00c0ff 0%, #00ffae 100%);
  color: #000;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 24px rgba(0, 192, 255, 0.18), 0 2px 8px rgba(0, 192, 255, 0.13);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-btn::after {
  content: '';
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(0,192,255,0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.pricing-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 15px 40px rgba(0, 192, 255, 0.25), 0 6px 20px rgba(0, 192, 255, 0.18);
  background: linear-gradient(90deg, #00ffae 0%, #00c0ff 100%);
}

.pricing-btn:hover::after {
  opacity: 1;
}

[data-theme="dark"] .pricing-btn {
  background: linear-gradient(90deg, #a78bfa 0%, #38bdf8 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(127, 90, 240, 0.22), 0 2px 8px rgba(0, 192, 255, 0.13);
}

[data-theme="dark"] .pricing-btn:hover {
  background: linear-gradient(90deg, #38bdf8 0%, #a78bfa 100%) !important;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}

/* Remove old sidebar/content layout styles to avoid conflict with new app-sidebar */
/*
.sidebar {
  width: 220px;
  background-color: #151522;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.sidebar h2 {
  color: #00c0ff;
  margin-bottom: 30px;
  font-size: 22px;
}
.sidebar a {
  text-decoration: none;
  color: #ccc;
  padding: 12px 10px;
  margin: 5px 0;
  border-radius: 6px;
  transition: 0.2s;
}
.sidebar a:hover,
.sidebar a.active {
  background-color: #00c0ff;
  color: #000;
}

.content {
  flex: 1;
  padding: 40px;
}
*/

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-base);
}

.menu-toggle:hover {
  background: var(--hover-bg);
  border-color: var(--primary-color);
}

.menu-toggle i {
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }
}

/* Modern UI Styles */
:root {
  /* Light Theme */
  --primary-color: #2563eb;
  --secondary-color: #3b82f6;
  --background-color: #ffffff;
  --text-color: #1f2937;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #3b82f6;
}

/* Dark Theme */
[data-theme="dark"] {
  --primary-color: #3b82f6;
  --secondary-color: #60a5fa;
  --background-color: #1f2937;
  --text-color: #f3f4f6;
  --border-color: #374151;
  --success-color: #34d399;
  --error-color: #f87171;
  --warning-color: #fbbf24;
  --info-color: #60a5fa;
}

/* Base Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.5;
  transition: background-color 0.3s, color 0.3s;
}

/* Modern Card Styles */
.card {
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

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

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

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

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

.form-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  background-color: var(--background-color);
  color: var(--text-color);
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Loading Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  padding: 1rem;
  border-radius: 0.375rem;
  background-color: var(--background-color);
  color: var(--text-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Navigation */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles */
:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Table Styles */
.table {
  width: 100%;
  border-collapse: collapse;
}

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

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

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0;
}

.breadcrumb-item {
  color: var(--text-color);
  text-decoration: none;
}

.breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--border-color);
}

/* Dashboard Cards */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
}

/* Chart Container */
.chart-container {
  position: relative;
  margin: 1rem 0;
  height: 300px;
}

/* Form Wizard */
.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.wizard-step {
  flex: 1;
  text-align: center;
  padding: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.wizard-step.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Notification Badge */
.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--error-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Mobile Optimizations */
@media (max-width: 640px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  .table {
    display: block;
    overflow-x: auto;
  }
}

/* Print Styles */
@media print {
  .no-print {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

[data-theme="dark"] .pricing-section {
  background: transparent;
}
[data-theme="dark"] .pricing-card {
  background: #2d2d4d !important;
  color: #fff !important;
  border: 1.5px solid #3b3b5c !important;
  box-shadow: 0 4px 24px rgba(127, 90, 240, 0.13), 0 1.5px 6px rgba(0, 192, 255, 0.09);
}
[data-theme="dark"] .pricing-card.featured {
  background: linear-gradient(135deg, #7f5af0 0%, #00c0ff 100%) !important;
  color: #fff !important;
  border: 2.5px solid #7f5af0 !important;
}
[data-theme="dark"] .pricing-card.featured h3,
[data-theme="dark"] .pricing-card.featured .price,
[data-theme="dark"] .pricing-card.featured ul li {
  color: #fff !important;
}
[data-theme="dark"] .pricing-container h2 {
  background: linear-gradient(90deg, #a78bfa, #38bdf8) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}
[data-theme="dark"] .pricing-btn {
  background: linear-gradient(90deg, #7f5af0, #00c0ff) !important;
  color: #fff !important;
}
[data-theme="dark"] .pricing-btn:hover {
  background: linear-gradient(90deg, #00c0ff, #7f5af0) !important;
  color: #fff !important;
}

/* Integrations Page Styles */
.integrations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.integrations-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00c0ff, #00ffae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.integrations-container .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

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

.integration-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.integration-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.integration-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.connect-btn {
    background: linear-gradient(90deg, #00c0ff, #00ffae);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.api-section {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.api-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.api-section p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.code-examples {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.code-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.code-block pre {
  margin: 0;
  padding: 1rem;
}

.code-block code {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9rem;
}

.copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 4px;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cta-section {
  background: transparent;
}

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

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

.cta-btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: linear-gradient(90deg, #00c0ff, #00ffae);
  color: #000;
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
    .integrations-container {
        padding: 2rem 1rem;
    }

    .integration-section {
        grid-template-columns: 1fr;
    }

    .api-section {
        padding: 2rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

