:root {
  --primary: #6c63ff;
  --primary-dark: #564fd8;
  --secondary: #ff6584;
  --dark: #1a1a2e;
  --darker: #16213e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --bg-darker: #0f0f1a;
  --border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.1);
  --primary-hover: #564fd8;
  --error: #ff6584;
  --success: #6c63ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--darker);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
}

.authModal {
  width: 100%;
  height: 100%;
  position: fixed;
}

#pricing {
  display: none;
  padding: 80px 20px;
  background: black;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 16px;
}

.pricing-header p {
  color: #7f8c8d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background: var(--gray);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  border: 1px solid #eee;
}

.pricing-card.inbound {
  border-top: 4px solid #3498db;
}

.pricing-card.outbound {
  border-top: 4px solid #2ecc71;
}

.card-header h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  font-weight: normal;
  color: #7f8c8d;
}

.features li {
  list-style: none;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn.outbound {
  background: #2ecc71;
}
.btn.inbound {
  background-color: #3498db;
}

@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
  }

  .pricing-card {
    width: 100%;
    max-width: 100%;
  }
}


.industries-modal {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  padding: 20px 0; 
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-height: 70vh; 
  display: flex;
  flex-direction: column;
}

#industries:hover .industries-modal {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.industries-scroll-container {
  overflow-y: auto;
  padding: 0 30px; 
  scrollbar-width: thin;
  scrollbar-color: #4285f4 #f1f1f1;
  flex-grow: 1;
}


.industries-scroll-container::-webkit-scrollbar {
  width: 8px;
}

.industries-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  margin: 10px 0;
}

.industries-scroll-container::-webkit-scrollbar-thumb {
  background: #4285f4;
  border-radius: 10px;
}

.industries-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #3367d6;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 10px 0 30px; 
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(52, 152, 219, 0.3);
}


.industry-card h3 {
  color: #202124;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}


.industry-card p {
  color: #5f6368;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}


header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(26, 26, 46, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--primary);
}

.logo-icon {
  margin-right: 10px;
  font-size: 28px;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li {
  margin-left: 30px;
}

nav ul li:first-child {
  margin-left: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

nav ul li a i {
  margin-right: 8px;
  font-size: 16px;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

.header-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}


.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}


.mobile-auth-buttons {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}


.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.card:hover::before {
  opacity: 0.1;
}


.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(108, 99, 255, 0.3) 0%,
    rgba(108, 99, 255, 0.1) 50%,
    rgba(26, 26, 46, 0) 70%
  );
  z-index: -1;
  animation: pulse 8s infinite alternate;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.hero-phone {
  width: 100%;
  max-width: 400px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--gradient);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px !important;
    text-align: center !important;
  }

  .hero-content {
    flex-direction: column !important;
    justify-content: center !important;
    gap: 40px !important;
  }

  .hero-text {
    padding-right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-text h1 {
    font-size: 36px !important;
  }

  .hero-text p {
    max-width: 100% !important;
  }

  .hero-buttons {
    justify-content: center !important;
  }

  .hero-stats {
    justify-content: center !important;
  }

  .hero-image {
    margin-top: 20px !important;
  }

  .hero-blob {
    width: 400px !important;
    height: 400px !important;
  }
}

.section {
  padding: 80px 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-title p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}


elevenlabs-convai {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition);
}


.convai-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px; 
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.widget-wrapper {
  width: 100%;
  height: 100%;
}


.demo-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-text {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--light);
  text-transform: uppercase;
}

.call-circle {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: white;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.call-circle::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: white;
  background: var(--gradient);
  background-size: 400% 400%;
  z-index: -2;
  animation: gradientBorder 8s ease infinite,
    pulseBorder 3s ease infinite alternate;
}

.call-circle::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  z-index: -3;
  opacity: 0.3;
  filter: blur(20px);
  animation: rotateBorder 20s linear infinite;
}

.sound-visualizer {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 20px;
}

.sound-bar {
  width: 8px;
  height: 15px;
  background: linear-gradient(to top, var(--primary), var(--secondary));
  border-radius: 4px;
  transition: height 0.1s ease-out, opacity 0.2s ease;
  transform-origin: bottom;
  opacity: 0.6;
  animation: soundPulse 1.2s ease infinite alternate;
}

.call-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.call-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.call-btn:active {
  transform: scale(0.95);
}

.call-btn.mute {
  background: rgba(108, 99, 255, 0.3);
}

.call-btn.mute.active {
  background: rgba(255, 101, 132, 0.5);
}

.call-btn.end-call {
  background: rgba(255, 50, 50, 0.3);
}

/* Demo Particles Animation */
.demo-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.demo-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

/* Animations */
@keyframes soundPulse {
  0% {
    transform: scaleY(0.8);
    opacity: 0.4;
  }
  100% {
    transform: scaleY(1.5);
    opacity: 0.8;
  }
}

@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulseBorder {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.services-section {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  padding: 40px 30px;
  text-align: center;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(108, 99, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.2);
  color: var(--secondary);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 50px;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient);
  color: white;
  transform: rotateY(180deg);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
}


.steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.step-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.step p {
  color: rgba(255, 255, 255, 0.7);
}

.step-connector {
  position: absolute;
  top: 30px;
  left: calc(100% - 15px);
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.use-cases {
  background: rgba(0, 0, 0, 0.2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.use-cases::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(108, 99, 255, 0.05),
    rgba(255, 101, 132, 0.05)
  );
  z-index: -1;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.use-case-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.use-case-card:hover {
  background: rgba(108, 99, 255, 0.1);
  transform: translateY(-10px);
  border-color: rgba(108, 99, 255, 0.3);
}

.use-case-icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--primary);
}

.use-case-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.use-case-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}


.integrations {
  text-align: center;
  padding: 80px 0;
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.integration-logo {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) brightness(2);
  opacity: 0.7;
  transition: var(--transition);
}

.integration-logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

.integration-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.testimonials {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.2);
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==");
  opacity: 0.5;
  z-index: -1;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.testimonial-cards {
  display: flex;
  gap: 30px;
  padding: 30px 20px;
}

.testimonial-card {
  max-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}



.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: white;
}

.author-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .testimonial-card {
    min-width: 320px;
    padding: 25px;
  }

  .testimonial-cards {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
    padding: 20px;
  }

  .testimonial-content {
    font-size: 15px;
  }

  .testimonial-cards {
    gap: 20px;
    padding: 20px 15px;
  }

  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    min-width: 260px;
  }

  .testimonials {
    padding: 40px 0;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
  }
}


.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(108, 99, 255, 0.3);
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
}

.faq-question {
  background: rgba(108, 99, 255, 0.05);
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  color: white;
}

.faq-question:hover {
  background: rgba(108, 99, 255, 0.1);
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  color: var(--primary);
  transition: var(--transition);
  font-weight: 300;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 25px 25px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  background: rgba(108, 99, 255, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}


.footer {
  background: var(--darker);
  padding: 60px 0 30px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: none;
}

.footer-logo span {
  color: var(--primary);
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  max-width: 320px;
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 20px;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact p {
  align-items: flex-start;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-contact i {
  margin-right: 12px;
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary);
  text-decoration: underline;
}


@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-heading {
    margin-bottom: 15px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-container {
    padding: 0 15px;
    gap: 25px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links a:hover {
    transform: none; 
  }
}


.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  z-index: -1;
  animation: float 15s infinite ease-in-out;
}

.floating-element-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: 10%;
  right: 5%;
  animation-delay: 3s;
}

.floating-element-3 {
  width: 200px;
  height: 200px;
  background: #00ccff;
  top: 50%;
  left: 30%;
  animation-delay: 6s;
}

/* Particle Animation Container */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.4;
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(-50px, -30px);
  }
  66% {
    transform: translate(30px, 40px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulseBorder {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.02);
    opacity: 1;
  }
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes expand {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(20);
    opacity: 0;
  }
}


@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .testimonial-card {
    min-width: 320px;
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 38px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    text-align: center;
  }

  .step-connector {
    display: none;
  }

  .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  nav ul {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 180px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    transition: var(--transition);
    z-index: 1000;
  }
  #industries {
        display: none !important;
    }

  nav ul.active {
    display: flex;
    right: 0;
  }

  nav ul li {
    margin: 15px 0;
    width: 100%;
  }

  nav ul li a {
    padding: 10px 0;
    font-size: 18px;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .header-buttons {
    display: none;
  }

  .mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(22, 33, 62, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 80px 20px 20px;
  }

  #industries {
        display: none !important;
    }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    justify-content: center;
    padding: 10px 0;
    font-size: 18px;
  }
  .hero-text h1 {
    button {
      width: fit-content;
    }
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1000;
  }

  .header-buttons {
    display: none;
  }

  .mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .hero {
    padding: 150px 0 80px;
  }

  .section {
    padding: 80px 0;
  }

  .testimonial-card {
    min-width: 280px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 30px;
  }
  #industries {
        display: none !important;
    }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .hero-text h1 {
    button {
      width: fit-content;
    }
  }

  .btn {
    width: fit-content;
    text-align: center;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .testimonial-card {
    min-width: 260px;
  }

  .call-circle {
    width: 340px;
    height: 340px;
  }

  .sound-visualizer {
    width: 220px;
    height: 220px;
  }

  .call-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 400px) {
  .hero-text h1 {
    font-size: 26px;
  }
  #industries {
        display: none !important;
    }

  .hero-text p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 15px;
  }

  .call-circle {
    width: 300px;
    height: 300px;
  }

  .sound-visualizer {
    width: 200px;
    height: 200px;
  }
}


.auth-modal {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  backdrop-filter: blur(10px);
  overflow-y: auto;
}

.auth-modal-content {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0px !important;
  padding: 0px !important;
  background: var(--gray);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.auth-form-container {
  width: 50%;
  height: 100vh;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-image-container {
  width: 50%;
  height: 100vh;
  margin: 0px;
  top: 0%;
  right: 0%;
  background-image: url("images/LoginSidebarImage.png");
}

.auth-logo {
  width: 220px;
  height: 62px;
  margin-bottom: 30px;
}

.auth-form-box {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.auth-form-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
  text-align: center;
}

.auth-form-group {
  margin-bottom: 20px;
}

.auth-form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: white;
  font-weight: 500;
}

.auth-form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
  background: black;
  color: white;
}

.auth-form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.3);
}

.auth-remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: white;
}

.auth-remember-me {
  display: flex;
  align-items: center;
}

.auth-remember-me input {
  margin-right: 8px;
}

.auth-forgot-password a {
  color: var(--light);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.auth-forgot-password a:hover {
  text-decoration: underline;
}

.auth-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: var(--transition);
  border: none;
}

.auth-btn-primary {
  background: var(--gradient);
  color: white;
}

.auth-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
}

.auth-btn-secondary {
  background: gray;
  color: var(--light);
  border: 1px solid var(--primary);
}

.auth-btn-secondary:hover {
  background: rgba(108, 99, 255, 0.1);
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.auth-divider-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-divider-text {
  padding: 0 10px;
}

.auth-footer-links {
  margin-top: 30px;
  text-align: center;
}

.auth-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  margin: 0 10px;
  transition: var(--transition);
}

.auth-footer-links a:hover {
  color: var(--primary);
}

.auth-form-toggle {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.auth-form-toggle a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.auth-form-toggle a:hover {
  text-decoration: underline;
}

.auth-error-message {
  color: #ff6584;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.auth-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.auth-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .auth-modal-content {
    flex-direction: column;
    max-width: 500px;
  }

  .auth-form-container,
  .auth-image-container {
    width: 100%;
  }

  .auth-image-container {
    height: 200px;
    width: 100%;
  }

  .auth-form-container {
    padding: 30px;
  }
}


.voice-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  backdrop-filter: blur(10px);
  overflow-y: auto;
}

.voice-modal-content {
  position: relative;
  height: 100vh;
  background: var(--darker);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.voice-modal-close {
  position: absolute;
  top: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.voice-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.voice-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--darker);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}


.dropdown {
  position: relative;
  min-width: 150px;
  border-radius: 8px;
  margin-left: 12px;
}

.dropdown-toggle {
  width: 100%;
  padding: 0.6rem 1rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.dropdown-toggle:hover {
  border-color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background-color: black;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  color: white;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: white;
  color: blue;
}

.dropdown-item.active {
  background-color: rgba(108, 99, 255, 0.2);
  color: var(--primary);
}

.voice-container {
  width: 100%;
  padding: 1rem 2rem 2rem;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.voice-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.voice-card {
  background-color: rgb(34, 34, 34);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.voice-card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
}

.voice-card.selected {
  border-color: var(--primary);
  background-color: rgba(108, 99, 255, 0.1);
}

.voice-card.selected::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent var(--primary) transparent transparent;
}

.voice-card.selected::before {
  content: "✓";
  position: absolute;
  top: 2px;
  right: 6px;
  font-size: 0.7rem;
  color: white;
  z-index: 1;
}

.voice-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.voice-language {
  display: inline-block;
  background-color: rgba(108, 99, 255, 0.2);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.voice-gender {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.voice-gender.male {
  color: #60a5fa;
}

.voice-gender.female {
  color: #f472b6;
}

.voice-gender svg {
  width: 16px;
  height: 16px;
}

.voice-play-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.voice-play-btn:hover {
  background-color: var(--primary-hover);
  transform: scale(1.1);
}

.voice-play-btn.playing {
  background-color: var(--error);
}


.upload-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.upload-modal.show {
  opacity: 1;
  visibility: visible;
}

.upload-modal-content {
  background-color: var(--darker);
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transform: translateY(-20px);
  transition: var(--transition);
}

.upload-modal.show .upload-modal-content {
  transform: translateY(0);
}

.upload-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.upload-modal-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
}

.upload-modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.upload-modal-close:hover {
  color: var(--text-primary);
}

.upload-area {
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.upload-area:hover {
  border-color: var(--primary);
  background-color: rgba(108, 99, 255, 0.05);
}

.upload-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.upload-text {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.file-input {
  display: none;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--text-secondary);
}

.file-info.success {
  color: var(--success);
}

.file-info.error {
  color: var(--error);
}

.upload-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}


@media (max-width: 1200px) {
  .voice-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .voice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .voice-grid {
    grid-template-columns: 1fr;
  }
}
