:root {
  --brand: #2e7d4f;
  --brand-press: #23643f;
  --brand-soft: #dcebdd;
  --brand-tint: #eff7ee;
  --accent: #f09a3e;
  --accent-soft: #fff0dd;

  --bg: #fffaf1;
  --bg-soft: #f6efe1;
  --bg-ink: #112218;
  --bg-ink-2: #173125;

  --card: #ffffff;
  --divider: #e7decd;
  --stroke: #ddd4c4;

  --fg: #261d16;
  --fg-2: #453a31;
  --fg-3: #74695d;
  --fg-4: #9b9186;
  --soft-section: rgba(255, 255, 255, 0.42);
  --body-bg:
    radial-gradient(52% 42% at 12% 0%, rgba(240, 154, 62, 0.12) 0%, transparent 100%),
    radial-gradient(40% 36% at 88% 6%, rgba(46, 125, 79, 0.11) 0%, transparent 100%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
  --legal-bg:
    radial-gradient(48% 34% at 10% 0%, rgba(240, 154, 62, 0.1) 0%, transparent 100%),
    linear-gradient(180deg, #fffdf8 0%, #f9f0e4 100%);

  --nav-bg: rgba(255, 250, 241, 0.8);
  --nav-border: rgba(38, 29, 22, 0.08);

  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.04), 0 18px 44px rgba(38, 29, 22, 0.08);
  --shadow-soft: 0 2px 8px rgba(16, 24, 40, 0.06), 0 26px 60px rgba(38, 29, 22, 0.12);
  --shadow-cta: 0 12px 26px rgba(46, 125, 79, 0.28);
  --shadow-phone: 0 30px 70px rgba(17, 34, 24, 0.22), 0 10px 24px rgba(17, 34, 24, 0.12);

  --font: "Outfit", system-ui, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --maxw: 1140px;
}

:root[data-theme="dark"] {
  --brand: #6fb387;
  --brand-press: #85c39b;
  --brand-soft: #1e2f25;
  --brand-tint: #16231b;
  --accent: #de9b54;
  --accent-soft: #302315;

  --bg: #111714;
  --bg-soft: #171f1b;
  --bg-ink: #0b100d;
  --bg-ink-2: #111714;

  --card: #17201b;
  --divider: #273128;
  --stroke: #2b3730;

  --fg: #eff4ef;
  --fg-2: #d7ded7;
  --fg-3: #9ca79f;
  --fg-4: #738077;
  --soft-section: rgba(255, 255, 255, 0.03);
  --body-bg:
    radial-gradient(48% 40% at 10% 0%, rgba(222, 155, 84, 0.12) 0%, transparent 100%),
    radial-gradient(42% 34% at 88% 4%, rgba(111, 179, 135, 0.12) 0%, transparent 100%),
    linear-gradient(180deg, #0f1512 0%, var(--bg) 100%);
  --legal-bg:
    radial-gradient(48% 34% at 10% 0%, rgba(222, 155, 84, 0.1) 0%, transparent 100%),
    linear-gradient(180deg, #101613 0%, #151d19 100%);

  --nav-bg: rgba(17, 23, 20, 0.8);
  --nav-border: rgba(255, 255, 255, 0.06);

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.26), 0 18px 44px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.24), 0 26px 60px rgba(0, 0, 0, 0.28);
  --shadow-cta: 0 12px 26px rgba(111, 179, 135, 0.18);
  --shadow-phone: 0 30px 70px rgba(0, 0, 0, 0.42), 0 10px 24px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

body {
  font-family: var(--font);
  color: var(--fg);
  background: var(--body-bg);
  line-height: 1.45;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--brand);
  color: #fff;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow,
.legal-updated {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 800;
}

.display {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 900;
  line-height: 0.95;
  text-wrap: balance;
}

.h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 900;
  line-height: 0.98;
  text-wrap: balance;
}

.h3 {
  font-size: clamp(22px, 2.4vw, 30px);
}

.hl {
  color: var(--brand);
}

.lead {
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.55;
  color: var(--fg-3);
  font-weight: 450;
}

.lead-strong {
  color: var(--fg-2);
  font-weight: 600;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: saturate(1.6) blur(16px);
  -webkit-backdrop-filter: saturate(1.6) blur(16px);
  border-bottom: 1px solid var(--nav-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 8px;
}

.nav-links a {
  color: var(--fg-3);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.16s ease;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--fg);
}

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #000;
  color: #fff;
  border-radius: 14px;
  padding: 11px 18px 11px 16px;
  transition: transform 0.12s ease, opacity 0.15s ease;
}

.store:hover {
  opacity: 0.9;
}

.store:active {
  transform: scale(0.98);
}

.store-compact {
  padding: 9px 14px 9px 13px;
}

.store-compact .txt b {
  font-size: 15px;
}

.store .glyph {
  width: 22px;
  height: 22px;
  flex: none;
}

.store .glyph svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.store .txt {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
}

.store .txt small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.82;
}

.store .txt b {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.store.on-ink {
  background: #fff;
  color: #000;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

:root[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.04);
}

.theme-toggle:hover {
  background: var(--card);
  color: var(--fg);
}

.theme-toggle:active {
  transform: scale(0.98);
}

.theme-toggle-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

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

:root[data-theme="dark"] .theme-toggle-icon-sun {
  display: none;
}

:root[data-theme="dark"] .theme-toggle-icon-moon {
  display: inline-flex;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.74);
  color: var(--fg-2);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.16s ease, color 0.16s ease, transform 0.12s ease;
}

:root[data-theme="dark"] .ghost-link {
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg-2);
}

.ghost-link:hover {
  background: #fff;
  color: var(--fg);
}

:root[data-theme="dark"] .ghost-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--fg);
}

.ghost-link:active {
  transform: scale(0.98);
}

.sec {
  position: relative;
  padding: clamp(72px, 10vw, 128px) 0;
}

.sec-soft {
  background: var(--soft-section);
  border-top: 1px solid rgba(38, 29, 22, 0.04);
  border-bottom: 1px solid rgba(38, 29, 22, 0.04);
}

.sec-ink {
  background: linear-gradient(180deg, var(--bg-ink) 0%, var(--bg-ink-2) 100%);
  color: #fff;
}

.center {
  text-align: center;
}

.sec-head {
  max-width: 780px;
  margin: 0 auto;
}

.sec-head .lead {
  margin-top: 18px;
}

.hero {
  position: relative;
  padding-top: clamp(56px, 7vw, 96px);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  inset: -8% -12% auto;
  height: 560px;
  background: radial-gradient(60% 60% at 50% 28%, rgba(46, 125, 79, 0.16) 0%, rgba(46, 125, 79, 0) 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 40px;
  align-items: center;
}

.hero-copy .display {
  margin-top: 20px;
}

.hero-copy .lead {
  margin-top: 24px;
  max-width: 560px;
}

.hero-copy .stores {
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 22px;
  color: var(--fg-3);
  font-size: 14px;
  font-weight: 600;
}

.trust-row .dot {
  color: var(--fg-4);
}

.trust-row-on-ink {
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
}

.hero-single {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 620px;
}

.hero-single .device {
  width: 320px;
  transform: rotate(2.2deg);
}

.device {
  background: #0a130e;
  border-radius: 13.2% / 6.1%;
  padding: 2.6%;
  box-shadow: var(--shadow-phone);
}

.screen {
  position: relative;
  width: 100%;
  aspect-ratio: 828 / 1792;
  border-radius: 11% / 5.1%;
  overflow: hidden;
  background: #fff;
}

.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.notch {
  position: absolute;
  top: 1.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 3%;
  min-height: 14px;
  border-radius: 999px;
  background: #0a130e;
  z-index: 2;
}

.problem-art {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 60px);
  flex-wrap: wrap;
  margin-top: 56px;
}

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

.app-tile {
  min-width: 78px;
  height: 66px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-card);
  color: var(--fg-3);
  font-size: 14px;
  font-weight: 700;
}

.arrow-big {
  color: var(--fg-4);
  font-size: 44px;
  font-weight: 500;
}

.one-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.one-app img {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.one-app .lbl {
  font-weight: 800;
  font-size: 17px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.mini {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
}

.mini-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
}

.mini h3 {
  font-size: 19px;
  line-height: 1.08;
  margin-bottom: 8px;
}

.mini p {
  color: var(--fg-3);
  font-size: 15px;
  line-height: 1.54;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-top: 72px;
}

.feature.reverse .feature-art {
  order: 2;
}

.feature.reverse .feature-copy {
  order: 1;
}

.feature-art {
  display: flex;
  justify-content: center;
}

.feature-art .device {
  width: 292px;
}

.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
}

.feature-copy .lead {
  margin-top: 16px;
  max-width: 500px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
  margin-top: 60px;
  align-items: start;
}

.step {
  text-align: center;
}

.step .device {
  width: 208px;
  margin: 0 auto 26px;
}

.num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-cta);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  max-width: 280px;
  margin: 0 auto;
  color: var(--fg-3);
  font-size: 15.5px;
  line-height: 1.55;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.tbadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-card);
  color: var(--fg-2);
  font-size: 15px;
  font-weight: 600;
}

.price-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1060px;
  margin: 56px auto 0;
  align-items: start;
}

.plan {
  position: relative;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
}

.plan.featured {
  border-color: rgba(46, 125, 79, 0.3);
  background: linear-gradient(180deg, rgba(46, 125, 79, 0.1), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

:root[data-theme="dark"] .plan.featured {
  border-color: rgba(111, 179, 135, 0.26);
  background: linear-gradient(180deg, rgba(111, 179, 135, 0.1), rgba(23, 32, 27, 0.96));
}

.tag {
  position: absolute;
  top: -13px;
  left: 34px;
  background: var(--brand);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 6px;
}

.amt {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.per {
  color: var(--fg-3);
  font-size: 16px;
  font-weight: 600;
}

.price-note {
  color: var(--fg-4);
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
}

.plan-store {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.plan-feats li {
  position: relative;
  padding-left: 16px;
  color: var(--fg-2);
  font-size: 15.5px;
  line-height: 1.5;
}

.plan-feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}

.price-foot {
  text-align: center;
  color: var(--fg-4);
  font-size: 14px;
  margin-top: 30px;
}

.faq-head {
  margin-bottom: 48px;
}

.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--divider);
  padding: 22px 4px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

.faq .pm {
  color: var(--brand);
  font-size: 26px;
  font-weight: 400;
  transition: transform 0.2s ease;
  flex: none;
}

.faq details[open] .pm {
  transform: rotate(45deg);
}

.faq p {
  max-width: 640px;
  margin-top: 14px;
  color: var(--fg-3);
  font-size: 16px;
  line-height: 1.6;
}

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

.cta-logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.sec-ink .lead {
  max-width: 580px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.74);
}

.cta-stores {
  justify-content: center;
  margin-top: 34px;
}

.footer {
  background: var(--bg-ink);
  color: #fff;
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.brand-col p {
  max-width: 300px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.55;
}

.footer h4 {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 700;
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
}

.legal-page {
  background: var(--legal-bg);
}

.legal-main {
  padding-bottom: 64px;
}

.legal-hero {
  padding: clamp(56px, 8vw, 96px) 0 18px;
}

.legal-wrap {
  max-width: 840px;
}

.legal-wrap h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-top: 18px;
}

.legal-updated {
  display: block;
  margin-top: 18px;
  color: var(--fg-4);
}

.legal-body {
  padding: 22px 0 clamp(72px, 9vw, 120px);
}

.prose-shell {
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(28px, 5vw, 40px);
  box-shadow: var(--shadow-card);
}

:root[data-theme="dark"] .prose-shell {
  background: rgba(23, 32, 27, 0.94);
  border-color: rgba(255, 255, 255, 0.07);
}

.prose-shell h2 {
  font-size: 28px;
  line-height: 1.02;
  margin: 40px 0 14px;
  color: var(--fg);
}

.prose-shell p,
.prose-shell li {
  color: var(--fg-2);
  font-size: 16.5px;
  line-height: 1.68;
}

:root[data-theme="dark"] .prose-shell p,
:root[data-theme="dark"] .prose-shell li {
  color: #d7ded7;
}

.prose-shell p + p {
  margin-top: 12px;
}

.prose-shell ul {
  margin: 14px 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prose-shell a {
  color: var(--brand);
  font-weight: 600;
}

:root[data-theme="dark"] .prose-shell a {
  color: #8fd0a7;
}

.prose-shell a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero-grid,
  .feature,
  .feature.reverse .feature-art,
  .feature.reverse .feature-copy {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 10px;
    text-align: center;
  }

  .hero-copy .lead,
  .hero-copy .stores,
  .trust-row {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-single {
    min-height: auto;
    margin-top: 28px;
  }

  .hero-single .device {
    width: 274px;
  }

  .feature {
    gap: 36px;
  }

  .feature-art {
    order: -1 !important;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .price-grid-3 {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }

  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
  }

  .mini-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .arrow-big {
    transform: rotate(90deg);
  }

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

  .trust-row {
    flex-direction: column;
  }
}
