:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #080808;
  --muted: #71737b;
  --soft: #f4f4f5;
  --soft-2: #ebecef;
  --line: #e2e3e6;
  --panel: #f3f3f5;
  --inverse: #050505;
  --inverse-text: #ffffff;
  --positive: #14b99a;
  --blue: #438df2;
  --orange: #f28b18;
  --red: #fb5b62;
  --shadow: 0 22px 70px rgba(18, 18, 20, 0.08);
}

.dark {
  color-scheme: dark;
  --bg: #000000;
  --text: #f8f8f8;
  --muted: #92959d;
  --soft: #151516;
  --soft-2: #222327;
  --line: #24252a;
  --panel: #171719;
  --inverse: #ffffff;
  --inverse-text: #050505;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--text) 28%, transparent) transparent;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  min-height: 64px;
  border: 3px solid var(--bg);
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 22%, transparent);
}

::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--text) 38%, transparent);
}

.dark {
  scrollbar-color: color-mix(in srgb, #ffffff 50%, #2a2b30) #050505;
}

.dark ::-webkit-scrollbar-track {
  background: #050505;
}

.dark ::-webkit-scrollbar-thumb {
  border-color: #050505;
  background: linear-gradient(180deg, #2a2b30, #17181b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 18px rgba(255, 255, 255, 0.3);
}

.dark ::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #32343a, #1f2025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 24px rgba(255, 255, 255, 0.45);
}

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

button,
input {
  font: inherit;
}

.site-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 32px 22px 46px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 58px;
  border-radius: 8px;
  padding: 10px 12px 10px 18px;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  width: 148px;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo-dark,
.dark .brand-logo-light {
  display: none;
}

.dark .brand-logo-dark {
  display: block;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.button,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.theme-toggle {
  width: 44px;
  min-width: 44px;
  padding: 0;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .moon-icon,
.dark .theme-toggle .sun-icon {
  display: none;
}

.dark .theme-toggle .moon-icon {
  display: block;
}

.main-nav a {
  color: var(--muted);
}

.main-nav a:hover {
  background: var(--soft);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-toggle {
  position: relative;
  display: inline-flex;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.language-caret {
  width: 12px;
  height: 12px;
  transition: transform 180ms ease;
}

.language-current[aria-expanded="true"] .language-caret {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 156px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 60;
}

.language-menu.open {
  display: flex;
}

.language-menu button {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  white-space: nowrap;
}

.language-menu button:hover {
  background: var(--soft-2);
  color: var(--text);
}

.language-menu button[aria-pressed="true"] {
  background: var(--inverse);
  color: var(--inverse-text);
}

.language-menu a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.language-menu a:hover {
  background: var(--soft-2);
  color: var(--text);
}

.language-menu a[aria-current="true"] {
  background: var(--inverse);
  color: var(--inverse-text);
}

.button,
.theme-toggle {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.button:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--inverse);
  color: var(--inverse-text);
}

.button-soft,
.theme-toggle {
  background: var(--soft);
  color: var(--text);
}

.button-lg {
  min-height: 50px;
  padding: 0 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: 760px;
  padding: 54px 0 78px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.greeting-line {
  margin: 0 0 16px;
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(52px, 7.2vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.052em;
  font-weight: 950;
}

.lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-head,
.mini-grid,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-head span {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.panel-head b {
  border-radius: 999px;
  background: var(--bg);
  padding: 8px 12px;
  font-size: 12px;
}

.big-number {
  margin-top: 72px;
}

.big-number small,
.mini-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.big-number strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(52px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.hero-chart {
  width: calc(100% + 24px);
  margin: 46px -12px 24px;
  color: var(--text);
}

.chart-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw-line 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.chart-area {
  fill: currentColor;
  opacity: 0.06;
}

.mini-grid {
  align-items: stretch;
}

.mini-grid div {
  flex: 1;
  border-radius: 8px;
  background: var(--bg);
  padding: 16px;
}

.mini-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 14px 0 18px;
}

.logo-strip span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.store-text {
  width: 100%;
  margin: 0 0 76px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
}

section {
  scroll-margin-top: 100px;
}

.about-section,
.split-section,
.services-section,
.pricing-section,
.faq-section,
.final-cta {
  padding: 76px 0;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 30px;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-heading p:not(.eyebrow),
.steps p,
.service-grid p,
.plan-desc,
.faq-answer p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.about-grid,
.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-grid article,
.steps article,
.service-grid article,
.plan-card,
.pricing-empty,
.faq-item {
  border-radius: 8px;
  background: var(--panel);
}

.about-grid article,
.service-grid article {
  min-height: 230px;
  padding: 28px;
}

.about-grid h3,
.steps h3,
.service-grid h3,
.faq-item button {
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.about-grid p,
.service-grid p {
  margin: 20px 0 0;
}

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

.steps article {
  min-height: 270px;
  padding: 26px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--muted);
  font-weight: 950;
}

.icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  margin-bottom: 64px;
}

.icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon.blue {
  background: rgba(67, 141, 242, 0.16);
  color: var(--blue);
}

.icon.green {
  background: rgba(20, 185, 154, 0.16);
  color: var(--positive);
}

.icon.orange {
  background: rgba(242, 139, 24, 0.18);
  color: var(--orange);
}

.icon.red {
  background: rgba(251, 91, 98, 0.17);
  color: var(--red);
}

.icon.violet {
  background: rgba(145, 105, 255, 0.16);
  color: #9169ff;
}

.icon.teal {
  background: rgba(40, 196, 205, 0.15);
  color: #28c4cd;
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-empty {
  padding: 36px;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 500px;
  padding: 24px;
  transition: transform 200ms ease, background-color 200ms ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  background: var(--soft-2);
}

.plan-card.featured {
  outline: 2px solid var(--text);
  outline-offset: -2px;
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 32px;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: var(--inverse);
  color: var(--inverse-text);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: var(--soft-2);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
}

.badge-sky {
  color: var(--blue);
}

.badge-indigo,
.badge-emerald {
  color: var(--positive);
}

.plan-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.plan-price .amount {
  margin: 34px 0 0;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.discount {
  color: var(--muted);
  font-size: 13px;
}

.strike {
  text-decoration: line-through;
}

.pct {
  margin-left: 8px;
  color: var(--positive);
  font-weight: 950;
}

.plan-benefits {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plan-benefits li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.plan-benefits svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--positive);
}

.plan-cta {
  margin-top: auto;
  padding-top: 24px;
}

.plan-cta .button {
  width: 100%;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 76px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0 24px;
  cursor: pointer;
  text-align: left;
  font-weight: 950;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.faq-item button span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.faq-item button span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
  visibility: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  visibility: visible;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  opacity: 0;
  transition: opacity 180ms ease, padding-bottom 240ms ease;
}

.faq-item.open .faq-answer p {
  padding-bottom: 24px;
  opacity: 1;
}

.faq-more-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
}

.faq-more-card .eyebrow {
  margin-bottom: 10px;
}

.faq-more-card h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.faq-more-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-hero {
  min-height: 430px;
  padding: 80px 0 44px;
}

.faq-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.faq-category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0 0 72px;
}

.faq-category-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.faq-category-strip a:hover {
  background: var(--soft-2);
  color: var(--text);
}

.faq-page-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.faq-page-section .section-heading {
  margin-bottom: 24px;
}

.final-cta {
  border-radius: 8px;
  background: var(--panel);
  margin: 72px 0;
  padding: clamp(34px, 7vw, 72px);
}

.final-cta p {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.visible {
  animation: reveal-in 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.store-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
  min-height: 380px;
}

.store-logo-mark {
  display: grid;
  place-items: center;
  width: clamp(120px, 18vw, 176px);
  height: clamp(120px, 18vw, 176px);
}

.store-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
  transition: filter 180ms ease;
}

.dark .store-logo-mark img {
  filter: brightness(0) invert(1);
}

.store-panel .store-name {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
}

.store-panel .store-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: var(--bg);
  padding: 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

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

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

.store-facts article {
  border-radius: 8px;
  background: var(--panel);
  padding: 22px 24px;
}

.store-facts h3 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.store-facts p {
  margin: 0;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

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

.store-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 156px;
  border-radius: 8px;
  background: var(--panel);
  padding: 24px 18px;
  text-align: center;
  transition: transform 200ms ease, background-color 200ms ease;
}

a.store-card:hover {
  transform: translateY(-4px);
  background: var(--soft-2);
}

.store-card-logo {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
}

.store-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
}

.dark .store-card-logo img {
  filter: brightness(0) invert(1);
}

.store-card-name {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.store-card.is-soon {
  opacity: 0.42;
  cursor: default;
}

.store-card.is-soon .store-card-name {
  color: var(--muted);
}

.store-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.store-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.store-legend i {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--text);
  font-style: normal;
}

.store-legend i.dim {
  opacity: 0.42;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pricing-grid,
  .steps,
  .faq-category-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .site-shell {
    padding: 18px 14px 34px;
  }

  .site-header {
    top: 10px;
    padding-left: 14px;
  }

  .brand {
    width: 132px;
  }

  .theme-toggle,
  .button-soft {
    display: none;
  }

  .language-current {
    min-height: 38px;
    padding: 0 10px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-panel {
    padding: 22px;
  }

  .big-number {
    margin-top: 44px;
  }

  .mini-grid,
  .logo-strip,
  .faq-category-strip,
  .about-grid,
  .service-grid,
  .pricing-grid,
  .steps,
  .faq-list {
    grid-template-columns: 1fr;
  }

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

  .store-facts {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mini-grid {
    flex-direction: column;
  }

  .logo-strip {
    padding-bottom: 14px;
  }

  .store-text {
    margin-bottom: 48px;
    font-size: 14px;
  }

  .about-section,
  .split-section,
  .services-section,
  .pricing-section,
  .faq-section,
  .faq-page-section {
    padding: 48px 0;
  }

  .faq-hero {
    min-height: auto;
    padding: 50px 0 42px;
  }

  .faq-hero h1 {
    font-size: 46px;
    letter-spacing: -0.045em;
  }

  .faq-category-strip {
    gap: 8px;
    padding-bottom: 44px;
  }

  .faq-category-strip a {
    justify-content: flex-start;
    min-height: 48px;
    white-space: normal;
  }

  .faq-more-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
