:root {
  --bg: #0a0e14;
  --bg-alt: #0f1419;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8eef4;
  --text-muted: #8b9cb3;
  --text-dim: #5c6b80;
  --accent-blue: #4a9eff;
  --accent-blue-glow: rgba(74, 158, 255, 0.3);
  --accent-purple: #7c5cbf;
  --accent-gold: #ffc738;
  --accent-gold-glow: rgba(255, 199, 56, 0.3);
  --gradient: linear-gradient(135deg, #4a9eff 0%, #7c5cbf 100%);
  --radius: 14px;
  --radius-lg: 22px;
  --font: "Instrument Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
  --max-width: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 45% at 15% 0%, var(--accent-blue-glow), transparent 55%),
    radial-gradient(ellipse 55% 40% at 90% 15%, var(--accent-gold-glow), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(124, 92, 191, 0.12), transparent 55%),
    linear-gradient(165deg, #070a0f 0%, #0a0e14 40%, #0d1118 100%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(10, 14, 20, 0.8);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  height: 44px;
  width: auto;
  max-width: none;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-nav-top {
  padding: 0.55rem 0 0;
}

.back-home {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}

.back-home:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.hero-logo {
  width: min(320px, 88vw);
  height: auto;
  max-width: none;
  margin: 0 auto 1.75rem;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 34rem;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

/* Section shared */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-lead {
  max-width: 32rem;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* Apps grid */
.apps-section {
  padding: 2rem 0 5rem;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.app-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.app-card:hover {
  transform: translateY(-3px);
}

.app-card-mastermd:hover {
  border-color: rgba(74, 158, 255, 0.35);
}

.app-card-hambench:hover {
  border-color: rgba(255, 199, 56, 0.35);
}

.app-card-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.app-card-mastermd .app-card-glow {
  background: radial-gradient(circle, var(--accent-blue-glow), transparent 70%);
}

.app-card-hambench .app-card-glow {
  background: radial-gradient(circle, var(--accent-gold-glow), transparent 70%);
}

.app-card:hover .app-card-glow {
  opacity: 1;
}

.app-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.app-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.app-icon img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  display: block;
}

.app-icon-mastermd,
.app-icon-hambench {
  padding: 0;
  overflow: hidden;
}

.app-platform {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.app-meta h3 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.app-tagline {
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.app-description {
  flex: 1;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.app-highlights {
  margin-bottom: 1.5rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

.app-highlights li::marker {
  color: var(--text-dim);
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
}

.btn-mastermd {
  background: var(--gradient);
  box-shadow: 0 4px 18px var(--accent-blue-glow);
}

.btn-mastermd:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--accent-blue-glow);
}

.btn-hambench {
  background: linear-gradient(145deg, #ffc738 0%, #ff8c1a 100%);
  color: #1a1200;
  box-shadow: 0 4px 18px var(--accent-gold-glow);
}

.btn-hambench:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--accent-gold-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

/* About */
.about-section {
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 36rem;
}

/* Privacy policy */
.policy-page {
  padding-bottom: 2rem;
}

.policy-hero {
  padding: 4rem 0 2rem;
}

.policy-container {
  max-width: 880px;
}

.policy-hero h1 {
  font-size: clamp(2.35rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.policy-lead {
  max-width: 48rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.policy-updated {
  margin-top: 1rem;
  font-family: var(--mono);
  color: var(--text-dim);
  font-size: 0.82rem;
}

.policy-section {
  padding: 0.75rem 0;
}

.policy-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.policy-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.policy-card h3 {
  margin: 1.35rem 0 0.55rem;
  color: var(--text);
  font-size: 1.05rem;
}

.policy-card p,
.policy-card li {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.policy-card p + p {
  margin-top: 1rem;
}

.policy-card ul {
  padding-left: 1.25rem;
}

.policy-card li + li {
  margin-top: 0.55rem;
}

.policy-card strong {
  color: var(--text);
}

.policy-card a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.policy-contact-section {
  padding-bottom: 3rem;
}

/* ─── Contact page ──────────────────────────────────────────── */

.contact-page {
  padding: 4rem 0 5rem;
}

.contact-shell {
  max-width: 620px;
}

/* Card wrapper */
.contact-card {
  position: relative;
  border-radius: 22px;
  /* gradient border trick */
  background: rgba(14, 18, 26, 0.96);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 8px 32px rgba(74, 158, 255, 0.06);
  overflow: hidden;
}

/* Top accent line */
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 22px 22px 0 0;
}

/* Card header */
.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2.5rem 1.75rem;
}

.contact-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(74, 158, 255, 0.12);
  border: 1px solid rgba(74, 158, 255, 0.22);
  color: var(--accent-blue);
}

.contact-card-title {
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.2rem;
}

.contact-card-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-card-divider {
  height: 1px;
  background: var(--border);
  margin: 0 2.5rem;
}

/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: 2rem 2.5rem 2.25rem;
}

.contact-form[hidden] {
  display: none !important;
}

/* Two-column row */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Field group: label + input */
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cf-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* Base field style */
.cf-field {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

.cf-field::placeholder {
  color: var(--text-dim);
  opacity: 1;
}

.cf-field:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.cf-field:focus {
  outline: none;
  border-color: rgba(74, 158, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.14);
}

.cf-field[aria-invalid="true"] {
  border-color: rgba(255, 100, 100, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 100, 100, 0.12);
}

/* Textarea */
.cf-textarea {
  min-height: 8.5rem;
  resize: vertical;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  line-height: 1.6;
}

/* Select */
.cf-select-wrap {
  position: relative;
}

.cf-select {
  cursor: pointer;
  padding-right: 2.75rem;
  color: var(--text);
}

.cf-select option {
  background: #0f1419;
  color: var(--text);
}

.cf-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-68%) rotate(45deg);
  pointer-events: none;
}

/* Captcha card */
.cf-captcha-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(74, 158, 255, 0.05);
  border: 1px solid rgba(74, 158, 255, 0.14);
}

.cf-captcha-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.cf-captcha-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(74, 158, 255, 0.15);
  color: var(--accent-blue);
}

.cf-captcha-prompt {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

.cf-captcha-hint {
  font-size: 0.76rem;
  color: var(--text-dim);
  margin: 0.15rem 0 0;
}

.cf-captcha-input {
  width: 5.5rem;
  flex-shrink: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
}

/* Errors */
.cf-error {
  font-size: 0.83rem;
  font-weight: 500;
  color: #f87171;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cf-error[hidden] {
  display: none !important;
}

/* Actions row */
.cf-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.cf-privacy-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  min-width: 0;
  font-size: 0.79rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

.cf-privacy-note svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.cf-privacy-note a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Submit button */
.cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  border-radius: 10px;
  border: none;
  background: var(--gradient);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow:
    0 4px 14px var(--accent-blue-glow),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
}

.cf-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(74, 158, 255, 0.38);
}

.cf-submit:active {
  transform: translateY(0);
}

.cf-submit-icon {
  flex-shrink: 0;
  transition: transform 0.18s;
}

.cf-submit:hover .cf-submit-icon {
  transform: translateX(2px) translateY(-2px);
}

/* Pageclip loading spinner colors */
.pageclip-form__submit.cf-submit {
  position: relative;
  min-width: 11rem;
}

.pageclip-form__submit.cf-submit::after {
  border-color: rgba(255, 255, 255, 0.3);
  border-left-color: #fff;
}

/* Honeypot — must stay invisible and inaccessible */
.cf-honey {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  tab-index: -1;
}

/* ── Success state ── */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 2.5rem 3rem;
}

.contact-success[hidden] {
  display: none !important;
}

.contact-success-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1.75rem;
  /* subtle glow halo */
  filter: drop-shadow(0 0 18px rgba(34, 197, 94, 0.35));
}

.contact-success-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Circle draws itself */
.contact-success-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  fill: rgba(34, 197, 94, 0.08);
  stroke-linecap: round;
}

/* Check draws itself after circle */
.contact-success-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  fill: none;
}

/* Triggered by JS adding .contact-success--animate */
.contact-success--animate .contact-success-circle {
  animation: cs-circle 0.55s cubic-bezier(0.65, 0, 0.45, 1) 0.1s forwards;
}

.contact-success--animate .contact-success-check {
  animation: cs-check 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes cs-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes cs-check {
  to { stroke-dashoffset: 0; }
}

.contact-success-title {
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.contact-success-body {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 26rem;
  margin-bottom: 2rem;
}

.contact-success-btn {
  padding: 0.72rem 1.6rem;
  border-radius: 10px;
  font-size: 0.92rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .contact-page {
    padding: 2.5rem 0 4rem;
  }

  .contact-card {
    border-radius: 18px;
  }

  .contact-card-header {
    padding: 1.5rem 1.5rem 1.25rem;
    gap: 0.75rem;
  }

  .contact-card-divider {
    margin: 0 1.5rem;
  }

  .contact-form {
    padding: 1.5rem 1.5rem 1.75rem;
    gap: 1.1rem;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .cf-captcha-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .cf-captcha-input {
    width: 100%;
    text-align: left;
  }

  .cf-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cf-submit {
    width: 100%;
    justify-content: center;
  }

  .contact-success {
    padding: 2.5rem 1.5rem 2rem;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.3;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  line-height: 0;
}

.footer-logo {
  height: 34px;
  width: auto;
  max-width: none;
  display: block;
  border-radius: 10px;
  opacity: 0.95;
  transition: opacity 0.2s;
}

.footer-brand:hover .footer-logo {
  opacity: 1;
}

.footer-copy {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

/* Responsive */
@media (max-width: 820px) {
  .apps-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 4rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .app-card {
    padding: 1.35rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
