:root {
  --vp-font-family-base: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  --vp-font-family-mono: ui-monospace, 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;

  --vp-c-brand-1: #228cf4;
  --vp-c-brand-2: #1a7ad9;
  --vp-c-brand-3: #1568be;
  --vp-c-brand-soft: rgba(34, 140, 244, 0.12);

  --vp-c-bg: #ffffff;
  --vp-c-bg-alt: #f8f9fa;
  --vp-c-bg-soft: #f1f3f5;
  --vp-c-bg-mute: #e9ecef;
  --vp-c-border: #dee2e6;
  --vp-c-text-1: #212529;
  --vp-c-text-2: #6c757d;
  --vp-c-text-3: #adb5bd;
}

.dark {
  --vp-c-brand-1: #228cf4;
  --vp-c-brand-2: #4da3f7;
  --vp-c-brand-3: #78b9f9;
  --vp-c-brand-soft: rgba(34, 140, 244, 0.16);

  --vp-c-bg: #1e1e20;
  --vp-c-bg-alt: #252529;
  --vp-c-bg-soft: #2d2d30;
  --vp-c-bg-mute: #3f3f46;
  --vp-c-border: #3f3f46;
  --vp-c-text-1: #fafafa;
  --vp-c-text-2: #a1a1aa;
  --vp-c-text-3: #71717a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--vp-font-family-base);
  background: var(--vp-c-bg);
  color: var(--vp-c-text-1);
  line-height: 1.7;
  transition: background-color 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--vp-c-border);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.dark .navbar {
  background: rgba(30, 30, 32, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--vp-c-text-1);
  font-weight: 600;
  font-size: 1.125rem;
  transition: opacity 0.2s;
}

.brand-link:hover {
  opacity: 0.8;
}

.brand-logo {
  height: 42px;
  width: auto;
}

.brand-text {
  color: var(--vp-c-text-1);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-link {
  color: var(--vp-c-text-2);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-link:hover {
  color: var(--vp-c-text-1);
  background: var(--vp-c-bg-soft);
}

.nav-link.active {
  color: var(--vp-c-brand-1);
  font-weight: 400;
  background: var(--vp-c-brand-soft);
}

.nav-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-arrow {
  transition: transform 0.2s;
  margin-left: 0.25rem;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: var(--vp-c-bg);
  border: 1px solid var(--vp-c-border);
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--vp-c-text-1);
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.2s;
  font-size: 0.9375rem;
}

.dropdown-item:hover {
  background: var(--vp-c-bg-soft);
  color: var(--vp-c-brand-1);
}

.dropdown-item svg {
  flex-shrink: 0;
  color: var(--vp-c-text-2);
}

.dropdown-item:hover svg {
  color: var(--vp-c-brand-1);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  color: var(--vp-c-text-2);
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--vp-c-bg-soft);
  color: var(--vp-c-text-1);
}

.theme-icon-dark {
  display: none;
}

.dark .theme-icon-light {
  display: none;
}

.dark .theme-icon-dark {
  display: block;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--vp-c-text-1);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
  top: calc(50% - 6px);
}

.mobile-menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
  top: calc(50% + 6px);
}

.mobile-menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--vp-c-bg);
  border-bottom: 1px solid var(--vp-c-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--vp-c-text-1);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
  font-weight: 500;
}

.mobile-nav-link:hover {
  background: var(--vp-c-bg-soft);
  color: var(--vp-c-brand-1);
}

.mobile-nav-link.active {
  color: var(--vp-c-brand-1);
  background: var(--vp-c-brand-soft);
}

.mobile-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: var(--vp-c-text-1);
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.2s;
  font-weight: 500;
  margin-top: 0.5rem;
}

.mobile-theme-toggle:hover {
  background: var(--vp-c-bg-soft);
}

.mobile-theme-toggle svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .theme-toggle {
    display: none;
  }

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

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

  .navbar-container {
    padding: 0 1rem;
  }
}

.main-content {
  min-height: calc(100vh - 64px);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}



.hero-section {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 2rem;
  overflow: visible;
  background: var(--vp-c-bg);
  color: var(--vp-c-text-1);
}

.dark .hero-section {
  background: #1a1a1c;
  color: #fafafa;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  text-align: left;
  max-width: 100%;
}

.hero-section .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--vp-c-text-1);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  max-width: 1000px;
}

.dark .hero-section .hero-title {
  color: #fafafa;
}

.hero-section .hero-subtitle {
  font-size: 1.125rem;
  color: var(--vp-c-text-2);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

.dark .hero-section .hero-subtitle {
  color: #a1a1aa;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-card {
  position: absolute;
  background: var(--vp-c-bg);
  border: 1px solid var(--vp-c-border);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.dark .stats-card {
  background: #27272a;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.stats-card.listeners {
  top: 32px;
  left: 0;
  transform: translateX(-10%);
  width: 240px;
}

.stats-card.podcasts {
  bottom: 28px;
  right: 0;
  transform: translateX(10%);
  text-align: center;
  width: 160px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--vp-c-text-2);
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--vp-c-text-1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dark .stat-value {
  color: #fafafa;
}

.view-more {
  font-size: 0.75rem;
  color: var(--vp-c-text-3);
  font-weight: 400;
}

.stat-value-large {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--vp-c-text-3);
  margin-top: 0.75rem;
}

.stat-source svg {
  flex-shrink: 0;
}

.podcast-images {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-img {
  position: absolute;
  border-radius: 1rem;
  background: var(--vp-c-bg-soft);
  border: 3px solid var(--vp-c-bg);
}

.dark .podcast-img {
  background: #3f3f46;
  border-color: #27272a;
}

.podcast-img.single-card {
  width: 580px;
  height: 340px;
  background: linear-gradient(135deg, #228cf4 0%, #1a7ad9 100%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 5;
}

.podcast-img.primary {
  width: 280px;
  height: 320px;
  background: linear-gradient(135deg, #228cf4 0%, #1a7ad9 100%);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.podcast-img.secondary {
  width: 280px;
  height: 320px;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.site-preview {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-logo {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0.375rem;
}

.site-menu {
  display: flex;
  gap: 0.5rem;
}

.site-menu span {
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.site-hero {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-text-block {
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  width: 85%;
}

.hero-text-block.short {
  width: 60%;
}

.hero-button {
  width: 45px;
  height: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.375rem;
  margin-top: 0.25rem;
}

.site-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: auto;
}

.content-card {
  height: 35px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 0.5rem;
}

.extension-preview {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.preview-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.preview-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.preview-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.audio-player {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vp-c-bg);
  border: 1px solid var(--vp-c-border);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  width: 420px;
}

.dark .audio-player {
  background: #27272a;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.code-icon {
  flex-shrink: 0;
  color: #228cf4;
}

.code-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--vp-c-text-2);
}

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

.play-btn {
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: scale(1.05);
}

.waveform {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
}

.waveform span {
  flex: 1;
  background: var(--vp-c-text-3);
  border-radius: 2px;
  transition: all 0.3s;
}

.waveform span:nth-child(3),
.waveform span:nth-child(7) {
  background: #228cf4;
}

.orange-accent {
  position: absolute;
  bottom: 80px;
  left: -20px;
  width: 200px;
  height: 80px;
  background: linear-gradient(90deg, #228cf4 0%, #4f46e5 100%);
  border-radius: 0 2rem 2rem 0;
  z-index: 1;
}

.partners-section {
  padding: 0;
  background: transparent;
  border-top: none;
}

.dark .partners-section {
  background: transparent;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0 0;
  margin-top: auto;
}

.partner-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s;
}

.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-2px);
}

.light-logo {
  display: block;
}

.dark-logo {
  display: none;
}

.dark .light-logo {
  display: none;
}

.dark .dark-logo {
  display: block;
}

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

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--vp-c-text-1);
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}

.rotating-word {
  display: inline-block;
  color: #228cf4;
  min-width: 120px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.rotating-word.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--vp-c-text-2);
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #228cf4 0%, #1a7ad9 100%);
  color: white;
  font-weight: 600;
  border: none;
}

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

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

.btn-primary:hover {
  background: linear-gradient(135deg, #1a7ad9 0%, #1568be 100%);
  transform: translateY(-1px);
}

/* Secondary Button */
.btn-secondary {
  background: var(--vp-c-bg);
  color: var(--vp-c-text-1);
  border: 1.5px solid var(--vp-c-border);
  font-weight: 500;
}

.dark .btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fafafa;
}

.btn-secondary:hover {
  background: var(--vp-c-bg-soft);
  border-color: var(--vp-c-border);
  color: var(--vp-c-text-1);
  transform: translateY(-1px);
}

.dark .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fafafa;
}

.stats-section {
  padding: 4rem 0;
  background: var(--vp-c-bg);
}

.dark .stats-section {
  background: #1e1e20;
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--vp-c-bg);
  border: 1px solid var(--vp-c-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.dark .stat-card {
  background: #1e1e20;
  border-color: #3f3f46;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dark .stat-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vp-c-brand-soft);
  border-radius: 12px;
  color: var(--vp-c-brand-1);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vp-c-text-1);
  margin: 0 0 0.25rem 0;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--vp-c-text-2);
  margin: 0;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 3rem 0;
  }

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

  .stat-card {
    padding: 1.5rem;
  }

  .stat-icon {
    width: 56px;
    height: 56px;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100%;
  }

  .hero-section {
    padding: 4rem 1.5rem 2rem;
    min-height: auto;
  }

  .hero-visual {
    height: 400px;
    width: 100%;
  }

  .podcast-img.single-card {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .stats-card.listeners {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }

  .stats-card.podcasts {
    bottom: auto;
    top: auto;
    right: auto;
    text-align: center;
    width: 100%;
    max-width: 160px;
    transform: none;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 1.5rem 2rem;
    min-height: auto;
  }

  .hero-section .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-section .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-visual {
    height: 300px;
  }

  .podcast-img.single-card {
    width: 100%;
    max-width: 420px;
    height: auto;
    padding: 1.5rem;
  }

  .stats-card {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
  }

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

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-value-large {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2.5rem 1rem 1.5rem;
  }

  .hero-section .hero-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .hero-section .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero-visual {
    height: 250px;
    padding: 1rem;
  }

  .podcast-img.single-card {
    max-width: 100%;
    width: 100%;
  }

  .stats-card {
    padding: 0.875rem 1rem;
    width: 90%;
    max-width: 100%;
  }

  .stat-value-large {
    font-size: 1.5rem;
  }
}

.products-section {
  padding: 6rem 0;
  background: var(--vp-c-bg);
  color: var(--vp-c-text-1);
}

.dark .products-section {
  background: #1e1e20;
  color: #fafafa;
}

.products-section .section-title {
  color: var(--vp-c-text-1);
}

.dark .products-section .section-title {
  color: #fafafa;
}

.products-section .section-description {
  color: var(--vp-c-text-2);
}

.dark .products-section .section-description {
  color: #a1a1aa;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.products-section .products-header {
  text-align: left;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

.products-section .products-header .section-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .products-section .products-header .section-title {
    white-space: nowrap;
  }
}

.products-section .products-header .section-description {
  font-size: 1.125rem;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--vp-c-text-1);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.support-section .section-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--vp-c-text-2);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--vp-c-bg);
  border: 1px solid var(--vp-c-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 16px rgba(2, 6, 23, 0.06);
  position: relative;
}

.product-card::before {
  content: none;
}

.dark .products-section .product-card {
  background: #1e1e20;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.dark .products-section .product-card:hover {
  background: #232326;
  border-color: rgba(255, 255, 255, 0.2);
}

.dark .products-section .product-title {
  color: #fafafa;
}

.dark .products-section .product-description {
  color: #a1a1aa;
}

.dark .products-section .product-price {
  color: #fafafa;
}

.dark .products-section .product-meta {
  color: #a1a1aa;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.16);
  border-color: var(--vp-c-brand-1);
}

.product-image {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: var(--vp-c-bg-soft);
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform: scale(1.01);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--vp-c-text-1);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-description {
  font-size: 0.95rem;
  color: var(--vp-c-text-2);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--vp-c-border);
  margin-top: auto;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--vp-c-text-2);
  font-weight: 500;
}

.product-meta svg {
  opacity: 0.7;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--vp-c-text-1);
}

.skeleton {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.product-image-skeleton {
  aspect-ratio: 2 / 1;
  background: var(--vp-c-bg-mute);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.product-content-skeleton {
  padding: 1rem;
}

.skeleton-line {
  height: 1rem;
  background: var(--vp-c-bg-mute);
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.skeleton-line.short {
  width: 60%;
}

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

.blog-section {
  padding: 6rem 0;
  background: var(--vp-c-bg);
  color: var(--vp-c-text-1);
}

.dark .blog-section {
  background: #1a1a1c;
  color: #fafafa;
}



.blog-section .section-header {
  text-align: left;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

.blog-section .section-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.blog-section .section-description {
  font-size: 1.125rem;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

.blog-section .section-title {
  color: var(--vp-c-text-1);
}

.dark .blog-section .section-title {
  color: #fafafa;
}

.blog-section .section-description {
  color: var(--vp-c-text-2);
}

.dark .blog-section .section-description {
  color: #a1a1aa;
}

.support-section {
  padding: 6rem 0;
  background: var(--vp-c-bg);
  color: var(--vp-c-text-1);
}

.dark .support-section {
  background: #1a1a1c;
  color: #fafafa;
}



.support-section .section-header {
  text-align: left;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

.support-section .section-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.support-section .section-description {
  font-size: 1.125rem;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

.support-section .section-title {
  color: var(--vp-c-text-1);
}

.dark .support-section .section-title {
  color: #fafafa;
}

.support-section .section-description {
  color: var(--vp-c-text-2);
}

.dark .support-section .section-description {
  color: #a1a1aa;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.woot-widget-holder,
.woot-widget-bubble,
#woot-widget-holder,
#woot-widget-bubble {
  display: none !important;
}

.contact-card {
  background: var(--vp-c-bg);
  border: 1px solid var(--vp-c-border);
  border-radius: 1rem;
  padding: 0;
  text-decoration: none;
  color: var(--vp-c-text-1);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 16px rgba(2, 6, 23, 0.06);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.16);
  border-color: var(--vp-c-brand-1);
}

.dark .contact-card {
  background: #1e1e20;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.dark .contact-card:hover {
  background: #232326;
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
  background: rgba(34, 140, 244, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--vp-c-brand-1);
  transition: all 0.25s ease;
  padding: 1.25rem 1.5rem;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  transition: transform 0.25s ease;
}

.contact-card:hover .contact-icon svg {
  transform: scale(1.05);
}

.contact-card:hover .contact-icon {
  background: rgba(34, 140, 244, 0.15);
  color: var(--vp-c-brand-1);
}

.dark .contact-icon {
  background: rgba(34, 140, 244, 0.16);
}

.contact-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--vp-c-text-1);
  line-height: 1.4;
}

.contact-text {
  font-size: 0.875rem;
  color: var(--vp-c-text-2);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.contact-note {
  font-size: 0.875rem;
  color: var(--vp-c-text-2);
  margin-bottom: 1rem;
}

.contact-link {
  font-size: 0.875rem;
  color: var(--vp-c-brand-1);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vp-c-border);
  margin-top: auto;
}

.contact-card:hover .contact-link {
  color: var(--vp-c-brand-1);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--vp-c-bg);
  border: 1px solid var(--vp-c-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(2, 6, 23, 0.06);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.16);
  border-color: var(--vp-c-brand-1);
}

.dark .blog-card {
  background: #1e1e20;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.dark .blog-card:hover {
  background: #232326;
  border-color: rgba(255, 255, 255, 0.2);
}

.blog-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.blog-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--vp-c-bg-soft);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform: scale(1.01);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(34, 140, 244, 0.12);
  color: var(--vp-c-brand-1);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: fit-content;
}

.dark .blog-category {
  background: rgba(34, 140, 244, 0.2);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vp-c-text-1);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-description {
  font-size: 0.875rem;
  color: var(--vp-c-text-2);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--vp-c-border);
  font-size: 0.875rem;
  color: var(--vp-c-text-2);
}

.blog-read-more {
  color: var(--vp-c-brand-1);
  font-weight: 500;
}

.site-footer {
  background: var(--vp-c-bg-alt);
  border-top: 1px solid var(--vp-c-border);
  padding: 5rem 1.5rem 2.5rem;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-links-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--vp-c-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
}

.footer-brand-section {
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

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

.footer-brand .logo {
  width: 40px;
  height: 40px;
}

.footer-brand .brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vp-c-text-1);
}

.brand-description {
  color: var(--vp-c-text-2);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  text-align: right;
  flex: 1;
}

.footer-column {
  min-width: 0;
}

.column-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vp-c-text-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.625rem;
  color: var(--vp-c-text-2);
}

.footer-links li span {
  color: var(--vp-c-text-2);
  font-size: 0.9375rem;
}

.footer-links a {
  color: var(--vp-c-text-2);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-links a:hover {
  color: var(--vp-c-brand-1);
}

.external-icon {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-left: 0.375rem;
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  line-height: 1;
}

.nav-link .external-icon,
.mobile-nav-link .external-icon {
  font-size: 0.7rem;
  vertical-align: baseline;
  margin-left: 0.25rem;
}

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

.section-footer {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 3rem 1rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-section .hero-subtitle {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    height: 400px;
    transform: scale(0.85);
  }
  
  .stats-card.listeners {
    width: 200px;
    right: -10px;
  }
  
  .stats-card.podcasts {
    width: 120px;
    bottom: 20px;
    right: 20px;
  }
  
  .audio-player {
    width: 320px;
    bottom: 80px;
  }
  
  .podcast-img.primary,
  .podcast-img.secondary {
    width: 220px;
    height: 260px;
  }
  
  .podcast-img.secondary {
    right: 40px;
  }
  
  .orange-accent {
    width: 150px;
    height: 60px;
    bottom: 60px;
  }
  
  .partners-grid {
    justify-content: center;
    gap: 2rem;
  }

  .products-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .products-section,
  .blog-section,
  .support-section {
    padding: 3rem 0;
  }

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

  .rotating-word {
    min-width: auto;
    display: inline;
  }

  .hero-title {
    white-space: normal;
  }

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

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

  .footer-brand-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-brand {
    width: auto;
  }

  .brand-description {
    text-align: left;
  }
}

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

  .footer-brand-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-brand {
    width: auto;
  }

  .brand-description {
    text-align: left;
  }
}

.reviews-section {
  padding: 5rem 0;
  background: var(--vp-c-bg);
}

.dark .reviews-section {
  background: #1a1a1c;
}



.reviews-header {
  text-align: left;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

.reviews-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--vp-c-text-1);
  margin-bottom: 0.75rem;
  text-transform: none;
}

.reviews-subtitle {
  font-size: 1.125rem;
  color: var(--vp-c-text-2);
  max-width: 900px;
}

.reviews-layers {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.reviews-layer {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: fit-content;
}

.reviews-track-left {
  animation: scroll-left 30s linear infinite;
}

.reviews-layers:hover .reviews-track-left {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

.review-card {
  background: var(--vp-c-bg);
  border: 1px solid var(--vp-c-border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.25s ease;
  min-height: 260px;
  flex-shrink: 0;
  width: 320px;
  box-shadow: 0 4px 16px rgba(2, 6, 23, 0.06);
}

.review-card:hover {
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.16);
  border-color: var(--vp-c-brand-1);
  transform: translateY(-4px);
}

.dark .review-card {
  background: #1e1e20;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.dark .review-card:hover {
  background: #232326;
  border-color: rgba(255, 255, 255, 0.2);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.review-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--vp-c-text-1);
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: auto;
}

.review-avatar,
.review-avatar-fallback {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.review-avatar-fallback {
  background: var(--vp-c-brand-1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.review-author-name {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--vp-c-text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-author-location {
  font-size: 0.75rem;
  color: var(--vp-c-text-2);
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 3rem 0;
  }

  .reviews-title {
    font-size: 1.75rem;
  }

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

  .reviews-layers {
    padding: 1.5rem 0;
  }

  .reviews-track {
    gap: 1rem;
  }

  .reviews-track-left {
    animation: scroll-left 25s linear infinite;
  }

  .review-card {
    width: 280px;
    padding: 1.25rem;
    gap: 0.875rem;
    min-height: 260px;
  }

  .review-text {
    font-size: 0.875rem;
  }

  .review-stars svg {
    width: 16px;
    height: 16px;
  }

  .review-avatar,
  .review-avatar-fallback {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .review-author-name {
    font-size: 0.8125rem;
  }

  .review-author-location {
    font-size: 0.75rem;
  }
}

.cta-section {
  padding: 5rem 0;
  background: var(--vp-c-bg);
}

.dark .cta-section {
  background: #1a1a1c;
}

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

.cta-section .container {
  max-width: 1400px;
  background: var(--vp-c-bg);
  border: 1px solid var(--vp-c-border);
  border-radius: 16px;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.08);
}

.dark .cta-section .container {
  background: #1e1e20;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.cta-section .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vp-c-brand-1), var(--vp-c-brand-2));
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.cta-text {
  color: var(--vp-c-text-1);
  max-width: 600px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--vp-c-text-1);
  line-height: 1.2;
}

.cta-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--vp-c-text-2);
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 3.5rem 0;
  }

  .cta-section .container {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
