/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Light theme colors */
  --background: 0 0% 100%;
  --foreground: 240 10% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 3.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 240 10% 3.9%;
  /* Updated primary color to new blue palette */
  --primary: 207 100% 63%;
  --primary-foreground: 207 100% 97%;
  --secondary: 240 4.8% 95.9%;
  --secondary-foreground: 240 5.9% 10%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;
  --accent: 240 4.8% 95.9%;
  --accent-foreground: 240 5.9% 10%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 240 5.9% 90%;
  --input: 240 5.9% 90%;
  /* Updated ring color to new blue palette */
  --ring: 207 100% 63%;
  --radius: 0.75rem;

  /* Fonts */
  --font-sans: "Inter", sans-serif;
  --font-heading: "Montserrat", sans-serif;
}

.dark {
  --background: 20 14.3% 4.1%;
  --foreground: 0 0% 95%;
  --card: 24 9.8% 10%;
  --card-foreground: 0 0% 95%;
  --popover: 0 0% 9%;
  --popover-foreground: 0 0% 95%;
  /* Updated primary color for dark mode to new blue palette */
  --primary: 207 100% 50%;
  --primary-foreground: 207 100% 97%;
  --secondary: 240 3.7% 15.9%;
  --secondary-foreground: 0 0% 98%;
  --muted: 0 0% 15%;
  --muted-foreground: 240 5% 64.9%;
  --accent: 12 6.5% 15.1%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 85.7% 97.3%;
  --border: 240 3.7% 15.9%;
  --input: 240 3.7% 15.9%;
  /* Updated ring color for dark mode to new blue palette */
  --ring: 207 100% 50%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: hsla(var(--background), 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(var(--border), 0.4);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: hsl(var(--foreground));
  z-index: 10;
}

.logo-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: hsl(var(--foreground));
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: hsl(var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: hsl(var(--secondary));
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  background-color: hsl(var(--accent));
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  transition: opacity 0.2s ease;
}

.dark .theme-toggle .sun-icon {
  opacity: 0;
}

.dark .theme-toggle .moon-icon {
  opacity: 1;
}

body:not(.dark) .theme-toggle .sun-icon {
  opacity: 1;
}

body:not(.dark) .theme-toggle .moon-icon {
  opacity: 0;
}

.desktop-buttons {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .desktop-buttons {
    display: flex;
  }
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid hsla(var(--border), 0.4);
  border-radius: 0.5rem;
  background-color: hsla(var(--background), 0.9);
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle .menu-icon,
.mobile-menu-toggle .close-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: opacity 0.2s ease;
}

.mobile-menu-toggle .close-icon {
  display: none;
}

.mobile-menu-toggle.active .menu-icon {
  display: none;
}

.mobile-menu-toggle.active .close-icon {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background-color: hsla(var(--background), 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 24rem;
  background-color: hsl(var(--background));
  border-left: 1px solid hsl(var(--border));
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid hsl(var(--border));
}

.mobile-menu-close {
  padding: 0.5rem;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-menu-close:hover {
  background-color: hsl(var(--muted));
}

.mobile-nav {
  flex: 1;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.mobile-nav-link:hover {
  background-color: hsl(var(--muted));
}

.mobile-menu-footer {
  padding: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.mobile-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2), -4px -4px 10px rgba(255, 255, 255, 0.05);
}

.btn-primary:hover {
  background-color: hsl(var(--primary));
  transform: scale(1.03);
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.25), -6px -6px 15px rgba(255, 255, 255, 0.07);
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), -4px -4px 10px rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  background-color: hsla(var(--accent), 0.1);
  transform: scale(1.03);
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.15), -6px -6px 15px rgba(255, 255, 255, 0.07);
}

.btn-ghost {
  background-color: hsla(var(--secondary), 0.5);
  color: hsl(var(--foreground));
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), -4px -4px 10px rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover {
  background-color: hsla(var(--secondary), 0.7);
  transform: scale(1.03);
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.15), -6px -6px 15px rgba(255, 255, 255, 0.07);
}

.btn-gradient {
  /* Updated gradient to use new blue color palette */
  background: linear-gradient(135deg, #047cfc, #087cfc);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.3s ease;
  /* Updated radial gradient to use new blue palette */
  background: radial-gradient(circle at 50% 50%, rgba(8, 124, 252, 0.4), transparent 70%);
  z-index: -1;
}

.btn-magnetic {
  background-color: hsla(var(--secondary), 0.5);
  color: hsl(var(--foreground));
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), -4px -4px 10px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.btn-magnetic:hover {
  background-color: hsla(var(--secondary), 0.7);
  transform: scale(1.03);
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.15), -6px -6px 15px rgba(255, 255, 255, 0.07);
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

.arrow {
  display: inline-block;
  margin-left: 0.5rem;
  animation: arrow-move 2s ease-in-out infinite;
}

@keyframes arrow-move {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  padding: 3rem 0 6rem;
  overflow: hidden;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 0 12rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 8rem 0 16rem;
  }
}

@media (min-width: 1280px) {
  .hero-section {
    padding: 12rem 0 20rem;
  }
}

.animated-background {
  position: absolute;
  inset: 0;
  /* Updated background gradients to use new blue palette */
  background: radial-gradient(circle at 30% 20%, rgba(4, 124, 252, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(91, 169, 252, 0.08) 0%, transparent 50%);
  animation: background-float 20s ease-in-out infinite;
}

@keyframes background-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 400px;
    gap: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: 1fr 600px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.gradient-text {
  /* Updated gradient text to use new blue palette */
  background: linear-gradient(to right, #047cfc, #5ba9fc, #b9dafc);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient-flow 8s ease infinite;
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-description {
  max-width: 600px;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    align-items: center;
  }
}

.hero-stats {
  padding-top: 1rem;
}

.stats-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
}

.status-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #22c55e;
  margin-right: 0.5rem;
}

.hero-showcase {
  position: relative;
}

.spotlight-card {
  height: 450px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: hsla(var(--card), 0.6);
  backdrop-filter: blur(8px);
  /* Updated border to use new blue palette */
  border: 1px solid rgba(4, 124, 252, 0.3);
  padding: 4px;
  transition: all 0.3s ease;
}

.spotlight-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  /* Updated hover border to use new blue palette */
  border-color: rgba(4, 124, 252, 0.6);
}

.card-overlay {
  position: absolute;
  inset: 0;
  /* Updated overlay gradient to use new blue palette */
  background: linear-gradient(135deg, rgba(4, 124, 252, 0.2) 0%, transparent 50%, rgba(122, 188, 252, 0.2) 100%);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(75, 85, 99, 0.1) 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 24rem;
}

.showcase-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background-color: hsla(var(--card), 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.showcase-main {
  grid-column: 1 / -1;
  height: 6rem;
  font-size: 1.25rem;
  border-color: rgba(4, 124, 252, 0.3);
}

.showcase-item:not(.showcase-main) {
  height: 8rem;
  border-color: rgba(75, 85, 99, 0.3);
}

.showcase-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(4, 124, 252, 0.3);
}

/* Section Styles */
.section-spacing {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section-spacing {
    padding: 6rem 0;
  }
}

.features-section,
.components-section,
.testimonials-section,
.pricing-section,
.blog-section,
.faq-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .features-section,
  .components-section,
  .testimonials-section,
  .pricing-section,
  .blog-section,
  .faq-section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
}

/* Features Section */
.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius);
  background-color: hsla(var(--card), 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* Updated feature icons to use new blue palette */
.feature-icon.red {
  background-color: rgba(4, 124, 252, 0.1);
  color: #047cfc;
}
.feature-icon.blue {
  background-color: rgba(4, 124, 252, 0.1);
  color: #047cfc;
}

.feature-icon.yellow {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.feature-icon.green {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.feature-icon.purple {
  background-color: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}
.feature-icon.orange {
  background-color: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.feature-icon i {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
}

/* Updated border glow to use new blue palette */
.border-glow-red {
  border-color: rgba(4, 124, 252, 0.3);
}
.border-glow-blue {
  border-color: rgba(4, 124, 252, 0.3);
}

.border-glow-yellow {
  border-color: rgba(245, 158, 11, 0.3);
}
.border-glow-green {
  border-color: rgba(34, 197, 94, 0.3);
}
.border-glow-purple {
  border-color: rgba(168, 85, 247, 0.3);
}
.border-glow-orange {
  border-color: rgba(249, 115, 22, 0.3);
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 1rem 0 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #f87171);
  border-radius: 2px;
  transition: width 0.8s ease;
}

.progress-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* Components Section */
.components-showcase {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .components-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

.component-demo {
  padding: 2rem;
  border-radius: var(--radius);
  background-color: hsla(var(--card), 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.component-demo .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.badge {
  padding: 0.25rem 0.5rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

.demo-navbar {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: hsla(var(--card), 0.4);
  border-radius: var(--radius);
}

.nav-item {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: hsl(var(--muted-foreground));
  border-radius: calc(var(--radius) - 2px);
  transition: all 0.2s ease;
}

.nav-item.active,
.nav-item:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.component-demo h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.demo-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.demo-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background-color: hsla(var(--card), 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-card h4 {
  margin-bottom: 0.5rem;
}

.demo-card p {
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius);
  background-color: hsla(var(--card), 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-info span {
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
  font-size: 0.875rem;
}

.testimonial-rating {
  color: #fbbf24;
}

.stars {
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
}

.testimonial-author span {
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  padding: 2rem;
  border-radius: var(--radius);
  background-color: hsla(var(--card), 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  border-color: #c7c7c7;
}

.pricing-featured {
  border-color: hsl(var(--primary));
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-subtitle {
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
  margin-top: 0.5rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.period {
  color: hsl(var(--muted-foreground));
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.pricing-features li:has(i[data-lucide="check"]) {
  color: hsl(var(--foreground));
}

.pricing-features li:has(i[data-lucide="x"]) {
  color: hsl(var(--muted-foreground));
  opacity: 0.5;
}

.btn-full {
  width: 100%;
}

/* Blog Section */
.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  padding: 2rem;
  border-radius: var(--radius);
  background-color: hsla(var(--card), 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.blog-category {
  padding: 0.25rem 0.5rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.blog-date {
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
  font-size: 0.75rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
  margin-bottom: 1rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.2s ease;
}

.blog-link:hover {
  gap: 0.5rem;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(75, 85, 99, 0.08) 0%, transparent 50%);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Footer */
.footer {
  border-top: 1px solid hsl(var(--border));
  background-color: hsla(var(--background), 0.8);
  backdrop-filter: blur(12px);
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 4rem 0;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
  }
}

.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-description {
  max-width: 20rem;
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsla(var(--card), 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: hsl(var(--foreground));
  background-color: hsla(var(--card), 0.8);
}

.social-link i {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-list a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: hsl(var(--foreground));
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: hsl(var(--foreground));
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 40;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top i {
  width: 1.25rem;
  height: 1.25rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-buttons {
    gap: 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.mobile-nav-link:focus,
.theme-toggle:focus,
.mobile-menu-toggle:focus {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 10px;
  min-width: 200px;
  padding: 10px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: black;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background: #fafafa;
}

.dropdown-item i {
  width: 18px;
  height: 18px;
}

.dark .dropdown-menu {
  background: #1a1a1a;
}

.dark .dropdown-item {
  color: #f0f0f0;
}

.dark .dropdown-item:hover {
  background: #2a2a2a;
  color: #ffffff;
}

.dark .dropdown-item i {
  color: #f0f0f0;
}

.element.style {
  box-shadow: rgba(37, 99, 235, 0.4) 0px 0px 20px;
}
