:root {
  --color-green: rgb(68, 231, 96);
  --color-green-dim: rgba(68, 231, 96, 0.1);
  --color-purple: rgb(123, 150, 255);
  --color-white: #ffffff;
  --color-bg: #000000;
  --color-surface: rgba(255, 255, 255, 0.05);
  --color-surface-hover: rgba(255, 255, 255, 0.08);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-text-primary: rgba(255, 255, 255, 1);
  --color-text-secondary: rgba(255, 255, 255, 0.6);
  --color-text-muted: rgba(255, 255, 255, 0.4);
  --radius-card: 24px;
  --radius-btn: 9999px;
  --font-base: 'Euclid Triangle', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --heroui-background: 0 0% 0%;
  --heroui-foreground: 210 5.56% 92.94%;
  --heroui-primary: 130.31 77.25% 58.63%;
  --heroui-success: 145.96 79.46% 43.92%;
  --heroui-danger: 0 80.34% 54.12%;
  --heroui-warning: 37.03 91.27% 55.1%;
}

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

html {
  scroll-behavior: smooth;
}

body.support-page,
body.company-page {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #000;
  color: #fff;
}

/* ─── NAVBAR ─── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 16px 24px;
}

.site-nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 9999px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.site-nav__logo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.site-nav__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.25s ease;
}

.site-nav__links a:hover,
.site-nav__links a.active {
  color: var(--color-green);
}

.site-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(68, 231, 96, 0.05);
  color: #fff;
  border: 1px solid rgba(68, 231, 96, 0.3);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 0.9375rem;
  font-family: var(--font-base);
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 -2px 32px 0 rgba(68, 231, 96, 0.8) inset,
    0 12px 64px 0 rgba(68, 231, 96, 0.3),
    0 4px 12px 0 rgba(68, 231, 96, 0.1);
}

.site-nav__btn:hover {
  box-shadow: inset 0 0 32px 0 rgba(68, 231, 96, 0.8),
    0 0 44px 0 rgba(68, 231, 96, 0.7),
    0 0 6px 0 rgba(68, 231, 96, 0.4);
}

/* ─── MAIN CONTENT ─── */

.page-main {
  flex: 1;
  padding-top: 120px;
  padding-bottom: 80px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 860px;
}

/* ─── PAGE HERO ─── */

.page-hero {
  text-align: center;
  padding: 60px 0 48px;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(68, 231, 96, 0.1);
  color: var(--color-green);
  border: 1px solid rgba(68, 231, 96, 0.2);
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-hero__title {
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero__title span {
  color: var(--color-green);
}

.page-hero__subtitle {
  font-size: clamp(15px, 1.125rem, 20px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── SECTION HEADINGS ─── */

.section-title {
  font-size: clamp(24px, 2rem, 36px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: clamp(14px, 0.9375rem, 18px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ─── DIVIDER ─── */

.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 48px 0;
}

/* ─── CARD ─── */

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.card--green {
  border-color: rgba(68, 231, 96, 0.2);
  background: rgba(68, 231, 96, 0.04);
}

.card--green:hover {
  border-color: rgba(68, 231, 96, 0.35);
  background: rgba(68, 231, 96, 0.07);
}

.card--purple {
  border-color: rgba(123, 150, 255, 0.2);
  background: rgba(123, 150, 255, 0.04);
}

.card--blur::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
}

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(68, 231, 96, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card__icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-green);
  fill: var(--color-green);
}

.card__title {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card__body {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ─── GRID LAYOUTS ─── */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ─── FAQ / Q&A ─── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-item__question {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  list-style: none;
  line-height: 1.4;
}

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

.faq-item__question::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath d='M19 9l-7 7-7-7' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

details[open] .faq-item__question::after {
  transform: rotate(180deg);
}

details[open] .faq-item__question {
  color: var(--color-green);
}

.faq-item__answer {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.faq-item__answer p {
  margin-bottom: 12px;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item__answer a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item__answer a:hover {
  opacity: 0.8;
}

/* ─── SUPPORT SPECIFIC ─── */

.support-intro {
  background: rgba(68, 231, 96, 0.04);
  border: 1px solid rgba(68, 231, 96, 0.15);
  border-radius: var(--radius-card);
  padding: 32px 40px;
  margin-bottom: 48px;
}

.support-intro p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.support-intro a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-section {
  margin-bottom: 60px;
}

.support-section__header {
  margin-bottom: 28px;
}

.q-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(68, 231, 96, 0.12);
  color: var(--color-green);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-right: 12px;
  flex-shrink: 0;
}

.qa-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.qa-block:last-child {
  border-bottom: none;
}

.qa-block__q {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  line-height: 1.4;
}

.qa-block__a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  padding-left: 40px;
}

.qa-block__a p {
  margin-bottom: 10px;
}

.qa-block__a p:last-child {
  margin-bottom: 0;
}

.qa-block__a a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── COMPANY SPECIFIC ─── */

.company-section {
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.company-section:last-of-type {
  border-bottom: none;
}

.company-section__lead {
  font-size: clamp(16px, 1.125rem, 20px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 700px;
}

.company-section__body {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.company-section__body p {
  margin-bottom: 16px;
}

.company-section__body p:last-child {
  margin-bottom: 0;
}

.company-section__body a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
}

.stat-item__value {
  font-size: clamp(28px, 2.5rem, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
}

.stat-item__value em {
  color: var(--color-green);
  font-style: normal;
}

.stat-item__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.25s ease;
}

.team-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.team-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(68, 231, 96, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.25rem;
  color: var(--color-green);
}

.team-card__name {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: border-color 0.2s ease;
}

.value-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.value-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
  margin-top: 7px;
}

.value-item__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.value-item__text strong {
  color: #fff;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

/* ─── BREADCRUMB ─── */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb__current {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn--primary {
  background: rgba(68, 231, 96, 0.05);
  color: #fff;
  padding: 14px 28px;
  border: 1px solid rgba(68, 231, 96, 0.3);
  box-shadow: 0 -2px 32px 0 rgba(68, 231, 96, 0.8) inset,
    0 12px 64px 0 rgba(68, 231, 96, 0.3),
    0 4px 12px 0 rgba(68, 231, 96, 0.1);
}

.btn--primary:hover {
  box-shadow: inset 0 0 32px 0 rgba(68, 231, 96, 0.8),
    0 0 44px 0 rgba(68, 231, 96, 0.7),
    0 0 6px 0 rgba(68, 231, 96, 0.4);
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  margin-top: 48px;
}

.back-home::before {
  content: "←";
  font-size: 1.1em;
}

.back-home:hover {
  color: #fff;
}

.cta-section {
  margin-top: 64px;
  padding: 48px 40px;
  background: rgba(68, 231, 96, 0.04);
  border: 1px solid rgba(68, 231, 96, 0.15);
  border-radius: var(--radius-card);
  text-align: center;
}

.cta-section__title {
  font-size: clamp(22px, 1.75rem, 32px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}

.cta-section__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ─── INLINE LINKS ─── */

.inline-link {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.inline-link:hover {
  opacity: 0.8;
}

.inline-link--purple {
  color: var(--color-purple);
}

/* ─── HIGHLIGHT BOX ─── */

.highlight-box {
  background: rgba(68, 231, 96, 0.06);
  border-left: 3px solid var(--color-green);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.highlight-box--warning {
  background: rgba(245, 165, 36, 0.06);
  border-left-color: rgb(245, 165, 36);
}

.highlight-box--info {
  background: rgba(123, 150, 255, 0.06);
  border-left-color: var(--color-purple);
}

/* ─── TAG / CHIP ─── */

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

.tag--green {
  background: rgba(68, 231, 96, 0.1);
  color: var(--color-green);
}

.tag--purple {
  background: rgba(123, 150, 255, 0.1);
  color: var(--color-purple);
}

.tag--default {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

/* ─── FOOTER ─── */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 32px;
  background: transparent;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.site-footer__logo img {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 16px;
}

/* ─── AURORA BG ─── */

.page-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000;
}

.page-aurora::before {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(68, 231, 96, 0.06) 0%,
    transparent 70%);
  top: -20vw;
  left: 50%;
  transform: translateX(-50%);
}

.page-aurora::after {
  content: "";
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(123, 150, 255, 0.05) 0%,
    transparent 70%);
  top: 10%;
  right: -10%;
}

.page-content {
  position: relative;
  z-index: 1;
}

/* ─── PROGRESS / STEP ─── */

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  counter-increment: steps;
}

.step-item:last-child {
  border-bottom: none;
}

.step-item__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(68, 231, 96, 0.1);
  border: 1px solid rgba(68, 231, 96, 0.25);
  color: var(--color-green);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-item__content h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.step-item__content p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .page-main {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .page-hero {
    padding: 40px 0 32px;
  }

  .page-hero__title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 22px 20px;
  }

  .support-intro {
    padding: 24px 20px;
  }

  .cta-section {
    padding: 36px 24px;
  }

  .site-nav__links {
    display: none;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .container {
    padding: 0 16px;
  }
}

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

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

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .faq-item__question {
    padding: 16px 18px;
    font-size: 0.9375rem;
  }

  .faq-item__answer {
    padding: 0 18px 16px;
  }

  .qa-block__a {
    padding-left: 0;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 32px;
  }
}