:root {
  --bg: #e9eef3;
  --paper: #f4f7fa;
  --paper-strong: #fbfdff;
  --section-bg: rgba(251, 253, 255, 0.8);
  --ink: #151b24;
  --muted: #516075;
  --line: #d2dbe6;
  --line-strong: #c4cfdb;
  --accent: #d9730f;
  --accent-2: #f0924a;
  --accent-dark: #b85f09;
  --gold: #f5a623;
  --dark: #141720;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 8px 28px rgba(20, 23, 32, 0.08);
  --shadow-card: 0 6px 20px rgba(20, 23, 32, 0.05);
  --shadow-hero: 0 14px 34px rgba(20, 23, 32, 0.1);
  --heading-font: "Rajdhani", sans-serif;
  --body-font: "Barlow", sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(1100px 340px at 0% -10%, rgba(240, 146, 74, 0.07), transparent 70%),
    radial-gradient(900px 300px at 100% -20%, rgba(217, 115, 15, 0.05), transparent 70%),
    linear-gradient(180deg, #edf2f6 0%, #e7edf3 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(217, 115, 15, 0.22);
  color: #121722;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header .container,
header[role="banner"] .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(16px, 2vw, 28px);
  padding-right: clamp(16px, 2vw, 28px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.2);
}

.nav-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
  flex-shrink: 0;
  line-height: 1;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(56px, 6vw, 76px);
  max-width: min(64vw, 340px);
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(8, 11, 18, 0.16));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 7px;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
  color: var(--accent);
  background: rgba(217, 115, 15, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 8px 18px rgba(184, 95, 9, 0.25);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary:hover {
  box-shadow: 0 12px 24px rgba(184, 95, 9, 0.34);
}

.btn-primary:active {
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #e4ebf2 0%, #edf3f8 62%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(240, 146, 74, 0.18) 0%, rgba(240, 146, 74, 0) 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0 48px;
  max-width: 78ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #8e4f17;
  background: rgba(240, 146, 74, 0.12);
  border: 1px solid rgba(240, 146, 74, 0.24);
  border-radius: 999px;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-family: var(--heading-font);
}

h1 {
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 700;
  max-width: 21ch;
  letter-spacing: 0.2px;
}

.lead {
  margin-top: 16px;
  color: var(--muted);
  max-width: 68ch;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.72;
}

main {
  padding: 38px 0 62px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.22) 100%);
}

.section {
  margin-top: 0;
  background: var(--section-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2.2vw, 28px);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  scroll-margin-top: 92px;
}

.section + .section {
  margin-top: 18px;
}

.section:hover {
  border-color: #c8d3df;
  box-shadow: var(--shadow-soft);
}

.section h2 {
  font-size: clamp(24px, 3vw, 35px);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.2px;
}

.section h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 9px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(240, 146, 74, 0.22));
}

.section-intro {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 72ch;
  font-size: 16px;
}

.section p {
  max-width: 76ch;
  color: var(--muted);
  line-height: 1.72;
}

.grid {
  display: grid;
  gap: 18px;
}

.section .grid,
.section .step-list,
.section .faq {
  margin-top: 8px;
}

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

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

.card {
  background: var(--paper-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 115, 15, 0.35);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: clamp(22px, 2.1vw, 27px);
  margin-bottom: 9px;
  line-height: 1.15;
}

.card p {
  color: var(--muted);
  margin: 0 0 10px;
  font-size: 15px;
}

.card h3 a {
  color: var(--ink);
  transition: color 0.18s ease;
}

.card h3 a:hover {
  color: var(--accent-dark);
}

.section p a,
.section-intro a,
.note a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-color: rgba(184, 95, 9, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.section p a:hover,
.section-intro a:hover,
.note a:hover {
  text-decoration-color: rgba(184, 95, 9, 0.8);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-list li {
  color: var(--muted);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
  max-width: 80ch;
}

.check-list li + li {
  border-top: 1px dashed rgba(196, 207, 219, 0.48);
  padding-top: 10px;
}

.check-list li::before {
  content: "";
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 7px;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.step-list li {
  color: var(--muted);
  line-height: 1.65;
}

.step-list.step-list-lg {
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 5px 16px rgba(20, 23, 32, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.step:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 115, 15, 0.32);
  box-shadow: var(--shadow-soft);
}

.step-num {
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  box-shadow: 0 5px 12px rgba(184, 95, 9, 0.28);
}

.step h3 {
  font-size: clamp(21px, 2.4vw, 26px);
  line-height: 1.18;
  margin-bottom: 6px;
}

.step p {
  margin: 8px 0 0;
  font-size: 15px;
}

.step p:first-of-type {
  margin-top: 0;
}

.faq details {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.faq details + details {
  margin-top: 10px;
}

.faq details[open] {
  border-color: rgba(217, 115, 15, 0.3);
  box-shadow: 0 8px 20px rgba(20, 23, 32, 0.06);
  background: #ffffff;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 115, 15, 0.12);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq details[open] summary::after {
  content: "−";
  background: rgba(217, 115, 15, 0.2);
}

.faq p {
  margin: 8px 0 0;
  color: var(--muted);
}

.note {
  border: 1px solid rgba(217, 115, 15, 0.32);
  border-radius: var(--radius);
  background: rgba(217, 115, 15, 0.1);
  padding: 18px;
  color: #4f2f17;
}

.note-plain {
  margin-top: 1rem;
  color: var(--muted, #888);
  font-size: 0.9em;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-15 {
  margin-top: 1.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}

.center-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.center-cta-lg {
  text-align: center;
  margin-top: 2rem;
}

.callout-highlight {
  background: var(--card-bg, var(--paper-strong));
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.no-margin {
  margin: 0;
}

.check-list-plain {
  list-style: none;
  padding-left: 0;
}

.check-list-plain li::before {
  content: none;
}

.check-list-muted-item {
  opacity: 0.7;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.75rem;
}

.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
}

.review-quote {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: var(--body-text, #444);
  line-height: 1.6;
}

.review-role {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-top: 2px;
}

.review-summary {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #888;
}

.gold-text {
  color: var(--gold, #f5a623);
}

.gold-link {
  color: var(--gold, #f5a623);
  margin-left: 0.5rem;
}

.grid-top-1 {
  margin-top: 1rem;
}

.grid-top-2 {
  margin-top: 2rem;
}

.service-link-stack {
  text-align: center;
  margin-top: 0.75rem;
}

.service-link-stack--lead {
  margin-top: 2rem;
}

.service-link-stack__link {
  color: #d9730f;
  font-weight: 600;
}

.service-link-stack__link--lead {
  font-size: 1.1em;
}

.form-helper {
  font-family: var(--body-font);
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--muted);
}

.form-subgroup-label {
  display: block;
  font-family: var(--heading-font);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 700;
  margin: 16px 0 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line-strong);
}

.recruitment-banner {
  background: linear-gradient(135deg, #1e2230 0%, #141720 100%);
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.recruitment-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.recruitment-banner__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f0924a;
  font-weight: 700;
}

.recruitment-banner__title {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 22px;
  margin: 6px 0 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recruitment-banner__meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin: 4px 0 0;
}

.nowrap {
  white-space: nowrap;
}

.section.bg-gray {
  background: linear-gradient(180deg, rgba(239, 244, 249, 0.92), rgba(233, 239, 246, 0.9));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 18px;
}

.contact-meta p {
  margin: 0 0 8px;
  color: var(--muted);
}

form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c7d1de;
  background: #fbfdff;
  border-radius: 8px;
  padding: 11px 12px;
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(217, 115, 15, 0.6);
  box-shadow: 0 0 0 3px rgba(217, 115, 15, 0.17);
  background: #fff;
}

.site-footer {
  background: linear-gradient(180deg, #f5f8fb, #eef3f8);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer .inner {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--ink);
}

.site-footer a:hover {
  color: var(--accent-dark);
}

.inline-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Brand page additions ── */
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-stat {
  text-align: center;
  padding: 28px 16px;
}

.stat-number {
  display: block;
  font-family: var(--heading-font);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: rgba(217, 115, 15, 0.1);
  border-color: rgba(184, 95, 9, 0.7);
}

.btn-large {
  font-size: 16px;
  padding: 14px 28px;
}

.cta-block {
  background:
    radial-gradient(700px 220px at 20% 0%, rgba(240, 146, 74, 0.1), transparent 70%),
    linear-gradient(145deg, #f7fafd, #eef3f8);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 40px 36px;
  margin-top: 40px;
  text-align: center;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-block::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -140px;
  right: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 146, 74, 0.23), rgba(240, 146, 74, 0));
  pointer-events: none;
}

.cta-block h2 {
  color: var(--ink);
  margin-bottom: 10px;
}

.cta-block h2::after {
  display: none;
}

.cta-block p {
  color: var(--muted);
  margin-bottom: 22px;
}

.cta-block .btn-primary {
  box-shadow: var(--shadow-hero);
}

.contact-info {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted) !important;
}

.contact-info a {
  color: var(--accent-dark);
}

.hero-lead {
  margin-top: 16px;
  color: var(--muted);
  max-width: 74ch;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.72;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* Legacy guide page header/footer normalization */
header[role="banner"] {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.2);
}

header[role="banner"] .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

header[role="banner"] a {
  text-decoration: none;
}

header[role="banner"] .logo {
  display: block;
  margin: 0;
  height: clamp(56px, 6vw, 76px);
  width: auto;
  max-width: min(64vw, 340px);
  filter: drop-shadow(0 6px 16px rgba(8, 11, 18, 0.16));
}

header[role="banner"] nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

header[role="banner"] nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 7px;
  transition: color 0.18s ease, background-color 0.18s ease;
}

header[role="banner"] nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

header[role="banner"] nav a.active {
  color: var(--accent);
  background: rgba(217, 115, 15, 0.15);
}

footer[role="contentinfo"] {
  margin-top: 22px;
  background: linear-gradient(180deg, #f5f8fb, #eef3f8);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer[role="contentinfo"] .container {
  padding: 30px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.footer-col h3 {
  color: var(--ink);
  margin-bottom: 10px;
  font-size: 24px;
}

.footer-col p,
.footer-col li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.footer-col a {
  color: var(--ink);
}

.footer-col a:hover {
  color: var(--accent-dark);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.price-note {
  background: #f6f9fc !important;
  border: 1px solid var(--line) !important;
  border-left: 3px solid var(--gold) !important;
  color: var(--ink) !important;
}

.price-note p {
  color: inherit;
}

.section > .container {
  width: 100%;
  margin: 0;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(240, 146, 74, 0.4);
  outline-offset: 2px;
}

@media (max-width: 760px) {
  .nav-row {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }
  .brand img,
  header[role="banner"] .logo {
    height: 52px;
    max-width: min(84vw, 275px);
  }
  .nav-links {
    justify-content: center;
    width: 100%;
  }
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .cta-block {
    padding: 28px 20px;
  }
  .section {
    padding: 18px 14px;
  }
  .hero-inner {
    padding: 52px 0 34px;
  }
  .section + .section {
    margin-top: 14px;
  }
  .section h2 {
    padding-bottom: 8px;
  }
  .section h2::after {
    width: 44px;
    margin-top: 8px;
  }
  .step {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 12px;
  }
  .step-num {
    width: 26px;
    min-width: 26px;
    height: 26px;
    font-size: 13px;
  }
  .step h3 {
    font-size: clamp(19px, 5.8vw, 23px);
  }
  .section .grid,
  .section .step-list,
  .section .faq {
    margin-top: 6px;
  }
  .cta-group {
    width: 100%;
  }
  .cta-group .btn {
    width: 100%;
  }
  header[role="banner"] .container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }
  header[role="banner"] nav {
    justify-content: center;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
