/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #3b82f6;
  --primary-blue-dark: #1e40af;
  --primary-blue-light: #60a5fa;
  --primary-blue-lighter: #dbeafe;
  --primary-blue-lightest: #eff6ff;

  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;

  --white: #ffffff;
  --background: #fafbfc;

  --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);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --primary-blue: #60a5fa;
  --primary-blue-dark: #3b82f6;
  --primary-blue-light: #93c5fd;
  --primary-blue-lighter: #1e3a5f;
  --primary-blue-lightest: #172a46;

  --text-primary: #f3f4f6;
  --text-secondary: #d1d5db;
  --text-light: #9ca3af;

  --white: #1f2937;
  --background: #111827;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
}

body {
  font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  direction: rtl;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Floating Particles */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.particles-canvas {
  width: 100%;
  height: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar with Glass Morphism Effect */
.navbar {
  position: sticky;
  top: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  animation: slideDown 0.5s ease-out;
}

[data-theme="dark"] .navbar {
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.95) 0%,
    rgba(17, 24, 39, 0.9) 100%
  );
  border-bottom: 1px solid rgba(96, 165, 250, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Add subtle border glow effect */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.3),
    transparent
  );
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.logo:hover {
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: scale(1.02);
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue-dark);
  transition: color 0.3s ease;
}

/* Make logo brighter in dark mode */
[data-theme="dark"] .logo-text {
  color: var(--primary-blue-light);
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
}

[data-theme="dark"] .logo svg stop:first-child {
  stop-color: #60a5fa;
}

[data-theme="dark"] .logo svg stop:last-child {
  stop-color: #3b82f6;
}

[data-theme="dark"] .logo svg path,
[data-theme="dark"] .logo svg circle {
  filter: brightness(1.3);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  background: transparent;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-blue);
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-links a:hover::after {
  width: 0;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.4);
  font-family: 'Vazirmatn', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue-light);
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Vazirmatn', sans-serif;
}

.btn-secondary:hover {
  background: var(--primary-blue-lightest);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Dark Mode Toggle Button */
.theme-toggle {
  background: var(--primary-blue-lightest);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue-lighter);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  margin-left: 16px;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
  transform: rotate(20deg);
}

[data-theme="dark"] .theme-toggle {
  background: var(--primary-blue-lightest);
  border-color: var(--primary-blue-lighter);
  color: var(--primary-blue);
}

[data-theme="dark"] .theme-toggle:hover {
  background: var(--primary-blue);
  color: var(--background);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue-lightest) 0%,
    var(--white) 100%
  );
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .hero {
  background: linear-gradient(
    135deg,
    var(--primary-blue-lightest) 0%,
    var(--background) 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.05) 0%,
    transparent 70%
  );
  animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(59, 130, 246, 0.1);
  animation: fadeInUp 1s ease-out, floatDashboard 6s ease-in-out infinite 1s;
  transition: transform 0.3s ease;
}

[data-theme="dark"] .dashboard-mockup {
  background: #1f2937;
  border-color: rgba(96, 165, 250, 0.2);
}

.dashboard-mockup:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatDashboard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.dashboard-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
  padding: 16px 20px;
  display: flex;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.dashboard-header::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;
}

.dashboard-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 10s linear infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.window-controls {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.window-controls span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.window-controls span:hover {
  transform: scale(1.3);
  background: rgba(255, 255, 255, 0.8);
}

.window-controls span:nth-child(1) {
  animation-delay: 0s;
  background: rgba(255, 59, 48, 0.6);
}

.window-controls span:nth-child(2) {
  animation-delay: 0.3s;
  background: rgba(255, 204, 0, 0.6);
}

.window-controls span:nth-child(3) {
  animation-delay: 0.6s;
  background: rgba(40, 205, 65, 0.6);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0);
  }
}

.dashboard-content {
  padding: 24px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
}

.dashboard-sidebar {
  background: var(--primary-blue-lightest);
  border-radius: 12px;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.dashboard-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(
    180deg,
    var(--primary-blue-lighter) 0%,
    transparent 100%
  );
  animation: slideDown 2s ease-in-out infinite;
}

.dashboard-sidebar::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: var(--primary-blue-light);
  border-radius: 50%;
  opacity: 0.3;
  animation: breathe 3s ease-in-out infinite;
}

@keyframes slideDown {
  0%,
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.1;
  }
}

.dashboard-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-mockup {
  background: white;
  border: 1px solid var(--primary-blue-lighter);
  border-radius: 12px;
  padding: 20px;
  animation: cardFadeIn 1s ease-out backwards;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

[data-theme="dark"] .card-mockup {
  background: #111827;
  border-color: var(--primary-blue-lighter);
}

.card-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.05),
    transparent
  );
  animation: cardSweep 4s ease-in-out infinite;
}

.card-mockup:hover {
  transform: translateX(5px);
  border-color: var(--primary-blue-light);
  box-shadow: -4px 0 12px rgba(59, 130, 246, 0.1);
}

.card-mockup:nth-child(1) {
  animation-delay: 0.2s;
}

.card-mockup:nth-child(1)::before {
  animation-delay: 1s;
}

.card-mockup:nth-child(2) {
  animation-delay: 0.4s;
}

.card-mockup:nth-child(2)::before {
  animation-delay: 2s;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cardSweep {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.card-header-mockup {
  height: 24px;
  background: linear-gradient(90deg, var(--primary-blue-lighter), transparent);
  border-radius: 8px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.card-header-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.4),
    transparent
  );
  animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.card-body-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-line {
  height: 8px;
  background: var(--primary-blue-lightest);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  animation: lineExpand 1s ease-out backwards,
    linePulse 3s ease-in-out infinite 2s;
}

.mockup-line:nth-child(1) {
  animation-delay: 0.6s, 2s;
}

.mockup-line:nth-child(2) {
  animation-delay: 0.7s, 2.5s;
}

.mockup-line:nth-child(3) {
  animation-delay: 0.8s, 3s;
}

@keyframes lineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleY(1.2);
  }
}

.mockup-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.3),
    transparent
  );
  animation: lineShimmer 3s ease-in-out infinite;
}

.mockup-line:nth-child(1)::after {
  animation-delay: 0s;
}

.mockup-line:nth-child(2)::after {
  animation-delay: 0.5s;
}

.mockup-line:nth-child(3)::after {
  animation-delay: 1s;
}

@keyframes lineShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.mockup-line.short {
  width: 60%;
}

/* Features Section */
.features {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(59, 130, 246, 0.02) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[data-theme="dark"] .features {
  background: linear-gradient(
    135deg,
    var(--background) 0%,
    rgba(59, 130, 246, 0.05) 50%,
    var(--background) 100%
  );
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(59, 130, 246, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(59, 130, 246, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.features .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 20px;
  box-sizing: border-box;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 2;
  letter-spacing: -0.2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* کارت‌ها به صورت طبیعی 3 در یک ردیف چیده می‌شوند */

.feature-card {
  background: white;
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 28px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
  opacity: 0;
  transform: translateY(80px) scale(0.9);
}

[data-theme="dark"] .feature-card {
  background: #1f2937;
  border-color: rgba(96, 165, 250, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Fade in animation when in viewport */
.feature-card.animate-in {
  animation: fadeInUpCard 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUpCard {
  from {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.25),
    0 0 0 1px rgba(59, 130, 246, 0.1);
  background: white;
}

[data-theme="dark"] .feature-card:hover {
  background: #1f2937;
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.15),
    0 0 0 1px rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.4);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(8deg);
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
  color: white;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

[data-theme="dark"] .feature-card:hover .feature-icon {
  background: linear-gradient(
    135deg,
    rgba(96, 165, 250, 0.8),
    rgba(59, 130, 246, 0.8)
  );
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.feature-card:hover .feature-title {
  color: var(--primary-blue);
}

[data-theme="dark"] .feature-card:hover .feature-title {
  color: var(--primary-blue-light);
}

.feature-card:hover .feature-description {
  color: var(--text-primary);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--primary-blue-lightest),
    rgba(59, 130, 246, 0.05)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--primary-blue);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-blue), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
}

.feature-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  transition: color 0.4s ease;
  letter-spacing: -0.5px;
}

.feature-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  transition: color 0.4s ease;
  letter-spacing: -0.2px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: white;
  position: relative;
}

[data-theme="dark"] .testimonials {
  background: var(--background);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  width: 100%;
}

.slider-container {
  overflow: visible;
  border-radius: 24px;
  margin-bottom: 32px;
  position: relative;
  min-height: 400px;
  padding: 20px;
  box-sizing: border-box;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  width: 100%;
  flex-shrink: 0;
  padding: 30px;
  box-sizing: border-box;
  display: none;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin: 0;
  overflow: visible;
}

.testimonial-card.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.testimonial-content {
  background: linear-gradient(135deg, var(--primary-blue-lightest), white);
  padding: 48px 40px;
  border-radius: 24px;
  border: 2px solid var(--primary-blue-lighter);
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

[data-theme="dark"] .testimonial-content {
  background: linear-gradient(135deg, var(--primary-blue-lightest), #1f2937);
  border-color: var(--primary-blue-lighter);
}

.testimonial-content:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.quote-icon {
  font-size: 80px;
  color: var(--primary-blue);
  opacity: 0.15;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  max-height: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.author-role {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue-light);
  background: white;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.1);
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-blue-light);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--primary-blue);
  width: 32px;
  border-radius: 6px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--background);
}

[data-theme="dark"] .stats-section {
  background: #0f1419;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--primary-blue-lightest);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .stat-box {
  background: #1f2937;
  border-color: var(--primary-blue-lighter);
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
  transform: scaleX(0);
  transition: transform 0.3s;
}

.stat-box:hover {
  transform: translateY(-8px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
}

.stat-box:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-box .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-text {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue-lightest) 0%,
    white 100%
  );
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .pricing {
  background: linear-gradient(
    135deg,
    var(--primary-blue-lightest) 0%,
    var(--background) 100%
  );
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.pricing-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.6)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 32px;
  padding: 48px 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

[data-theme="dark"] .pricing-card {
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.9),
    rgba(17, 24, 39, 0.6)
  );
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
  transform: scaleX(0);
  transition: transform 0.4s;
}

.pricing-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border: 3px solid var(--primary-blue);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(255, 255, 255, 0.9)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

.pricing-card.featured::before {
  transform: scaleX(1);
  height: 5px;
}

.pricing-card.featured::after {
  opacity: 1;
  animation: pulse-glow-card 3s ease-in-out infinite;
}

@keyframes pulse-glow-card {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.pricing-card.featured:hover {
  transform: scale(1.07) translateY(-8px);
  box-shadow: 0 24px 80px rgba(59, 130, 246, 0.3),
    0 0 0 1px rgba(59, 130, 246, 0.2);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(
    135deg,
    var(--primary-blue-lightest),
    var(--primary-blue-lighter)
  );
  color: var(--primary-blue-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.pricing-badge.popular {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
  color: white;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(59, 130, 246, 0.4);
  }
}

.pricing-header {
  margin-bottom: 32px;
  text-align: center;
}

.pricing-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
}

.price-currency {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 600;
}

.price-period {
  font-size: 14px;
  color: var(--text-light);
}

.pricing-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-features {
  margin: 32px 0;
}

.pricing-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-primary);
  transition: all 0.3s;
}

.pricing-features .feature-item:hover {
  color: var(--primary-blue);
  padding-right: 8px;
}

.pricing-features .feature-item.disabled {
  color: var(--text-light);
  opacity: 0.6;
}

.pricing-features .feature-item span {
  flex: 1;
}

.pricing-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Vazirmatn', sans-serif;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-btn::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;
}

.pricing-btn:hover::before {
  left: 100%;
}

.pricing-btn:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.5);
}

.pricing-btn:active {
  transform: translateY(-2px) scale(0.98);
}

.pricing-card.featured .pricing-btn {
  background: linear-gradient(
    135deg,
    var(--primary-blue-dark),
    var(--primary-blue)
  );
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
  font-size: 18px;
  padding: 18px 36px;
}

.pricing-card.featured .pricing-btn:hover {
  box-shadow: 0 20px 48px rgba(59, 130, 246, 0.6);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: white;
  border-top: 1px solid var(--primary-blue-lightest);
  padding: 60px 0 24px;
}

[data-theme="dark"] .footer {
  background: #1f2937;
  border-top-color: var(--primary-blue-lighter);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

/* Make footer logo brighter in dark mode */
[data-theme="dark"] .footer-logo .logo-text {
  color: var(--primary-blue-light);
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
}

[data-theme="dark"] .footer-logo svg stop:first-child {
  stop-color: #60a5fa;
}

[data-theme="dark"] .footer-logo svg stop:last-child {
  stop-color: #3b82f6;
}

[data-theme="dark"] .footer-logo svg path,
[data-theme="dark"] .footer-logo svg circle {
  filter: brightness(1.3);
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-blue-lightest);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--primary-blue-lightest);
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Responsive Design */
/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1050;
  transition: transform 0.3s ease;
}

.hamburger-menu:hover {
  transform: scale(1.1);
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .mobile-menu-content {
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.98) 0%,
    rgba(17, 24, 39, 0.95) 100%
  );
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-start;
  background: transparent;
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 8px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

[data-theme="dark"] .mobile-menu-close {
  color: var(--primary-blue-light);
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  color: var(--primary-blue-dark);
}

[data-theme="dark"] .mobile-menu-close:hover {
  color: var(--primary-blue);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: transparent;
  border: 2px solid transparent;
  font-family: 'Vazirmatn', sans-serif;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: var(--primary-blue-lightest);
  border-color: var(--primary-blue-light);
  color: var(--primary-blue);
  transform: translateX(-8px);
}

[data-theme="dark"] .mobile-nav-link {
  color: var(--text-primary);
}

[data-theme="dark"] .mobile-nav-link:hover,
[data-theme="dark"] .mobile-nav-link:active {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(96, 165, 250, 0.3);
  color: var(--primary-blue-light);
}

.mobile-theme-toggle {
  border: 2px solid var(--primary-blue-lighter);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Vazirmatn', sans-serif;
}

.mobile-cta {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .desktop-btn {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    gap: 32px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 16px;
    line-height: 1.8;
  }

  /* Dashboard Mockup Mobile Styles */
  .dashboard-mockup {
    border-radius: 16px;
    max-width: 100%;
  }

  .dashboard-content {
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    gap: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .card-mockup {
    padding: 16px;
    border-radius: 10px;
    min-height: 100px;
  }

  .card-header-mockup {
    height: 16px;
    margin-bottom: 10px;
    width: 70%;
  }

  .card-body-mockup {
    gap: 8px;
  }

  .mockup-line {
    height: 6px;
  }

  .mockup-line.short {
    width: 50%;
  }

  .features {
    padding: 80px 0;
    min-height: auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonial-content {
    padding: 32px 24px;
  }

  .quote-icon {
    font-size: 60px;
    top: 10px;
    right: 10px;
  }

  .testimonial-card {
    padding: 20px 15px;
    width: 100%;
  }

  .testimonial-content {
    padding: 32px 24px;
  }

  .testimonial-text {
    font-size: 16px;
    max-height: 100px;
    -webkit-line-clamp: 3;
  }

  .slider-container {
    min-height: 300px;
    padding: 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box .stat-number {
    font-size: 36px;
  }

  .cta-title {
    font-size: 36px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 15px;
  }

  /* Dashboard Mockup Extra Small Mobile */
  .dashboard-mockup {
    border-radius: 14px;
  }

  .dashboard-header {
    padding: 12px 16px;
  }

  .window-controls span {
    width: 10px;
    height: 10px;
  }

  .dashboard-content {
    padding: 14px;
    gap: 10px;
  }

  .dashboard-main {
    gap: 10px;
  }

  .card-mockup {
    padding: 14px;
    min-height: 90px;
  }

  .card-header-mockup {
    height: 14px;
    margin-bottom: 8px;
    width: 65%;
  }

  .card-body-mockup {
    gap: 6px;
  }

  .mockup-line {
    height: 5px;
  }

  .pricing {
    padding: 60px 0;
  }

  .pricing-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .pricing-card.featured .pricing-btn {
    font-size: 16px;
    padding: 16px 32px;
  }

  .price-amount {
    font-size: 36px;
  }

  .pricing-title {
    font-size: 24px;
  }

  .stat-number {
    font-size: 24px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--primary-blue-lighter);
  color: var(--primary-blue-dark);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 5px;
  transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue-dark);
}

/* Modern Micro-Interactions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Gradient Animation */
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Pulse Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Glow Animation */
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
  }
}
