/* ===== HOME — PRODUCTS & SERVICES TILES ===== */
.offerings-section {
  position: relative;
  z-index: 10;
}

.offerings-group {
  margin-bottom: 3.5rem;
}

.offerings-group:last-child {
  margin-bottom: 0;
}

.offerings-group-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 1.25rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .offerings-grid--services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .offerings-grid--product {
    grid-template-columns: 1fr;
    max-width: 42rem;
  }

  .offerings-grid--services {
    grid-template-columns: repeat(2, 1fr);
  }
}

.offering-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid #1e2736;
  background: #131a24;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.offering-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-gold-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.offering-card--featured {
  border-color: rgba(195, 166, 105, 0.45);
  background: linear-gradient(145deg, #131a24 0%, #0f151d 100%);
}

.offering-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(195, 166, 105, 0.14) 0%, rgba(195, 166, 105, 0.06) 100%);
  border: 1px solid rgba(195, 166, 105, 0.22);
  color: var(--brand-gold);
  font-size: 1.15rem;
}

.offering-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.65rem;
}

.offering-card p {
  flex-grow: 1;
  margin: 0 0 1.25rem;
  color: #94a3b8;
  font-size: 0.925rem;
  line-height: 1.65;
}

.offering-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-gold);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.offering-card-link:hover {
  color: var(--brand-gold-light);
  gap: 0.65rem;
}

.home-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  color: var(--brand-gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.home-showcase-link:hover {
  color: var(--brand-gold-light);
  gap: 0.65rem;
}

.home-showcase-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.home-showcase-list li i {
  color: var(--brand-gold);
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

.feature-showcase-body + .feature-showcase-body {
  margin-top: 0.75rem;
}

.gold-highlight {
  color: var(--brand-gold);
  font-weight: 600;
}

.feature-showcase-copy h3.gold-highlight {
  color: var(--brand-gold) !important;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
}

.hero-cta-btn--primary {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(195, 166, 105, 0.3);
}

.hero-cta-btn--primary:hover {
  box-shadow: 0 0 30px rgba(195, 166, 105, 0.45);
}

.hero-cta-btn--secondary {
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold);
}

.hero-cta-btn--secondary:hover {
  background: var(--brand-gold);
  color: #0a0e14;
}

.page-hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #1e2736;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(195, 166, 105, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10, 14, 20, 0.2) 0%, var(--bg-dark) 100%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.service-detail {
  scroll-margin-top: 5.5rem;
}

.service-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(195, 166, 105, 0.14) 0%, rgba(195, 166, 105, 0.06) 100%);
  border: 1px solid rgba(195, 166, 105, 0.22);
  color: var(--brand-gold);
  font-size: 1.25rem;
}
