.gst-products .gst-hero {
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.gst-kicker {
  display: inline-block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.gst-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 28px 0 12px;
}

.gst-meta {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.gst-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(0, 153, 255, 0.28);
  box-shadow: 0 24px 60px rgba(0, 153, 255, 0.08);
}

.gst-card__main,
.gst-card__side {
  padding: 48px;
}

.gst-card__side {
  background: rgba(255, 255, 255, 0.02);
  border-left: 1px solid var(--border);
}

.gst-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 153, 255, 0.12);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.gst-badge--muted {
  background: rgba(221, 51, 51, 0.12);
  color: var(--primary);
}

.gst-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.gst-pills li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-glass);
}

.gst-card__side h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.gst-card__side dl {
  display: grid;
  gap: 14px;
}

.gst-card__side dt {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gst-card__side dd {
  margin: 0;
  font-weight: 600;
}

.gst-reqs__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
}

.gst-version {
  text-align: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-glass);
}

.gst-version__label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.gst-version__num {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin: 8px 0;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gst-version__date {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.gst-version__price {
  font-size: 1.15rem;
  font-weight: 700;
  margin: -8px 0 18px;
  color: var(--text-primary);
}

.gst-hosted {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px 40px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--bg-card, #12161c);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: block;
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

.vat-products .vat-hero {
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.vat-products .gst-kicker,
.vat-products .gst-badge {
  color: #d4af37;
}

.vat-products .gst-badge {
  background: rgba(212, 175, 55, 0.14);
}

.vat-products .gst-card {
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: 0 24px 60px rgba(212, 175, 55, 0.08);
}

.vat-products .gst-version__num {
  background: linear-gradient(135deg, #d4af37, #f5e6a3);
  -webkit-background-clip: text;
  background-clip: text;
}

.vat-products .text-gradient {
  background: linear-gradient(135deg, #d4af37, #f5e6a3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (width <= 900px) {
  .gst-card,
  .gst-reqs__inner {
    grid-template-columns: 1fr;
  }
  .gst-card__side {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .navbar .btn--primary {
    display: none;
  }
}
