:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --elev: #f8fafc;
  --muted: #64748b;
  --text: #0f172a;
  --brand: #06b6d4;
  --brand-2: #d946ef;
  --danger: #ef4444;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0,0,0,.08);
  --shadow-elevated: 0 20px 60px rgba(0,0,0,.15);
  --glass-bg: rgba(255,255,255,.7);
  --glass-border: rgba(255,255,255,.18);
}

/* Glassmorphism utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: #ffffff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Global 3D Live Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(248,250,252,0.9) 0%, 
    rgba(241,245,249,0.95) 25%, 
    rgba(236,242,255,0.9) 50%, 
    rgba(240,249,255,0.95) 75%, 
    rgba(248,250,252,0.9) 100%);
  z-index: -2;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% {
    background: linear-gradient(135deg, 
      rgba(248,250,252,0.9) 0%, 
      rgba(241,245,249,0.95) 25%, 
      rgba(236,242,255,0.9) 50%, 
      rgba(240,249,255,0.95) 75%, 
      rgba(248,250,252,0.9) 100%);
  }
  50% {
    background: linear-gradient(135deg, 
      rgba(240,249,255,0.9) 0%, 
      rgba(236,242,255,0.95) 25%, 
      rgba(241,245,249,0.9) 50%, 
      rgba(248,250,252,0.95) 75%, 
      rgba(240,249,255,0.9) 100%);
  }
}

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 50; 
  background: rgba(255,255,255,.8); 
  backdrop-filter: saturate(180%) blur(20px); 
  border-bottom: 1px solid rgba(14,20,35,.08); 
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand-logo { width: 40px; height: 40px; }
.brand-name { font-weight: 700; font-size: 20px; letter-spacing: .2px; }
.nav { display: flex; align-items: center; gap: 20px; }
.nav a { 
  color: var(--muted); 
  text-decoration: none; 
  font-size: 14px; 
  position: relative;
  padding: 4px 0;
  transition: all 0.3s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: width 0.3s ease;
}
.nav a:hover { 
  color: var(--text); 
}
.nav a:hover::after {
  width: 100%;
}

.hero { position: relative; padding: 120px 0 80px; overflow: hidden; perspective: 1000px; }
.hero-bg { position: absolute; inset: 0; z-index: 1; transform-style: preserve-3d; }
.gradient-wave { 
  position: absolute; 
  top: -50%; 
  left: -20%; 
  width: 140%; 
  height: 200%; 
  background: linear-gradient(135deg, #06b6d4, #8b5cf6, #ec4899, #f59e0b);
  border-radius: 50%;
  animation: wave 12s ease-in-out infinite;
  opacity: 0.12;
  filter: blur(60px);
  transform-style: preserve-3d;
}
@keyframes wave {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateX(30px) translateY(-20px) rotate(3deg) scale(1.05); }
  50% { transform: translateX(-20px) translateY(30px) rotate(-3deg) scale(0.95); }
  75% { transform: translateX(25px) translateY(10px) rotate(2deg) scale(1.02); }
}

.hero-inner { position: relative; z-index: 2; }
.hero-content { text-align: center; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 64px; line-height: 1.1; margin: 0 0 24px; letter-spacing: -0.02em; font-weight: 700; }
.accent { 
  background: linear-gradient(90deg, #06b6d4, #8b5cf6, #ec4899, #06b6d4); 
  background-size: 200% auto;
  -webkit-background-clip: text; 
  background-clip: text; 
  color: transparent; 
  animation: gradientShift 4s ease-in-out infinite;
  position: relative;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.lead { color: var(--muted); font-size: 20px; margin: 0 0 32px; line-height: 1.6; }
.cta-row { 
  display: flex; 
  gap: 16px; 
  justify-content: center; 
  align-items: center;
  margin: 32px auto; 
  width: 100%;
}

.trusted-by { 
  padding: 60px 0; 
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  position: relative;
  overflow: hidden;
}
.trusted-text { 
  text-align: center; 
  font-size: 12px; 
  font-weight: 600; 
  letter-spacing: 1px; 
  color: var(--muted); 
  margin-bottom: 24px; 
}
.trusted-logos { 
  display: grid; 
  grid-template-columns: repeat(8, 1fr); 
  gap: 24px; 
  align-items: center; 
}
.trusted-logo { 
  text-align: center; 
  font-size: 11px; 
  font-weight: 700; 
  color: var(--muted); 
  opacity: 0.6; 
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: default;
}
.trusted-logo:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.05);
  background: rgba(6,182,212,.05);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.section { padding: 80px 0; position: relative; }
.section > .container { position: relative; z-index: 1; }
.section.alt { background: #f8fafc; }
.section.dark { 
  background: #0f172a; 
  color: white; 
  position: relative;
  overflow: hidden;
}
.section.dark::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(6,182,212,.1), rgba(139,92,246,.1));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 20s ease-in-out infinite;
  filter: blur(60px);
}
.section.dark::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(236,72,153,.1), rgba(245,158,11,.1));
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  animation: morphShape 25s ease-in-out infinite reverse;
  filter: blur(60px);
}
@keyframes morphShape {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    transform: rotate(45deg) scale(1.1);
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: rotate(90deg) scale(0.9);
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: rotate(135deg) scale(1.05);
  }
}
.section.dark h2 { color: white; }
.section.dark .lead { color: #94a3b8; }

h2 { 
  font-size: 48px; 
  margin: 0 0 60px; 
  text-align: center; 
  font-weight: 700; 
  position: relative;
  display: inline-block;
  width: 100%;
}
h2::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 2px;
  animation: underlineGrow 1s ease-out;
}
@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}
h3 { 
  font-size: 24px; 
  margin: 0 0 16px; 
  font-weight: 700; 
}
p { 
  line-height: 1.6; 
}

.grid { display: grid; gap: 24px; }
.feature-cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-cards .feature-card:nth-child(5) { grid-column: 1 / -1; max-width: 600px; margin: 0 auto; }

.feature-card { 
  border-radius: 20px; 
  padding: 32px; 
  position: relative; 
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}
.feature-card:hover { 
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg); 
  box-shadow: 0 24px 64px rgba(0,0,0,.2); 
}

.feature-card.compliance {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  color: white;
}
.feature-card.voice-api {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: white;
}
.feature-card.multilingual {
  background: linear-gradient(135deg, #8b5cf6, #1f2937);
  color: white;
}
.feature-card.scalability {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
}
.feature-card.reliability {
  background: white;
  color: var(--text);
  border: 1px solid rgba(14,20,35,.08);
}

.card-content { position: relative; z-index: 2; }
.feature-card h3 { margin-bottom: 16px; }
.feature-card p { margin-bottom: 24px; opacity: 0.9; }

.badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge { 
  background: rgba(255,255,255,.2); 
  border: 1px solid rgba(255,255,255,.3); 
  border-radius: 20px; 
  padding: 8px 16px; 
  display: flex; 
  align-items: center; 
  gap: 6px; 
  font-size: 12px; 
  font-weight: 600; 
  transition: all 0.3s ease;
  transform: translateZ(0);
}
.badge:hover {
  background: rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.5);
  transform: translateZ(10px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.waveform { 
  display: flex; 
  align-items: end; 
  gap: 4px; 
  height: 48px; 
  perspective: 1000px;
}
.bar { 
  width: 6px; 
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.6)); 
  border-radius: 3px; 
  animation: waveform 1.5s ease-in-out infinite; 
  transform-origin: bottom;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: all 0.3s ease;
}
.bar:hover {
  background: rgba(255,255,255,1);
  transform: scaleY(1.2) !important;
}
.bar:nth-child(1) { height: 24px; animation-delay: 0s; }
.bar:nth-child(2) { height: 38px; animation-delay: 0.1s; }
.bar:nth-child(3) { height: 28px; animation-delay: 0.2s; }
.bar:nth-child(4) { height: 42px; animation-delay: 0.3s; }
.bar:nth-child(5) { height: 32px; animation-delay: 0.4s; }
.bar:nth-child(6) { height: 48px; animation-delay: 0.5s; }
.bar:nth-child(7) { height: 26px; animation-delay: 0.6s; }
.bar:nth-child(8) { height: 36px; animation-delay: 0.7s; }

@keyframes waveform {
  0%, 100% { 
    transform: scaleY(0.5) rotateX(0deg); 
    opacity: 0.8;
  }
  50% { 
    transform: scaleY(1) rotateX(5deg); 
    opacity: 1;
  }
}

.flag-icon { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1000px; }
.flag-circle { 
  width: 50px; 
  height: 50px; 
  background: linear-gradient(135deg, #3b82f6, #1d4ed8); 
  border-radius: 50%; 
  position: relative; 
  z-index: 2; 
  box-shadow: 0 8px 24px rgba(59,130,246,.4), inset 0 2px 4px rgba(255,255,255,.3);
  animation: flagFloat 3s ease-in-out infinite;
  transform-style: preserve-3d;
}
.ripple { 
  position: absolute; 
  width: 50px; 
  height: 50px; 
  border: 2px solid rgba(255,255,255,.4); 
  border-radius: 50%; 
  animation: ripple 2s ease-out infinite; 
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes flagFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-8px) rotateY(15deg); }
}

.phone-icon { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1000px; }
.phone-pill { 
  background: rgba(255,255,255,.95); 
  color: var(--text); 
  padding: 14px 24px; 
  border-radius: 28px; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-weight: 600; 
  position: relative; 
  z-index: 2; 
  box-shadow: 0 8px 24px rgba(0,0,0,.15), inset 0 1px 2px rgba(255,255,255,.8);
  animation: phonePulse 3s ease-in-out infinite;
  transform-style: preserve-3d;
}
.connection-lines { position: absolute; right: -30px; }
.line { 
  position: absolute; 
  width: 30px; 
  height: 3px; 
  background: linear-gradient(90deg, rgba(255,255,255,.8), transparent); 
  border-radius: 2px; 
  animation: connection 2s ease-in-out infinite; 
  box-shadow: 0 0 8px rgba(255,255,255,.4);
}
.line:nth-child(1) { top: -12px; animation-delay: 0s; }
.line:nth-child(2) { top: -4px; animation-delay: 0.2s; }
.line:nth-child(3) { top: 4px; animation-delay: 0.4s; }
.line:nth-child(4) { top: 12px; animation-delay: 0.6s; }

@keyframes connection {
  0%, 100% { opacity: 0.3; transform: scaleX(0.5) translateZ(0); }
  50% { opacity: 1; transform: scaleX(1) translateZ(5px); }
}
@keyframes phonePulse {
  0%, 100% { transform: scale(1) rotateY(0deg); }
  50% { transform: scale(1.05) rotateY(5deg); }
}

.retell-logo { display: flex; align-items: center; gap: 12px; }
.logo-dots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.dot { 
  width: 8px; 
  height: 8px; 
  background: var(--text); 
  border-radius: 50%; 
  animation: dotPulse 2s ease-in-out infinite; 
}
.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.1s; }
.dot:nth-child(3) { animation-delay: 0.2s; }
.dot:nth-child(4) { animation-delay: 0.3s; }
.dot:nth-child(5) { animation-delay: 0.4s; }
.dot:nth-child(6) { animation-delay: 0.5s; }
.dot:nth-child(7) { animation-delay: 0.6s; }
.dot:nth-child(8) { animation-delay: 0.7s; }
.dot:nth-child(9) { animation-delay: 0.8s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

/* 3D Uptime Chart Widget */
.uptime-widget {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.uptime-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.uptime-logo {
  width: 24px;
  height: 24px;
  background: var(--text);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: white;
}

.uptime-title {
  font-weight: 600;
  font-size: 14px;
}

.uptime-bar {
  height: 8px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.uptime-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  border-radius: 4px;
  width: 0%;
  animation: fillUptime 2s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.uptime-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes fillUptime {
  to { width: 99.99%; }
}

@keyframes shimmer {
  to { left: 200%; }
}

.uptime-stats {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.uptime-stat {
  flex: 1;
  text-align: center;
  padding: 8px;
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  font-size: 12px;
}

.uptime-value {
  display: block;
  font-weight: 700;
  color: #10b981;
  font-size: 16px;
  margin-bottom: 4px;
}

.uptime-label {
  display: block;
  opacity: 0.7;
  font-size: 10px;
}

/* API Uptime Chart */
.api-chart {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 60px;
  margin-top: 16px;
}

.chart-bar {
  flex: 1;
  background: #10b981;
  border-radius: 2px 2px 0 0;
  animation: chartGrow 1.5s ease-out forwards;
  transform-origin: bottom;
  transform: scaleY(0);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.chart-bar:hover {
  opacity: 1;
  background: #06b6d4;
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.15s; }
.chart-bar:nth-child(3) { animation-delay: 0.2s; }
.chart-bar:nth-child(4) { animation-delay: 0.25s; }
.chart-bar:nth-child(5) { animation-delay: 0.3s; }
.chart-bar:nth-child(6) { animation-delay: 0.35s; }
.chart-bar:nth-child(7) { animation-delay: 0.4s; }
.chart-bar:nth-child(8) { animation-delay: 0.45s; }
.chart-bar:nth-child(9) { animation-delay: 0.5s; }
.chart-bar:nth-child(10) { animation-delay: 0.55s; }
.chart-bar:nth-child(11) { animation-delay: 0.6s; }
.chart-bar:nth-child(12) { animation-delay: 0.65s; }
.chart-bar:nth-child(13) { animation-delay: 0.7s; }
.chart-bar:nth-child(14) { animation-delay: 0.75s; }
.chart-bar:nth-child(15) { animation-delay: 0.8s; }

@keyframes chartGrow {
  to { 
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Agent Features Grid */
.agents-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.agent-feature-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14,20,35,.06);
}

.agent-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.agent-feature-card:hover::before {
  transform: scaleX(1);
}

.agent-feature-card:hover {
  transform: translateY(-8px) translateZ(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  border-color: rgba(6,182,212,.2);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.agent-feature-card.instant-response .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(6,182,212,.1), rgba(59,130,246,.1));
  color: #06b6d4;
}

.agent-feature-card.qualification .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(139,92,246,.1), rgba(168,85,247,.1));
  color: #8b5cf6;
}

.agent-feature-card.personalized .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(236,72,153,.1), rgba(219,39,119,.1));
  color: #ec4899;
}

.agent-feature-card.meeting-booking .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(245,158,11,.1), rgba(251,191,36,.1));
  color: #f59e0b;
}

.agent-feature-card.crm-sync .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(5,150,105,.1));
  color: #10b981;
}

.agent-feature-card.compliance .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(79,70,229,.1));
  color: #6366f1;
}

.agent-feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotateY(15deg);
  box-shadow: 0 8px 16px rgba(0,0,0,.1);
}

.feature-icon-wrapper svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

.agent-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.agent-feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 980px) {
  .agents-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .agents-features-grid {
    grid-template-columns: 1fr;
  }
}

.features-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.audio-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
.integrations-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
.integrations-grid .logo { display: flex; align-items: center; justify-content: center; gap: 8px; height: 64px; border-radius: 12px; border: 1px dashed rgba(14,20,35,.12); color: #7b8496; background: #ffffff; }
.integrations-grid .logo span { font-size: 14px; font-weight: 500; }
.logo-grid { grid-template-columns: repeat(5, 1fr); align-items: center; }
.logo-grid .logo { display: grid; place-items: center; height: 56px; border: 1px dashed rgba(14,20,35,.12); border-radius: 10px; color: #7b8496; background: #ffffff; filter: grayscale(1) contrast(1.05); }
.stat-grid { grid-template-columns: repeat(4, 1fr); }

.card { 
  background: rgba(255,255,255,.8); 
  border: 1px solid rgba(14,20,35,.08); 
  border-radius: 16px; 
  padding: 20px; 
  box-shadow: var(--shadow); 
  backdrop-filter: blur(8px); 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.card:hover::before {
  opacity: 1;
}
.card:hover { 
  transform: translateY(-4px) translateZ(10px); 
  border-color: rgba(14,20,35,.12); 
  box-shadow: 0 20px 40px rgba(0,0,0,.15), 0 0 0 1px rgba(255,255,255,.5); 
}
.audio-card .audio-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.tag { font-size: 11px; padding: 4px 8px; border-radius: 999px; border: 1px solid rgba(108,140,255,.25); color: var(--muted); }
.audio-player { width: 100%; height: 36px; filter: saturate(1.2); }
.card.price { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}
.card.price ul { 
  margin: 0; 
  padding-left: 18px; 
  color: var(--muted); 
}
.price-tag { 
  font-size: 32px; 
  font-weight: 800; 
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 8px 0;
}
.price.featured { 
  border-color: rgba(107,255,207,.45); 
  position: relative; 
  background: white;
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 12px 40px rgba(6,182,212,.2), 0 0 0 2px rgba(6,182,212,.1);
}

.how .steps { margin: 0; padding-left: 18px; color: var(--muted); }

.video-wrap { margin-top: 12px; }
.video-embed { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 12px; overflow: hidden; border: 1px solid rgba(108,140,255,.16); box-shadow: var(--shadow); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Benefits Grid - Testimonials Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
}

.benefit-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}

.benefit-card.time-saving {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.benefit-card.error-free {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.benefit-card.efficiency-growth {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.benefit-icon {
  position: relative;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.percentage-circle {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,.2), inset 0 2px 8px rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
}

.pulse-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(255,255,255,.4);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.badge-24 {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
}

.rotating-border {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 3px solid transparent;
  border-top-color: rgba(255,255,255,.6);
  border-right-color: rgba(255,255,255,.6);
  border-radius: 22px;
  animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.growth-number {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
}

.animated-bars {
  position: absolute;
  bottom: -20px;
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 40px;
}

.bar-item {
  width: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 4px 4px 0 0;
  animation: barGrow 2s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.bar-item:nth-child(1) {
  animation-delay: 0s;
}

.bar-item:nth-child(2) {
  animation-delay: 0.2s;
}

.bar-item:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes barGrow {
  0%, 100% {
    transform: scaleY(0.7);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.benefit-content {
  position: relative;
  z-index: 2;
}

.benefit-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
}

.benefit-content p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0 0 16px;
}

.benefit-label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
  font-style: italic;
  padding: 8px 16px;
  background: rgba(255,255,255,.15);
  border-radius: 20px;
  display: inline-block;
}

@media (max-width: 980px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-card {
    min-height: auto;
  }
}

.quote .person { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.avatar { width: 32px; height: 32px; border-radius: 999px; background: rgba(108,140,255,.2); display: grid; place-items: center; font-size: 12px; color: var(--text); }

.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px; 
  padding: 12px 18px; 
  border-radius: 12px; 
  border: 1px solid rgba(14,20,35,.12); 
  text-decoration: none; 
  color: var(--text); 
  background: rgba(255,255,255,.8); 
  cursor: pointer; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn:hover { 
  transform: translateY(-2px) translateZ(10px); 
  border-color: rgba(14,20,35,.16); 
  background: rgba(255,255,255,.9); 
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.btn:active { 
  transform: translateY(0) translateZ(0); 
}
.btn-primary { 
  background: linear-gradient(135deg, var(--text), #1e293b); 
  color: #ffffff; 
  border-color: transparent; 
  font-weight: 700; 
  box-shadow: 0 8px 20px rgba(0,0,0,.25); 
}
.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
  background: linear-gradient(135deg, #1e293b, var(--text));
}
.btn-ghost { 
  background: rgba(255,255,255,.5); 
  border: 1px solid rgba(14,20,35,.2); 
}
.btn-lg { 
  padding: 16px 28px; 
  font-size: 16px; 
}
.btn-sm { 
  padding: 8px 12px; 
  font-size: 13px; 
}
.btn-block { 
  width: 100%; 
}

.lead-form { margin-top: 14px; }
.form-grid { grid-template-columns: repeat(2, 1fr); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field.checkbox { flex-direction: row; align-items: center; gap: 10px; }
label { font-size: 13px; color: var(--muted); }
input, select, textarea { width: 100%; padding: 12px 12px; border-radius: 10px; border: 1px solid rgba(14,20,35,.12); background: #ffffff; color: var(--text); outline: none; }
input:focus, select:focus, textarea:focus { border-color: rgba(91,123,255,.6); box-shadow: 0 0 0 3px rgba(91,123,255,.16); }
.error { color: var(--danger); font-size: 12px; min-height: 16px; }
.actions { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.form-status { color: var(--muted); font-size: 13px; }
.thank-you { background: #f2fff9; border: 1px solid rgba(70,240,194,.45); border-radius: var(--radius); padding: 16px; margin-top: 16px; }
.roi-form { margin-top: 10px; }
.kpi-grid { grid-template-columns: repeat(3, 1fr); margin-top: 12px; }
.roi-result { margin-top: 12px; }

/* Contact Buttons Section */
.contact-buttons {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 32px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
  animation: floatContact 6s ease-in-out infinite;
}

.contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.contact-btn:hover {
  transform: translateY(-8px) translateZ(20px) rotateX(5deg) scale(1.05);
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  animation: none;
}

.contact-btn:hover::before {
  opacity: 1;
}

.contact-btn:hover::after {
  opacity: 1;
}

@keyframes floatContact {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.contact-btn.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  animation-delay: 0s;
}

.contact-btn.whatsapp::before {
  background: linear-gradient(135deg, #128C7E, #075E54);
}

.contact-btn.whatsapp:hover {
  box-shadow: 0 24px 64px rgba(37, 211, 102, 0.5), 0 0 0 2px rgba(37, 211, 102, 0.3);
}

.contact-btn.telegram {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  color: white;
  animation-delay: 0.3s;
}

.contact-btn.telegram::before {
  background: linear-gradient(135deg, #229ED9, #1B7FC1);
}

.contact-btn.telegram:hover {
  box-shadow: 0 24px 64px rgba(42, 171, 238, 0.5), 0 0 0 2px rgba(42, 171, 238, 0.3);
}

.contact-btn svg {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.contact-btn:hover svg {
  transform: scale(1.1) rotateZ(-5deg);
}

.contact-btn-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.contact-btn-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.contact-btn-subtitle {
  font-size: 14px;
  opacity: 0.95;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,.1);
}

@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
  }
  
  .contact-btn {
    padding: 24px;
  }
  
  .contact-btn-title {
    font-size: 20px;
  }
  
  .contact-btn svg {
    width: 40px;
    height: 40px;
  }
}

.booking { margin-top: 10px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(14,20,35,.08); box-shadow: var(--shadow); background: #ffffff; }

.site-footer { padding: 28px 0; border-top: 1px solid rgba(14,20,35,.08); background: #f7f8fa; color: var(--muted); font-size: 13px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; }
.brand-row { display: flex; align-items: center; gap: 12px; }
.brand-row .brand-logo { width: 36px; height: 36px; }
.brand-row .brand-name { font-size: 18px; font-weight: 700; color: var(--text); }
.links { display: flex; gap: 14px; }
.copy { text-align: right; }

.faq details { border: 1px solid rgba(108,140,255,.2); border-radius: 10px; padding: 12px 14px; background: rgba(255,255,255,.5); }
.faq details + details { margin-top: 10px; }
.faq summary { cursor: pointer; font-weight: 600; }
.use-cases ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.use-cases li { margin: 6px 0; }

.consent { position: fixed; inset: auto 16px 16px 16px; background: rgba(255,255,255,.96); border: 1px solid rgba(14,20,35,.12); border-radius: 12px; box-shadow: var(--shadow); z-index: 60; }
.consent-inner { padding: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.consent-actions { display: flex; gap: 8px; }

/* Dark Integrations Section */
.section.dark .container {
  position: relative;
  z-index: 1;
}

.section-badge { 
  display: inline-block; 
  background: rgba(255,255,255,.1); 
  color: white; 
  padding: 8px 16px; 
  border-radius: 20px; 
  font-size: 12px; 
  font-weight: 600; 
  letter-spacing: 0.5px; 
  margin-bottom: 16px; 
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
}

.integrations-grid-3d { 
  display: flex; 
  gap: 20px; 
  justify-content: center; 
  flex-wrap: wrap; 
  margin-top: 40px; 
}

.integration-card { 
  background: rgba(255,255,255,.05); 
  border: 1px solid rgba(255,255,255,.1); 
  border-radius: 16px; 
  padding: 20px; 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  min-width: 160px; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  position: relative; 
  overflow: hidden; 
  animation: float 6s ease-in-out infinite; 
  transform-style: preserve-3d;
  perspective: 1000px;
}

.integration-card:nth-child(1) { animation-delay: 0s; }
.integration-card:nth-child(2) { animation-delay: 0.5s; }
.integration-card:nth-child(3) { animation-delay: 1s; }
.integration-card:nth-child(4) { animation-delay: 1.5s; }
.integration-card:nth-child(5) { animation-delay: 2s; }
.integration-card:nth-child(6) { animation-delay: 2.5s; }
.integration-card:nth-child(7) { animation-delay: 3s; }
.integration-card:nth-child(8) { animation-delay: 3.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

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

.integration-card:hover::before { 
  left: 100%; 
}

.integration-card:hover { 
  transform: translateY(-8px) translateZ(20px) rotateX(5deg); 
  border-color: rgba(255,255,255,.3); 
  box-shadow: 0 30px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1); 
  background: rgba(255,255,255,.1);
}

.integration-card:hover .card-logo {
  background: rgba(255,255,255,.15);
}

.card-logo { 
  width: 72px; 
  height: 72px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border-radius: 8px; 
  background: #ffffff; 
  border: 1px solid rgba(0,0,0,.06);
  transition: all 0.3s ease; 
  padding: 8px;
  overflow: hidden; /* prevent logo overflow */
}

.card-logo img,
.card-logo svg { 
  width: auto;
  height: 28px;
  max-width: 90%;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
  filter: none;
}

.integration-card:hover .card-logo img,
.integration-card:hover .card-logo svg { 
  transform: none; /* prevent overflow artifacts */
  filter: none;
}

/* Specific logo colors on hover */
.integration-card:hover .card-logo {
  background: rgba(255,255,255,.95);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

/* Integration Categories */
.integration-category {
  margin-bottom: 60px;
}

.integration-category h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
}

.integration-category h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(99, 102, 241, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.8), 0 0 30px rgba(139, 92, 246, 0.6);
  }
}

/* Particle Background Effect */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(59,130,246,.3);
  border-radius: 50%;
  animation: particleFloat 20s linear infinite;
  box-shadow: 0 0 10px rgba(59,130,246,.5);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 22s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 20s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 25s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 19s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 23s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 24s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; animation-duration: 20s; }

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) rotateZ(0deg) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) translateX(10px) rotateZ(45deg) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) translateX(-10px) rotateZ(315deg) scale(1);
  }
  100% {
    transform: translateY(0) translateX(0) rotateZ(360deg) scale(0);
    opacity: 0;
  }
}

/* Enhanced 3D Live Background Animation */
.morphing-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.morph-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: morphShape 12s ease-in-out infinite;
}

.morph-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(147,197,253,0.4) 0%, rgba(147,197,253,0.1) 50%, transparent 100%);
  animation-delay: 0s;
}

.morph-shape:nth-child(2) {
  width: 400px;
  height: 400px;
  top: 20%;
  right: -200px;
  background: radial-gradient(circle, rgba(196,181,253,0.4) 0%, rgba(196,181,253,0.1) 50%, transparent 100%);
  animation-delay: 4s;
}

.morph-shape:nth-child(3) {
  width: 350px;
  height: 350px;
  bottom: -175px;
  left: 30%;
  background: radial-gradient(circle, rgba(134,239,172,0.4) 0%, rgba(134,239,172,0.1) 50%, transparent 100%);
  animation-delay: 8s;
}

.morph-shape:nth-child(4) {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 10%;
  background: radial-gradient(circle, rgba(34,197,94,0.4) 0%, rgba(34,197,94,0.1) 50%, transparent 100%);
  animation-delay: 2s;
}

.morph-shape:nth-child(5) {
  width: 320px;
  height: 320px;
  top: 10%;
  left: 60%;
  background: radial-gradient(circle, rgba(59,130,246,0.4) 0%, rgba(59,130,246,0.1) 50%, transparent 100%);
  animation-delay: 6s;
}

@keyframes morphShape {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    border-radius: 50%;
  }
  25% {
    transform: translate(50px, -30px) scale(1.2) rotate(90deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    transform: translate(-30px, 40px) scale(0.8) rotate(180deg);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  75% {
    transform: translate(40px, 20px) scale(1.1) rotate(270deg);
    border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
  }
}

/* Floating gradient orbs */
.floating-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Morphing shapes background container should never block clicks */
.morphing-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
  animation: orbFloat 15s ease-in-out infinite;
}

.orb:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 20%;
  background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, rgba(59,130,246,0.1) 50%, transparent 100%);
  animation-delay: 0s;
}

.orb:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 20%;
  background: radial-gradient(circle, rgba(168,85,247,0.3) 0%, rgba(168,85,247,0.1) 50%, transparent 100%);
  animation-delay: 5s;
}

.orb:nth-child(3) {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.3) 0%, rgba(34,197,94,0.1) 50%, transparent 100%);
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}

/* Comparison Section Styles */
.comparison-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 48px 0;
  align-items: start;
}

.comparison-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border: 1px solid rgba(14,20,35,.06);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card:hover {
  transform: translateY(-4px) translateZ(5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.comparison-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px 0;
  text-align: center;
}

.audio-comparison {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.audio-item {
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.audio-item:hover {
  background: #f0f9ff;
  border-color: #06b6d4;
}

.audio-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px 0;
}

.comparison-audio {
  width: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}

/* Force audio elements to be clickable */
audio {
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* Ensure audio containers don't block clicks */
.audio-item, .demo-audio {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

/* HTML5 Audio Player Styles */
audio {
  width: 100%;
  height: 60px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  outline: none;
  transition: all 0.3s ease;
}

audio:hover {
  border-color: #06b6d4;
  box-shadow: 0 4px 12px rgba(6,182,212,.15);
}

audio::-webkit-media-controls-panel {
  background-color: #f8fafc;
  border-radius: 12px;
}

audio::-webkit-media-controls-play-button {
  background-color: #06b6d4;
  border-radius: 50%;
}

audio::-webkit-media-controls-timeline {
  background-color: #e2e8f0;
  border-radius: 4px;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
  color: #374151;
  font-size: 12px;
}

/* Custom Audio Player Styles */
.custom-audio-player {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
}

.custom-audio-player:hover {
  background: #f0f9ff;
  border-color: #06b6d4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6,182,212,.15);
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  border: none;
  color: white;
  cursor: pointer !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 9999 !important;
  pointer-events: auto !important;
  user-select: none;
  outline: none;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(6,182,212,.3);
}

.play-btn.playing {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.play-btn.playing svg {
  display: none;
}

.play-btn.playing::after {
  content: '⏸';
  font-size: 18px;
}

.audio-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.audio-title {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.audio-duration {
  font-size: 12px;
  color: var(--muted);
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s ease;
}

.comparison-text {
  display: flex;
  align-items: center;
}

.highlight-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid #06b6d4;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-box:hover::before {
  opacity: 0.3;
}

.highlight-box:hover {
  transform: translateY(-2px) translateZ(3px);
}

.highlight-box p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .comparison-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .comparison-card {
    padding: 24px;
  }
  
  .highlight-box {
    padding: 24px;
  }
}

/* Demo Section Styles */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

/* Responsive tweaks for demo comparison grid */
.demo-compare-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) {
  .demo-compare-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero h1 { font-size: 32px; }
  .lead { font-size: 16px; }
  /* Hide overlay info on mobile, show caption below */
  .demo-info-desktop { display: none !important; }
  .demo-info-mobile { display: block !important; }
  /* Global spacing tighten */
  .section { padding: 56px 0; }
  .trusted-by { padding: 40px 0; }
  .cta-row { gap: 12px; margin: 20px auto; }
}

/* Mobile typography for demo info card */
@media (max-width: 768px) {
  .demo-info-card { padding: 14px 16px !important; }
  .demo-info-card h3 { font-size: 16px !important; }
  .demo-info-card p { font-size: 13px !important; }
}

.demo-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14,20,35,.06);
}

.demo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.demo-card:hover::before {
  transform: scaleX(1);
}

.demo-card:hover {
  transform: translateY(-8px) translateZ(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  border-color: rgba(6,182,212,.2);
}

.demo-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.demo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.demo-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.demo-header p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.demo-audio {
  position: relative;
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 2px dashed #e2e8f0;
  transition: all 0.3s ease;
}

.demo-audio:hover {
  border-color: #06b6d4;
  background: #f0f9ff;
}

.audio-player {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 8px;
}

.demo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.demo-placeholder svg {
  color: #06b6d4;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .demo-card {
    padding: 24px;
  }
  
  .demo-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

.integration-card span { 
  color: white; 
  font-weight: 600; 
  font-size: 14px; 
}

/* AI Conversations Section */
.conversations-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 24px; 
  margin-top: 40px; 
}

.conversation-card { 
  background: white; 
  border: 1px solid rgba(14,20,35,.08); 
  border-radius: 16px; 
  padding: 24px; 
  box-shadow: 0 8px 24px rgba(0,0,0,.08); 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  position: relative; 
  overflow: hidden; 
  transform-style: preserve-3d;
  perspective: 1000px;
}

.conversation-card::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 4px; 
  background: linear-gradient(90deg, #06b6d4, #8b5cf6, #ec4899); 
  transform: scaleX(0); 
  transition: transform 0.3s ease; 
}

.conversation-card:hover::before { 
  transform: scaleX(1); 
}

.conversation-card:hover { 
  transform: translateY(-8px) translateZ(20px) scale(1.02); 
  box-shadow: 0 24px 64px rgba(0,0,0,.16), 0 0 0 1px rgba(6,182,212,.2); 
}

.conversation-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 12px; 
}

.conversation-header h3 { 
  margin: 0; 
  font-size: 18px; 
  font-weight: 700; 
}

.duration { 
  background: #f1f5f9; 
  color: #64748b; 
  padding: 4px 8px; 
  border-radius: 12px; 
  font-size: 12px; 
  font-weight: 600; 
}

.conversation-desc { 
  color: #64748b; 
  margin-bottom: 16px; 
  line-height: 1.5; 
}

.audio-player-container { 
  margin-bottom: 16px; 
}

.conversation-audio { 
  width: 100%; 
  height: 40px; 
  border-radius: 8px; 
  filter: saturate(1.1); 
}

.conversation-meta { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
}

.industry, .outcome { 
  background: #f8fafc; 
  color: #475569; 
  padding: 6px 12px; 
  border-radius: 12px; 
  font-size: 12px; 
  font-weight: 600; 
}

.outcome { 
  background: #dcfce7; 
  color: #166534; 
}

@media (max-width: 980px) {
  .hero h1 { font-size: 48px; }
  .feature-cards { grid-template-columns: 1fr; }
  .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .audio-grid { grid-template-columns: 1fr 1fr; }
  .integrations-grid { grid-template-columns: 1fr 1fr; }
  .logo-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .trusted-logos { grid-template-columns: repeat(4, 1fr); }
  .conversations-grid { grid-template-columns: 1fr; }
  .integrations-grid-3d { flex-direction: column; align-items: center; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .hero h1 { font-size: 36px; }
  .hero-content { padding: 0 20px; }
  .cta-row { flex-direction: column; align-items: center; }
  .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .audio-grid { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .copy { text-align: center; }
  .trusted-logos { grid-template-columns: repeat(2, 1fr); }
}

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

/* Sparkle Effect */
.sparkle {
  position: fixed;
  width: 20px;
  height: 20px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  animation: sparkleAnimation 1s ease-out forwards;
}

.sparkle::before,
.sparkle::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,.8), transparent);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sparkle::after {
  transform: translateY(-50%) rotate(90deg);
}

@keyframes sparkleAnimation {
  0% {
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2) rotate(180deg);
    opacity: 0;
  }
}

/* Floating Action Button */
.fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 50%;
  border: none;
  box-shadow: 0 8px 24px rgba(6,182,212,.4), 0 0 0 0 rgba(6,182,212,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fabPulse 2s infinite;
  transform-style: preserve-3d;
}

.fab:hover {
  transform: translateY(-4px) scale(1.1) rotateZ(90deg);
  box-shadow: 0 12px 32px rgba(6,182,212,.5), 0 0 0 8px rgba(6,182,212,.1);
}

.fab:active {
  transform: translateY(-2px) scale(1.05);
}

@keyframes fabPulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(6,182,212,.4), 0 0 0 0 rgba(6,182,212,.4);
  }
  50% {
    box-shadow: 0 8px 24px rgba(6,182,212,.4), 0 0 0 12px rgba(6,182,212,.0);
  }
}

.fab-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.modal[hidden] {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,.2), 0 0 0 1px rgba(0,0,0,.05);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--muted);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-close:hover {
  background: rgba(15, 23, 42, 0.1);
  transform: rotate(90deg) scale(1.1);
  color: var(--text);
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 40px 12px 40px;
  text-align: center;
  color: var(--text);
}

.modal-description {
  color: var(--muted);
  text-align: center;
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.modal-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-btn:hover {
  transform: translateY(-2px) translateZ(10px);
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
}

.modal-btn:hover::before {
  opacity: 1;
}

.modal-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.modal-btn.whatsapp::before {
  background: linear-gradient(135deg, #128C7E, #075E54);
}

.modal-btn.whatsapp:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.modal-btn.telegram {
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  color: white;
}

.modal-btn.telegram::before {
  background: linear-gradient(135deg, #229ED9, #1B7FC1);
}

.modal-btn.telegram:hover {
  box-shadow: 0 12px 32px rgba(42, 171, 238, 0.4);
}

.modal-btn svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.2));
  position: relative;
  z-index: 1;
}

.modal-btn-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.modal-btn-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.modal-btn-subtitle {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 500;
}

@media (max-width: 640px) {
  .modal-content {
    padding: 32px 24px;
  }
  
  .modal-title {
    font-size: 24px;
  }
  
  .modal-btn {
    padding: 16px 20px;
  }
  
  .modal-btn-title {
    font-size: 16px;
  }
  
  .modal-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* Custom Audio Player Styles */
.audio-player {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 16px;
  padding: 30px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible !important;
  z-index: 10;
  min-height: 120px !important;
}

.audio-player:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.audio-player audio {
  display: none;
}

.player-controls {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
  padding: 10px !important;
  position: relative !important;
  z-index: 1000 !important;
  overflow: visible !important;
}

.play-pause-btn {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  background: #ff0000 !important;
  border: 4px solid #ffffff !important;
  color: white !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 30px rgba(255, 0, 0, 1), 0 0 0 6px rgba(255, 0, 0, 0.4) !important;
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  overflow: visible !important;
  z-index: 999999 !important;
  min-width: 70px !important;
  min-height: 70px !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: scale(1) !important;
  visibility: visible !important;
}

.play-pause-btn:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 8px 30px rgba(255, 68, 68, 1), 0 0 0 6px rgba(255, 68, 68, 0.4) !important;
  background: #ff6666 !important;
}

.play-pause-btn:active {
  transform: scale(0.9) !important;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.8) !important;
}

.play-pause-btn.playing {
  background: #00ff00 !important;
  box-shadow: 0 6px 25px rgba(0, 255, 0, 0.8), 0 0 0 4px rgba(0, 255, 0, 0.3) !important;
  border: 3px solid #ffffff !important;
}

.play-pause-btn.playing:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 8px 30px rgba(0, 255, 0, 1), 0 0 0 6px rgba(0, 255, 0, 0.4) !important;
  background: #33ff33 !important;
}

.play-pause-btn svg {
  transition: all 0.3s ease !important;
  width: 32px !important;
  height: 32px !important;
  fill: white !important;
  stroke: none !important;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.7)) !important;
  z-index: 1000000 !important;
  position: relative !important;
}

.player-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin: 0;
}

.time-display {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.current-time {
  font-weight: 500;
  color: var(--brand);
}

.duration {
  color: var(--muted);
}

.progress-container {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.progress-container:hover {
  height: 12px;
  background: rgba(0, 0, 0, 0.15);
}

.progress-bar {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #06b6d4, #0891b2);
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
  border-radius: 0 4px 4px 0;
}

/* Audio comparison specific styles */
.audio-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.audio-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
  text-align: center;
}

/* Loading state */
.audio-player.loading .play-pause-btn {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* 3D анимации для аудио карточек */
@keyframes float3D {
  0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
  25% { transform: translateY(-5px) rotateX(2deg) rotateY(1deg); }
  50% { transform: translateY(-10px) rotateX(0deg) rotateY(0deg); }
  75% { transform: translateY(-5px) rotateX(-2deg) rotateY(-1deg); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

/* Hover эффекты для 3D аудио карточек */
.audio-card:hover {
  transform: translateZ(10px) rotateX(5deg) rotateY(5deg) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(255, 255, 255, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Профессиональные 3D анимации для секции сравнения */
@keyframes sectionFloat {
  0%, 100% { 
    transform: translateY(0px) rotateX(0deg) rotateY(0deg); 
  }
  25% { 
    transform: translateY(-8px) rotateX(1deg) rotateY(0.5deg); 
  }
  50% { 
    transform: translateY(-15px) rotateX(0deg) rotateY(0deg); 
  }
  75% { 
    transform: translateY(-8px) rotateX(-1deg) rotateY(-0.5deg); 
  }
}

@keyframes cardFloat1 {
  0%, 100% { 
    transform: translateY(0px) rotateX(0deg) rotateY(0deg); 
  }
  33% { 
    transform: translateY(-10px) rotateX(2deg) rotateY(1deg); 
  }
  66% { 
    transform: translateY(-5px) rotateX(-1deg) rotateY(-0.5deg); 
  }
}

@keyframes cardFloat2 {
  0%, 100% { 
    transform: translateY(0px) rotateX(0deg) rotateY(0deg); 
  }
  33% { 
    transform: translateY(-8px) rotateX(-2deg) rotateY(-1deg); 
  }
  66% { 
    transform: translateY(-12px) rotateX(1deg) rotateY(0.5deg); 
  }
}

@keyframes cardFloat3 {
  0%, 100% { 
    transform: translateY(0px) rotateX(0deg) rotateY(0deg); 
  }
  25% { 
    transform: translateY(-6px) rotateX(1deg) rotateY(0.5deg); 
  }
  50% { 
    transform: translateY(-12px) rotateX(0deg) rotateY(0deg); 
  }
  75% { 
    transform: translateY(-8px) rotateX(-1deg) rotateY(-0.5deg); 
  }
}

@keyframes orbFloat1 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1); 
  }
  25% { 
    transform: translate(20px, -30px) rotate(90deg) scale(1.1); 
  }
  50% { 
    transform: translate(-10px, -20px) rotate(180deg) scale(0.9); 
  }
  75% { 
    transform: translate(15px, -10px) rotate(270deg) scale(1.05); 
  }
}

@keyframes orbFloat2 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1); 
  }
  33% { 
    transform: translate(-25px, 20px) rotate(120deg) scale(1.2); 
  }
  66% { 
    transform: translate(10px, 30px) rotate(240deg) scale(0.8); 
  }
}

@keyframes orbFloat3 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1); 
  }
  50% { 
    transform: translate(15px, -25px) rotate(180deg) scale(1.15); 
  }
}

@keyframes orbFloat4 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1); 
  }
  25% { 
    transform: translate(-20px, 15px) rotate(90deg) scale(1.1); 
  }
  50% { 
    transform: translate(10px, 25px) rotate(180deg) scale(0.9); 
  }
  75% { 
    transform: translate(-15px, 5px) rotate(270deg) scale(1.05); 
  }
}

/* Мобильная адаптация для секции сравнения */
@media (max-width: 768px) {
  .comparison-section {
    padding: 30px 15px !important;
    gap: 25px !important;
    border-radius: 20px !important;
    max-width: 95% !important;
  }
  
  .comparison-section > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 25px !important;
  }
  
  .comparison-section h3 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
  }
  
  .comparison-section p {
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }
  
  .comparison-section audio {
    height: 50px !important;
    border-radius: 8px !important;
  }
  
  .comparison-section a[href*="wa.me"] {
    padding: 12px 25px !important;
    font-size: 14px !important;
    border-radius: 40px !important;
  }
  
  /* Уменьшаем анимации на мобильных */
  .comparison-section {
    animation: sectionFloatMobile 10s ease-in-out infinite !important;
  }
  
  .comparison-section > div[style*="animation: cardFloat"] {
    animation-duration: 8s !important;
  }
  
  /* Отключаем сложные hover эффекты на мобильных */
  .comparison-section > div[onmouseenter] {
    transition: transform 0.2s ease !important;
  }
  
  .comparison-section > div[onmouseenter]:hover {
    transform: translateY(-5px) scale(1.005) !important;
  }
}

@media (max-width: 480px) {
  .comparison-section {
    padding: 20px 10px !important;
    gap: 20px !important;
    border-radius: 15px !important;
  }
  
  .comparison-section h3 {
    font-size: 18px !important;
  }
  
  .comparison-section p {
    font-size: 13px !important;
  }
  
  .comparison-section audio {
    height: 45px !important;
  }
  
  .comparison-section a[href*="wa.me"] {
    padding: 10px 20px !important;
    font-size: 13px !important;
    border-radius: 35px !important;
    margin-top: 20px !important;
  }
  
  /* Еще более простые анимации для маленьких экранов */
  .comparison-section {
    animation: none !important;
  }
  
  .comparison-section > div[style*="animation: cardFloat"] {
    animation: none !important;
  }
}

@keyframes sectionFloatMobile {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-5px); 
  }
}

/* Анимации для модального окна консультации */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    transform: translate(-50%, -40%) scale(0.9); 
    opacity: 0; 
  }
  to { 
    transform: translate(-50%, -50%) scale(1); 
    opacity: 1; 
  }
}

@keyframes buttonSlideIn {
  from { 
    transform: translateX(-30px); 
    opacity: 0; 
  }
  to { 
    transform: translateX(0); 
    opacity: 1; 
  }
}

@keyframes iconPulse {
  0%, 100% { 
    transform: scale(1); 
  }
  50% { 
    transform: scale(1.1); 
  }
}

/* Additional fixes for main page conflicts */
.audio-player * {
  box-sizing: border-box !important;
}

/* Force button visibility and clickability */
.audio-player .play-pause-btn {
  z-index: 9999 !important;
  position: relative !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  display: flex !important;
  background: linear-gradient(135deg, #06b6d4, #0891b2) !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.6), 0 0 0 3px rgba(6, 182, 212, 0.2) !important;
}

/* Ensure no overlays block the button */
.audio-player .player-controls {
  position: relative !important;
  z-index: 1000 !important;
  pointer-events: auto !important;
}

.audio-player .player-controls::before,
.audio-player .player-controls::after {
  display: none !important;
}

.audio-player .player-controls {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 16px !important;
  position: relative !important;
  z-index: 15 !important;
}

.audio-player .player-info {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  position: relative !important;
  z-index: 15 !important;
}

.audio-player .track-title {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: var(--text) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.audio-player .time-display {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 14px !important;
  color: var(--muted) !important;
}

.audio-player .current-time {
  font-weight: 500 !important;
  color: var(--brand) !important;
}

.audio-player .duration {
  color: var(--muted) !important;
}

.audio-player .progress-container {
  width: 100% !important;
  height: 8px !important;
  background: rgba(0, 0, 0, 0.1) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  z-index: 15 !important;
}

.audio-player .progress-container:hover {
  height: 12px !important;
  background: rgba(0, 0, 0, 0.15) !important;
}

.audio-player .progress-bar {
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.1) !important;
  border-radius: 4px !important;
  position: relative !important;
  overflow: hidden !important;
}

.audio-player .progress-fill {
  height: 100% !important;
  background: linear-gradient(90deg, #06b6d4, #0891b2) !important;
  border-radius: 4px !important;
  width: 0% !important;
  transition: width 0.1s ease !important;
  position: relative !important;
}

/* Audio player responsive */
@media (max-width: 768px) {
  .audio-comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .player-controls {
    gap: 12px;
  }
  
  .play-pause-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }
  
  .play-pause-btn svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  .track-title {
    font-size: 14px !important;
  }
  
  .time-display {
    font-size: 12px !important;
  }
}

/* СОВРЕМЕННЫЕ АУДИОПЛЕЕРЫ */
.audio-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.audio-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.audio-card h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.audio-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.play-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(102, 126, 234, 0.6);
}

.play-btn:active {
  transform: scale(0.95);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.progress-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.progress-bar:hover {
  background: rgba(255, 255, 255, 0.3);
  height: 8px;
  transform: scaleY(1.2);
}

.progress-bar:active {
  transform: scaleY(1.5);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.progress-bar:hover .progress-fill::after {
  opacity: 1;
}

.time-display {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
}

/* РАБОЧИЙ АУДИОПЛЕЕР - СТИЛИ ИЗ ТЕСТОВОГО ФАЙЛА */
.player {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: visible !important;
  min-height: 120px;
}

.player .controls {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.player .play {
  background: #28a745;
  color: white;
  border: 2px solid #fff;
  border-radius: 8px;
  width: 80px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 15px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.player .play:hover {
  background: #218838;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.player .play.playing {
  background: #dc3545;
  border-color: #dc3545;
}

.player .info {
  flex: 1;
  color: white;
  font-weight: 500;
}

.player .progress {
  background: rgba(255, 255, 255, 0.3);
  height: 6px;
  border-radius: 3px;
  cursor: pointer;
  margin: 10px 0;
  position: relative;
}

.player .progress-filled {
  background: #007bff;
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s;
}

.player .time {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-align: center;
  display: block;
  margin-top: 10px;
}