/* Cartesia-inspired high-tech aesthetic - STRICTLY SCOPED */

.cartesia-theme {
  --ct-bg: #13151d;
  --ct-bg-elevated: #1c1c1a;
  --ct-bg-card: #282b2c;
  --ct-border: rgba(246, 208, 135, 0.15);
  --ct-border-hover: rgba(246, 208, 135, 0.4);
  
  --ct-text-main: #f3f3f3;
  --ct-text-muted: #a09f98;
  --ct-accent: #f6d087;
  --ct-accent-hover: #decea8;
  --ct-accent-glow: rgba(246, 208, 135, 0.2);
  
  --ct-font-sans: 'Inter', -apple-system, sans-serif;
  --ct-font-mono: 'JetBrains Mono', monospace;

  background-color: var(--ct-bg);
  color: var(--ct-text-main);
  font-family: var(--ct-font-sans);
  min-height: 100vh;
  /* Override any global backgrounds for this wrapper */
  background-image: none !important; 
}

/* Reset inner elements within the wrapper to avoid global style leaking */
.cartesia-theme * {
  box-sizing: border-box;
}

/* Main Container */
.ct-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
.ct-main h1, .ct-main h2, .ct-main h3 {
  color: var(--ct-text-main);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.ct-main p {
  color: var(--ct-text-muted);
  line-height: 1.6;
}

.highlight-blue {
  color: var(--ct-accent) !important;
}

/* Base Buttons */
.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.ct-btn--primary {
  background: linear-gradient(135deg, var(--ct-accent), var(--ct-accent-hover));
  color: #13151d;
  box-shadow: 0 4px 15px var(--ct-accent-glow);
}
.ct-btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(246, 208, 135, 0.4);
}

.ct-btn--secondary {
  background: transparent;
  color: var(--ct-text-main);
  border-color: var(--ct-border);
}
.ct-btn--secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--ct-text-muted);
}

.ct-btn--large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Hero Section */
.ct-hero {
  padding: 104px 0 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ct-hero__content {
  opacity: 0;
  transform: translateY(20px);
  animation: ctFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ct-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--ct-border);
  font-size: 13px;
  color: var(--ct-text-muted);
  margin-bottom: 32px;
}

.ct-badge__pulse {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: ctPulse 2s infinite;
}

.ct-hero__title {
  font-size: 40px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.ct-hero__subtitle {
  font-size: 20px;
  max-width: 480px;
  margin-bottom: 40px;
}

.ct-hero__actions {
  display: flex;
  gap: 16px;
}

/* Terminal Visual */
.ct-hero__visual {
  opacity: 0;
  transform: translateY(20px);
  animation: ctFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.ct-terminal {
  background: var(--ct-bg-elevated);
  border: 1px solid var(--ct-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.ct-terminal__header {
  padding: 16px;
  border-bottom: 1px solid var(--ct-border);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.02);
}

.ct-terminal__dots {
  display: flex;
  gap: 6px;
}
.ct-terminal__dots span {
  width: 10px; height: 10px; border-radius: 50%; background: #333;
}

.ct-terminal__title {
  margin: 0 auto;
  font-family: var(--ct-font-mono);
  font-size: 12px;
  color: var(--ct-text-muted);
}

.ct-terminal__body {
  padding: 40px;
}

.ct-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 60px;
  margin-bottom: 40px;
}

.ct-wave span {
  width: 4px;
  background: var(--ct-text-muted);
  border-radius: 2px;
  animation: ctWave 1s ease-in-out infinite;
}
.ct-wave span:nth-child(2n) { animation-delay: 0.2s; background: var(--ct-text-main); }
.ct-wave span:nth-child(3n) { animation-delay: 0.4s; background: #b8b8b8; }
.ct-wave span:nth-child(5n) { animation-delay: 0.6s; }

.ct-metrics {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--ct-border);
  padding-top: 24px;
}

.ct-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-metric__label {
  font-size: 11px;
  color: var(--ct-text-muted);
  letter-spacing: 1px;
}

.ct-metric__value {
  font-family: var(--ct-font-mono);
  font-size: 14px;
}

/* Sections */
.ct-section {
  padding: 96px 0;
  border-top: 1px solid var(--ct-border);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.ct-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ct-section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ct-section--reverse .ct-section__text {
  order: 2;
}
.ct-section--reverse .ct-section__visual {
  order: 1;
}

.ct-section__title {
  font-size: 40px;
  margin-bottom: 24px;
}

.ct-section__desc {
  font-size: 18px;
  margin-bottom: 32px;
}

.ct-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.ct-feature-list svg {
  width: 20px;
  height: 20px;
  color: var(--ct-text-muted);
}

.ct-link {
  color: var(--ct-text-main);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--ct-border);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.ct-link:hover {
  border-color: var(--ct-text-main);
}
.ct-link--cta {
  margin-top: 6px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  padding: 12px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border-bottom: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.ct-link--cta:hover {
  border-color: rgba(255,255,255,0.46);
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
}

/* Mockups */
.ct-mockup {
  background: var(--ct-bg-card);
  border: 1px solid var(--ct-border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

/* Mockup: Clone */
.ct-mockup--clone {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ct-mockup__upload {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--ct-text-muted);
  text-align: center;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.015) 48%, rgba(255,255,255,0.01) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 18px 40px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.ct-mockup__upload:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.025) 48%, rgba(255,255,255,0.01) 100%);
  transform: translateY(-1px);
}
.ct-mockup__upload::before,
.ct-mockup__upload::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.24);
  pointer-events: none;
}
.ct-mockup__upload::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.ct-mockup__upload::after {
  right: 10px;
  bottom: 10px;
  border-left: none;
  border-top: none;
}
.ct-mockup__upload-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-mockup__upload-icon svg { width: 26px; height: 26px; }
.ct-mockup__upload-kicker {
  font-family: var(--ct-font-mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
}
.ct-mockup__upload-title {
  margin: 2px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.22;
  max-width: 520px;
  color: var(--ct-text-main);
}
.ct-mockup__upload-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 560px;
  color: var(--ct-text-muted);
}
.ct-btn--upload {
  margin-top: 10px;
  min-width: 260px;
  padding: 14px 30px;
  border-radius: 10px;
  border-color: rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}
.ct-btn--upload:hover {
  border-color: rgba(255,255,255,0.46);
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.09));
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .ct-mockup__upload-title {
    font-size: 20px;
  }
  .ct-btn--upload {
    width: 100%;
    min-width: 0;
  }
}

/* Languages Static Grid */
.ct-languages-static {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ct-languages__title {
  text-align: center;
  font-size: 40px;
  color: var(--ct-text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 600;
}

.ct-lang-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
}

.ct-section--tight {
  padding: 20px 0;
  border-top: 1px solid var(--ct-border);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.ct-section--tight.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ct-lang-more {
  background: transparent !important;
  border-color: transparent !important;
  color: var(--ct-text-muted) !important;
}

.lang-tag {
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--ct-bg-elevated);
  border: 1px solid var(--ct-border);
  color: var(--ct-text-muted);
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.lang-tag:hover {
  border-color: var(--ct-border-hover);
  color: var(--ct-text-main);
}
.lang-tag--highlight {
  background: rgba(246, 208, 135, 0.1);
  border-color: rgba(246, 208, 135, 0.3);
  color: var(--ct-accent);
}
.lang-tag--highlight:hover {
  background: rgba(246, 208, 135, 0.2);
  border-color: rgba(246, 208, 135, 0.6);
  color: #fff;
  box-shadow: 0 0 15px var(--ct-accent-glow);
}

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

/* Mockup: Design */
.ct-mockup--design {
  padding: 26px;
  background: radial-gradient(140% 120% at 50% -10%, rgba(255,255,255,0.08), rgba(255,255,255,0.015) 52%, rgba(255,255,255,0));
}
.ct-design-stage {
  position: relative;
  height: 230px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 50% 52%, rgba(255,255,255,0.11), rgba(255,255,255,0.02) 44%, rgba(255,255,255,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  overflow: hidden;
}
.ct-design-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.035) 0 1px,
      transparent 1px 26px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.022) 0 1px,
      transparent 1px 32px
    );
  opacity: 0.16;
  pointer-events: none;
}
.ct-design-stage::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: -35%;
  height: 26%;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
  filter: blur(10px);
  opacity: 0.38;
  animation: ctScanline 7s linear infinite;
  pointer-events: none;
}
.ct-design-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 0 28px rgba(255,255,255,0.72), 0 0 56px rgba(255,255,255,0.24);
  animation: ctCorePulse 2.6s ease-in-out infinite;
}
.ct-design-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ct-design-ring--a {
  width: 92px;
  height: 92px;
  animation: ctRingRotate 9s linear infinite;
  border-style: dashed;
}
.ct-design-ring--b {
  width: 148px;
  height: 148px;
  border-color: rgba(255,255,255,0.2);
  animation: ctRingRotateReverse 12s linear infinite;
  border-style: dotted;
}
.ct-design-ring--c {
  width: 206px;
  height: 206px;
  border-color: rgba(255,255,255,0.12);
  animation: ctRingBreathe 3s ease-in-out infinite;
}
.ct-design-wave {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 260px;
  height: 64px;
  transform: translateX(-50%);
  overflow: hidden;
  pointer-events: none;
}
.ct-design-wave::before,
.ct-design-wave::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -128px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.36);
  transform: translateX(-50%) scale(0.5);
  opacity: 0;
  animation: ctSoundRipple 2.8s ease-out infinite;
}
.ct-design-wave::after {
  animation-delay: 1.4s;
}
.ct-design-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.ct-design-tags a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.ct-design-tags a:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

@keyframes ctCorePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.94); box-shadow: 0 0 22px rgba(255,255,255,0.48), 0 0 46px rgba(255,255,255,0.2); }
  50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 34px rgba(255,255,255,0.85), 0 0 62px rgba(255,255,255,0.28); }
}
@keyframes ctRingRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes ctRingRotateReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}
@keyframes ctRingBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(0.98); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.03); opacity: 1; }
}
@keyframes ctSoundRipple {
  0% {
    transform: translateX(-50%) scale(0.5);
    opacity: 0.85;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    transform: translateX(-50%) scale(1.15);
    opacity: 0;
  }
}
@keyframes ctScanline {
  0% { transform: translateY(0%); opacity: 0.18; }
  40% { opacity: 0.34; }
  100% { transform: translateY(540%); opacity: 0.16; }
}

/* Mockup: TTS */
.ct-mockup--tts {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}

.ct-quote-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.ct-quote-card:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.ct-quote-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ct-text-main);
}
.ct-quote-card span {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ct-text-muted);
  font-family: var(--ct-font-mono);
}

.ct-play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ct-text-main);
  color: var(--ct-bg);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.ct-play-btn svg { width: 20px; height: 20px; margin-left: 4px; }

/* Audio Samples Component */
.ct-audio-samples {
  margin-top: 36px;
}

.ct-audio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ct-samples-title {
  font-size: 14px;
  color: var(--ct-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  font-weight: 600;
}

.ct-sample-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  margin-bottom: 0;
  background: var(--ct-bg-card);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.ct-sample-card:hover {
  border-color: var(--ct-border-hover);
  background: #151515;
}

.ct-sample-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--ct-text-main);
}

.ct-sample-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-sample-desc {
  font-size: 14px;
  color: var(--ct-text-muted);
}

.ct-sample-actions {
  display: flex;
  gap: 16px;
}

.ct-play-btn--small {
  width: auto;
  height: 36px;
  padding: 0 16px;
  border-radius: 18px;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  color: var(--ct-text-main);
  transition: all 0.2s ease;
}
.ct-play-btn--small:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.02);
}
.ct-play-btn--small svg {
  width: 16px;
  height: 16px;
  margin-left: 0;
}

.ct-play-btn--clone {
  background: rgba(246, 208, 135, 0.12);
  color: var(--ct-accent);
}
.ct-play-btn--clone:hover {
  background: rgba(246, 208, 135, 0.25);
}

.ct-play-btn--design {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: var(--ct-text-main);
  color: var(--ct-bg);
  box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}
.ct-play-btn--design:hover {
  background: #ffffff;
  transform: scale(1.05);
}
.ct-play-btn--design svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.ct-audio-samples--design {
  margin-top: 18px;
}

/* Grid Cards */
.ct-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ct-sub-title-wrap {
  margin-bottom: 18px;
}

.ct-sub-title {
  margin: 0;
  font-size: 32px;
  color: var(--ct-text-main);
  letter-spacing: -0.02em;
}

.ct-sub-desc {
  margin: 8px 0 0;
  font-size: 16px;
  color: var(--ct-text-muted);
}

.ct-card {
  background: var(--ct-bg-card);
  border: 1px solid var(--ct-border);
  border-radius: 12px;
  padding: 40px;
  transition: border-color 0.3s, background 0.3s;
}
.ct-card:hover {
  border-color: var(--ct-border-hover);
  background: #151515;
}

.ct-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ct-card__icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ct-text-main);
}
.ct-card__icon svg { width: 24px; height: 24px; }

.ct-card__title {
  font-size: 24px;
  margin: 0;
}

.ct-card__desc {
  margin: 0;
  color: var(--ct-text-muted);
}

/* CTA Section */
.ct-cta {
  padding: 84px 0 120px;
  border-top: 1px solid var(--ct-border);
}

.ct-cta--simple {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.ct-download-simple {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ct-download-simple__title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  line-height: 1.1;
  color: var(--ct-text-main);
}

.ct-download-simple__desc {
  font-size: 18px;
  color: var(--ct-text-muted);
  max-width: 540px;
  margin: 0 0 46px;
  line-height: 1.6;
}

.ct-download-simple__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.ct-store-btn-simple {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #000;
  padding: 12px 28px 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ct-store-btn-simple:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255,255,255,0.18);
  background: #f4f4f5;
}

.ct-store-btn-simple svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.ct-store-btn-simple__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ct-store-btn-simple__text .small {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  opacity: 0.8;
}

.ct-store-btn-simple__text .big {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.ct-download-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 48px;
}

.ct-review-card {
  text-align: left;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
  border-radius: 20px;
  transition: background 0.3s ease;
}

.ct-review-card:hover {
  background: rgba(255,255,255,0.04);
}

.ct-stars {
  color: #f5c671;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.ct-review-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0 0 20px;
  font-style: italic;
}

.ct-review-card span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

@media (max-width: 900px) {
  .ct-download-reviews {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Animations */
@keyframes ctFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ctPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes ctWave {
  0%, 100% { height: 10%; }
  50% { height: 100%; }
}

@keyframes ctProgress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Responsive */
@media (max-width: 992px) {
  .ct-hero, .ct-section--split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ct-section--reverse .ct-section__text { order: 1; }
  .ct-section--reverse .ct-section__visual { order: 2; }
  
  .ct-grid-2 { grid-template-columns: 1fr; }
  .ct-audio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ct-hero { padding: 100px 0 60px; }
  .ct-hero__title { font-size: 40px; }
  .ct-section__title { font-size: 32px; }
  .ct-hero__actions { flex-direction: column; }
  .ct-btn { width: 100%; }
}
