/* Whitelabel Page Styles - Modern Design */

/* Base Styles */
.whitelabel {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #fafafa;
}

/* Hero Section */
.whitelabel-hero {
  background: #ffffff;
  color: #1f1f1f;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.whitelabel-hero .uc-hero__actions {
  justify-content: center;
}
.whitelabel-hero__gradient-center {
  width: clamp(150px, 20vw, 250px);
  height: clamp(150px, 20vw, 250px);
}
.whitelabel-hero__gradient-left,
.whitelabel-hero__gradient-right,
.whitelabel-hero__gradient-center {
  position: absolute;
  background: linear-gradient(170.47deg, #E9F8A5 100%, #D3F6CD 86.29%);
  filter: blur(clamp(50px, 10vw, 136.763px));
  transform: matrix(0.2, 0.98, 0.98, -0.2, 0, 0);
  pointer-events: none;
  z-index: -1;
}

.whitelabel-hero__gradient-left {
  left: 20%;
  top: -5%;
  width: clamp(150px, 20vw, 350px);
  height: clamp(150px, 20vw, 350px);
}

.whitelabel-hero__gradient-right {
  right: 30%;
    top: -20%;
    background: linear-gradient(170.47deg, #FDF5DB 3%, #F8D772 86.29%);
    width: 400px;
    height: 400px;
}

.whitelabel-hero__gradient-center {
  left: 50%;
  top: 20%;
  transform: translateX(-50%) matrix(0.2, 0.98, 0.98, -0.2, 0, 0);
  background: linear-gradient(170.47deg, #F1C7F8 3%, #C255F5 86.29%);
}

.whitelabel-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.whitelabel-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

/* .whitelabel-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 24px 0 32px;
  background: linear-gradient(135deg, #1f1f1f 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

/* Use standard hero__subtitle styles from theme */

/* Remove margin-right from uc-hero buttons */
.uc-hero__content .btn--primary,
.uc-hero__content .btn--secondary {
  margin-right: 0;
}

/* Statistics Section */
.whitelabel-stats__container {
  width: 100%;
  max-width: clamp(320px, 100vw, 1200px);
  margin: 0 auto;
  padding: clamp(80px, 15vw, 150px) clamp(15px, 3vw, 20px) 0;
  font-family: 'Roboto', sans-serif;
}

.whitelabel-stats__header {
  text-align: center;
  margin-bottom: 40px;
}

/* Removed custom stats text styles - now using standard stats-text */

.whitelabel-stats__numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  flex-wrap: wrap;
}

.whitelabel-stats__item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.whitelabel-stats__number {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 8px;
}

.whitelabel-stats__label {
  font-size: clamp(16px, 2vw, 20px);
  color: #000000;
  font-weight: 400;
  line-height: 1.2;
}

/* Mobile responsive for statistics */
@media (max-width: 768px) {
  .whitelabel-stats__numbers {
    gap: clamp(20px, 5vw, 30px);
  }
  
  .whitelabel-stats__item {
    min-width: clamp(100px, 15vw, 120px);
  }
}

/* Use standard uc-hero__actions styles from theme */


/* Badge Styles */
/* .badge--primary {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
} */

/* Button Styles */
/* .btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 160px;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  color: #ffffff;
  text-decoration: none;
} */

/* .btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: transparent;
  color: #10B981;
  text-decoration: none;
  border: 2px solid #10B981;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 160px;
}

.btn--secondary:hover {
  background: #10B981;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
  text-decoration: none;
} */

/* Responsive Design */
@media (max-width: 768px) {
  .whitelabel-hero {
    padding: 80px 0 60px;
  }
  
  .whitelabel-hero__container {
    padding: 0;
  }
  
  .whitelabel-hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn--primary,
  .btn--secondary {
    width: 100%;
    max-width: 280px;
  }
  
  
  .whitelabel-hero__gradient-left,
  .whitelabel-hero__gradient-right,
  .whitelabel-hero__gradient-center {
    width: clamp(150px, 60vw, 300px);
    height: clamp(150px, 60vw, 300px);
  }
  
  .whitelabel-hero__gradient-center {
    left: 50%;
    top: 15%;
    transform: translateX(-50%) matrix(0.2, 0.98, 0.98, -0.2, 0, 0);
  }
}

@media (max-width: 480px) {
  .whitelabel-hero {
    padding: 60px 0 40px;
  }
  
  .whitelabel-hero__actions {
    margin-bottom: 40px;
  }
  
}

/* Whitelabel Deployment Section */
.whitelabel-deployment {
  padding: clamp(80px, 15vw, 150px) 0;
  background: #fff;
}

.whitelabel-deployment__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.whitelabel-deployment__content {
  text-align: left;
  margin-bottom: clamp(40px, 10vw, 80px);
  width: 55%;
}

.whitelabel-deployment__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 32px);
}







/* Mobile styles */
@media (max-width: 768px) {
  .whitelabel-deployment__container {
    padding: 0;
  }
  
  .whitelabel-deployment__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Whitelabel Explained Section */
.whitelabel-explained {
  padding: clamp(80px, 15vw, 150px) 0;
  background: #232220;
  position: relative;
  overflow: hidden;
}

.whitelabel-explained__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 80px);
  align-items: center;
}

.whitelabel-explained__content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.whitelabel-explained__content .section-description--dark {
  margin-bottom: 80px;
}

.whitelabel-explained .uc-hero__gradient-left {
  position: absolute;
  left: clamp(60%, 65vw, 70%);
  top: clamp(25%, 30vw, 32%);
  width: clamp(200px, 30vw, 300px);
  height: clamp(200px, 30vw, 300px);
  background: linear-gradient(135deg, #CDC6EE 0%, #7056F3 100%);
  filter: blur(clamp(80px, 12vw, 127px));
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.whitelabel-explained .uc-hero__gradient-right {
  position: absolute;
  right: -10%;
  bottom: 20%;
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: linear-gradient(135deg, #F8D772 0%, #FDE9B8 100%);
  filter: blur(clamp(80px, 12vw, 150px));
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}


.whitelabel-explained__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 32px);
  position: relative;
  z-index: 1;
}

.whitelabel-explained__card-header {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 20px);
  
}

/* Dark theme card overrides for this section */
.whitelabel-explained .card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Whitelabel Compare Section */
.whitelabel-compare {
  padding: clamp(80px, 15vw, 150px) 0;
  background: #232220;
  position: relative;
  overflow: hidden;
}

.whitelabel-compare__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
  position: relative;
  z-index: 1;
}




.whitelabel-compare__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 80px);
  align-items: start;
  background:#0B0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(16px, 2vw, 24px);
  
  backdrop-filter: blur(10px);
}

#panel-whitelabel {
  min-height: 620px;
}

.whitelabel-compare__features {
  text-align: left;
  margin: auto;
    padding-left: 44px;
}

.whitelabel-compare__features .card-title--dark {
  padding-bottom: 44px;
}


.whitelabel-compare__list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(32px, 5vw, 48px) 0;
}

.whitelabel-compare__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 16px);
  margin-bottom: clamp(16px, 3vw, 20px);
}

.whitelabel-compare__item:last-child {
  margin-bottom: 0;
}

.whitelabel-compare__item img {
  flex-shrink: 0;
  width: clamp(20px, 3vw, 24px);
  height: clamp(20px, 3vw, 24px);
  filter: brightness(0) saturate(100%) invert(100%);
}

.whitelabel-compare__text {
  color: #ffffffbd;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: clamp(20px, 3.5vw, 24px);
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
}

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


.whitelabel-compare__image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 2vw, 16px);
  overflow: hidden;
}

.whitelabel-compare__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.whitelabel-compare__upload-text {
  color: #fff;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

/* Mobile styles */
@media (max-width: 768px) {
  .whitelabel-deployment__content {
    width: 100%;
  }
  
  .toggle-tabs--dark {
    margin: 0 0 clamp(40px, 6vw, 44px);
  }
  
  .whitelabel-compare__content {
    grid-template-columns: 1fr;
    gap: clamp(40px, 8vw, 60px);
    padding: clamp(24px, 6vw, 40px);
  }
  
  .whitelabel-compare__features {
    padding: 0;
  }
  
  #panel-whitelabel {
    display: flex;
    flex-direction: column;
  }
  
  #panel-whitelabel .whitelabel-compare__visual {
    order: -1;
  }
  
  #panel-oem {
    display: flex;
    flex-direction: column;
  }
  
  #panel-oem .whitelabel-compare__visual {
    order: -1;
  }
}

/* Business Benefits Section */
.whitelabel-benefits {
  padding: clamp(80px, 15vw, 150px) 0;
  background: #232220;
  position: relative;
  overflow: hidden;
}

.whitelabel-benefits__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.whitelabel-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* border-radius: clamp(20px, 3vw, 28px); */
  overflow: hidden;
  margin-top: clamp(48px, 8vw, 64px);
  /* background: rgba(35, 34, 32, 0.6); */
  position: relative;
  z-index: 1;
}

/* Why Section (dark gradient) */
.whitelabel-why {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0;
  background: radial-gradient(70% 80% at 50% 0%, rgba(109,93,242,0.35) 0%, rgba(35,34,32,0.85) 40%, #151515 100%);
  text-align: center;
}

.whitelabel-why__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.whitelabel-why .section-title--dark {
  margin: 0 0 clamp(20px, 4vw, 28px) 0;
}

.whitelabel-why .section-description--dark {
  margin: 0 auto clamp(28px, 6vw, 40px) auto;
  max-width: 1080px;
}

.whitelabel-why .uc-hero__actions {
  justify-content: center;
}

.whitelabel-benefits .benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 3vw, 24px);
  padding: clamp(48px, 6vw, 56px) clamp(24px, 4vw, 32px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.whitelabel-benefits .card-description--dark {
  text-align: center;
}

.whitelabel-benefits .benefit-card:nth-child(3n+1) {
  border-left: none;
}

/* .whitelabel-benefits .benefit-card:nth-child(-n+3) {
  border-top: none;
} */

.whitelabel-benefits .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* .whitelabel-benefits .icon-wrapper {
  width: clamp(64px, 8vw, 80px);
  height: clamp(64px, 8vw, 80px);
  border-radius: 24px;
  background: linear-gradient(135deg, #9A8CFF 0%, #5E5EF3 100%);
  display: grid;
  place-items: center;
  margin-bottom: clamp(16px, 3vw, 24px);
} */

/* .whitelabel-benefits .icon-wrapper img {
  width: clamp(28px, 4vw, 36px);
  height: clamp(28px, 4vw, 36px);
} */

@media (max-width: 1200px) {
  .whitelabel-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whitelabel-benefits .benefit-card {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .whitelabel-benefits .benefit-card:nth-child(3n+1) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .whitelabel-benefits .benefit-card:nth-child(2n+1) {
    border-left: none;
  }

  .whitelabel-benefits .benefit-card {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* .whitelabel-benefits .benefit-card:nth-child(-n+2) {
    border-top: none;
  } */
}

@media (max-width: 768px) {
  .whitelabel-benefits__grid {
    grid-template-columns: 1fr;
  }

  .whitelabel-benefits .benefit-card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* .whitelabel-benefits .benefit-card:first-child {
    border-top: none;
  } */
  
  .whitelabel-why__container {
    padding: 0;
  }
  
  .faq__container {
    padding: 0;
  }
  
  .whitelabel-benefits__container {
    padding: 0;
  }
  
  .whitelabel-compare__container {
    padding: 0;
  }
}

.whitelabel-explained .card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* Mobile styles */
@media (max-width: 768px) {
  .whitelabel-explained__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }
  
}

/* Gradients for whitelabel-compare section */
.whitelabel-compare .uc-hero__gradient-left {
  position: absolute;
  left: 0;
  top: clamp(10%, 15vw, 18%);
  width: clamp(200px, 25vw, 300px);
  height: clamp(200px, 25vw, 300px);
  background: linear-gradient(135deg, #E9F8A5 0%, #D3F6CD 100%);
  filter: blur(clamp(50px, 10vw, 140px));
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
  right: 0;
  margin: 0 auto;
}

/* Gradients for whitelabel-benefits section */
.whitelabel-benefits .uc-hero__gradient-left {
  position: absolute;
  left: clamp(2%, 5vw, 8%);
  top: clamp(10%, 15vw, 18%);
  width: clamp(200px, 25vw, 300px);
  height: clamp(200px, 25vw, 300px);
  background: linear-gradient(135deg, #E9F8A5 0%, #D3F6CD 100%);
  filter: blur(clamp(50px, 10vw, 140px));
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.whitelabel-benefits .uc-hero__gradient-right {
  position: absolute;
  left: clamp(60%, 68vw, 73%);
  top: clamp(40%, 48vw, 53%);
  width: clamp(300px, 38vw, 450px);
  height: clamp(300px, 38vw, 450px);
  background: linear-gradient(135deg, #E9F8A5 0%, #F8D772 100%);
  filter: blur(clamp(50px, 10vw, 158px));
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
