.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;
  }
}

.services-premium {
  padding: 110px 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(217, 171, 52, 0.06),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.services-intro-premium {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-tag-dark {
  color: var(--gold-dark);
}

.services-intro-premium h2 {
  font-size: clamp(32px, 4vw, 50px);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}

.services-intro-premium p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.services-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.service-card {
  background: #ffffff;
  padding: 34px 28px;
  border-radius: 26px;
  border: 1px solid #eceef4;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(15, 23, 40, 0.05);
  overflow: hidden;
}

.service-card::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;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(15, 23, 40, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(15, 23, 40, 0.14);
  flex-shrink: 0;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-number {
  font-size: 30px;
  font-weight: 800;
  color: rgba(217, 171, 52, 0.22);
  line-height: 1;
}

.service-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.services-cta-banner {
  background: linear-gradient(135deg, #081a3a, #0e244f);
  border-radius: 32px;
  padding: 42px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.services-cta-banner::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(217, 171, 52, 0.12);
  top: -100px;
  right: -60px;
}

.services-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.services-cta-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f0c655;
  margin-bottom: 12px;
}

.services-cta-content h3 {
  color: #ffffff;
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
  line-height: 1.2;
}

.services-cta-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.services-cta-action {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.services-cta-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;
}

.services-cta-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .services-premium-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .services-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .services-premium {
    padding: 85px 0;
  }

  .services-premium-grid {
    grid-template-columns: 1fr;
  }

  .services-cta-banner {
    padding: 34px 24px;
  }

  .services-cta-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;
  }
}
