/**
 * Product Features Styles
 * Consolidated: products.css + sign-language.css
 * Includes: Hero sections, stats cards, benefits carousel, use cases carousel
 */

/*--------------------------------------------------------------
# Product Hero Section
--------------------------------------------------------------*/
/* Product hero is now the first section - ensure proper top padding */
#product-hero.hero {
  padding-top: 8rem;
  padding-bottom: 2rem;
  margin-top: 0;
  background: linear-gradient(135deg, #0f3443 0%, #0a3b47 50%, #062a2f 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle radial accent overlay */
#product-hero.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure content is above overlay */
#product-hero .container {
  position: relative;
  z-index: 1;
  text-align: left;
}

#product-hero.hero {
  justify-content: center;
  text-align: left;
}

#product-hero .row,
#product-hero .col-lg-6 {
  text-align: left;
}

/* Text colors for dark background */
#product-hero h1,
#product-hero p {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#product-hero h1 {
  margin: 0 0 1.5rem;
}

#product-hero .hero-title-primary,
#product-hero .hero-title-secondary {
  display: block;
}

#product-hero .hero-title-secondary {
  max-width: 640px;
}

#product-hero p {
  margin: 0 0 2rem;
}

#product-hero .btn-demo-request {
  align-self: flex-start;
}

/* Brand name gradient stays vibrant on dark background */
#product-hero .brand-name-gradient {
  /* Existing gradient is perfect - no changes needed */
}

@media (max-width: 768px) {
  #product-hero.hero {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  #product-hero h1,
  #product-hero p {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  }
}

/*--------------------------------------------------------------
# Product Separator Section
--------------------------------------------------------------*/
.product-separator {
  background: linear-gradient(135deg, #0f3443 0%, #082833 100%);
  padding: 80px 0;
  position: relative;
}

.product-separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.separator-content {
  position: relative;
  z-index: 1;
}

.separator-main-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.separator-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #14b8a6 0%, #059669 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.4);
}

.separator-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .product-separator {
    padding: 60px 0;
  }

  .separator-main-title {
    font-size: 32px;
  }

  .separator-subtitle {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Bootstrap Color Overrides (CONSOLIDATED - Single Source)
--------------------------------------------------------------*/
.bg-primary {
  background-color: #14b8a6 !important;
}

.text-primary {
  color: #14b8a6 !important;
}

.btn-primary {
  background-color: rgba(15, 52, 67, 0.97) !important;
  border-color: rgba(15, 52, 67, 0.97) !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--primary-teal) !important;
  border-color: var(--primary-teal-dark) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--primary-teal);
}

.badge.bg-primary {
  background-color: #14b8a6 !important;
}

.badge.bg-success {
  background-color: #059669 !important;
}

.badge.bg-info {
  background-color: #0d9488 !important;
}

.badge.bg-warning {
  background-color: #2dd4bf !important;
  color: #000000 !important;
}

.badge.bg-secondary {
  background-color: #115e59 !important;
}

.badge.bg-danger {
  background-color: #0a4a52 !important;
}

/*--------------------------------------------------------------
# Partners Carousel
--------------------------------------------------------------*/
.partners-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.partners-section .section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.partners-section .section-title h2 {
  color: #0f3443;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.partners-section .section-title p {
  color: rgba(15, 52, 67, 0.7);
  font-size: 16px;
  margin: 0;
}

.partners-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}

.partners-track {
  display: flex;
  gap: 40px;
  animation: scroll-partners 50s linear infinite;
  width: max-content;
}

.partners-carousel-wrapper:hover .partners-track {
  animation-play-state: paused;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo-item {
  flex-shrink: 0;
  width: 300px;
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 20px;
  transition: all 0.3s ease;
}

.partner-logo-item:hover {
  transform: translateY(-8px) scale(1.1);
}

.partner-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

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

  .partners-section .section-title h2 {
    font-size: 28px;
  }

  .partner-logo-item {
    width: 200px;
    height: 128px;
    padding: 15px;
  }

  .partners-track {
    gap: 30px;
    animation-duration: 30s;
  }
}

/*--------------------------------------------------------------
# Product Cards
--------------------------------------------------------------*/
.product-cards-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.product-cards-title {
  text-align: center;
  padding: 0;
  margin-bottom: 40px;
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 60px;
}

.gradient-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 30px;
}

@media screen and (max-width: 991px) {
  .gradient-cards {
    grid-template-columns: 1fr;
  }
}

.product-card {
  max-width: 550px;
  border: 0;
  width: 100%;
  margin-inline: auto;
}

.container-card {
  position: relative;
  border: 2px solid transparent;
  background: #ffffff;
  background-clip: padding-box;
  border-radius: 45px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.container-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(20, 184, 166, 0.25);
}

.container-card img,
.container-card svg {
  margin-bottom: 32px;
}

.bg-teal-box,
.bg-cyan-box,
.bg-emerald-box,
.bg-blue-box {
  position: relative;
}

.bg-teal-box::after,
.bg-cyan-box::after,
.bg-emerald-box::after,
.bg-blue-box::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  content: "";
  z-index: -1;
  border-radius: 45px;
}

.bg-teal-box::after {
  background: linear-gradient(71deg, #082833, #14b8a6, #0f3443);
}

.bg-cyan-box::after {
  background: linear-gradient(71deg, #0a4a52, #2dd4bf, #082833);
}

.bg-emerald-box::after {
  background: linear-gradient(71deg, #064e3b, #059669, #0d9488);
}

.bg-blue-box::after {
  background: linear-gradient(71deg, #0c2f3e, #0d9488, #115e59);
}

.product-card-title {
  font-weight: 600;
  color: #0f3443;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-style: normal;
  font-size: 28px;
  padding-bottom: 8px;
  margin: 0;
}

.product-card-description {
  font-weight: 600;
  line-height: 32px;
  color: rgba(15, 52, 67, 0.7);
  font-size: 16px;
  max-width: 470px;
  margin: 0;
}

/*--------------------------------------------------------------
# How It Works Section
--------------------------------------------------------------*/
.how-it-works-section {
  background: linear-gradient(135deg, #0f3443 0%, #0a3b47 50%, #062a2f 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

/* Subtle radial accent overlay */
.how-it-works-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure content is above overlay */
.how-it-works-section .container {
  position: relative;
  z-index: 1;
}

.how-it-works-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(20, 184, 166, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
}

.how-it-works-image:hover {
  box-shadow:
    0 0 40px rgba(20, 184, 166, 0.5),
    0 15px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}

.how-it-works-image img {
  width: 100%;
  height: auto;
  display: block;
}

.how-it-works-content {
  padding-left: 2rem;
}

.how-it-works-content h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.how-it-works-content .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}

.how-it-works-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.how-it-works-features .feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(15, 52, 67, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: all 0.3s ease;
}

.how-it-works-features .feature-item:hover {
  background: rgba(15, 52, 67, 0.6);
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateX(8px);
}

.how-it-works-features .feature-item i {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #14b8a6 0%, #059669 100%);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.how-it-works-features .feature-item h4 {
  color: #2dd4bf;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.how-it-works-features .feature-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991px) {
  .how-it-works-section {
    padding: 4rem 0;
  }

  .how-it-works-content {
    padding-left: 0;
  }

  .how-it-works-content h2 {
    font-size: 2rem;
    margin-top: 2rem;
  }

  .how-it-works-content .lead {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 3rem 0;
  }

  .how-it-works-content h2 {
    font-size: 1.75rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  }

  .how-it-works-content .lead {
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .how-it-works-features .feature-item {
    padding: 1rem;
    gap: 1rem;
  }

  .how-it-works-features .feature-item i {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .how-it-works-features .feature-item h4 {
    font-size: 1rem;
  }

  .how-it-works-features .feature-item p {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# Stats Cards
--------------------------------------------------------------*/
.stats-card {
  background: linear-gradient(135deg, rgba(15, 52, 67, 0.98) 0%, rgba(8, 40, 51, 1) 100%);
  border-radius: 20px;
  padding: 24px 20px;
  width: 100%;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 184, 166, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #14b8a6 0%, #059669 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.stats-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  z-index: 0;
}

.stats-card:hover {
  transform: translateY(-12px) translateZ(20px) rotateX(2deg);
  box-shadow:
    0 20px 60px rgba(20, 184, 166, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(20, 184, 166, 0.6);
  background: linear-gradient(135deg, rgba(20, 62, 82, 0.98) 0%, rgba(15, 52, 67, 1) 100%);
}

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

.stats-card:hover::after {
  opacity: 1;
}

.stats-card:active {
  transform: translateY(-10px) translateZ(15px) rotateX(1deg);
}

.stats-card > * {
  position: relative;
  z-index: 1;
}

.stats-icon {
  --stats-icon-start: #14b8a6;
  --stats-icon-end: #059669;
  --stats-icon-shadow: rgba(20, 184, 166, 0.25);
  --stats-icon-shadow-strong: rgba(20, 184, 166, 0.45);
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--stats-icon-start) 0%, var(--stats-icon-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.4s ease;
  box-shadow:
    0 3px 10px var(--stats-icon-shadow),
    inset 0 -2px 6px rgba(0, 0, 0, 0.25);
  position: relative;
  transform-style: preserve-3d;
}

.stats-icon i {
  font-size: 24px;
  color: #ffffff;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.stats-card:hover .stats-icon {
  transform: translateY(-4px) translateZ(30px) rotate(5deg) scale(1.1);
  box-shadow:
    0 12px 24px var(--stats-icon-shadow-strong),
    inset 0 -2px 8px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.stats-card:hover .stats-icon i {
  transform: scale(1.15) translateZ(10px);
}

.stats-icon--global {
  --stats-icon-start: #a0c4ff;
  --stats-icon-end: #8bbffa;
  --stats-icon-shadow: rgba(160, 196, 255, 0.35);
  --stats-icon-shadow-strong: rgba(160, 196, 255, 0.5);
}

.stats-icon--community {
  --stats-icon-start: #ffd6e8;
  --stats-icon-end: #ffb3d2;
  --stats-icon-shadow: rgba(255, 182, 208, 0.35);
  --stats-icon-shadow-strong: rgba(255, 182, 208, 0.5);
}

.stats-icon--economy {
  --stats-icon-start: #c9f7dd;
  --stats-icon-end: #9ee8bc;
  --stats-icon-shadow: rgba(158, 232, 188, 0.35);
  --stats-icon-shadow-strong: rgba(158, 232, 188, 0.5);
}

.stats-icon--equity {
  --stats-icon-start: #ffe5c4;
  --stats-icon-end: #ffcba0;
  --stats-icon-shadow: rgba(255, 203, 160, 0.35);
  --stats-icon-shadow-strong: rgba(255, 203, 160, 0.5);
}

.stats-icon--languages {
  --stats-icon-start: #e3dcff;
  --stats-icon-end: #cabfff;
  --stats-icon-shadow: rgba(202, 191, 255, 0.35);
  --stats-icon-shadow-strong: rgba(202, 191, 255, 0.5);
}

.stats-icon--growth {
  --stats-icon-start: #d6f8ff;
  --stats-icon-end: #aeefff;
  --stats-icon-shadow: rgba(174, 239, 255, 0.35);
  --stats-icon-shadow-strong: rgba(174, 239, 255, 0.5);
}

.stats-icon--literacy {
  --stats-icon-start: #ffc4e1;
  --stats-icon-end: #ff9dd1;
  --stats-icon-shadow: rgba(255, 157, 209, 0.35);
  --stats-icon-shadow-strong: rgba(255, 157, 209, 0.5);
}

.stats-number {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
}

.stats-card:hover .stats-number {
  color: #2dd4bf;
  transform: scale(1.05) translateZ(10px);
  text-shadow: 0 4px 12px rgba(45, 212, 191, 0.5);
}

.stats-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stats-description {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  flex-grow: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stats-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 184, 166, 0.2);
  margin-top: auto;
}

.stats-source .badge {
  font-size: 11px;
  padding: 4px 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-source i {
  color: #2dd4bf;
  font-size: 16px;
  transition: transform 0.3s ease;
  opacity: 0.8;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.stats-card:hover .stats-source i {
  transform: translateX(4px) translateZ(5px);
  opacity: 1;
}

@media (max-width: 768px) {
  .stats-card {
    padding: 20px 16px;
  }

  .stats-number {
    font-size: 28px;
  }

  .stats-icon {
    width: 44px;
    height: 44px;
  }

  .stats-icon i {
    font-size: 20px;
  }

  .stats-card:hover {
    transform: translateY(-8px) translateZ(10px);
  }
}

/* Pulse animation for cards on load */
@keyframes pulse-card {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.stats-card.loaded {
  animation: pulse-card 0.6s ease-out;
}

/*--------------------------------------------------------------
# Use Cases Section - Reduced Top Spacing
--------------------------------------------------------------*/
#use-cases.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/*--------------------------------------------------------------
# FAQ Section - Reduced Top Spacing
--------------------------------------------------------------*/
#faq.section {
  padding-top: 2rem;
}

/*--------------------------------------------------------------
# Use Cases Carousel
--------------------------------------------------------------*/
.use-cases-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 500px;
  max-width: 1400px;
  margin: auto;
  background-color: rgba(15, 52, 67, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  flex-direction: column;
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

#use-cases-left {
  height: 50%;
  flex: 0 0 auto;
  display: flex;
  width: 100%;
}

#use-cases-left .use-cases-nav {
  display: flex;
  list-style: none;
  align-content: stretch;
  flex-direction: column;
  flex: 1 1 auto;
  margin: auto;
  padding: 0;
  box-sizing: border-box;
}

.use-case-nav-item input {
  display: none;
}

.use-case-nav-item label {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0.6;
  height: 70px;
  padding: 0 30px;
  text-align: left;
  line-height: 70px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
}

.use-case-nav-item label i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.use-case-nav-item label:hover {
  opacity: 0.9;
  background: linear-gradient(to right, transparent, rgba(20, 184, 166, 0.15));
}

.use-case-nav-item label:hover i {
  transform: scale(1.2);
}

.use-case-content {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(100%);
  height: 50%;
  width: 100%;
  transition: 0.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
  padding: 30px;
  box-sizing: border-box;
}

.use-case-image-container {
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.use-case-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.use-case-image-container--transparent {
  isolation: isolate;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.use-case-image-container--transparent img {
  mix-blend-mode: screen;
  filter: brightness(1.15) saturate(1.05) drop-shadow(0 16px 32px rgba(15, 52, 67, 0.35));
}

.use-case-text-content {
  text-align: center;
  color: white;
}

.use-case-title {
  font-size: 24px;
  font-weight: 600;
  color: #2dd4bf;
  margin-bottom: 15px;
}

.use-case-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

#use-cases-right {
  width: 100%;
  flex: 1 0 auto;
  height: 50%;
}

input:checked ~ .use-case-content {
  transform: translateY(0%);
  transition: transform 1s;
  opacity: 1;
}

input:checked ~ label {
  opacity: 1;
  color: #2dd4bf;
  border-right: solid 4px #14b8a6;
  background: linear-gradient(to right, transparent, rgba(20, 184, 166, 0.2));
}

input:checked ~ label i {
  transform: scale(1.2);
  color: #14b8a6;
}

@media (min-width: 768px) {
  .use-cases-carousel {
    flex-direction: row;
    min-height: 500px;
  }

  #use-cases-left .use-cases-nav {
    border-right: 2px solid rgba(20, 184, 166, 0.3);
  }

  .use-case-content {
    width: 70%;
    height: 100%;
    pointer-events: auto;
    transform: translateX(100%);
    flex-direction: row;
    gap: 40px;
    padding: 50px 60px 50px 50px;
  }

  input:checked ~ .use-case-content {
    transform: translateX(0%);
  }

  .use-case-image-container {
    flex: 0 0 auto;
    max-width: 420px;
  }

  .use-case-image-container--transparent {
    max-width: 350px;
  }

  .use-case-image-container--transparent img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
    max-height: 500px;
  }

  .use-case-image-container--transparent img[src*="mobile-view"] {
    max-width: 60%;
    max-height: 380px;
    margin: 0 auto;
  }

  .use-case-text-content {
    flex: 1;
    text-align: left;
    max-width: 500px;
  }

  .use-case-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .use-case-description {
    font-size: 15px;
    line-height: 1.7;
  }

  #use-cases-left {
    width: 30%;
    height: 100%;
  }

  #use-cases-right {
    height: 100%;
    width: 70%;
  }

  input:checked ~ label {
    border-right: solid 4px #14b8a6;
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .use-cases-carousel {
    min-height: auto;
    flex-direction: column;
  }

  #use-cases-left {
    width: 100%;
    height: auto;
  }

  #use-cases-left .use-cases-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  #use-cases-right {
    display: none;
  }

  .use-case-nav-item {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .use-case-nav-item input {
    display: none;
  }

  .use-case-nav-item label {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    font-size: 14px;
    opacity: 1;
    color: #2dd4bf;
    border-left: solid 4px #14b8a6;
    background: linear-gradient(to right, rgba(20, 184, 166, 0.15), transparent);
    cursor: default;
  }

  .use-case-nav-item label i {
    font-size: 18px;
    color: #14b8a6;
  }

  .use-case-content {
    position: relative;
    opacity: 1 !important;
    transform: none !important;
    width: 100%;
    height: auto;
    padding: 25px 20px 30px;
    display: flex !important;
    flex-direction: column;
    pointer-events: auto;
    background: linear-gradient(to bottom, rgba(20, 184, 166, 0.05), transparent);
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
  }

  input:checked ~ .use-case-content {
    opacity: 1 !important;
  }

  input:not(:checked) ~ .use-case-content {
    opacity: 1 !important;
    display: flex !important;
  }

  .use-case-image-container {
    max-width: 90%;
    margin: 0 auto 20px;
  }

  .use-case-image-container--transparent {
    overflow: visible;
    max-width: 75%;
  }

  .use-case-image-container img {
    width: 100%;
    height: auto;
    display: block;
    max-height: none;
  }

  .use-case-image-container--transparent img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
    max-height: 320px;
  }

  .use-case-image-container--transparent img[src*="mobile-view"] {
    max-width: 50%;
    max-height: 200px;
    margin: 0 auto;
  }

  .use-case-text-content {
    text-align: center;
  }

  .use-case-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .use-case-description {
    font-size: 14px;
    line-height: 1.6;
  }
}

/*--------------------------------------------------------------
# Brand Name Gradient Styling
--------------------------------------------------------------*/
.brand-name-gradient {
  font-weight: 800;
  background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 35%, #059669 70%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
  text-shadow: none;
  letter-spacing: 0.5px;
  animation: gradient-shift 6s ease infinite;
  background-size: 200% auto;
}

@supports (background-clip: text) {
  .brand-name-gradient {
    color: transparent;
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@media (max-width: 768px) {
  .brand-name-gradient {
    letter-spacing: 0.3px;
  }
}

/*--------------------------------------------------------------
# Hero CTA Button - High Visibility
--------------------------------------------------------------*/
.btn-demo-request {
  background-color: #14b8a6 !important;
  border: 2px solid #14b8a6 !important;
  color: #0f3443 !important;
  font-weight: 600;
  border-radius: 10px !important;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
}

.btn-demo-request:hover,
.btn-demo-request:focus {
  background-color: #2dd4bf !important;
  border-color: #2dd4bf !important;
  color: #0f3443 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.5);
}

/*--------------------------------------------------------------
# Hero Video with Rounded Border & Glow Effect
--------------------------------------------------------------*/

/* Make video column full height */
#product-hero .row {
  align-items: stretch;
  min-height: 500px;
}

#product-hero .hero-img {
  display: flex;
  align-items: stretch;
}

.hero-video-wrapper {
  max-width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}

.hero-video-container {
  position: relative;
  --hero-video-radius: 20px;
  border-radius: var(--hero-video-radius);
  border: 4px solid #14b8a6;
  box-shadow:
    0 0 30px rgba(20, 184, 166, 0.4),
    0 0 60px rgba(20, 184, 166, 0.2),
    0 10px 40px rgba(0, 0, 0, 0.3);
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

/* Subtle pulse animation on hover */
.hero-video-container:hover {
  box-shadow:
    0 0 40px rgba(20, 184, 166, 0.6),
    0 0 80px rgba(20, 184, 166, 0.3),
    0 15px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.video-content {
  border-radius: calc(var(--hero-video-radius) - 4px);
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 0;
  font-size: 0;
  display: flex;
  flex: 1;
}

.video-content video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: top;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-video-wrapper {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Benefits Carousel
--------------------------------------------------------------*/
#benefits.section {
  padding-bottom: 2rem;
}

.benefits-carousel-wrapper {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 0 110px 0;
}

.benefits-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
  background-color: rgba(15, 52, 67, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(45, 112, 132, 0.45);
  box-shadow: 0 36px 110px rgba(4, 18, 25, 0.6);
}

.benefits-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-slide {
  min-width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 40px 100px 40px 60px;
  gap: 45px;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-slide.active {
  opacity: 1;
  transform: scale(1);
}

.benefit-visual {
  flex: 0 0 62%;
  max-width: 720px;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: clamp(260px, 36vw, 420px);
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(15, 52, 67, 0.92);
  box-shadow:
    0 40px 110px rgba(4, 20, 27, 0.6),
    inset 0 0 0 1px rgba(88, 170, 180, 0.24);
}

.benefit-visual video,
.benefit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefit-slide--tesekkur .benefit-visual video,
.benefit-slide[data-icon="bi-diagram-3"] .benefit-visual video {
  object-fit: contain;
  background-color: rgba(15, 52, 67, 0.92);
}

.benefit-slide[data-icon="bi-clock"] .benefit-visual img,
.benefit-slide[data-icon="bi-easel3"] .benefit-visual img {
  object-fit: contain;
  background-color: rgba(15, 52, 67, 0.92);
}

.benefit-visual-icon {
  flex: 0 0 62%;
  max-width: 720px;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.benefit-icon-container {
  width: 85%;
  height: 85%;
  border-radius: 24px;
  background: #0f3443;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 30px 78px rgba(12, 39, 48, 0.6),
    inset 0 -6px 16px rgba(0, 0, 0, 0.32),
    inset 0 6px 12px rgba(255, 255, 255, 0.2);
  animation: float 3.2s ease-in-out infinite;
}

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

.benefit-icon-container i {
  font-size: 90px;
  color: #ffffff;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.benefit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
  width: 100%;
}

.benefit-title {
  font-size: 30px;
  font-weight: 700;
  color: #f2fbf9;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(2, 21, 27, 0.35);
}

.benefit-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #7fd6cc;
  margin: 0;
  line-height: 1.3;
}

.benefit-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(226, 241, 238, 0.9);
  margin: 0;
}

.benefit-note {
  font-size: 13px;
  color: rgba(194, 228, 224, 0.78);
  font-style: italic;
  margin: 2px 0 0 0;
  line-height: 1.4;
}

/* Navigation Arrows */
.benefit-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(15, 52, 67, 0.52);
  border: 1px solid rgba(67, 152, 163, 0.45);
  color: #e6f7f4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 36px rgba(4, 20, 27, 0.5);
  z-index: 10;
}

.benefit-nav-btn:hover {
  background-color: rgba(15, 52, 67, 0.92);
  border-color: rgba(118, 210, 205, 0.75);
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.benefit-nav-prev {
  left: 40px;
}

.benefit-nav-next {
  right: 40px;
}

.benefit-nav-btn i {
  font-size: 22px;
}

/* Preview Indicators */
.benefits-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  background-color: rgba(15, 52, 67, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  border: 1px solid rgba(68, 155, 166, 0.35);
  box-shadow: 0 12px 32px rgba(3, 20, 27, 0.4);
  flex-wrap: wrap;
  justify-content: center;
}

.benefit-indicator {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 52, 67, 0.36);
  border: 2px solid rgba(92, 179, 185, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(214, 240, 236, 0.8);
}

.benefit-indicator i {
  font-size: 20px;
  transition: all 0.3s ease;
}

.benefit-indicator:hover {
  background: rgba(15, 52, 67, 0.6);
  border-color: rgba(118, 210, 205, 0.7);
  color: #0f3443;
  transform: scale(1.08);
}

.benefit-indicator.active {
  background: #0f3443;
  border-color: rgba(118, 210, 205, 0.85);
  color: #dff7f4;
  box-shadow: 0 0 22px rgba(47, 162, 154, 0.55);
}

@media (max-width: 991px) {
  .benefit-slide {
    flex-direction: column;
    align-items: center;
    padding: 40px 50px;
    gap: 30px;
    min-height: auto;
  }

  .benefit-visual,
  .benefit-visual-icon {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: auto;
    aspect-ratio: 18 / 9;
  }

  .benefit-content {
    text-align: center;
    align-items: center;
    gap: 10px;
  }

  .benefit-title {
    font-size: 26px;
  }

  .benefit-subtitle {
    font-size: 16px;
  }

  .benefit-description {
    font-size: 15px;
  }

  .benefit-nav-btn {
    top: auto;
    bottom: 120px;
    transform: none;
  }

  .benefit-nav-prev {
    left: 28px;
  }

  .benefit-nav-next {
    right: 28px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefit-slide {
    padding: 30px 24px 92px;
    gap: 28px;
  }

  .benefit-title {
    font-size: 24px;
  }

  .benefit-subtitle {
    font-size: 15px;
  }

  .benefit-description {
    font-size: 14px;
  }

  .benefit-note {
    font-size: 12px;
  }

  .benefit-visual {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    min-height: clamp(240px, 65vw, 360px);
  }

  .benefit-visual-icon {
    aspect-ratio: 4 / 3;
    min-height: clamp(240px, 65vw, 360px);
  }

  .benefit-icon-container i {
    font-size: 60px;
  }

  .benefit-content {
    gap: 8px;
  }

  .benefit-nav-btn {
    width: 50px;
    height: 50px;
    bottom: 118px;
  }

  .benefit-nav-btn i {
    font-size: 17px;
  }

  .benefit-nav-prev {
    left: 18px;
  }

  .benefit-nav-next {
    right: 18px;
  }

  .benefits-indicators {
    display: none;
  }

  .benefit-indicator {
    width: 44px;
    height: 44px;
  }

  .benefit-indicator i {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .benefits-indicators {
    gap: 8px;
    padding: 10px 14px;
    max-width: calc(100% - 32px);
  }

  .benefit-indicator {
    width: 38px;
    height: 38px;
  }

  .benefit-indicator i {
    font-size: 16px;
  }

  .benefit-visual,
  .benefit-visual-icon {
    min-height: clamp(260px, 70vw, 360px);
  }
}

@media (max-width: 400px) {
  .benefit-indicator {
    width: 34px;
    height: 34px;
  }

  .benefit-indicator i {
    font-size: 14px;
  }
}
