:root {
  --color-primary: #ffc107;
  --color-primary-dark: #ffa000;
  --color-secondary: #000000;
  --color-white: #ffffff;
  --color-gray-light: #f5f5f5;
  --color-gray: #666666;
  --color-gray-dark: #333333;
  --color-text: #000000;
  --color-text-secondary: #666666;
  --color-border: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #000000;
  overflow-x: hidden;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.5px;
  line-height: 1.2;
  font-weight: 800;
}

h2 {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.5px;
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 1.4;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  letter-spacing: -0.5px;
  line-height: 1.4;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.lang-btn {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-secondary);
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-left: 1rem;
  border-left: 2px solid rgba(255,255,255,0.5);
  margin-left: 0.5rem;
}

.nav-container {
  position: relative;
}

.nav-cta {
  display: flex;
  gap: 1rem;
}

/* Buttons */
.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 13px;
  display: inline-block;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.btn-secondary {
  background: var(--color-gray-dark);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-gray);
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 28px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    to bottom,
    #ffd900b2 10%,
    #372445d2 75%,
    #000000 100%
  );
  padding: 120px 2rem 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(233, 170, 9, 0.907) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(130, 69, 0, 0.885) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(255, 193, 7, 0.472) 0%,
      transparent 40%
    );
  animation: galaxyRotate 30s linear infinite;
}

@keyframes galaxyRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* Stars */
.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Coins Animation */
.coins-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.coin {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffc107 50%, #ffb300 100%);
  border-radius: 50%;
  box-shadow:
    0 0 20px rgba(255, 193, 7, 0.8),
    inset -5px -5px 10px rgba(0, 0, 0, 0.3),
    inset 5px 5px 10px rgba(255, 255, 255, 0.3);
  animation: coinFloat 8s infinite ease-in-out;
  opacity: 0;
}

.coin::before {
  content: "$";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: bold;
  color: #8b4513;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.coin::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: sparkle 2s infinite;
}

@keyframes coinFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* Grid Overlay */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,193,7,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
  text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.hero-highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
}

.hero-logo {
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.5));
  margin-bottom: 20px;
  margin-top: 10px;
}

@keyframes glow {
  0%,
  100% {
    text-shadow:
      0 0 10px rgba(255, 193, 7, 0.8),
      0 0 20px rgba(255, 193, 7, 0.6),
      0 0 30px rgba(255, 193, 7, 0.4);
  }
  50% {
    text-shadow:
      0 0 20px rgba(255, 193, 7, 1),
      0 0 40px rgba(255, 193, 7, 0.8),
      0 0 60px rgba(255, 193, 7, 0.6);
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Decorative Images */
/*
.hero-decorative-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.deco-img {
  position: absolute;
  opacity: 0.15;
  filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 193, 7, 0.5));
}

.deco-img-1 {
  top: 15%;
  left: 8%;
  width: 120px;
  height: 120px;
  animation: float1 6s ease-in-out infinite;
}

.deco-img-2 {
  top: 20%;
  right: 10%;
  width: 100px;
  height: 100px;
  animation: float2 7s ease-in-out infinite;
}

.deco-img-3 {
  bottom: 20%;
  left: 12%;
  width: 110px;
  height: 110px;
  animation: float3 8s ease-in-out infinite;
}

.deco-img-4 {
  bottom: 15%;
  right: 8%;
  width: 130px;
  height: 130px;
  animation: float4 6.5s ease-in-out infinite;
}*/

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(-5deg);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(3deg);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-22px) rotate(-3deg);
  }
}

/* Sections */
.section {
  padding: 60px 2rem;
  position: relative;
}

/* Background blending between sections */
.section::before,
.section::after,
.hero::before,
.hero::after,
.section-alt::before,
.section-alt::after,
.stats-section::before,
.stats-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.section::before,
.hero::before,
.section-alt::before,
.stats-section::before {
  top: -100px;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.section::after,
.hero::after,
.section-alt::after,
.stats-section::after {
  top: 0;
  bottom: -100px;
  background: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero::before {
  background: linear-gradient(to bottom, transparent 0%, #000000 100%);
}

.hero::after {
  background: linear-gradient(to top, transparent 0%, #000000 100%);
}

.section-alt::before {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.section-alt::after {
  background: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.stats-section::before {
  background: linear-gradient(to bottom, transparent 0%, #000000 100%);
}

.stats-section::after {
  background: linear-gradient(to top, transparent 0%, #000000 100%);
}

.section-alt {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.823) 0%,
    rgba(13, 61, 173, 0.32) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  position: relative;
  overflow: hidden;
}

.section-alt::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(137, 43, 226, 0.599) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(78, 4, 131, 0.578) 0%,
      transparent 80%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(255, 193, 7, 0.557) 0%,
      transparent 50%
    );
  animation: galaxyRotate 30s linear infinite;
  pointer-events: none;
}

.section-alt .section-title h2,
.section-alt .section-title p {
  color: var(--color-white);
}

.section-alt h3,
.section-alt h4 {
  color: var(--color-white);
}

.section-alt p {
  color: rgba(255, 255, 255, 0.85);
}

.section-alt .feature-card h4 {
  color: var(--color-white);
}

.section-alt .feature-card p {
  color: rgba(255, 255, 255, 0.7);
}

.section-alt .advantage-item h4 {
  color: var(--color-white);
}

.section-alt .advantage-item p {
  color: rgba(255, 255, 255, 0.7);
}

/* News / Article cards in dark sections */
.section-alt .feature-card h4,
.section-alt .feature-card p {
  color: var(--color-white);
}

.section-alt .feature-card p {
  color: rgba(255, 255, 255, 0.75);
}

.section-alt .feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 188, 0, 0.15);
}

.section-alt .feature-card:hover {
  background: rgba(255, 188, 0, 0.08);
  border-color: rgba(255, 187, 0, 0.445);
}

.section-alt .advantage-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--color-primary);
}

.section-alt .advantage-item:hover {
  background: rgba(255, 188, 0, 0.05);
}

.section-alt .faq-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 188, 0, 0.1);
}

.section-alt .faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.section-alt .faq-question {
  color: var(--color-white);
}

.section-alt .faq-question:hover {
  background: rgba(255, 187, 0, 0.243);
}

.section-alt .faq-answer-content {
  color: rgba(255, 255, 255, 0.8);
}

.section-alt .form-group label {
  color: var(--color-secondary);
}

.section-alt .form-group input,
.section-alt .form-group select,
.section-alt .form-group textarea {
  border: 1px solid rgba(255, 188, 0, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.section-alt .form-group input:focus,
.section-alt .form-group select:focus,
.section-alt .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.2);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Feature Cards */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.2);
}

.feature-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.3));
  transition: transform 0.3s ease;
  max-width: 100%;
  height: auto;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  background: var(--color-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--color-gray-light);
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--color-text-secondary);
}

/* Product Images */
.product-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 188, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  background: rgba(255, 187, 0, 0.08);
  border-color: rgba(255, 238, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.2);
}

.product-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  max-width: 100%;
  height: auto;
}

.product-overlay {
  position: relative;
  background: none;
  padding: 1.5rem 1rem 0;
  color: var(--color-text);
}

.product-overlay h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--color-text);
}

.product-overlay p {
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-text-secondary);
}

/* Products Carousel */
.products-carousel {
  position: relative;
  overflow: hidden;
}

.products-carousel .carousel-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  scrollbar-width: none;
  contain: layout style;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  contain: layout paint;
}

@media (max-width: 768px) {
  .products-carousel {
    overflow: hidden;
  }
  
  .products-carousel .carousel-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    scrollbar-width: none;
    transition: transform 0.8s ease-in-out;
    width: calc(300% + 4rem);
  }
  
  .product-card {
    flex-shrink: 0;
  }
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  background: var(--color-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .carousel-dots {
    display: flex;
  }
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--color-primary);
}

/* Partnership Carousel */
.partnership-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.partnership-carousel .carousel-container {
  display: flex;
  gap: 2rem;
  animation: slideLogos 20s linear infinite;
  width: calc(200% + 4rem);
  height: 105px;
  scrollbar-width: none;
}

.partnership-carousel .carousel-container:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 187, 0, 0.349);
  transition: all 0.3s ease;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 188, 0, 0.5);
  transform: scale(1.05);
}

.partner-logo {
  max-width: 150px;
  max-height: 90px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.partner-logo4 {
   max-height: 97px;
}

.logo-item:hover .partner-logo {
  filter: brightness(1);
}

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

/* Reviews Section */
.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 188, 0, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 188, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.2);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 188, 0, 0.2);
  font-family: serif;
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
  justify-content: flex-end;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.reviewer-avatar svg {
  width: 30px;
  height: 30px;
}

.review-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.reviewer-info h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2px;
}

.reviewer-info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(
    to bottom,
    #000000 0%,
    #ad9d0d56 50%,
    #000000 100%
  );
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 193, 7, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(75, 0, 130, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(255, 193, 7, 0.1) 0%,
      transparent 40%
    );
  animation: statsGalaxyRotate 30s linear infinite;
}

@keyframes statsGalaxyRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(122, 121, 86, 0.366);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.535);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(237, 191, 75, 0.324);
  border-color: rgba(255, 238, 0, 0.641);
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.2);
}

.stat-icon {
  display: block;
  margin-bottom: 1rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-number::after {
  content: attr(data-suffix);
  font-size: 0.5em;
  font-weight: 400;
  opacity: 0.7;
}

.stat-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 188, 0, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 188, 0, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.section-alt .section-title h2,
.section-alt .section-title p {
  color: var(--color-white);
}

.section-alt h3,
.section-alt h4 {
  color: var(--color-white);
}

.section-alt p {
  color: rgba(255, 255, 255, 0.85);
}

.section-alt .feature-card h4 {
  color: var(--color-white);
}

.section-alt .feature-card p {
  color: rgba(255, 255, 255, 0.7);
}

.section-alt .advantage-item h4 {
  color: var(--color-white);
}

.section-alt .advantage-item p {
  color: rgba(255, 255, 255, 0.7);
}

/* News / Article cards in dark sections */
.section-alt .feature-card h4,
.section-alt .feature-card p {
  color: var(--color-white);
}

.section-alt .feature-card p {
  color: rgba(255, 255, 255, 0.75);
}

.section-alt .feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 187, 0, 0.706);
}

.section-alt .feature-card:hover {
  background: rgba(255, 187, 0, 0.347);
  border-color: rgba(255, 238, 0, 0.646);
}

.section-alt .advantage-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--color-primary);
}

.section-alt .advantage-item:hover {
  background: rgba(255, 187, 0, 0.347);
}

.section-alt .faq-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 187, 0, 0.706);
}

.section-alt .faq-item:hover {
  background: rgba(255, 187, 0, 0.62);
  border-color: rgba(255, 238, 0, 0.646);
}

.section-alt .faq-question {
  color: var(--color-white);
}

.section-alt .faq-question:hover {
  background: rgba(255, 188, 0, 0.1);
}

.section-alt .faq-answer-content {
  color: rgba(255, 255, 255, 0.8);
}

/* Contact form inside alt section - keep white background */
.section-alt .contact-form {
  background: var(--color-white);
  border: 3px solid #ffa000;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.section-alt .form-group label {
  color: var(--color-secondary);
}

.section-alt .form-group input,
.section-alt .form-group select,
.section-alt .form-group textarea {
  border: 1px solid rgba(255, 188, 0, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.section-alt .form-group input:focus,
.section-alt .form-group select:focus,
.section-alt .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.2);
}

/* Contact Form Validation */
.form-group {
  position: relative;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
  background-color: rgba(231, 76, 60, 0.03);
}

.form-group .error-message {
  color: #e74c3c;
  font-size: 13px;
  margin-top: 6px;
  display: none;
  font-weight: 500;
  align-items: center;
  gap: 6px;
}

.form-group .error-message.visible {
  display: flex;
}

#formErrorMessage {
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
}

.form-group .error-message::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.form-group input.valid,
.form-group textarea.valid {
  border-color: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
  width: 100%;
}

.select-trigger {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.select-trigger:hover {
  border-color: var(--color-primary);
}

.select-trigger.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.selected-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.selected-value svg {
  width: 24px;
  height: 24px;
}

.select-arrow {
  transition: transform 0.3s ease;
  color: var(--color-gray);
}

.select-trigger.active .select-arrow {
  transform: rotate(180deg);
}

.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 100;
}

.select-options.show {
  display: block;
}

.select-option {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.select-option:hover {
  background: var(--color-gray-light);
}

.select-option.active {
  background: rgba(255, 193, 7, 0.1);
  font-weight: 600;
}

.select-option svg {
  width: 24px;
  height: 24px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Feature Cards */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.2);
}

.feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.3));
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* Advantages */
.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  font-size: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  background: var(--color-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  background: var(--color-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--color-gray-light);
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--color-text-secondary);
}

/* Footer */
.footer {
  color: var(--color-white);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-email {
  color: var(--color-primary);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.footer-email:hover {
  opacity: 0.8;
}

.footer-social {
  margin-top: 0.5rem;
}

.footer-social-link {
  display: inline-flex;
  position:absolute;
  align-items: center;
  color: var(--color-primary);
  font-size: 14px;
  text-decoration: none;
  margin-right: 0.5rem;
  transition: opacity 0.3s ease;
}


.footer-social-link:hover {
  opacity: 0.8;
}

.footer-social-separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
  font-size: 14px;
}

.footer-social-icon {
  width: 25px;
  height: 25px;
  margin-right: 4px;
}

.footer-app-btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.footer-app-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

/* Animations */
html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  /* Font sizes now handled by clamp() */

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  .navbar {
    padding: 1rem;
  }

  .nav-container {
    display: grid;
    grid-template-areas: "logo menu" "lang cta";
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1rem;
    align-items: center;
  }

  .nav-logo {
    grid-area: logo;
    justify-self: start;
  }

  .mobile-menu-btn {
    display: block;
    grid-area: menu;
    justify-self: end;
  }

  .nav-right {
    grid-area: cta;
    justify-self: end;
  }

.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-right {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-right > *:first-child {
  margin-right: 1rem;
}

.nav-container {
  position: relative;
}

  .nav-links {
    display: none;
  }

  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 12px;
  }

  .hero {
    padding: 100px 1rem 40px;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 36px;
    padding-top: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 40px 1rem;
  }

  .stats-section {
    padding: 4rem 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .three-col-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .advantages-list {
    grid-template-columns: 1fr;
  }

  .carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .product-card {
    flex-shrink: 0;
    width: calc(100vw - 2rem);
    scroll-snap-align: start;
  }

  .carousel-dots {
    display: flex;
  }

  .product-img {
    aspect-ratio: 12 / 16;
    max-width: 100vw;
    width: 100%;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
  }

  .partner-logo {
    max-width: 100px;
    max-height: 60px;
  }



  .contact-form {
    padding: 2rem 1.5rem;
  }

  .deco-img {
    display: none;
  }

  .stat-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .nav-cta .btn {
    width: auto;
  }

  .stats-section {
    padding: 3rem 1rem;
  }

  .stat-number {
    font-size: 32px;
  }
}

@media (max-width: 353px) {
  .nav-cta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

/* RTL Support for Arabic */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .form-group .error-message {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-cta {
  flex-direction: row;
}

[dir="rtl"] .advantage-item {
  border-left: none;
  border-right: 4px solid var(--color-primary);
}

[dir="rtl"] .advantage-item:hover {
  transform: translateX(-8px);
}

[dir="rtl"] .section-title {
  text-align: center;
}

/* Keep navbar LTR even in RTL mode */
[dir="rtl"] .nav-container {
  flex-direction: row;
}

[dir="rtl"] .navbar {
  direction: ltr;
}

[dir="rtl"] .nav-links {
  flex-direction: row;
}

[dir="rtl"] .nav-right {
  flex-direction: row;
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

.manager-selection {
  margin-top: 20px;
}

.manager-selection h3 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-black);
}

.managers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.manager-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.manager-card:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: var(--color-primary);
}

.manager-card.selected {
  background: rgba(255, 193, 7, 0.2);
  border-color: var(--color-primary);
}

.manager-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  border: 3px solid var(--color-primary);
}

.manager-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manager-name {
  color: var(--color-black);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.manager-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.manager-actions .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#nextBtn {
  width: 100%;
}

@media (max-width: 768px) {
  .managers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card h3,
.section-alt .feature-card h3 {
  color: var(--color-white);
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.section-alt .product-card h3 {
  color: var(--color-white);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.reviewer-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2px;
}
