.hero-section {
  padding: 60px 0 40px;
  text-align: center;
}
.hero-img-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 32px;
}
.hero-img {
  max-width: 480px;
  width: 100%;
  border-radius: 7px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  transform: rotate(-4deg);
  transition: transform 0.3s ease;
}
.hero-img:hover {
  transform: rotate(0deg);
}
.pricing-section {
  padding: 48px 0 40px;
  text-align: center;
}
.pricing-card {
  display: inline-block;
  position: relative;
  background: #fff;
  border: 2px solid #0286fb;
  border-radius: 16px;
  padding: 32px 40px 28px;
  box-shadow: 0 4px 24px rgba(2, 134, 251, 0.12);
  min-width: 260px;
}
.pricing-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0286fb;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-title {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin-top: 8px;
  margin-bottom: 4px;
}
.pricing-price {
  font-size: 42px;
  font-weight: 800;
  color: #0286fb;
  line-height: 1.1;
  margin-bottom: 20px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}
.pricing-check {
  color: #0286fb;
  font-size: 16px;
  flex-shrink: 0;
}
.cta-btn {
  background-color: #0286fb;
  color: white;
  padding: 12px 32px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.2s ease;
}
.cta-btn:hover {
  background-color: #0270d4;
  color: white;
}

/* Theme Marquee */
.theme-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
}
.marquee-gradient-left,
.marquee-gradient-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 15%;
  z-index: 10;
  pointer-events: none;
}
.marquee-gradient-left {
  left: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}
.marquee-gradient-right {
  right: 0;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}
.theme-marquee-track {
  display: flex;
  width: max-content;
  padding: 1.5rem 0;
  animation: theme-scroll 18s linear infinite;
}
.theme-marquee-wrapper:hover .theme-marquee-track {
  animation-play-state: paused;
}
@keyframes theme-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
.theme-slide {
  display: block;
  margin-right: 1rem;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
  background: #f8f9fa;
}
.theme-slide:hover {
  border-color: #0286fb;
}
.theme-slide-img {
  display: block;
  height: 140px;
  width: auto;
  aspect-ratio: 1.595 / 1;
  object-fit: cover;
}
.theme-slide-label {
  font-size: 12px;
  color: #495057;
  padding: 4px 8px 6px;
  text-align: center;
  white-space: nowrap;
}

/* Language Switcher */
.lang-switcher {
  padding: 32px 0 48px;
  text-align: center;
}
.lang-switcher p {
  display: inline;
  margin-right: 8px;
  color: #6c757d;
  font-size: 14px;
}
.lang-btn {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  font-size: 13px;
  color: #495057;
  text-decoration: none;
  margin: 3px 2px;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.lang-btn:hover {
  border-color: #0286fb;
  color: #0286fb;
  background: #f0f8ff;
}

@media (max-width: 992px) {
  .header-navbar {
    display: flex !important;
  }
}
