a {
  text-decoration: none;
  color: inherit;
}

:root {
  --shared-surface: rgba(255, 255, 255, 0.06);
  --shared-line: rgba(255, 255, 255, 0.14);
  --shared-text: #dbe8f7;
  --shared-text-soft: #9eb4c9;
  --shared-cyan: #7ddfff;
  --shared-gold: #f7d28a;
}

.brand-logo {
  font-size: 30px;
}

.site-footer {
  padding: 18px 0 38px;
}

.site-footer-card {
  border: 1px solid var(--shared-line);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
  padding: 22px 24px;
}

.site-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer-brand {
  display: grid;
  gap: 8px;
}

.site-footer-brand strong {
  color: #f3f8ff;
  font-size: 1rem;
}

.site-footer-brand p {
  margin: 0;
  color: var(--shared-text-soft);
  font-size: 0.92rem;
  max-width: 460px;
  line-height: 1.85;
}

.site-footer-meta {
  display: grid;
  gap: 12px;
  min-width: min(100%, 360px);
}

.site-footer-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--shared-surface);
}

.site-footer-label {
  color: var(--shared-gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.site-footer-value {
  color: var(--shared-text);
  font-size: 0.93rem;
  line-height: 1.8;
}

.site-footer-value a {
  color: var(--shared-cyan);
}

.mobile-pricing {
  display: none;
}

@media screen and (max-width: 780px) {
  .site-footer-content {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer-card {
    padding: 18px;
  }

  .site-footer-meta {
    min-width: 0;
  }

  .mobile-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
