.inner-hero {
  padding: 130px 0 90px;
  background: linear-gradient(135deg, #0f1728 0%, #13203a 100%);
}

.section-tag {
  display: inline-block;
  color: #d9ab34;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.inner-title {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 800px;
}

.inner-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
  max-width: 760px;
}

@media (max-width: 992px) {
  .inner-hero {
    padding: 120px 0 70px;
  }

  .inner-title {
    font-size: clamp(34px, 6vw, 52px);
  }

  .inner-text {
    font-size: 17px;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {
  .inner-hero {
    padding: 105px 0 60px;
  }

  .inner-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .inner-text {
    font-size: 16px;
  }
}

.products-page-section {
  padding: 110px 0 70px;
  background:
    radial-gradient(
      circle at top left,
      rgba(217, 171, 52, 0.06),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.products-page-intro {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-tag-dark {
  color: var(--gold-dark);
}

.products-page-intro h2 {
  font-size: clamp(32px, 4vw, 50px);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}

.products-page-intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.products-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.product-card-premium {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8ebf2;
  border-radius: 28px;
  padding: 32px 26px;
  box-shadow: 0 14px 34px rgba(15, 23, 40, 0.06);
  transition: 0.3s ease;
  overflow: hidden;
}

.product-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(15, 23, 40, 0.12);
}

.product-card-premium::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #f0c655);
  opacity: 0;
  transition: 0.3s ease;
}

.product-card-premium:hover::before {
  opacity: 1;
}

.featured-product {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf4 100%);
}

.silver-product {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.product-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(217, 171, 52, 0.12);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.silver-badge {
  background: rgba(122, 137, 160, 0.12);
  color: #5b6677;
}

.product-card-premium h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.product-card-premium p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 15px;
}

.product-card-premium ul {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.product-card-premium ul li {
  color: var(--muted);
  position: relative;
  padding-left: 18px;
}

.product-card-premium ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 9px;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f0c655);
  color: #111111;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(217, 171, 52, 0.24);
  transition: 0.3s ease;
}

.product-btn:hover {
  transform: translateY(-2px);
}

.product-note-box {
  background: linear-gradient(135deg, #081a3a, #0e244f);
  border-radius: 32px;
  padding: 42px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.product-note-box::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(217, 171, 52, 0.12);
  top: -90px;
  right: -50px;
}

.product-note-content,
.product-note-action {
  position: relative;
  z-index: 1;
}

.product-note-content {
  max-width: 720px;
}

.product-note-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f0c655;
  margin-bottom: 12px;
}

.product-note-content h3 {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-note-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.product-note-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f0c655);
  color: #111111;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(217, 171, 52, 0.28);
  transition: 0.3s ease;
}

.product-note-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .products-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-note-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .products-page-section {
    padding: 85px 0 50px;
  }

  .products-grid-premium {
    grid-template-columns: 1fr;
  }

  .product-note-box {
    padding: 34px 24px;
  }

  .product-note-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 1100px) {
  .services-grid,
  .services-premium-grid,
  .products-grid,
  .products-grid-premium,
  .process-grid,
  .process-timeline,
  .features-grid,
  .trade-highlight-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid,
  .services-premium-grid,
  .products-grid,
  .products-grid-premium,
  .process-grid,
  .process-timeline,
  .features-grid,
  .trade-highlight-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .product-card,
  .product-card-premium,
  .process-card,
  .process-step-card,
  .feature-card,
  .trade-highlight-card,
  .stat-card {
    padding: 24px 20px;
  }
}
