/* Voice Analytics Page Styles */

/* CSS Variables for Use Cases Hero Section */
:root {
  /* Typography */
  --uc-badge-font-size: clamp(12px, 2.5vw, 14px);
  --uc-title-font-size: clamp(32px, 8vw, 64px);
  --uc-description-font-size: clamp(16px, 3.5vw, 18px);
  --uc-description-line-height: clamp(24px, 4.5vw, 27px);
  
  /* Spacing */
  --uc-badge-padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 24px);
  --uc-button-padding: clamp(16px, 4vw, 18px) clamp(12px, 3vw, 24px);
  --uc-element-gap: clamp(16px, 4vw, 24px);
  --uc-buttons-gap: clamp(10px, 2.5vw, 14px);
  --uc-buttons-margin: clamp(32px, 6vw, 44px);
  --uc-sections-gap: clamp(80px, 15vw, 150px);
  
  /* Colors */
  --uc-text-color: #1F1F1F;
  --uc-button-primary-bg: #1F1F1F;
  --uc-button-primary-color: #FFF;
  --uc-button-outline-color: #1F1F1F;
  --uc-button-outline-bg: transparent;
  
  /* Border Radius */
  --uc-button-radius: 50px;
  --uc-badge-radius: 999px;
  
  /* Font Family */
  --uc-font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.voice-analytics {
  background: #fff;
  color: var(--uc-text-color);
  font-family: var(--uc-font-family);
}

.uc-container {
  max-width: clamp(320px, 90vw, 1400px);
  margin: 0 auto;
  padding: 0;
}

/* Hero Section */
.uc-hero {
  background: #fff;
  color: var(--uc-text-color);
  padding: var(--uc-sections-gap) 0;
  position: relative;
}

.uc-hero__gradient-left,
.uc-hero__gradient-right {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(100px);
}

/* Left large soft gradient (orange->purple) */
.uc-hero__gradient-left::before {
  content: "";
  position: absolute;
  width: clamp(200px, 40vw, 511.6px);
  height: 512.58px;
  left: -5%;
  top: 8%;
  border-radius: 50%;
  background: linear-gradient(93deg, #FFD0AA 0%, #BF56F3 100%);
  opacity: 1;
  z-index: 0;
}

/* Right smaller gradient behind image (blue->purple range) */
.uc-hero__gradient-right::before {
  content: "";
  position: absolute;
  width: clamp(200px, 40vw, 532.57px);
  height: 449.64px;
  right: -5%;
  bottom: -6%;
  border-radius: 50%;
  background: linear-gradient(90deg, #C552F3 0%, #F39D56 100%);
  opacity: 1;
  transform: rotate(-155.84deg);
}

.uc-hero .uc-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--uc-sections-gap);
  align-items: center;
  position: relative;
}

.uc-hero__content {
  position: relative;
  z-index: 10;
}

.uc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--uc-badge-padding);
  background: var(--uc-button-outline-bg);
  border: 1px solid var(--uc-text-color);
  border-radius: var(--uc-badge-radius);
  font-size: var(--uc-badge-font-size);
  font-weight: 500;
  color: var(--uc-text-color);
  font-family: var(--uc-font-family);
  margin-bottom: var(--uc-element-gap);
}

.uc-hero__badge-icon {
  font-size: 1rem;
}

.uc-hero__title {
  font-size: var(--uc-title-font-size);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 var(--uc-element-gap);
  color: var(--uc-text-color);
  font-family: var(--uc-font-family);
}

.uc-hero__subtitle {
  font-size: var(--uc-description-font-size);
  color: var(--uc-text-color);
  margin: 0 0 var(--uc-element-gap);
  line-height: var(--uc-description-line-height);
  font-weight: 400;
  font-family: var(--uc-font-family);
}

.uc-hero__actions {
  display: flex;
  gap: var(--uc-buttons-gap);
  flex-wrap: wrap;
  margin-top: var(--uc-buttons-margin);
}

.uc-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uc-hero__visual img {
  width: clamp(300px, 50vw, 654px);
  height: clamp(350px, 60vw, 720px);
  object-fit: contain;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

/* Buttons */
.uc-btn {
  display: inline-block;
  padding: var(--uc-button-padding);
  border-radius: var(--uc-button-radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  font-family: var(--uc-font-family);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.uc-btn--primary {
  background: var(--uc-button-primary-bg);
  color: var(--uc-button-primary-color);
  border-color: var(--uc-button-primary-bg);
}

.uc-btn--primary:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-2px);
  color: var(--uc-button-primary-color);
}

.uc-btn--outline {
  background: var(--uc-button-outline-bg);
  color: var(--uc-button-outline-color);
  border-color: var(--uc-button-outline-color);
}

.uc-btn--outline:hover {
  background: var(--uc-button-outline-color);
  color: var(--uc-button-primary-color);
  transform: translateY(-2px);
}

/* Benefits Section */
.voice-benefits {
  padding: 120px 0;
  background: #fafafa;
}

.voice-benefits__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.voice-benefits__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.voice-benefits__badge {
  display: inline-block;
  background: #667eea;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.voice-benefits__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.voice-benefits__description {
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

.voice-benefits__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.voice-benefits__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.voice-benefits__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.voice-benefits__card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.voice-benefits__card-text {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

/* Solution Section */
.voice-solution {
  padding: 120px 0;
  background: #fff;
}

.voice-solution__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.voice-solution__badge {
  display: inline-block;
  background: #10b981;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.voice-solution__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.voice-solution__description {
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.6;
  color: #666;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.voice-solution__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.voice-solution__feature {
  text-align: left;
  padding: 32px;
  background: #fafafa;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.voice-solution__feature:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.voice-solution__feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
}

.voice-solution__feature h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.voice-solution__feature p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* How It Works Section */
.voice-how-it-works {
  padding: 120px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
}

.voice-how-it-works__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.voice-how-it-works__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.voice-how-it-works__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #fff;
}

.voice-how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.voice-how-it-works__step {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.voice-how-it-works__step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.voice-how-it-works__step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.voice-how-it-works__step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}

.voice-how-it-works__step p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Use Cases Section */
.voice-use-cases {
  padding: 120px 0;
  background: #fafafa;
}

.voice-use-cases__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.voice-use-cases__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.voice-use-cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.voice-use-cases__card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.voice-use-cases__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.voice-use-cases__card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 24px;
}

.voice-use-cases__card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.voice-use-cases__card p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* CTA Section */
.voice-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
  color: #fff;
  text-align: center;
}

.voice-cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.voice-cta__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.voice-cta__subtitle {
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.voice-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.voice-cta__btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 160px;
  text-align: center;
}

.voice-cta__btn--primary {
  background: #667eea;
  color: #fff;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.voice-cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.voice-cta__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.voice-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .voice-hero__container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .voice-benefits__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .voice-solution__features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
  }
  
  .voice-how-it-works__steps {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
  }
  
  .voice-use-cases__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .voice-hero,
  .voice-benefits,
  .voice-solution,
  .voice-how-it-works,
  .voice-use-cases,
  .voice-cta {
    padding: 80px 0;
  }
  
  .voice-hero__actions {
    justify-content: center;
  }
  
  .voice-hero__btn {
    min-width: 140px;
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .voice-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .voice-cta__btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .voice-hero,
  .voice-benefits,
  .voice-solution,
  .voice-how-it-works,
  .voice-use-cases,
  .voice-cta {
    padding: 60px 0;
  }
  
  .voice-hero__container,
  .voice-benefits__container,
  .voice-solution__container,
  .voice-how-it-works__container,
  .voice-use-cases__container,
  .voice-cta__container {
    padding: 0 16px;
  }
  
  .voice-hero__title,
  .voice-benefits__title,
  .voice-solution__title,
  .voice-how-it-works__title,
  .voice-use-cases__title,
  .voice-cta__title {
    font-size: 2rem;
  }
  
  .voice-analytics-demo {
    min-width: 280px;
    padding: 24px;
  }
  
  .voice-analytics-demo__metric-value {
    font-size: 28px;
  }
} 