:root {
  --primary-gradient: linear-gradient(135deg, #0050ea 0%, #20bbff 100%);
  --primary-color: #377DFF;
  --secondary-color: #ffc107;
  --dark-color: #0052ea;
  --text-color: #677788;
  --light-bg: #f8f9fa;
  --white-color: #ffffff;
}

/*================================================
0. Mixins Css
=================================================*/
/* Buttons */
.btn-gradient-primary {
  background: var(--primary-gradient);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-gradient-primary:hover {
  transform: translateY(-3px);
}

.btn-glass {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-glass:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  color: #000;
}

/* Hero Section Styles */
.product-hero {
  position: relative;
  padding: 200px 0 80px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-hero {
    padding: 200px 0 60px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .product-hero {
    padding: 50px 0 60px;
  }
}
@media (max-width: 576px) {
  .product-hero {
    padding: 40px 0 40px;
  }
}
.product-hero .hero-subtitle {
  color: rgba(5, 5, 5, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .product-hero .hero-subtitle {
    font-size: 1rem;
  }
}

.hero-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.hero-bg-shapes .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -100px;
  right: -20px;
  animation-delay: 0s;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-bg-shapes .shape-1 {
    width: 600px;
    height: 600px;
  }
}

.hero-bg-shapes .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  bottom: -50px;
  left: -50px;
  animation-delay: 5s;
}

.hero-bg-shapes .shape-3 {
  width: 250px;
  height: 250px;
  background: var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
.min-vh-90 {
  min-height: 90vh;
}

.z-index-2 {
  z-index: 2;
}

/* Service Badges */
.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(136, 134, 134, 0.1);
  color: #161616;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.badge-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hero Title */
.hero-title {
  color: #201e1e;
  line-height: 1.2;
  font-size: 2.5rem;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 2.08rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Trust Signals Inline */
.trust-signals-inline {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  color: rgb(48, 48, 48);
}

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: #161616;
  line-height: 1;
  margin-bottom: 5px;
}

.trust-label {
  font-size: 0.875rem;
  color: rgba(37, 37, 37, 0.7);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* CTA Buttons */
.btn-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
  transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.6);
  color: #fff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: #fff;
}

/* Trust Footer */
.hero-trust-footer {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.trust-footer-item {
  display: flex;
  align-items: center;
  color: rgba(36, 35, 35, 0.8);
  font-size: 0.9rem;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .hero-image-frame {
    padding: 15px;
  }
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.3), transparent);
  filter: blur(60px);
  z-index: 0;
}

.hero-product-img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  width: 100%;
  height: auto;
}

/* Floating Stat Cards */
.floating-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.808);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: floatCard 3s infinite ease-in-out;
  z-index: 2;
}

.stat-card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.stat-card-2 {
  bottom: 30%;
  left: -10%;
  animation-delay: 1s;
}

.stat-card-3 {
  bottom: -10%;
  right: 5%;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(210, 70%, 20%);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: hsl(210, 20%, 50%);
  margin-top: 3px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  margin: 0 auto 10px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}
.scroll-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .floating-stat-card {
    display: none;
  }
  .product9-hero {
    padding: 80px 0 60px;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .trust-signals-inline {
    justify-content: center;
  }
  .service-badges {
    justify-content: center;
  }
}
.how-it-works {
  position: relative;
}
.how-it-works .process-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.how-it-works .process-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, hsl(200, 80%, 55%), hsl(190, 80%, 60%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.how-it-works .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}
.how-it-works .process-card:hover:before {
  transform: scaleX(1);
}
.how-it-works .process-card .process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(138, 43, 226, 0.1);
}
.how-it-works .process-card .process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  color: white;
  background: var(--primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 2rem;
}
.how-it-works .process-card .process-icon i {
  color: white;
}
.how-it-works .process-card .process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(240, 70%, 20%);
  margin-bottom: 15px;
}
.how-it-works .process-card .process-description {
  color: hsl(240, 20%, 50%);
  font-size: 0.95rem;
  line-height: 1.6;
}/*# sourceMappingURL=product.css.map */