/* ==========================================================================
   VOICECRAFT PRO — NEXT-GEN DESIGN SYSTEM & STYLESHEET
   Aesthetics: Deep Dark Glassmorphism, Neon Cyan & Electric Violet Accents,
               Ultra-Clean High-Legibility Typography, Crisp Micro-Interactions.
   ========================================================================== */

:root {
  /* Colors */
  --bg-void: #060813;
  --bg-card: rgba(15, 23, 42, 0.78);
  --bg-card-hover: rgba(30, 41, 59, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.035);
  --border-glass: rgba(255, 255, 255, 0.09);
  --border-glow: rgba(56, 189, 248, 0.4);

  --cyan: #38bdf8;
  --cyan-bright: #38ef7d;
  --cyan-accent: #00f2fe;
  --violet: #818cf8;
  --purple: #a855f7;
  --magenta: #f43f5e;
  --emerald: #10b981;
  --amber: #f59e0b;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Typography — Ultra-Clean, High-Readability Modern Fonts */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Shadows & Glows */
  --glow-cyan: 0 0 25px rgba(56, 189, 248, 0.35);
  --glow-violet: 0 0 30px rgba(129, 140, 248, 0.3);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7);

  /* Transitions */
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #050811;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(56, 189, 248, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 85% 35%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(129, 140, 248, 0.1) 0%, transparent 45%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* Global Container */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Announcement Top Bar */
.announcement-bar {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.15), rgba(168, 85, 247, 0.18));
  border-bottom: 1px solid rgba(56, 189, 248, 0.25);
  padding: 10px 16px;
  font-size: 0.88rem;
  position: relative;
  z-index: 101;
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-pill {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #030712;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.announcement-text {
  color: var(--text-primary);
  font-weight: 500;
}

.announcement-link {
  color: var(--cyan);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.announcement-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Navigation Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 8, 19, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
  min-height: 72px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon-wrapper {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(129, 140, 248, 0.3));
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.25);
}

.logo-soundwave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.logo-soundwave span {
  width: 3px;
  height: 100%;
  background: var(--cyan);
  border-radius: 3px;
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.logo-soundwave span:nth-child(2) { height: 60%; background: var(--cyan-accent); }
.logo-soundwave span:nth-child(3) { height: 100%; background: var(--violet); }
.logo-soundwave span:nth-child(4) { height: 75%; background: var(--purple); }
.logo-soundwave span:nth-child(5) { height: 40%; background: var(--cyan); }

.brand-logo:hover .logo-soundwave span {
  animation: wavePulse 0.8s ease-in-out infinite alternate;
}

@keyframes wavePulse {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

.brand-name {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.15;
}

.logo-pro {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 4px;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cyan);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
  min-height: 38px;
}

.btn-lg {
  padding: 13px 28px;
  font-size: 1.02rem;
  min-height: 50px;
}

.btn-block {
  width: 100%;
}

.btn-compact {
  padding: 10px 26px;
  font-size: 0.94rem;
  min-height: 42px;
  border-radius: 999px;
  width: auto;
  align-self: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.35);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
  box-shadow: 0 6px 28px rgba(56, 189, 248, 0.5);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glass);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(51, 65, 85, 0.9);
  color: #fff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #20ba5a 0%, #0e7367 100%);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
  color: #ffffff;
}

.floating-whatsapp i {
  font-size: 1.6rem;
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-main {
  font-weight: 700;
  display: block;
}

.btn-sub {
  font-size: 0.72rem;
  opacity: 0.85;
  font-weight: 400;
  display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 60px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cyan);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-metrics {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 10px;
  border-top: 1px solid var(--border-glass);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.star-gold {
  color: var(--amber);
  font-size: 0.95rem;
}

.metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: var(--border-glass);
}

/* Hero Studio 3D Card Mockup */
.hero-visual {
  position: relative;
}

.studio-card-3d {
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.75), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow-card), 0 0 40px rgba(56, 189, 248, 0.12);
  backdrop-filter: blur(25px);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.studio-card-3d:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.card-header-bar {
  background: rgba(15, 23, 42, 0.95);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-controls {
  display: flex;
  gap: 7px;
}

.win-btn {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.win-close { background-color: #ef4444; }
.win-min { background-color: #f59e0b; }
.win-max { background-color: #10b981; }

.window-title {
  font-size: 0.76rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
}

.status-live {
  width: 6px;
  height: 6px;
  background-color: var(--emerald);
  border-radius: 50%;
}

.studio-inner {
  padding: 18px;
}

.studio-topbar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.studio-tab {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.studio-tab.active {
  background: rgba(56, 189, 248, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.script-editor-mock {
  background: rgba(10, 15, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
}

.script-speaker-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.speaker-david {
  background: rgba(56, 189, 248, 0.2);
  color: var(--cyan);
}

.speaker-sarah {
  background: rgba(168, 85, 247, 0.2);
  color: var(--purple);
  margin-top: 10px;
}

.script-line {
  font-size: 0.82rem;
  color: var(--text-primary);
  line-height: 1.45;
}

.waveform-box {
  background: rgba(10, 15, 30, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 14px;
}

.waveform-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.text-cyan { color: var(--cyan); }
.text-green { color: var(--emerald); }
.text-red { color: #ef4444; }

.visualizer-bars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 2px;
}

.vis-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  border-radius: 2px;
  height: 22px;
  transform-origin: center;
  animation: visWave 1.3s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes visWave {
  0% { transform: scaleY(0.2); opacity: 0.55; }
  50% { transform: scaleY(0.9); opacity: 0.95; }
  100% { transform: scaleY(0.35); opacity: 0.7; }
}

.studio-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.model-pill {
  font-size: 0.74rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.studio-btns {
  display: flex;
  gap: 8px;
}

.btn-xs {
  padding: 5px 12px;
  font-size: 0.75rem;
  border-radius: 6px;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  z-index: 2;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-top-right {
  top: -16px;
  right: -16px;
}

.badge-bottom-left {
  bottom: -16px;
  left: -16px;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(129, 140, 248, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.float-text strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.float-text span {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Section Globals
   ========================================================================== */
.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 52px;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}



/* ==========================================================================
   Features Grid
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-card), 0 0 30px rgba(56, 189, 248, 0.12);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 22px;
}

.icon-cyan { background: rgba(56, 189, 248, 0.15); color: var(--cyan); }
.icon-violet { background: rgba(129, 140, 248, 0.15); color: var(--violet); }
.icon-magenta { background: rgba(244, 63, 94, 0.15); color: var(--magenta); }
.icon-amber { background: rgba(245, 158, 11, 0.15); color: var(--amber); }
.icon-emerald { background: rgba(16, 185, 129, 0.15); color: var(--emerald); }
.icon-blue { background: rgba(37, 99, 235, 0.15); color: #60a5fa; }

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.feature-checklist li i {
  color: var(--cyan);
  font-size: 0.9rem;
}

/* ==========================================================================
   Comparison Table Section
   ========================================================================== */
.comparison-table-wrapper {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-glass);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.comparison-table th.feature-col {
  width: 32%;
}

.comparison-table th.voicecraft-col {
  width: 26%;
  background: rgba(56, 189, 248, 0.08);
  border-radius: 16px 16px 0 0;
}

.col-highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.th-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
}

.th-logo span {
  color: var(--cyan);
}

.th-badge {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
}

.feat-title strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.feat-title span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.voicecraft-cell {
  background: rgba(56, 189, 248, 0.05);
  color: #fff;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.featured-plan {
  background: linear-gradient(170deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.98));
  border: 2px solid var(--cyan);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.25);
  transform: scale(1.02);
}

.featured-plan:hover {
  transform: scale(1.02) translateY(-6px);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  color: #030712;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.plan-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.duration {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.discount-pill {
  display: inline-block;
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 24px;
  width: fit-content;
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 32px;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
}

.pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.pricing-features li.muted-feat {
  color: var(--text-muted);
  opacity: 0.6;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
}

.guarantee-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 14px;
}

/* ==========================================================================
   Download Section
   ========================================================================== */
.download-box {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(56, 189, 248, 0.15);
}

.download-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.download-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.download-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 8px 14px;
  border-radius: 8px;
}

.download-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.download-icon-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-badge-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.75));
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 20px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(56, 189, 248, 0.15);
  backdrop-filter: blur(15px);
  width: 100%;
  max-width: 270px;
  transition: var(--transition-smooth);
}

.download-badge-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(56, 189, 248, 0.25);
}

.badge-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(37, 99, 235, 0.3));
  border: 1px solid rgba(56, 189, 248, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}

.win-badge-icon {
  font-size: 2.1rem;
  color: var(--cyan);
}

.badge-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.badge-app-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.badge-app-sub {
  font-size: 0.78rem;
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 600;
}

.badge-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.spec-mini-pill {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.35);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-icon {
  color: var(--cyan);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-glass);
  background: rgba(3, 7, 18, 0.95);
  padding: 80px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 340px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.footer-socials a:hover {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.footer-links-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links-col a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  font-size: 0.84rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1120px) {
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.86rem;
    padding: 6px 8px;
  }
}

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

  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(6, 8, 19, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 24px;
    border-bottom: 1px solid var(--border-glass);
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    z-index: 99;
  }

  .nav-menu.mobile-open .nav-link {
    font-size: 1.05rem;
    padding: 10px 16px;
    width: 100%;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .download-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .download-specs, .download-actions {
    justify-content: center;
  }

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

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

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .featured-plan {
    transform: none;
  }

  .featured-plan:hover {
    transform: translateY(-6px);
  }

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

  .badge-top-right, .badge-bottom-left {
    position: static;
    margin: 12px 0;
  }
}
